Commit 873e75d 1 parent 231a52d commit 873e75d Copy full SHA for 873e75d
File tree 3 files changed +0
-19
lines changed
3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -123,15 +123,11 @@ def topMsqDerivative(fields: Fields) -> Fields:
123
123
]
124
124
)
125
125
126
- def topMsqThermal (T : float ) -> float :
127
- return self .modelParameters ["g3" ] ** 2 * T ** 2 / 6.0
128
-
129
126
topQuark = Particle (
130
127
"top" ,
131
128
index = 0 ,
132
129
msqVacuum = topMsqVacuum ,
133
130
msqDerivative = topMsqDerivative ,
134
- msqThermal = topMsqThermal ,
135
131
statistics = "Fermion" ,
136
132
totalDOFs = 12 ,
137
133
)
Original file line number Diff line number Diff line change @@ -119,15 +119,11 @@ def topMsqVacuum(fields: Fields) -> Fields:
119
119
def topMsqDerivative (fields : Fields ) -> Fields :
120
120
return self .modelParameters ["yt" ] ** 2 * fields .getField (0 )
121
121
122
- def topMsqThermal (T : float ) -> float :
123
- return self .modelParameters ["g3" ] ** 2 * T ** 2 / 6.0
124
-
125
122
topQuarkL = Particle (
126
123
name = "TopL" ,
127
124
index = 0 ,
128
125
msqVacuum = topMsqVacuum ,
129
126
msqDerivative = topMsqDerivative ,
130
- msqThermal = topMsqThermal ,
131
127
statistics = "Fermion" ,
132
128
totalDOFs = 6 ,
133
129
)
@@ -138,7 +134,6 @@ def topMsqThermal(T: float) -> float:
138
134
index = 1 ,
139
135
msqVacuum = topMsqVacuum ,
140
136
msqDerivative = topMsqDerivative ,
141
- msqThermal = topMsqThermal ,
142
137
statistics = "Fermion" ,
143
138
totalDOFs = 6 ,
144
139
)
@@ -151,15 +146,11 @@ def WMsqVacuum(fields: Fields) -> Fields: # pylint: disable=invalid-name
151
146
def WMsqDerivative (fields : Fields ) -> Fields : # pylint: disable=invalid-name
152
147
return self .modelParameters ["g2" ] ** 2 * fields .getField (0 ) / 2
153
148
154
- def WMsqThermal (T : float ) -> float : # pylint: disable=invalid-name
155
- return self .modelParameters ["g2" ] ** 2 * T ** 2 * 3.0 / 5.0
156
-
157
149
wBoson = Particle (
158
150
name = "W" ,
159
151
index = 4 ,
160
152
msqVacuum = WMsqVacuum ,
161
153
msqDerivative = WMsqDerivative ,
162
- msqThermal = WMsqThermal ,
163
154
statistics = "Boson" ,
164
155
totalDOFs = 9 ,
165
156
)
Original file line number Diff line number Diff line change @@ -64,16 +64,11 @@ def psiMsqDerivative(fields: Fields) -> Fields:
64
64
)
65
65
)
66
66
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
-
71
67
psiL = Particle (
72
68
"psiL" ,
73
69
index = 1 ,
74
70
msqVacuum = psiMsqVacuum ,
75
71
msqDerivative = psiMsqDerivative ,
76
- msqThermal = psiMsqThermal ,
77
72
statistics = "Fermion" ,
78
73
totalDOFs = 2 ,
79
74
)
@@ -82,7 +77,6 @@ def psiMsqThermal(T: float) -> float:
82
77
index = 2 ,
83
78
msqVacuum = psiMsqVacuum ,
84
79
msqDerivative = psiMsqDerivative ,
85
- msqThermal = psiMsqThermal ,
86
80
statistics = "Fermion" ,
87
81
totalDOFs = 2 ,
88
82
)
You can’t perform that action at this time.
0 commit comments