Long notes script ->
To keep us all on the same page - I'm am running this script now -> # ============================================================ # TEST 9 — ABSORBING BOUNDARY RUN (Option B: r_start = 8.0) # Auto-detects latest Test 8 folder, loads IC, runs Test 9 # ============================================================ import os import json import numpy as np from google.colab import drive drive.mount('/content/drive') # ------------------------------------------------------------ # 1. Auto-detect latest Test 8 backup folder # ------------------------------------------------------------ base8 = "/content/drive/MyDrive/FRCMFD_Test8" folders8 = [f for f in os.listdir(base8) if f.startswith("Test8_Backup")] latest8 = sorted(folders8)[-1] path8 = f"{base8}/{latest8}" print(f"[Test 9] Using Test 8 folder: {path8}") # ------------------------------------------------------------ # 2. Load Test 8 final Psi and Pi # ---------------------------...