PySDM_examples.Kinzer_And_Gunn_1951.table_1_and_2

from Kinzer & Gunn 1951 Table1 represents factor 4piradius(1 + F*radius/s_prim) for several drop diameters and temperatures (0, 10, 20, 40 deg. Celsius). Table2 contains factor D(rho_a - rho_b) for the same temperatures as in Table1 but for different relative humidities (from 10% to 100%).

  1"""
  2from [Kinzer & Gunn 1951](https://doi.org/10.1175/1520-0469(1951)008%3C0071:TETATR%3E2.0.CO;2)
  3Table1 represents factor 4*pi*radius(1 + F*radius/s_prim) for several drop diameters
  4and temperatures (0, 10, 20, 40 deg. Celsius).
  5Table2 contains factor D(rho_a - rho_b) for the same temperatures as in Table1
  6but for different relative humidities (from 10% to 100%).
  7"""
  8
  9table1 = {
 10    "Diameter [cm]": (
 11        0.01,
 12        0.02,
 13        0.03,
 14        0.04,
 15        0.05,
 16        0.06,
 17        0.07,
 18        0.08,
 19        0.09,
 20        0.1,
 21        0.12,
 22        0.14,
 23        0.16,
 24        0.18,
 25        0.20,
 26        0.22,
 27        0.24,
 28        0.26,
 29        0.28,
 30        0.30,
 31        0.32,
 32        0.34,
 33        0.36,
 34        0.38,
 35        0.4,
 36        0.42,
 37        0.44,
 38    ),
 39    "0 [deg C]": (
 40        0.086,
 41        0.29,
 42        0.49,
 43        0.73,
 44        1.01,
 45        1.31,
 46        1.66,
 47        2.03,
 48        2.5,
 49        2.9,
 50        3.9,
 51        4.9,
 52        6.0,
 53        7.3,
 54        8.8,
 55        10.5,
 56        12.4,
 57        14.7,
 58        17.2,
 59        20.1,
 60        23.0,
 61        27.0,
 62        31.0,
 63        35.0,
 64        0.0,
 65        0.0,
 66        0.0,
 67    ),
 68    "10 [deg C]": (
 69        0.082,
 70        0.29,
 71        0.48,
 72        0.72,
 73        0.99,
 74        1.29,
 75        1.63,
 76        2.0,
 77        2.4,
 78        2.8,
 79        3.8,
 80        4.8,
 81        5.9,
 82        7.2,
 83        8.5,
 84        10.1,
 85        12.0,
 86        14.2,
 87        16.6,
 88        19.3,
 89        22.0,
 90        26.0,
 91        30.0,
 92        34.0,
 93        0.0,
 94        0.0,
 95        0.0,
 96    ),
 97    "20 [deg C]": (
 98        0.079,
 99        0.29,
100        0.48,
101        0.71,
102        0.97,
103        1.27,
104        1.61,
105        1.97,
106        2.4,
107        2.8,
108        3.7,
109        4.7,
110        5.8,
111        7.0,
112        8.3,
113        9.9,
114        11.7,
115        13.8,
116        16.0,
117        18.5,
118        21,
119        25,
120        28,
121        32,
122        36,
123        0,
124        0,
125    ),
126    "30 [deg C]": (
127        0.079,
128        0.28,
129        0.47,
130        0.7,
131        0.96,
132        1.25,
133        1.58,
134        1.94,
135        2.3,
136        2.7,
137        3.6,
138        4.6,
139        5.7,
140        6.9,
141        8.1,
142        9.6,
143        11.3,
144        13.3,
145        15.4,
146        17.8,
147        21,
148        24,
149        27,
150        31,
151        35,
152        39,
153        0,
154    ),
155    "40 [deg C]": (
156        0.073,
157        0.28,
158        0.47,
159        0.69,
160        0.94,
161        1.24,
162        1.55,
163        1.91,
164        2.3,
165        2.7,
166        3.6,
167        4.5,
168        5.6,
169        6.8,
170        8.0,
171        9.4,
172        11.0,
173        12.8,
174        14.9,
175        17.2,
176        20,
177        23,
178        26,
179        29,
180        33,
181        37,
182        0,
183    ),
184}
185
186table2 = {
187    "relative humidity [percent]": (10, 20, 30, 40, 50, 60, 70, 80, 90, 100),
188    "0 [deg C]": (0.61, 0.54, 0.48, 0.41, 0.34, 0.27, 0.2, 0.135, 0.067, 0),
189    "20 [deg C]": (1.47, 1.29, 1.12, 0.95, 0.78, 0.63, 0.46, 0.31, 0.159, 0),
190    "30 [deg C]": (2.06, 1.79, 1.55, 1.32, 1.09, 0.86, 0.64, 0.42, 0.21, 0),
191    "40 [deg C]": (2.68, 2.36, 2.05, 1.75, 1.45, 1.15, 0.85, 0.56, 0.28, 0),
192}
table1 = {'Diameter [cm]': (0.01, 0.02, 0.03, 0.04, 0.05, 0.06, 0.07, 0.08, 0.09, 0.1, 0.12, 0.14, 0.16, 0.18, 0.2, 0.22, 0.24, 0.26, 0.28, 0.3, 0.32, 0.34, 0.36, 0.38, 0.4, 0.42, 0.44), '0 [deg C]': (0.086, 0.29, 0.49, 0.73, 1.01, 1.31, 1.66, 2.03, 2.5, 2.9, 3.9, 4.9, 6.0, 7.3, 8.8, 10.5, 12.4, 14.7, 17.2, 20.1, 23.0, 27.0, 31.0, 35.0, 0.0, 0.0, 0.0), '10 [deg C]': (0.082, 0.29, 0.48, 0.72, 0.99, 1.29, 1.63, 2.0, 2.4, 2.8, 3.8, 4.8, 5.9, 7.2, 8.5, 10.1, 12.0, 14.2, 16.6, 19.3, 22.0, 26.0, 30.0, 34.0, 0.0, 0.0, 0.0), '20 [deg C]': (0.079, 0.29, 0.48, 0.71, 0.97, 1.27, 1.61, 1.97, 2.4, 2.8, 3.7, 4.7, 5.8, 7.0, 8.3, 9.9, 11.7, 13.8, 16.0, 18.5, 21, 25, 28, 32, 36, 0, 0), '30 [deg C]': (0.079, 0.28, 0.47, 0.7, 0.96, 1.25, 1.58, 1.94, 2.3, 2.7, 3.6, 4.6, 5.7, 6.9, 8.1, 9.6, 11.3, 13.3, 15.4, 17.8, 21, 24, 27, 31, 35, 39, 0), '40 [deg C]': (0.073, 0.28, 0.47, 0.69, 0.94, 1.24, 1.55, 1.91, 2.3, 2.7, 3.6, 4.5, 5.6, 6.8, 8.0, 9.4, 11.0, 12.8, 14.9, 17.2, 20, 23, 26, 29, 33, 37, 0)}
table2 = {'relative humidity [percent]': (10, 20, 30, 40, 50, 60, 70, 80, 90, 100), '0 [deg C]': (0.61, 0.54, 0.48, 0.41, 0.34, 0.27, 0.2, 0.135, 0.067, 0), '20 [deg C]': (1.47, 1.29, 1.12, 0.95, 0.78, 0.63, 0.46, 0.31, 0.159, 0), '30 [deg C]': (2.06, 1.79, 1.55, 1.32, 1.09, 0.86, 0.64, 0.42, 0.21, 0), '40 [deg C]': (2.68, 2.36, 2.05, 1.75, 1.45, 1.15, 0.85, 0.56, 0.28, 0)}