Open tristandeleu opened 4 years ago
When exposed, the Human get an initial_viral_load sampled, which I assume is the value of the viral load when they get exposed (the viral load / time piecewise linear curve starts at initial_viral_load). https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L909
Human
initial_viral_load
initial_viral_load is used to generate the symptoms, and to compute the recovery time, but does not appear in the computation of viral_load. Is this an issue? https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L339-L362
viral_load
This is more of a placeholder for now. We had some problems in modeling the initial_viral_load for the infected person. It is assumed to have no effect for now.
When exposed, the
Human
get aninitial_viral_load
sampled, which I assume is the value of the viral load when they get exposed (the viral load / time piecewise linear curve starts atinitial_viral_load
). https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L909initial_viral_load
is used to generate the symptoms, and to compute the recovery time, but does not appear in the computation ofviral_load
. Is this an issue? https://github.com/pg2455/covid_p2p_simulation/blob/62c7e416c803ed9f00e8f561b6bdb69a2d9ff800/simulator.py#L339-L362