changed docstring on models.py for the deposited_expoure method

This commit is contained in:
Luis Aleixo 2022-02-03 10:55:06 +01:00
parent fee2bcab86
commit 2a43fffec9

View file

@ -1142,11 +1142,11 @@ class ExposureModel:
# one should not take any mean at this stage. # one should not take any mean at this stage.
dep_exposure_integrated = self._normed_exposure_between_bounds(time1, time2)*aerosols*fdep dep_exposure_integrated = self._normed_exposure_between_bounds(time1, time2)*aerosols*fdep
# then we multiply by the diameter-independent quantity # then we multiply by the diameter-independent quantity emission_rate_per_aerosol,
# emission_rate_per_aerosol # and parameters of the vD equation (i.e. f_inf, BR_k and n_in).
return (dep_exposure_integrated * emission_rate_per_aerosol * return (dep_exposure_integrated * emission_rate_per_aerosol *
self.exposed.activity.inhalation_rate * f_inf * self.exposed.activity.inhalation_rate *
(1 - self.exposed.mask.inhale_efficiency()) * f_inf) (1 - self.exposed.mask.inhale_efficiency()))
def deposited_exposure(self) -> _VectorisedFloat: def deposited_exposure(self) -> _VectorisedFloat:
""" """