|
23 | 23 | from PySDM.dynamics.terminal_velocity.gunn_and_kinzer import TpDependent |
24 | 24 |
|
25 | 25 |
|
26 | | -class Formulae: # pylint: disable=too-few-public-methods,too-many-instance-attributes |
| 26 | +class Formulae: # pylint: disable=too-few-public-methods,too-many-instance-attributes,too-many-statements |
27 | 27 | def __init__( # pylint: disable=too-many-locals |
28 | 28 | self, |
29 | 29 | *, |
@@ -55,6 +55,7 @@ def __init__( # pylint: disable=too-many-locals |
55 | 55 | isotope_diffusivity_ratios: str = "Null", |
56 | 56 | isotope_relaxation_timescale: str = "Null", |
57 | 57 | isotope_temperature_inference: str = "Null", |
| 58 | + isotope_ventilation_ratio: str = "Null", |
58 | 59 | optical_albedo: str = "Null", |
59 | 60 | optical_depth: str = "Null", |
60 | 61 | particle_shape_and_density: str = "LiquidSpheres", |
@@ -97,6 +98,7 @@ def __init__( # pylint: disable=too-many-locals |
97 | 98 | self.isotope_diffusivity_ratios = isotope_diffusivity_ratios |
98 | 99 | self.isotope_relaxation_timescale = isotope_relaxation_timescale |
99 | 100 | self.isotope_temperature_inference = isotope_temperature_inference |
| 101 | + self.isotope_ventilation_ratio = isotope_ventilation_ratio |
100 | 102 | self.particle_shape_and_density = particle_shape_and_density |
101 | 103 | self.air_dynamic_viscosity = air_dynamic_viscosity |
102 | 104 | self.terminal_velocity = terminal_velocity |
|
0 commit comments