added breathing cycle to short range dilution factor
This commit is contained in:
parent
3c3758dfcd
commit
ee98b1d308
2 changed files with 6 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue