pub struct RenormalizedCoupling {
pub scheme: RenormalizationScheme,
pub g_bare: f64,
pub g_renorm: f64,
pub mu: f64,
pub divergence_degree: i32,
}Expand description
Scheme-dependent renormalized coupling and counterterms.
Fields§
§scheme: RenormalizationSchemeRenormalization scheme.
g_bare: f64Bare coupling g₀.
g_renorm: f64Renormalized coupling g(μ).
mu: f64Renormalization scale μ.
divergence_degree: i32UV divergence degree (dimensionless; 0 = finite, n = power/log divergence).
Implementations§
Source§impl RenormalizedCoupling
impl RenormalizedCoupling
Sourcepub fn new(
scheme: RenormalizationScheme,
g_bare: f64,
mu: f64,
divergence_degree: i32,
) -> Self
pub fn new( scheme: RenormalizationScheme, g_bare: f64, mu: f64, divergence_degree: i32, ) -> Self
Construct a renormalized coupling in the given scheme.
Sourcepub fn convert_msbar_to_mom(&self, delta: f64) -> f64
pub fn convert_msbar_to_mom(&self, delta: f64) -> f64
Scheme change: convert g(μ) from MS-bar to MOM (one-loop).
g_MOM = g_MSbar [1 + Δ g_MSbar / (16π²)] where Δ is scheme-difference coefficient.
Trait Implementations§
Source§impl Clone for RenormalizedCoupling
impl Clone for RenormalizedCoupling
Source§fn clone(&self) -> RenormalizedCoupling
fn clone(&self) -> RenormalizedCoupling
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RenormalizedCoupling
impl RefUnwindSafe for RenormalizedCoupling
impl Send for RenormalizedCoupling
impl Sync for RenormalizedCoupling
impl Unpin for RenormalizedCoupling
impl UnsafeUnpin for RenormalizedCoupling
impl UnwindSafe for RenormalizedCoupling
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.