Skip to content

reinke_variables

impvardiv = None module-attribute

Index of impurity to be iterated for Reinke divertor detachment criterion

lhat = None module-attribute

Connection length factor L|| = lhat qstar R for Reinke criterion, default value from Post et al. 1995 J. Nucl. Mat. 220-2 1014

fzmin = None module-attribute

Minimum impurity fraction necessary for detachment. This is the impurity at the SOL/Div.

fzactual = None module-attribute

Actual impurity fraction of divertor impurity (impvardiv) in the SoL (taking impurity_enrichment into account) (iteration variable 148)

reinke_mode = None module-attribute

Switch for Reinke criterion H/I mode: - =0 H-mode - =1 I-mode

init_reinke_variables()

Initialise Reinke criterion variables

Source code in process/data_structure/reinke_variables.py
24
25
26
27
28
29
30
31
32
def init_reinke_variables():
    """Initialise Reinke criterion variables"""
    global impvardiv, lhat, fzmin, fzactual, reinke_mode

    impvardiv = 9
    lhat = 4.33
    fzmin = 0.0
    fzactual = 0.001
    reinke_mode = 0