def
definition
Admissible
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.MaxwellDEC on GitHub at line 84.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
of -
mu -
via -
Admissible -
Admissible -
of -
is -
of -
is -
of -
for -
is -
of -
admissible -
is -
HasHodge -
Medium -
and -
Admissible -
density -
M -
M
used by
-
BWD3Model -
Admissible -
PreferLex -
Admissible -
composeGenerators_preserves -
CounterexampleWitness -
FiniteLatticeEnumerationCert -
finiteLatticeEnumerationCert_holds -
identityWitness -
identity_witness_reachable -
Preserves -
ReachabilityWitness -
reachability_witness_yields_reachable -
reachable_implies_sigma_preserving -
ReachableTransition -
SearchClosed -
SigmaPreserving -
SigmaPreservingIsReachable -
singletonWitness -
singleton_witness_reachable -
trivial_search_closed -
fifteenth_generator_required_iff_not_rich -
reachable_of_rich -
RichGeneratorAction -
rich_iff_only_id_on_admissible_for_empty_G -
SigmaPreservingProofCert -
sigmaPreservingProofCert_holds -
genOf_surjective -
energy2_nonneg_pointwise -
HonestPhaseAdmissible -
Admissible -
admissible_of_components_bound -
attachmentWithMargin_of_threeBudgets -
christmas_attachment_of_explicit_budgets -
axisAdditive_linear -
F_quarter_not_alternative -
genOf_surjective
formal source
81 fun s => ω s * (h ▸ (HasHodge.star (k:=2) ω)) s
82
83/-- Admissibility: strictly positive material parameters. -/
84def Admissible [HasHodge α] (M : Medium α) : Prop := 0 < M.eps ∧ 0 < M.mu
85
86/-- Positivity of the Hodge energy density for admissible media, provided the
87 instance supplies `star2_psd`. This is signature-agnostic and delegates the
88 sign choice to the instance via `star2_psd`. -/
89theorem energy2_nonneg_pointwise
90 [inst : HasHodge α] (h : inst.n - 2 = 2) (M : Medium α) (hadm : Admissible (α:=α) M) (ω : DForm α 2)
91 : ∀ s, 0 ≤ energy2 (α:=α) ω h s := by
92 intro s
93 have hpsd := HasHodge.star2_psd (α:=α) h ω s
94 simp [energy2]
95 exact hpsd
96
97/-- PEC boundary descriptor (edges where tangential E vanishes). -/
98structure PEC (β : Type) where
99 boundary1 : Set (Simplex β 1)
100
101end MaxwellDEC
102end IndisputableMonolith