remove test models
This commit is contained in:
parent
2c1a709fd6
commit
02d8442da4
1 changed files with 6 additions and 31 deletions
|
|
@ -374,35 +374,10 @@ baseline_mc_exposure_model = MCExposureModel(
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
durations = tuple(np.linspace(0, 120, 10))
|
|
||||||
|
|
||||||
models = [
|
# pis = baseline_mc_exposure_model.infection_probability()
|
||||||
MCExposureModel(
|
# plt.hist(pis, bins=2000)
|
||||||
concentration_model=MCConcentrationModel(
|
# plt.title("Distribution of probabilities of infection")
|
||||||
room=models.Room(volume=75),
|
# plt.ylabel("Frequency")
|
||||||
ventilation=models.SlidingWindow(
|
# plt.xlabel("Percentage probability of infection")
|
||||||
active=models.PeriodicInterval(period=120, duration=120),
|
# plt.show()
|
||||||
inside_temp=models.PiecewiseConstant((0, 24), (293,)),
|
|
||||||
outside_temp=models.PiecewiseConstant((0, 24), (283,)),
|
|
||||||
window_height=1.6, opening_length=0.6,
|
|
||||||
),
|
|
||||||
infected=MCInfectedPopulation(
|
|
||||||
number=1,
|
|
||||||
presence=models.SpecificInterval(((0, 4), (5, 8))),
|
|
||||||
mask=models.Mask.types['No mask'],
|
|
||||||
activity=models.Activity.types['Light activity'],
|
|
||||||
virus=MCVirus(halflife=1.1),
|
|
||||||
expiratory_activity=1,
|
|
||||||
samples=2000000,
|
|
||||||
qid=100,
|
|
||||||
viral_load=vl
|
|
||||||
)
|
|
||||||
),
|
|
||||||
exposed=models.Population(
|
|
||||||
number=1,
|
|
||||||
presence=models.SpecificInterval(((0, 4), (5, 8))),
|
|
||||||
activity=models.Activity.types['Light activity'],
|
|
||||||
mask=models.Mask.types['No mask']
|
|
||||||
)
|
|
||||||
) for vl in (None, 7, 8, 9, 10)
|
|
||||||
]
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue