def
definition
voxel
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Constants.RSNativeUnits on GitHub at line 69.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
PosturalAxis -
alpha_not_tunable -
gap3_resolved -
coeffSign -
encodeIndex -
independent_step_listenNoopProgram -
DecodedSimulationHypothesis -
decodeMag -
foldMinusOneProgram -
foldPlusOneProgram -
SimulationHypothesis -
voxelStep_foldPlusOne_encodeIndex -
cone_bound_export -
c_pos -
E_coh_pos -
hbar_bounds -
alpha_seed -
c -
ExternalCalibration -
lambda_kin_eq_K_gate_ratio -
status -
tick -
U -
dark_energy_dominates -
perpetual_complexity -
VoxelSymmetric -
MediumState -
VorticityVoxel -
HamiltonianDensity -
TotalHamiltonian -
simplicial_foundation_status -
voxel_density_scaling -
dimensionalReinterpretation -
directed_edges_eq_double_entry -
calibration_protocol_hygienic -
c_reports_exact -
Jcost_pos -
hbar_rs_pos -
info_per_voxel -
boundary_encodes_bulk
formal source
66@[simp] def tick : Time := Constants.tick
67
68/-- One voxel: the fundamental length quantum. -/
69@[simp] def voxel : Length := 1
70
71/-! ## Derived speed of light in RS-native units -/
72
73/-- Speed of light: c = ℓ₀/τ₀ = 1 voxel/tick. -/
74@[simp] def c : Velocity := 1
75
76/-! ## Canonical `RSUnits` pack for bridge/cert code -/
77
78/-- RS-native gauge: τ₀ = 1 tick, ℓ₀ = 1 voxel, c = 1. -/
79@[simp] noncomputable def U : RSUnits :=
80{ tau0 := tick
81, ell0 := voxel
82, c := c
83, c_ell0_tau0 := by simp [tick, voxel, c] }
84
85@[simp] lemma U_tau0 : U.tau0 = 1 := rfl
86@[simp] lemma U_ell0 : U.ell0 = 1 := rfl
87@[simp] lemma U_c : U.c = 1 := rfl
88
89/-! ## Coherence and action quanta
90
91`Constants.E_coh = φ⁻⁵` is a **dimensionless** RS-derived number.
92In the RS-native system:
93- **1 coh** (energy quantum) := E_coh
94- **1 act** (action quantum) := ħ = E_coh · τ₀ = E_coh (since τ₀ = 1)
95-/
96
97/-- Coherence energy quantum: φ⁻⁵ ≈ 0.0902. -/
98@[simp] noncomputable def cohQuantum : ℝ := E_coh
99