Experimental validation of the Lattice Field Medium (LFM) substrate theory.
This repository contains reproducible experiments demonstrating that fundamental physics emerges from two simple wave equations:
GOV-01 (Wave dynamics):
∂²E/∂t² = c²∇²E − χ²E
GOV-02 (χ dynamics from energy):
∂²χ/∂t² = c²∇²χ − κ(E² − E₀²)
📖 See LFM_EQUATIONS.md for complete equation reference, numerical implementation details, and experiment rules.
Where:
- E = Wave amplitude/energy field
- χ = Local "mass" parameter (creates curvature)
- χ₀ = 19 = Background χ (fundamental constant)
- κ = 1/63 = Coupling constant (derived from lattice geometry)
| Force/Phenomenon | Mechanism | Folder |
|---|---|---|
| All Four Forces | Single lattice, GOV-01+02 only | four_forces/ |
| Gravity | χ-wells from energy concentration | gravity/ |
| Electromagnetism | Phase θ interference | electromagnetism/ |
| Strong Force | χ-gradients between color sources | nuclear_physics/ |
| Weak Force | Momentum density coupling | nuclear_physics/ |
| Quantum Mechanics | Wave boundary conditions | quantum_mechanics/ |
| Classical Mechanics | Wave packet dynamics | classical_mechanics/ |
| Cosmology | Large-scale χ evolution | cosmology/ |
| Higgs Physics | Self-coupling from lattice geometry | higgs_physics/ |
LFMPublicExperiments/
├── notebooks/ # Colab notebooks (interactive tutorials)
├── classical_mechanics/ # Projectile motion, orbits
├── quantum_mechanics/ # Particle in box, tunneling
├── gravity/ # Kepler, precession, binary mergers
│ ├── gravitational_waves/ # Binary merger, NS merger, QNM ringdown
│ ├── relativistic_effects/ # Time dilation, frame dragging, SEP
│ └── rotation_curves/ # 175 SPARC galaxy fits
├── electromagnetism/ # Coulomb, charge dynamics
├── four_forces/ # All 4 forces from GOV-01/02
├── nuclear_physics/ # QGP, confinement
│ └── qgp_phase/ # Phase transition experiments
├── cosmology/ # Dark energy, horizons, cosmic web
├── higgs_physics/ # Self-coupling λ=4/31 from geometry
├── tools/ # Verification & test utilities
├── LFM_EQUATIONS.md # Equation reference & experiment rules
└── README.md
Each experiment:
- Uses ONLY GOV-01/02 (no external physics injected)
- Has explicit hypothesis framework (H₀ / H₁)
- Reports whether H₀ is REJECTED or NOT REJECTED
- Saves results to JSON
cd classical_mechanics
python lfm_projectile_motion.pyRun the first physics-only substrate tutorial experiment:
gravity/lfm_foundation_1d_substrate.py
This script demonstrates three core LFM behaviors from GOV-01/GOV-02 only:
- Wave propagation in uniform χ background
- Propagation change across a high-χ barrier
- χ-well formation from localized energy via GOV-02 coupling
Files follow: lfm_{phenomenon}_{detail}.py
Examples:
lfm_projectile_motion.py- Parabolic trajectory emergencelfm_particle_in_box.py- Quantized energy levelslfm_binary_merger.py- Black hole inspiral/merger/ringdownlfm_qgp_phase_transition.py- Quark-gluon plasma
χ₀ = 19 determines all of physics.
From this single integer:
- Fine structure constant α = (χ₀-8)/(480π) → 1/137.088 (0.04% error)
- Proton/electron mass ratio = (χ₀-8)³ + χ₀² + (χ₀-7)² = 1836 (0.008% error)
- Strong coupling α_s = 2/(χ₀-2) = 0.1176 (0.25% error)
- Number of gluons = χ₀ - 11 = 8 (EXACT)
- Fermion generations = (χ₀-1)/6 = 3 (EXACT)
- Dark energy fraction Ω_Λ = (χ₀-2D)/χ₀ = 13/19 = 0.6842 (0.12% error)
@misc{partin2026lfm,
author = {Partin, Greg D.},
title = {LFM Public Experiments},
year = {2026},
publisher = {GitHub},
url = {https://github.com/gpartin/LFMPublicExperiments}
}MIT License — see LICENSE