From 0840dc43ef45b9654dd78ed860debd9eb3cd4565 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Wed, 6 Oct 2021 11:58:36 +0200 Subject: [PATCH] Update concentration docstring --- cara/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cara/models.py b/cara/models.py index 296c260c..b7885768 100644 --- a/cara/models.py +++ b/cara/models.py @@ -873,7 +873,7 @@ class ConcentrationModel: @method_cache def normed_integrated_concentration(self, start: float, stop: float) -> _VectorisedFloat: """ - Get the integrated concentration dose between the times start and stop, + Get the integrated concentration of viruses in the air between the times start and stop, normalized by the emission rate. """ if stop <= self._first_presence_time(): @@ -902,7 +902,7 @@ class ConcentrationModel: def integrated_concentration(self, start: float, stop: float) -> _VectorisedFloat: """ - Get the integrated concentration dose between the times start and stop. + Get the integrated concentration of viruses in the air between the times start and stop. """ return (self.normed_integrated_concentration(start, stop) * self.infected.emission_rate_when_present())