add deposition fraction f_dep

This commit is contained in:
Andrejh 2021-02-07 11:05:49 +01:00 committed by markus
parent 8384b4601d
commit 2dcc74442c

View file

@ -338,11 +338,15 @@ class MCExposureModel:
def infection_probability(self):
exposure = self.quanta_exposure()
# f_dep - fraction of the inhaled particles that actually stay here
# not present in the CARA model
f_dep = 0.6
inf_aero = (
self.exposed.activity.inhalation_rate *
(1 - self.exposed.mask.η_inhale) *
exposure
exposure *
f_dep
)
# Probability of infection.