add winter baseline
This commit is contained in:
parent
c11b360bda
commit
74e813aa3f
1 changed files with 26 additions and 0 deletions
|
|
@ -3,6 +3,7 @@ from cara.montecarlo import *
|
||||||
|
|
||||||
#IGH paper
|
#IGH paper
|
||||||
|
|
||||||
|
# Baseline scenarios
|
||||||
classroom_model_IGH_no_mask_windows_closed = [MCExposureModel(
|
classroom_model_IGH_no_mask_windows_closed = [MCExposureModel(
|
||||||
concentration_model=MCConcentrationModel(
|
concentration_model=MCConcentrationModel(
|
||||||
room=models.Room(volume=160),
|
room=models.Room(volume=160),
|
||||||
|
|
@ -28,6 +29,31 @@ classroom_model_IGH_no_mask_windows_closed = [MCExposureModel(
|
||||||
)
|
)
|
||||||
)for qid in (100, 60)]
|
)for qid in (100, 60)]
|
||||||
|
|
||||||
|
classroom_model_IGH_no_mask_windows_closed_winter = [MCExposureModel(
|
||||||
|
concentration_model=MCConcentrationModel(
|
||||||
|
room=models.Room(volume=160),
|
||||||
|
ventilation=models.AirChange(
|
||||||
|
active=models.PeriodicInterval(period=120, duration=120),
|
||||||
|
air_exch=0.25,
|
||||||
|
),
|
||||||
|
infected=MCInfectedPopulation(
|
||||||
|
number=1,
|
||||||
|
presence=models.SpecificInterval(((0, 1.5), (2, 3.5), (4.5, 6), (6.5, 8))),
|
||||||
|
masked=False,
|
||||||
|
virus=MCVirus(halflife=6.43, qID=qid),
|
||||||
|
expiratory_activity=2,
|
||||||
|
samples=200000,
|
||||||
|
breathing_category=3,
|
||||||
|
)
|
||||||
|
),
|
||||||
|
exposed=models.Population(
|
||||||
|
number=19,
|
||||||
|
presence=models.SpecificInterval(((0, 1.5), (2, 3.5), (4.5, 6), (6.5, 8))),
|
||||||
|
activity=models.Activity.types['Seated'],
|
||||||
|
mask=models.Mask.types['No mask']
|
||||||
|
)
|
||||||
|
)for qid in (100, 60)]
|
||||||
|
|
||||||
#Fig 1a
|
#Fig 1a
|
||||||
classroom_model_IGH_no_mask_windows_open_breaks = [MCExposureModel(
|
classroom_model_IGH_no_mask_windows_open_breaks = [MCExposureModel(
|
||||||
concentration_model=MCConcentrationModel(
|
concentration_model=MCConcentrationModel(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue