added breathing cycle to short range dilution factor

This commit is contained in:
Luis Aleixo 2024-03-14 16:20:01 +01:00
parent 3c3758dfcd
commit ee98b1d308
2 changed files with 6 additions and 3 deletions

View file

@ -1355,8 +1355,11 @@ class ShortRangeModel:
# Initial velocity of the exhalation airflow (m/s)
u0 = np.array(Q_exh/Am)
# Duration of the expiration period(s), assuming a 4s breath-cycle
tstar: float = _dilution_factor['tstar'] # type: ignore
# Duration of one breathing cycle
breathing_cicle: float = _dilution_factor['breathing_cycle'] # type: ignore
# Duration of the expiration period(s)
tstar: float = breathing_cicle / 2
# Streamwise and radial penetration coefficients
_df_pc = _dilution_factor['penetration_coefficients'] # type: ignore

View file

@ -363,7 +363,7 @@ class DataRegistry:
"dilution_factor": {
"mouth_diameter": 0.02,
"exhalation_coefficient": 2,
"tstar": 2,
"breathing_cycle": 4,
"penetration_coefficients": {
"𝛽r1": 0.18,
"𝛽r2": 0.2,