- Introduction
- Renormalization with spherical cutoff
- Renormalization with cubic cutoff
- Custom renormalization scheme
Introduction
W-SLDA Toolkit utilizes a local pairing field predefines.h
file:
/**
* Scheme of pairing field renormalization procedure.
* SPHERICAL_CUTOFF: use spherical momentum space cutoff, in this case you need to set `ec` variable in input file (default).
* CUBIC_CUTOFF: use cubic momentum space cutoff, in this case `ec` will be set to infinity automatically.
* */
#define REGULARIZATION_SCHEME SPHERICAL_CUTOFF
// #define REGULARIZATION_SCHEME CUBIC_CUTOFF
Renormalization with spherical cutoff
#define REGULARIZATION_SCHEME SPHERICAL_CUTOFF
The effective coupling constant is computed according to prescription:
where
with
being average local chemical potential and is reduced mass. stands for energy cutoff scale that can be controlled by tag:# ec 4.9348022 # energy cut-off for regularization scheme, default ec = 0.5*(pi/DX)^2
For more info see arXiv:1008.3933.
Renormalization with cubic cutoff
!!! THIS FEATURE IS EXPERIMENTAL - NEEDS MORE TESTING !!!
#define REGULARIZATION_SCHEME CUBIC_CUTOFF
The effective coupling constant is computed according to prescription:
where
Note: when working with this renormalization scheme value of tag ec
will be ignored.
Custom renormalization scheme
Static codes allow for defining your own renormalization scheme. You need to provide the formula in void modify_potentials(...)
function. See here for example.