From 9e3782268cb45938075ff5751fe6a9dbe61e1b2c Mon Sep 17 00:00:00 2001 From: lrdossan Date: Thu, 20 Jun 2024 17:39:52 +0200 Subject: [PATCH] minor update in docstring --- caimira/models.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/caimira/models.py b/caimira/models.py index 3032bc62..bd2efa92 100644 --- a/caimira/models.py +++ b/caimira/models.py @@ -1379,8 +1379,9 @@ class ShortRangeModel: def _normed_jet_origin_concentration(self) -> _VectorisedFloat: ''' - The initial emission concentration at the source origin (mouth/nose) - normalized by the viral load and f_inf factors. Results in mL.cm^3. + The initial jet concentration at the source origin (mouth/nose) + normalized by the diameter-independent variables (viral load and f_inf). + Results in mL.cm^3. ''' # The short range origin concentration does not consider the mask contribution. return self.expiration.aerosols(mask=Mask.types['No mask']) @@ -1432,7 +1433,8 @@ class ShortRangeModel: def jet_origin_concentration(self, infected: InfectedPopulation) -> _VectorisedFloat: """ - The initial emission concentration at the source origin (mouth/nose). + The initial jet concentration at the source origin (mouth/nose). + Returns the full result with the diameter dependent and independent varibles, in virions/m^3. """ return self._normed_jet_origin_concentration() * self.normalization_factor(infected)