pith. machine review for the scientific record. sign in

IndisputableMonolith.Physics.OceanographyFromRS

IndisputableMonolith/Physics/OceanographyFromRS.lean · 35 lines · 4 declarations

show as:
view math explainer →

open module explainer GitHub source

Explainer status: pending

   1import Mathlib
   2import IndisputableMonolith.Constants
   3
   4/-!
   5# Oceanography from RS — C Earth Science
   6
   7Five canonical ocean layers (surface, thermocline, intermediate, deep, abyssal)
   8= configDim D = 5.
   9
  10In RS: ocean depth follows phi-ladder of recognition density.
  11Surface wave period: ≈ 5-10 s ≈ 5φ/φ range.
  12
  13Thermohaline circulation: 5 canonical gyres = configDim.
  14
  15Lean: 5 ocean layers.
  16
  17Lean status: 0 sorry, 0 axiom.
  18-/
  19
  20namespace IndisputableMonolith.Physics.OceanographyFromRS
  21
  22inductive OceanLayer where
  23  | surface | thermocline | intermediate | deep | abyssal
  24  deriving DecidableEq, Repr, BEq, Fintype
  25
  26theorem oceanLayerCount : Fintype.card OceanLayer = 5 := by decide
  27
  28structure OceanographyCert where
  29  five_layers : Fintype.card OceanLayer = 5
  30
  31def oceanographyCert : OceanographyCert where
  32  five_layers := oceanLayerCount
  33
  34end IndisputableMonolith.Physics.OceanographyFromRS
  35

source mirrored from github.com/jonwashburn/shape-of-logic