tidal wave script 100 hours runtime sim
# ============================================================ # TEST 10.8 — Critical Transition, Breather & Memory Suite (v4) # Uses BIG_GIANT_SOLVER_FILE_Test10_core_solver.py # ============================================================ import os import json import numpy as np import matplotlib.pyplot as plt from BIG_GIANT_SOLVER_FILE_Test10_core_solver import run_test10_core_solver try: from google.colab import files IN_COLAB = True except ImportError: IN_COLAB = False # ------------------------------------------------------------ # GLOBAL CONFIG # ------------------------------------------------------------ DX = 0.1 DT = 0.001 V = 1.0 MU = -1.0 LAM = 1.0 RESULTS_DIR = "results_10_8" os.makedirs(RESULTS_DIR, exist_ok=True) # Which tests to run (staged) RUN_10_8A = True # Critical transition verification RUN_10_8B = True # Breather survival RUN_10_8C = True # Recovery / attractor RUN_10_8D = False # Deliberate damage RUN_10_8E = False # Crit...