Update concentration docstring
This commit is contained in:
parent
22109c0e04
commit
0840dc43ef
1 changed files with 2 additions and 2 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Reference in a new issue