def
definition
shell
show as:
view math explainer →
open explainer
Read the cached plain-language explainer.
open lean source
IndisputableMonolith.Chemistry.PeriodicBlocks on GitHub at line 17.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
used by
-
k_larger_shell_than_li -
na_larger_than_cl -
screeningFactor -
shellNumber -
astatine_in_halogen_list -
eaProxy -
noble_gas_ea_zero -
enProxy -
blocks_holds -
cumulative_closure_eq_noble -
default -
distToNextClosure -
nextClosure -
noble_gas_at_closure -
shellCapacity -
signedValenceCost -
nobleGasBoilingPoint -
bet2_for_galerkin -
CoerciveL2Bound -
RM2Closed -
vev_GeV -
first_shell_capacity -
second_shell_capacity -
shellCapacity -
subshell_capacity_formula -
third_shell_capacity -
dftExchangeCert -
xc_at_phi_band -
xc_closed_shell_zero -
xcContribution
formal source
14
15noncomputable def block_capacity (n : Nat) : ℝ := Constants.phi ^ (2 * n)
16
17noncomputable def shell (n : Nat) : ℝ := Constants.E_coh * block_capacity n
18
19/-- Identity: shell scale equals `E_coh` times capacity at each n. -/
20@[simp] theorem blocks_holds (n : Nat) : shell n = Constants.E_coh * block_capacity n := by
21 rfl
22
23end Chemistry
24end IndisputableMonolith
25
26