qlat_scripts.v1.params_meas — Physical Measurement Parameters¶
Source: qlat/qlat_scripts/v1/params_meas.py
Note: Update this document when updating the source file.
Outline¶
Overview¶
This module defines physical measurement parameters for each ensemble used in continuum-limit extrapolations and physical-unit conversions. All values are set via set_param from rbc_ukqcd_params and accessed at runtime via get_param.
The parameters include:
Inverse lattice spacing
a_inv_gevfor converting lattice quantities to GeVMeson masses (
m_pi,m_kk) in lattice unitsRenormalization constants (
zz_vv,zz_aa) for vector and axial currentsResidual mass
m_resfor domain-wall fermionsLight and heavy quark masses (
m_l,m_h)Mass renormalization factors (
zz_m_l,zz_m_h) for converting to MSbar scheme
Lattice Spacing¶
Tag: a_inv_gev
Inverse lattice spacing in GeV, used to convert lattice-scale quantities to physical units.
Ensemble |
|
|---|---|
|
1.0 |
|
1.023 |
|
1.730 |
|
2.359 |
|
3.148 |
Meson Masses¶
m_pi¶
Pion mass in lattice units.
Ensemble |
|
|---|---|
|
0.2 |
|
0.13975 |
|
0.08049 |
|
0.11790 |
m_kk¶
Kaon mass in lattice units.
Ensemble |
|
|---|---|
|
0.4 |
|
0.504154 |
|
0.28853 |
|
0.17720 |
Renormalization Constants¶
zz_vv¶
Vector current renormalization factor.
Ensemble |
|
|---|---|
|
0.7 |
|
0.72672 |
|
0.71076 |
|
0.74293 |
|
0.77700 |
zz_aa¶
Axial current renormalization factor.
Ensemble |
|
|---|---|
|
0.7 |
|
0.73457 |
|
0.71191 |
|
0.74341 |
|
0.77779 |
Residual Mass¶
Tag: m_res
Domain-wall fermion residual mass in lattice units.
Ensemble |
|
|---|---|
|
0.001 |
|
0.0022824 |
|
0.0006102 |
|
0.0003116 |
|
0.0006296 |
Quark Masses¶
m_l¶
Light quark mass in lattice units.
Ensemble |
|
|---|---|
|
0.01 |
|
0.00107 |
|
0.00078 |
|
0.000678 |
|
0.0006203 |
|
0.0047 |
m_h¶
Heavy (strange) quark mass in lattice units.
Ensemble |
|
|---|---|
|
0.04 |
|
0.0850 |
|
0.0362 |
|
0.02661 |
|
0.02539 |
|
0.0186 |
Mass Renormalization Factors¶
These convert bare lattice quark masses to the MSbar scheme at 3 GeV. Reference: Physical Review D 93, 074505 (2016).
zz_m_l¶
Light quark mass renormalization factor.
Ensemble |
|
|---|---|
|
2.997 / 2.198 |
|
2.997 / 2.198 * 0.9715 |
zz_m_h¶
Heavy quark mass renormalization factor.
Ensemble |
|
|---|---|
|
81.64 / 60.62 |
|
81.64 / 60.62 * 0.9628 |
zz_ss_l / zz_ss_h¶
Inverse mass renormalization factors (1 / zz_m_l and 1 / zz_m_h), computed from the above values.
Examples¶
import qlat as q
q.begin_with_mpi([[1, 1, 1, 4]])
import qlat_scripts.v1 as qs
job_tag = "48I"
# Get inverse lattice spacing
a_inv = qs.get_param(job_tag, "a_inv_gev")
print(f"a^{{-1}} = {a_inv} GeV")
# Get pion mass in lattice units
m_pi = qs.get_param(job_tag, "m_pi")
# Convert to MeV
m_pi_mev = m_pi * a_inv * 1000
print(f"m_pi = {m_pi_mev:.1f} MeV")
# Get renormalization constants
zz_vv = qs.get_param(job_tag, "zz_vv")
zz_aa = qs.get_param(job_tag, "zz_aa")
print(f"Z_V = {zz_vv}, Z_A = {zz_aa}")
q.end_with_mpi()