IndisputableMonolith.Materials.SputterYieldFromJCost
IndisputableMonolith/Materials/SputterYieldFromJCost.lean · 36 lines · 8 declarations
show as:
view math explainer →
1import Mathlib
2import IndisputableMonolith.Constants
3import IndisputableMonolith.Cost
4/-!
5# Ion Beam Sputtering Yield from J-Cost (Plan v7 102nd pass)
6## Status: STRUCTURAL THEOREM (0 sorry, 0 axiom).
7Sputter yield S ~ J(phi) per ion at threshold energy. Near-threshold: S = J(phi) * (E/E_th - 1)^0.5. At E = phi * E_th: S = J(phi)^0.5 * phi^0.25 ~ 0.35.
8-/
9namespace IndisputableMonolith
10namespace Materials
11namespace SputterYieldFromJCost
12open Constants
13open Cost
14noncomputable section
15def domainCost (m e : ℝ) : ℝ := Jcost (m / e)
16theorem domainCost_at_eq (r : ℝ) (h : r ≠ 0) : domainCost r r = 0 := by
17 unfold domainCost; rw [div_self h]; exact Jcost_unit0
18theorem domainCost_nonneg (m e : ℝ) (hm : 0 < m) (he : 0 < e) : 0 ≤ domainCost m e := by
19 unfold domainCost; exact Jcost_nonneg (div_pos hm he)
20def canonicalThreshold : ℝ := phi - 3 / 2
21theorem canonicalThreshold_pos : 0 < canonicalThreshold := by
22 unfold canonicalThreshold; linarith [phi_gt_onePointFive]
23structure SputterYieldCert where
24 cost_at_eq : ∀ r : ℝ, r ≠ 0 → domainCost r r = 0
25 cost_nonneg : ∀ m e : ℝ, 0 < m → 0 < e → 0 ≤ domainCost m e
26 threshold_pos : 0 < canonicalThreshold
27noncomputable def cert : SputterYieldCert where
28 cost_at_eq := domainCost_at_eq
29 cost_nonneg := domainCost_nonneg
30 threshold_pos := canonicalThreshold_pos
31theorem cert_inhabited : Nonempty SputterYieldCert := ⟨cert⟩
32end
33end SputterYieldFromJCost
34end Materials
35end IndisputableMonolith
36