Commit 231a52d 1 parent 388c14c commit 231a52d Copy full SHA for 231a52d
File tree 1 file changed +0
-8
lines changed
Models/SingletStandardModel_Z2
1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -130,15 +130,11 @@ def topMsqDerivative(fields: Fields) -> Fields:
130
130
[fields .getField (0 ), 0 * fields .getField (1 )]
131
131
)
132
132
133
- def topMsqThermal (T : float ) -> float :
134
- return self .modelParameters ["g3" ] ** 2 * T ** 2 / 6.0
135
-
136
133
topQuark = Particle (
137
134
"top" ,
138
135
index = 0 ,
139
136
msqVacuum = topMsqVacuum ,
140
137
msqDerivative = topMsqDerivative ,
141
- msqThermal = topMsqThermal ,
142
138
statistics = "Fermion" ,
143
139
totalDOFs = 12 ,
144
140
)
@@ -155,15 +151,11 @@ def gluonMsqVacuum(fields: Fields) -> Fields:
155
151
def gluonMsqDerivative (fields : Fields ) -> Fields :
156
152
return np .zeros_like (fields )
157
153
158
- def gluonMsqThermal (T : float ) -> float :
159
- return self .modelParameters ["g3" ] ** 2 * T ** 2 * 2.0
160
-
161
154
gluon = Particle (
162
155
"gluon" ,
163
156
index = 1 ,
164
157
msqVacuum = gluonMsqVacuum ,
165
158
msqDerivative = gluonMsqDerivative ,
166
- msqThermal = gluonMsqThermal ,
167
159
statistics = "Boson" ,
168
160
totalDOFs = 16 ,
169
161
)
You can’t perform that action at this time.
0 commit comments