Removed quick guide reference for specific event
This commit is contained in:
parent
0348065515
commit
f3e82620a7
3 changed files with 2 additions and 7 deletions
|
|
@ -557,8 +557,6 @@
|
||||||
<li>Level 3 = 95 m<sup>3</sup>/h (silent).</li>
|
<li>Level 3 = 95 m<sup>3</sup>/h (silent).</li>
|
||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
<b>Specific event:</b><br>
|
|
||||||
If the simulation refers to a Specific event at a given time (e.g. meeting or conference) indicate the population of the given location and the 7-day average of new reported cases.</p>
|
|
||||||
<b>Activity types:</b><br>
|
<b>Activity types:</b><br>
|
||||||
The type of activity applies to both the infected and exposed persons:
|
The type of activity applies to both the infected and exposed persons:
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
||||||
|
|
@ -1166,9 +1166,6 @@ class ExposureModel:
|
||||||
AB = 5
|
AB = 5
|
||||||
return sct.binom.pmf(x, event, self.probability_random_individual(cases, population, AB))
|
return sct.binom.pmf(x, event, self.probability_random_individual(cases, population, AB))
|
||||||
|
|
||||||
def infection_probability(self) -> _VectorisedFloat:
|
|
||||||
exposure = self.exposure()
|
|
||||||
|
|
||||||
def deposited_exposure(self) -> _VectorisedFloat:
|
def deposited_exposure(self) -> _VectorisedFloat:
|
||||||
"""
|
"""
|
||||||
The number of virus per m^3 deposited on the respiratory tract.
|
The number of virus per m^3 deposited on the respiratory tract.
|
||||||
|
|
|
||||||
|
|
@ -225,9 +225,9 @@ def test_infectious_dose_vectorisation():
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
"population, cm, pop, cases, specific_event_probability",[
|
"population, cm, pop, cases, specific_event_probability",[
|
||||||
[populations[1], known_concentrations(lambda t: 36.),
|
[populations[1], known_concentrations(lambda t: 36.),
|
||||||
100000, 68, 3.24287],
|
100000, 68, 2.24124],
|
||||||
[populations[0], known_concentrations(lambda t: 36.),
|
[populations[0], known_concentrations(lambda t: 36.),
|
||||||
100000, 68, 3.067046],
|
100000, 68, 1.875652],
|
||||||
|
|
||||||
])
|
])
|
||||||
def test_specific_event_probability(population, cm,
|
def test_specific_event_probability(population, cm,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue