This note makes the numerical workflow for locating and characterizing the Cosmic Fixed Point fully explicit and reproducible. It documents the algorithms, truncation scheme, regulator assumptions, and projection operators used in the publicly available codebase, with runnable examples.
python/src/irh/core/v18/rg_flow.pypython/src/irh/core/v18/cgft_action.pypython/src/irh/core/v18/spectral_dimension.pypython/src/irh/core/v18/physical_constants.pypython/src/irh/core/v18/topology.pypython/tests/v18/No external datasets are required; all calculations are derived from the analytical beta functions and solved with open-source SciPy/Numpy routines.
| Task | API | Method |
|---|---|---|
| Evaluate β-functions | BetaFunctions.evaluate(...) |
One-loop Wetterich truncation (IRHv18 Eq. 1.13) |
| Solve for fixed point | find_fixed_point() |
scipy.optimize.fsolve on β=0 |
| Integrate RG flow | integrate_rg_flow(...) |
scipy.integrate.solve_ivp (RK45) with user-supplied span |
| Stability analysis | StabilityAnalysis.compute_stability_matrix() / .compute_eigenvalues() |
Analytic Jacobian projection onto {λ̃, γ̃, μ̃} |
| Certified C_H | compute_C_H_certified() |
Closed-form ratio 3λ̃/2γ̃ with stored 12+ decimal value |
compute_stability_matrix). This yields eigenvalues/eigendirections used for relevance classification.Run from the repo root:
cd python
export PYTHONPATH=$(pwd)/src
python - <<'PY'
from irh.core.v18.rg_flow import (
find_fixed_point,
integrate_rg_flow,
StabilityAnalysis,
compute_C_H_certified,
)
# Fixed point solve (β=0)
fp = find_fixed_point()
print("Fixed point couplings:", fp.lambda_star, fp.gamma_star, fp.mu_star)
print("C_H:", fp.C_H)
# RG trajectory toward IR
traj = integrate_rg_flow((60.0, 90.0, 120.0), t_span=(0, -6), num_points=25)
print("Final couplings (IR):", traj.couplings_final)
# Stability and projection
analysis = StabilityAnalysis(fp).full_analysis()
print("Eigenvalues:", analysis["eigenvalues"])
print("Operator classes:", analysis["operator_classifications"])
# Certified universal exponent
print("Certified C_H payload:", compute_C_H_certified())
PY
SpectralDimensionFlow (spectral_dimension.py) integrates the return probability and enforces d_spec → 4.FineStructureConstant, FermionMassCalculator (physical_constants.py) provide closed-form evaluations linked to the fixed point.StandardModelTopology (topology.py) computes β₁ = 12 and n_inst = 3 with deterministic combinatorics.EinsteinEquations and LorentzInvarianceViolation (emergent_gravity.py) derive Λ_* and ξ with no external data.DarkEnergyModule (dark_energy.py) and EmergentSpacetime (emergent_spacetime.py) carry the holographic and geometric calculations.Each module is fully contained in python/src/irh/core/v18/ and exercised by the public tests in python/tests/v18/. No hidden datasets or proprietary binaries are used.