Skip to content

Commit 231a52d

Browse files
removed thermal mass from singletZ2
1 parent 388c14c commit 231a52d

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Models/SingletStandardModel_Z2/singletStandardModelZ2.py

-8
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,11 @@ def topMsqDerivative(fields: Fields) -> Fields:
130130
[fields.getField(0), 0 * fields.getField(1)]
131131
)
132132

133-
def topMsqThermal(T: float) -> float:
134-
return self.modelParameters["g3"] ** 2 * T**2 / 6.0
135-
136133
topQuark = Particle(
137134
"top",
138135
index=0,
139136
msqVacuum=topMsqVacuum,
140137
msqDerivative=topMsqDerivative,
141-
msqThermal=topMsqThermal,
142138
statistics="Fermion",
143139
totalDOFs=12,
144140
)
@@ -155,15 +151,11 @@ def gluonMsqVacuum(fields: Fields) -> Fields:
155151
def gluonMsqDerivative(fields: Fields) -> Fields:
156152
return np.zeros_like(fields)
157153

158-
def gluonMsqThermal(T: float) -> float:
159-
return self.modelParameters["g3"] ** 2 * T**2 * 2.0
160-
161154
gluon = Particle(
162155
"gluon",
163156
index=1,
164157
msqVacuum=gluonMsqVacuum,
165158
msqDerivative=gluonMsqDerivative,
166-
msqThermal=gluonMsqThermal,
167159
statistics="Boson",
168160
totalDOFs=16,
169161
)

0 commit comments

Comments
 (0)