IndisputableMonolith.Physics.SurfaceScienceFromRS
IndisputableMonolith/Physics/SurfaceScienceFromRS.lean · 35 lines · 4 declarations
show as:
view math explainer →
1import Mathlib
2import IndisputableMonolith.Constants
3
4/-!
5# Surface Science from RS — Materials / B15 Depth
6
7Surface science studies interfaces between phases.
8In RS: surface energy = J(surface_atoms/bulk_atoms) at the canonical band.
9
10Five canonical surface phenomena (adsorption, desorption, surface diffusion,
11surface reconstruction, surface segregation) = configDim D = 5.
12
13Surface adsorption: phi-ladder at rung k gives coverage θ(k) = 1 - φ^(-k).
14
15Lean: 5 phenomena.
16
17Lean status: 0 sorry, 0 axiom.
18-/
19
20namespace IndisputableMonolith.Physics.SurfaceScienceFromRS
21
22inductive SurfacePhenomenon where
23 | adsorption | desorption | surfaceDiffusion | reconstruction | segregation
24 deriving DecidableEq, Repr, BEq, Fintype
25
26theorem surfacePhenomenonCount : Fintype.card SurfacePhenomenon = 5 := by decide
27
28structure SurfaceScienceCert where
29 five_phenomena : Fintype.card SurfacePhenomenon = 5
30
31def surfaceScienceCert : SurfaceScienceCert where
32 five_phenomena := surfacePhenomenonCount
33
34end IndisputableMonolith.Physics.SurfaceScienceFromRS
35