Open tristandeleu opened 4 years ago
The number of days for incubation incubation_days is defined as something which can be past the start of the plateau for the viral load: https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L445
incubation_days
Does that mean that the progression looks like
infection (day 0) -> viral load plateau start -> incubation ends -> viral load plateau ends -> recovery
In the creation of the symptoms, the progression is defined in phases, where phase 1 corresponds to a duration of pre_plateau_duration (the name suggests that this phase happens before the plateau starts), which I guess is the phase between "end of incubation" and "plateau starts" https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/utils.py#L920-L924
pre_plateau_duration
Currently symptom_onset_delay is likely to be negative more often, so there might be no symptoms during phase 0.
symptom_onset_delay
@teganmaharaj
It is pre-symptomatic phase, which means there shouldn't be any symptoms.
The progression you mentioned looks right!
The number of days for incubation
incubation_days
is defined as something which can be past the start of the plateau for the viral load: https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L445Does that mean that the progression looks like
In the creation of the symptoms, the progression is defined in phases, where phase 1 corresponds to a duration of
pre_plateau_duration
(the name suggests that this phase happens before the plateau starts), which I guess is the phase between "end of incubation" and "plateau starts" https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/utils.py#L920-L924Currently
symptom_onset_delay
is likely to be negative more often, so there might be no symptoms during phase 0.@teganmaharaj