Π-ONTOLOGY STATE VECTOR INITIALIZATION
import numpy as np import os import datetime import shutil import zipfile import json try: from google.colab import drive, files IN_COLAB = True except ImportError: IN_COLAB = False # ============================================================================== # Π-ONTOLOGY STATE VECTOR INITIALIZATION (PHASE 3 EXPANDED) # ============================================================================== def initialize_expanded_state(grid_size): """ Allocates the 6-component State_vector across the Π-manifold index. Π_new = {P_xx, P_xy, P_yx, P_yy, S, Λ} """ state = { 'P_xx': np.zeros(grid_size), 'P_xy': np.zeros(grid_size), 'P_yx': np.zeros(grid_size), # Phase 3 Expansion 'P_yy': np.zeros(grid_size), 'S': np.zeros(grid_size), # Baryonic stress 'Lambda': np.zeros(grid_size) } return state # =============================...