PySDM_examples.Pierchala_et_al_2022.commons

common data for use in the Pierchala et al. 2022 example

 1""" common data for use in the
 2  [Pierchala et al. 2022](https://10.1016/j.gca.2022.01.020) example
 3"""
 4
 5from PySDM.physics import constants_defaults as const
 6from PySDM.physics import si
 7
 8# Krakow tap water isotopic composition from the Supplement
 9deltas_0_SMOW = {
10    "2H": -62.01 * const.PER_MILLE,
11    "18O": -8.711 * const.PER_MILLE,
12    "17O": -4.58 * const.PER_MILLE,
13}
14
15TABLE_1 = {
16    "Experiment I": {
17        "RH": (0.404, 0.582, 0.792),
18        "color": ("red", "blue", "green"),
19        "T": (
20            const.T0 + 19.61 * si.K,
21            const.T0 + 19.54 * si.K,
22            const.T0 + 18.97 * si.K,
23        ),
24    }
25}
26
27TABLE_2 = {
28    "eps_diff": {
29        "2H": 25.1 * const.PER_MILLE,
30        "18O": 28.5 * const.PER_MILLE,
31        "17O": 14.6 * const.PER_MILLE,
32    },
33    "n": {
34        "2H": 0.90,
35        "18O": 0.956,
36        "17O": 0.958,
37    },
38    "eps_kin": {
39        "2H": 9.5 * const.PER_MILLE,
40        "18O": 11.45 * const.PER_MILLE,
41        "17O": 5.88 * const.PER_MILLE,
42    },
43}
deltas_0_SMOW = {'2H': -0.06201, '18O': -0.008711, '17O': -0.00458}
TABLE_1 = {'Experiment I': {'RH': (0.404, 0.582, 0.792), 'color': ('red', 'blue', 'green'), 'T': (292.76, 292.69, 292.12)}}
TABLE_2 = {'eps_diff': {'2H': 0.0251, '18O': 0.0285, '17O': 0.0146}, 'n': {'2H': 0.9, '18O': 0.956, '17O': 0.958}, 'eps_kin': {'2H': 0.0095, '18O': 0.01145, '17O': 0.00588}}