From a3c507b909b92ecfd976b44b8c787643442fa451 Mon Sep 17 00:00:00 2001 From: omicron Date: Tue, 9 Jun 2026 14:23:22 +0200 Subject: [PATCH] Add properties of air for ventilation loss calculations --- coefficients.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/coefficients.py b/coefficients.py index 7f82546..8a78689 100644 --- a/coefficients.py +++ b/coefficients.py @@ -21,3 +21,8 @@ RSI_HORIZONTAL = 0.13 RSI_UPWARD = 0.10 RSI_DOWNWARD = 0.17 RSE = 0.04 + +# Air properties +RHO_AIR = 1.2 # kg/m³ +CP_AIR = 1005 # J/(kg·K) +RHO_CP_AIR = RHO_AIR * CP_AIR # J/(m³·K), volumetric heat capacity