structure
definition
def or abbrev
PressureEquivalence
show as:
view Lean formalization →
formal statement (Lean)
82structure PressureEquivalence where
83 w_kernel : ℝ → ℝ
84 rho_b : ℝ → ℝ
85 delta_b : ℝ → ℝ
86 effective_pressure : ℝ → ℝ
87 equiv : ∀ x, effective_pressure x = w_kernel x * rho_b x * delta_b x
88
89/-- Any ILG kernel with w >= 1 defines a valid pressure equivalence. -/