Skip to content

Commit 1be24fd

Browse files
committed
add documentation on symptom status manager
1 parent b85a1f6 commit 1be24fd

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

docs/parameters.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,27 @@ Other parameters, such as report generation and maximum runtime do not affect mo
1919
- `settings_properties.Any.alpha`: The density-dependence scaling factor of the total infection attempt rate for a particular setting. See [transmission](transmission.md) for more details.
2020
- `itinerary_ratios`: The default proportion of time individuals will spend in a specific setting category.
2121

22+
## Symptom status parameters
23+
The following input parameters characterize the progression of illness in infected individuals. The parameters specify the probability of progressing to a particular state (mild, severe, critical, and dead) and specify the delay distributions (assumed to be log normally distributed) for each progression.
24+
- `probability_mild_given_infect`: Probability an infected person develops mild illness
25+
- `infect_to_mild_mu`: Mu parameter for log normal delay distribution from infection to mild illness
26+
- `infect_to_mild_sigma`: Sigma parameter for log normal delay distribution from infection to mild illness
27+
- `probability_severe_given_mild`: Probability a person with mild illness develops severe illness
28+
- `mild_to_severe_mu`: Mu parameter for log normal delay distribution from mild to severe illness
29+
- `mild_to_severe_sigma`: Sigma parameter for log normal delay distribution from mild to severe illness
30+
- `mild_to_resolved_mu`: Mu parameter for log normal delay distribution from mild illness to resolution
31+
- `mild_to_resolved_sigma`: Sigma parameter for log normal delay distribution from mild illness to resolution
32+
- `probability_critical_given_severe`: Probability a person with severe illness develops critical illness
33+
- `severe_to_critical_mu`: Mu parameter for log normal delay distribution from severe to critical illness
34+
- `severe_to_critical_sigma`: Sigma parameter for log normal delay distribution from severe to critical illness
35+
- `severe_to_resolved_mu`: Mu parameter for log normal delay distribution from severe illness to resolution
36+
- `severe_to_resolved_sigma`: Sigma parameter for log normal delay distribution from severe illness to resolution
37+
- `probability_dead_given_critical`: Probability a person with critical illness dies
38+
- `critical_to_dead_mu`: Mu parameter for log normal delay distribution from critical illness to death
39+
- `critical_to_dead_sigma`: Sigma parameter for log normal delay distribution from critical illness to death
40+
- `critical_to_resolved_mu`: Mu parameter for log normal delay distribution from critical illness to resolution
41+
- `critical_to_resolved_sigma`: Sigma parameter for log normal delay distribution from critical illness to resolution
42+
2243
## Model execution parameters
2344
The following parameters specified in the input parameter dictionary are relevant to model output and execution, but do not affect dynamics. All report variables can be turned off using `"write": false` in the input file.
2445

docs/symptom_status.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Symptom Status
2+
The symptom status module controls the progression of illness in infected individuals. `SymptomStatus` takes 1 of 6 values: `NoSymptoms` (the default), `Mild`, `Severe`, `Critical`, `Resolved`, or `Dead`. The progression to worse symptoms is a nested hierarchy: Individuals must pass through the mild state to reach severe, mild and severe states to reach critical, and so on. Consequently, probabilities are defined conditional on being in the previous state (e.g., probability of developing critical illness *given that the infected person has already developed severe illness*). However, the process of symptom resolution is not nested; individuals transition directly from the mild, severe, or critical states to the resolved state. Mild, severe, and critical are necessarily transitory states. All infected persons either remain in the `NoSymptoms` state (i.e., their infection was asymptomatic) or end up in the resolved or dead states. In addition to the conditional probabilities of progression, each transition is parameterized with a negative binomial delay distribution (parameters $\mu$ and $\sigma$).
3+
4+
In the context of this module, we use the term "symptoms" generally to refer to the acute effects of SARS-CoV-2 infection on a person's health status, inclusive of both clinical signs and symptoms. Broadly speaking, mild illness corresponds to illness that can be managed at home and with outpatient care, hospitalization is a proxy for severe illness, and ICU admission is a proxy for critical illness. However, symptom statuses and presence in a particular clinical setting (hospital or ICU) are conceptually distinct. For example, in the context of high demand for care, there may be some critical patients for whom ICU care is indicated but are unable to access it. This module focus exclusively on modeling symptom status; it does not explicitly model healthcare seeking or the effects of interventions.
5+
6+
In the current implementation, there is no correlation between symptom status progression and infectiousness (e.g., shorter time from infection to symptom onset is not correlated with shorter time from infection to infectiousness).

0 commit comments

Comments
 (0)