From aff4cf84ed6db9acaf8c53fc37312bb02da1ed6c Mon Sep 17 00:00:00 2001 From: markus Date: Tue, 20 Oct 2020 14:44:44 +0200 Subject: [PATCH] use new air_exchange function --- cara/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cara/models.py b/cara/models.py index 0152ba9e..da34bc3a 100644 --- a/cara/models.py +++ b/cara/models.py @@ -261,7 +261,7 @@ class Model: # Deposition rate (h^-1) k = (vg * 3600) / h - return k + self.virus.decay_constant + self.ventilation.air_change_per_hour(self.room) + return k + self.virus.decay_constant + self.ventilation.air_exchange(self.room, time) @functools.lru_cache() def concentration(self, time: float) -> float: