From ec6add4881377cd625c603b4195a215cd0d2908a Mon Sep 17 00:00:00 2001 From: Nicolas Mounet Date: Wed, 14 Dec 2022 10:22:33 +0100 Subject: [PATCH] Solving a failing mypy test in test_full_algorithm --- caimira/tests/test_full_algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caimira/tests/test_full_algorithm.py b/caimira/tests/test_full_algorithm.py index 51a3da72..9f2ee70d 100644 --- a/caimira/tests/test_full_algorithm.py +++ b/caimira/tests/test_full_algorithm.py @@ -229,7 +229,7 @@ class SimpleShortRangeModel: x = np.array(self.distance) dilution = np.empty(x.shape, dtype=np.float64) # Exhalation airflow, as per Jia et al. (2022), m^3/s - Q_exh = self.φ * np.array(self.breathing_rate/3600) + Q_exh: _VectorisedFloat = self.φ * np.array(self.breathing_rate/3600) # The expired flow velocity at the noozle (mouth opening), m/s u0 = np.array(Q_exh/(np.pi/4. * self.mouth_diameter**2)) # Parameters in the jet-like stage