Skip to content

Commit 873e75d

Browse files
removed thermal mass from ManySinglets, Yukawa and SM
1 parent 231a52d commit 873e75d

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

Models/ManySinglets/manySinglets.py

-4
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,11 @@ def topMsqDerivative(fields: Fields) -> Fields:
123123
]
124124
)
125125

126-
def topMsqThermal(T: float) -> float:
127-
return self.modelParameters["g3"] ** 2 * T**2 / 6.0
128-
129126
topQuark = Particle(
130127
"top",
131128
index=0,
132129
msqVacuum=topMsqVacuum,
133130
msqDerivative=topMsqDerivative,
134-
msqThermal=topMsqThermal,
135131
statistics="Fermion",
136132
totalDOFs=12,
137133
)

Models/StandardModel/standardModel.py

-9
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,11 @@ def topMsqVacuum(fields: Fields) -> Fields:
119119
def topMsqDerivative(fields: Fields) -> Fields:
120120
return self.modelParameters["yt"] ** 2 * fields.getField(0)
121121

122-
def topMsqThermal(T: float) -> float:
123-
return self.modelParameters["g3"] ** 2 * T**2 / 6.0
124-
125122
topQuarkL = Particle(
126123
name="TopL",
127124
index=0,
128125
msqVacuum=topMsqVacuum,
129126
msqDerivative=topMsqDerivative,
130-
msqThermal=topMsqThermal,
131127
statistics="Fermion",
132128
totalDOFs=6,
133129
)
@@ -138,7 +134,6 @@ def topMsqThermal(T: float) -> float:
138134
index=1,
139135
msqVacuum=topMsqVacuum,
140136
msqDerivative=topMsqDerivative,
141-
msqThermal=topMsqThermal,
142137
statistics="Fermion",
143138
totalDOFs=6,
144139
)
@@ -151,15 +146,11 @@ def WMsqVacuum(fields: Fields) -> Fields: # pylint: disable=invalid-name
151146
def WMsqDerivative(fields: Fields) -> Fields: # pylint: disable=invalid-name
152147
return self.modelParameters["g2"] ** 2 * fields.getField(0) / 2
153148

154-
def WMsqThermal(T: float) -> float: # pylint: disable=invalid-name
155-
return self.modelParameters["g2"] ** 2 * T**2 * 3.0 / 5.0
156-
157149
wBoson = Particle(
158150
name="W",
159151
index=4,
160152
msqVacuum=WMsqVacuum,
161153
msqDerivative=WMsqDerivative,
162-
msqThermal=WMsqThermal,
163154
statistics="Boson",
164155
totalDOFs=9,
165156
)

Models/Yukawa/yukawa.py

-6
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,11 @@ def psiMsqDerivative(fields: Fields) -> Fields:
6464
)
6565
)
6666

67-
# Asymptotic thermal mass (twice the static thermal mass)
68-
def psiMsqThermal(T: float) -> float:
69-
return 1 / 8 * self.modelParameters["y"] ** 2 * T**2
70-
7167
psiL = Particle(
7268
"psiL",
7369
index=1,
7470
msqVacuum=psiMsqVacuum,
7571
msqDerivative=psiMsqDerivative,
76-
msqThermal=psiMsqThermal,
7772
statistics="Fermion",
7873
totalDOFs=2,
7974
)
@@ -82,7 +77,6 @@ def psiMsqThermal(T: float) -> float:
8277
index=2,
8378
msqVacuum=psiMsqVacuum,
8479
msqDerivative=psiMsqDerivative,
85-
msqThermal=psiMsqThermal,
8680
statistics="Fermion",
8781
totalDOFs=2,
8882
)

0 commit comments

Comments
 (0)