From 2dcc74442c38cf13a0f99580cc43fbe284ff8915 Mon Sep 17 00:00:00 2001 From: Andrejh Date: Sun, 7 Feb 2021 11:05:49 +0100 Subject: [PATCH] add deposition fraction f_dep --- cara/montecarlo.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index 7818ad5b..d52e9c57 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -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.