Commit 30a0fbf 1 parent c195c11 commit 30a0fbf Copy full SHA for 30a0fbf
File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ def setupCollisionModel_QCDEW(
51
51
# Define mass helper functions. We need the mass-squares in units of temperature, ie. m^2 / T^2.
52
52
# These should take in a WallGoCollision.ModelParameters object and return a floating-point value
53
53
54
+ # Note that the particular values of masses here are for a comparison with arXiv:hep-ph/9506475.
55
+ # Doubly weak diagrams have been neglected as subleading in the comparison.
56
+ # For proceeding beyond the leading-log approximation one should use the asymptotic masses.
54
57
# For quarks we include the thermal mass only
55
58
def quarkThermalMassSquared (p : WallGoCollision .ModelParameters ) -> float :
56
59
gs = p ["gs" ] # this is equivalent to: gs = p.getParameterValue("gs")
@@ -60,7 +63,7 @@ def gluonThermalMassSquared(p: WallGoCollision.ModelParameters) -> float:
60
63
return 2.0 * p ["gs" ] ** 2
61
64
62
65
def wBosonThermalMassSquared (p : WallGoCollision .ModelParameters ) -> float :
63
- return 11 .0 * p ["gw" ] ** 2 / 6 .0
66
+ return 3 .0 * p ["gw" ] ** 2 / 5 .0
64
67
65
68
def HiggsBosonThermalMassSquared (p : WallGoCollision .ModelParameters ) -> float :
66
69
return (9 * p ["gw" ] ** 2 / 4 + 3 * p ["yt" ]) / 12.0
Original file line number Diff line number Diff line change @@ -426,6 +426,11 @@ def updateCollisionModel(
426
426
427
427
gs = inWallGoModel .modelParameters ["g3" ] # names differ for historical reasons
428
428
gw = inWallGoModel .modelParameters ["g2" ] # names differ for historical reasons
429
+
430
+
431
+ # Note that the particular values of masses here are for a comparison with arXiv:hep-ph/9506475.
432
+ # For proceeding beyond the leading-log approximation one should use the asymptotic masses.
433
+ # For quarks we include the thermal mass only
429
434
changedParams .addOrModifyParameter ("gs" , gs )
430
435
changedParams .addOrModifyParameter ("gw" , gw )
431
436
changedParams .addOrModifyParameter (
@@ -435,7 +440,7 @@ def updateCollisionModel(
435
440
"mg2" , 2.0 * gs ** 2
436
441
) # gluon thermal mass^2 in units of T
437
442
changedParams .addOrModifyParameter (
438
- "mw2" , 11 .0 * gw ** 2 / 6 .0
443
+ "mw2" , 3 .0 * gw ** 2 / 5 .0
439
444
) # W boson thermal mass^2 in units of T
440
445
441
446
inOutCollisionModel .updateParameters (changedParams )
You can’t perform that action at this time.
0 commit comments