Skip to content

Commit

Permalink
Update database (#350)
Browse files Browse the repository at this point in the history
- Adapt parameters for simulation model
- Add parameter ContactScaling
- Remove groups for gender for now
  • Loading branch information
annawendler authored Mar 26, 2024
1 parent 1bb8338 commit bef93b1
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions backend/src/api/fixtures/initial_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@
]

PARAMETERS = [
"IncubationTime",
"SerialInterval",
"TimeExposed"
"TimeInfectedNoSymptoms",
"TimeInfectedSymptoms",
"TimeInfectedSevere",
"TimeInfectedCritical",
Expand All @@ -435,7 +435,8 @@
"ReducInfectedSevereCriticalDeadPartialImmunity",
"ReducInfectedSevereCriticalDeadImprovedImmunity",
"ReducTimeInfectedMild",
"Seasonality"
"Seasonality",
"ContactScaling"
]

COMPARTMENTS = [
Expand All @@ -446,8 +447,7 @@
]

GROUP_CATEGORIES = [
("age", "Age groups"),
("gender", "Gender")
("age", "Age groups")
]

GROUPS = [
Expand All @@ -457,9 +457,7 @@
("age_3", "age", "Ages between 35-59 years"),
("age_4", "age", "Ages between 60-79 years"),
("age_5", "age", "Ages above 80"),
("total", "age", "All ages"),
("female", "gender", "Female"),
("male", "gender", "Male")
("total", "age", "All ages")
]

SIMULATION_MODELS = {
Expand Down

0 comments on commit bef93b1

Please sign in to comment.