From dc12ee33592d44119bd236289c5be7912bac5fc5 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Thu, 15 Dec 2022 08:39:38 +0000 Subject: [PATCH] Initial atmosphere_concentration normalized --- caimira/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caimira/models.py b/caimira/models.py index e2561354..83711bfd 100644 --- a/caimira/models.py +++ b/caimira/models.py @@ -1077,7 +1077,7 @@ class _ConcentrationModelBase: # The model always starts at t=0, but we avoid running concentration calculations # before the first presence as an optimisation. if time <= self._first_presence_time(): - return self.atmosphere_concentration() + return self.atmosphere_concentration()/self.normalization_factor() next_state_change_time = self._next_state_change(time) RR = self.removal_rate(next_state_change_time) conc_limit = self._normed_concentration_limit(next_state_change_time)