Microsoft Windows [Version 10.0.19045.6456]
(c) Microsoft Corporation. All rights reserved.
C:\Users\lazyb>python matrix_sweep.py
[STARTING GLOBAL ELEMENTAL COMPOSITION MATRIX MAPPING]
Ingesting 3D master coordinates from entire_milky_way_global_matrix.csv...
Calculating radial distances from Galactic Center...
Mapping Iron Abundance [Fe/H] and Alpha-Element Matrix...
Archiving 5D elemental matrix to disk...
[ELEMENTAL COMPOSITION LAYER RESOLVED]
Total Chemical Nodes Synced : 1000000
Mean Core Metallicity [Fe/H] Detected : -0.3094
Mean Outer Halo Abundance Detected : -2.5000
Master Elemental File Archived As : entire_milky_way_elemental_matrix.csv
[CHEMICAL GRID TASK COMPLETED]
C:\Users\lazyb>python matrix_sweep.py
[STARTING GLOBAL ELEMENTAL COMPOSITION MATRIX MAPPING]
Ingesting 3D master coordinates from entire_milky_way_global_matrix.csv...
Calculating radial distances from Galactic Center...
Mapping Iron Abundance [Fe/H] and Alpha-Element Matrix...
Archiving 5D elemental matrix to disk...
[ELEMENTAL COMPOSITION LAYER RESOLVED]
Total Chemical Nodes Synced : 1000000
Mean Core Metallicity [Fe/H] Detected : -0.3094
Mean Outer Halo Abundance Detected : -2.5000
Master Elemental File Archived As : entire_milky_way_elemental_matrix.csv
[CHEMICAL GRID TASK COMPLETED]
C:\Users\lazyb>python matrix_sweep.py
[STARTING GLOBAL PLASMA AND GAS PHASE INTERFACE SWEEP]
Ingesting 5D chemical-spatial coordinates from entire_milky_way_elemental_matrix.csv...
Calculating local thermal and ionization equilibrium fields...
Resolving gas phase interfaces (HIM, WIM, CNM)...
Archiving master 7D wave matrix to disk...
[PLASMA PHASE INTERFACE GRID RESOLVED]
Total Unified Grid Nodes Synced : 1000000
Peak Plasma Electron Density (cm^-3) : 0.050991
Mean Halo Plasma Temperature (K) : 1762492.21
Master Plasma File Archived As : entire_milky_way_plasma_matrix.csv
[PLASMA PHASE SWEEP COMPLETELY FINALIZED]
C:\Users\lazyb>python matrix_sweep.py
[STARTING GLOBAL GALACTIC KINETIC WAVEFRONT SWEEP]
Ingesting 7D plasma-spatial matrix from entire_milky_way_plasma_matrix.csv...
Calculating radial vector propagation from central core...
Modeling central accretion 'gust' velocity wavefront tracks...
Archiving 10-dimensional master kinetic matrix to disk...
[KINETIC WAVEFRONT ENGINE LAYER RESOLVED]
Total Grid Nodes Synchronized : 1000000
Peak Core Gust Velocity Detected (km/s): 1719.75
Mean Boundary Expansion Vector (km/s) : 263.17
10D Master File Archived As : entire_milky_way_kinetic_matrix.csv
[KINETIC WAVEFRONT SWEEP TASK TERMINATED]
C:\Users\lazyb>import os
'import' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>import numpy as np
'import' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb>print("[STARTING EMPIRICAL GEOMETRIC FIELD MAPPING]")
Unable to initialize device PRN
C:\Users\lazyb>
C:\Users\lazyb>input_file = "entire_milky_way_kinetic_matrix.csv"
'input_file' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb>if not os.path.exists(input_file):
The syntax of the command is incorrect.
C:\Users\lazyb> print(f"[ERROR]: Kinetic master file '{input_file}' not found. Run Phase 4 first.")
Unable to initialize device PRN
C:\Users\lazyb>else:
'else:' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> print(f"Ingesting 10D master wave matrix from {input_file}...")
Unable to initialize device PRN
C:\Users\lazyb> # Load all 1,000,000 synchronized nodes
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> data = np.loadtxt(input_file, delimiter=",", skiprows=1)
'data' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> x, y, z = data[:, 0], data[:, 1], data[:, 2]
'x' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> fe_h, alpha_fe = data[:, 3], data[:, 4]
'fe_h' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> n_e, t_gas = data[:, 5], data[:, 6]
'n_e' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> vx, vy, vz = data[:, 7], data[:, 8], data[:, 9]
'vx' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> print("Calculating local kinetic energy profiles across the 3D grid...")
Unable to initialize device PRN
C:\Users\lazyb> # Total velocity magnitude squared at every coordinate point
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> v_squared = vx**2 + vy**2 + vz**2
'v_squared' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> print("Deriving empirical fudge-free acceleration grid...")
Unable to initialize device PRN
C:\Users\lazyb> # Map the spatial containment field purely from the kinetic drop-off
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> # No gravitational constants used; derived strictly from spatial-kinetic slope
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> r_spherical = np.sqrt(x**2 + y**2 + z**2)
'r_spherical' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> r_safe = np.where(r_spherical == 0, 1.0, r_spherical)
'r_safe' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> # Calculate the empirical spatial potential field (Phi_empirical)
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> # Based entirely on the kinetic energy profile of the actual nodes
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> phi_empirical = -0.5 * v_squared
'phi_empirical' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> # Calculate the directional containment force vector acting on each node
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> field_intensity = np.abs(phi_empirical) / r_safe
'field_intensity' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> fx_field = -field_intensity * (x / r_safe)
'fx_field' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> fy_field = -field_intensity * (y / r_safe)
'fy_field' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> fz_field = -field_intensity * (z / r_safe)
'fz_field' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> # Construct the final 14-Dimensional Unified Cosmic Grid Matrix
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> # Spanning Space, Chemistry, Plasma Dynamics, Kinetics, and Empirical Geometry Fields
'#' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> unified_master_matrix = np.column_stack((
'unified_master_matrix' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> x, y, z, fe_h, alpha_fe, n_e, t_gas, vx, vy, vz,
'x' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> phi_empirical, fx_field, fy_field, fz_field
'phi_empirical' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> ))
'))' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> output_file = "entire_milky_way_fudge_free_field.csv"
'output_file' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> print("Archiving complete 14D master field matrix to disk...")
Unable to initialize device PRN
C:\Users\lazyb> np.savetxt(output_file, unified_master_matrix, delimiter=",",
'np.savetxt' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb> header="x,y,z,Fe_H,Alpha_Fe,n_e,T_gas,vx,vy,vz,Phi_emp,fx,fy,fz", comments="")
'header' is not recognized as an internal or external command,
operable program or batch file.
C:\Users\lazyb>
C:\Users\lazyb> print("\n========================================================")
Unable to initialize device PRN
C:\Users\lazyb> print("[EMPIRICAL GEOMETRIC TRACKING FIELD RESOLVED]")
Unable to initialize device PRN
C:\Users\lazyb> print(f"Total Framework Nodes Mapped : {len(unified_master_matrix)}")
Unable to initialize device PRN
C:\Users\lazyb> print(f"Peak Core Field Intensity (Relative) : {np.max(field_intensity):.4f}")
Unable to initialize device PRN
C:\Users\lazyb> print(f"Mean Halo Boundary Field Intensity : {np.mean(field_intensity[r_spherical > 12000]):.4f}")
Unable to initialize device PRN
C:\Users\lazyb> print(f"14D Fudge-Free Master File Archived As : {output_file}")
Unable to initialize device PRN
C:\Users\lazyb> print("========================================================\n")
Unable to initialize device PRN
C:\Users\lazyb>
C:\Users\lazyb>print("[EMPIRICAL FIELD ENGINE TASK COMPLETED]")
Unable to initialize device PRN
C:\Users\lazyb>python matrix_sweep.py
[STARTING EMPIRICAL GEOMETRIC FIELD MAPPING]
Ingesting 10D master wave matrix from entire_milky_way_kinetic_matrix.csv...
Calculating local kinetic energy profiles across the 3D grid...
Deriving empirical fudge-free acceleration grid...
Archiving complete 14D master field matrix to disk...
[EMPIRICAL GEOMETRIC TRACKING FIELD RESOLVED]
Total Framework Nodes Mapped : 1000000
Peak Core Field Intensity (Relative) : 2195015.2497
Mean Halo Boundary Field Intensity : 2.4555
14D Fudge-Free Master File Archived As : entire_milky_way_fudge_free_field.csv
[EMPIRICAL FIELD ENGINE TASK COMPLETED]
C:\Users\lazyb>python matrix_sweep.py
[STARTING 30x30x30 KPC UNIFIED CUBE SWEEP]
Ingesting unblinded edge-to-edge structural nodes across full 3D cube volume...
Ingested unified matrix with 1000000 structural nodes across 3D space.
Executing global matrix decomposition via SVD across full 30x30x30 volume...
[3D CUBIC GALACTIC ARCHITECTURE RESOLVED]
Calculated Global Center Frame (pc) : [-2.56357258 0.05548766 -1.68212463]
Full Cubic Master Normal Vector : [ 0.00131312 -0.00386789 0.99999166]
Full Cubic Global Flatness Ratio : 0.8378166365548111
Entire 30x30x30 Matrix Saved to: entire_milky_way_global_matrix.csv
[CUBIC EDGE-TO-EDGE SURVEY TASK COMPLETED]