def
definition
sectorOf
show as:
view math explainer →
open explainer
Generate a durable explainer page for this declaration.
open lean source
IndisputableMonolith.Masses.RungConstructor.Basic on GitHub at line 24.
browse module
All declarations in this module, on Recognition.
explainer page
depends on
-
H -
Charge -
H -
Lepton -
as -
Sector -
W -
Z -
Sector -
sectorOf -
Sector -
Species -
Species -
Z -
Lepton -
W -
W -
RSBridge -
Sector -
sectorOf
used by
formal source
21 deriving DecidableEq, Repr
22
23/-- Sector mapping for the rung constructor. -/
24def sectorOf : Species → Sector
25 | .fermion f =>
26 match RSBridge.sectorOf f with
27 | .lepton => .Lepton
28 | .neutrino => .Neutrino
29 | .up => .UpQuark
30 | .down => .DownQuark
31 | .W | .Z | .H => .Electroweak
32
33/-- Charge-index q̃ used as input to the constructor motifs. -/
34def tildeQ : Species → ℤ
35 | .fermion f => RSBridge.tildeQ f
36 | .W => 0
37 | .Z => 0
38 | .H => 0
39
40end RungConstructor
41end Masses
42end IndisputableMonolith