PySDM_examples.Arabas_et_al_2023.commons
ABIFM and INAS parameters and other constants
1""" ABIFM and INAS parameters and other constants """ 2 3from PySDM import Formulae 4from PySDM.physics import si 5 6FREEZING_CONSTANTS = { 7 "dust": { 8 "NIEMAND_A": -0.517, 9 "NIEMAND_B": 8.934, 10 "ABIFM_M": 22.62, 11 "ABIFM_C": -1.35, 12 }, 13 "illite": {"ABIFM_M": 54.48, "ABIFM_C": -10.67}, 14} 15 16COOLING_RATES = (-3.75 * si.K / si.min, -0.75 * si.K / si.min, -0.15 * si.K / si.min) 17 18BEST_FIT_LN_S_GEOM = 0.25 19 20LOGNORMAL_MODE_SURF_A = Formulae().trivia.sphere_surface(diameter=0.74 * si.um) 21LOGNORMAL_SGM_G = 2.55 22 23TEMP_RANGE = (250 * si.K, 230 * si.K)
FREEZING_CONSTANTS =
{'dust': {'NIEMAND_A': -0.517, 'NIEMAND_B': 8.934, 'ABIFM_M': 22.62, 'ABIFM_C': -1.35}, 'illite': {'ABIFM_M': 54.48, 'ABIFM_C': -10.67}}
COOLING_RATES =
(-0.0625, -0.0125, -0.0025)
BEST_FIT_LN_S_GEOM =
0.25
LOGNORMAL_MODE_SURF_A =
1.7203361371057708e-12
LOGNORMAL_SGM_G =
2.55
TEMP_RANGE =
(250.0, 230.0)