Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update parameters in backend #336

Merged
merged 4 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions frontend/docs/changelog/changelog-de.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ SPDX-License-Identifier: CC-BY-4.0
- Die Textgröße in Tooltips wurden zur besseren Lesbarkeit angepasst.
- Es werden nur noch vier aggregierte Kompartimente angezeigt.
- Internes Build-System wurde durch Vite ersetzt, welches die Leistung der Webseite verbessert.
- Die Parameter des Simulationsmodells wurden im Backend geupdatet.
annawendler marked this conversation as resolved.
Show resolved Hide resolved

### Fehlerbehebungen

Expand Down
1 change: 1 addition & 0 deletions frontend/docs/changelog/changelog-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ SPDX-License-Identifier: CC-BY-4.0
- The text size in tooltips was adjusted to improve readability.
- Only four aggregated compartments are displayed.
- Internal build system was replaced by Vite, which improves website performance.
- The parameters of the simulation model were updated in the backend.
annawendler marked this conversation as resolved.
Show resolved Hide resolved

### Bug fixes

Expand Down
Loading