Skip to content

Commit

Permalink
Update parameters in backend (#336)
Browse files Browse the repository at this point in the history
* Update parameters of simulation model in backend

---------

Co-authored-by: Moritz Zeumer <[email protected]>
  • Loading branch information
annawendler and NXXR authored Feb 23, 2024
1 parent 79c7b26 commit 59ea85d
Showing 1 changed file with 24 additions and 28 deletions.
52 changes: 24 additions & 28 deletions backend/src/api/fixtures/initial_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,32 +414,28 @@
("restriction_4", "Restriction 4")
]

PARAMETERS = [
PARAMETERS = [
"IncubationTime",
"SerialInterval",
"InfectiousTimeMild",
"HomeToHospitalizedTime",
"HospitalizedToHomeTime",
"HospitalizedToICUTime",
"ICUToHomeTime",
"ICUToDeathTime",
"InfectionProbabilityFromContact",
"RelativeCarrierInfectability",
"TimeInfectedSymptoms",
"TimeInfectedSevere",
"TimeInfectedCritical",
"TransmissionProbabilityOnContact",
"RelativeTransmissionNoSymptoms",
"RiskOfInfectionFromSympomatic",
"MaxRiskOfInfectionFromSympomatic",
"AsymptoticCasesPerInfectious",
"HospitalizedCasesPerInfectious",
"ICUCasesPerHospitalized",
"DeathsPerHospitalized",
"ReducVaccExp",
"ReducImmuneExp",
"ReducExpInf",
"ReducImmuneExpInf",
"ReducInfHosp",
"ReducImmuneInfHosp",
"ReducTime",
"Seasonality",
"VaccinationGap"
"RecoveredPerInfectedNoSymptoms",
"SeverePerInfectedSymptoms",
"CriticalPerSevere",
"DeathsPerCritical",
"ReducExposedPartialImmunity",
"ReducExposedImprovedImmunity",
"ReducInfectedSymptomsPartialImmunity",
"ReducInfectedSymptomsImprovedImmunity",
"ReducInfectedSevereCriticalDeadPartialImmunity",
"ReducInfectedSevereCriticalDeadImprovedImmunity",
"ReducTimeInfectedMild",
"Seasonality"
]

COMPARTMENTS = [
Expand All @@ -455,12 +451,12 @@
]

GROUPS = [
("age_0", "age", "Ages bewteen 0-4 years" ),
("age_1", "age", "Ages between 5-14 years" ),
("age_2", "age", "Ages between 15-34 years" ),
("age_3", "age", "Ages between 35-59 years" ),
("age_4", "age", "Ages between 60-79 years" ),
("age_5", "age", "Ages above 80" ),
("age_0", "age", "Ages bewteen 0-4 years"),
("age_1", "age", "Ages between 5-14 years"),
("age_2", "age", "Ages between 15-34 years"),
("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")
Expand Down

0 comments on commit 59ea85d

Please sign in to comment.