pith. machine review for the scientific record. sign in
def

solar_radiative_correction

definition
show as:
view math explainer →
module
IndisputableMonolith.Physics.MixingGeometry
domain
Physics
line
46 · github
papers citing
none yet

open explainer

Generate a durable explainer page for this declaration.

open lean source

IndisputableMonolith.Physics.MixingGeometry on GitHub at line 46.

browse module

All declarations in this module, on Recognition.

explainer page

Tracked in the explainer inventory; generation is lazy so crawlers do not trigger LLM jobs.

open explainer

depends on

used by

formal source

  43
  44/-- The solar radiative correction factor.
  45    Estimated as (E_passive - 1) * alpha. -/
  46noncomputable def solar_radiative_correction : ℝ := 10 * Constants.alpha
  47
  48/-- **THEOREM: Solar Angle Forced**
  49    The solar mixing angle is derived from the phi^-2 scaling with a
  50    10-alpha radiative correction. -/
  51theorem solar_angle_forced :
  52    solar_weight - solar_radiative_correction = phi ^ (-2 : ℤ) - 10 * Constants.alpha := by
  53  unfold solar_weight solar_radiative_correction
  54  ring
  55
  56/-- The atmospheric mixing weight (maximal parity mix). -/
  57noncomputable def atmospheric_weight : ℝ := 1 / 2
  58
  59/-- The atmospheric radiative correction factor.
  60    Estimated as Faces * alpha. -/
  61noncomputable def atmospheric_radiative_correction : ℝ := 6 * Constants.alpha
  62
  63/-- **THEOREM: Atmospheric Angle Forced**
  64    The atmospheric mixing angle is derived from the maximal parity mix
  65    with a face-mediated radiative correction. -/
  66theorem atmospheric_angle_forced :
  67    atmospheric_weight + atmospheric_radiative_correction = 1 / 2 + 6 * Constants.alpha := by
  68  unfold atmospheric_weight atmospheric_radiative_correction
  69  ring
  70
  71/-- The reactor mixing weight (octave closure). -/
  72noncomputable def reactor_weight : ℝ := phi ^ (-8 : ℤ)
  73
  74/-! ## Quarter-Ladder Steps (Quark Sector) -/
  75
  76/-- Step from Top to Bottom: 7.75 rungs. -/