structure
definition
Params
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Relativity.ILG.Params on GitHub at line 8.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
kappa_discreteness -
logSpiral_ne_zero -
perTurn_ratio -
RotorPitch -
stepRatio_invariant_under_r0 -
stepRatio_logSpiral_closed_form -
tesla_turbine_master -
ParamProps -
Params -
w_t -
w_t_display -
w_t_ge_one -
w_t_nonneg -
w_t_nonneg_with -
w_t_ref -
w_t_ref_with -
w_t_rescale -
w_t_rescale_with -
w_t_with -
rotational_flatness_forced -
rotational_flatness_implies_nonzero_vflat -
rotational_flatness_implies_positive_vflat -
w_t_formula_grounded -
is_ilg_vrot -
solution_exists -
ParamProps -
Params -
ParamsKernelVerified -
paramsKernel_verified_any -
ParamProps -
ELStationary -
logSpiral -
Params -
perTurnMultiplier -
sampledCost -
stepRatio -
ILG_w_t_display
formal source
5namespace ILG
6
7/-- Minimal parameter record used by downstream modules. -/
8structure Params where
9 alpha : ℝ := 1
10 Clag : ℝ := 0
11
12structure ParamProps (P : Params) : Prop :=
13 (alpha_nonneg : 0 ≤ P.alpha)
14 (Clag_nonneg : 0 ≤ P.Clag)
15
16end ILG
17end Relativity
18end IndisputableMonolith