diff --git a/cara/apps/calculator/model_generator.py b/cara/apps/calculator/model_generator.py index 1d4f51ec..3965080f 100644 --- a/cara/apps/calculator/model_generator.py +++ b/cara/apps/calculator/model_generator.py @@ -631,7 +631,7 @@ MECHANICAL_VENTILATION_TYPES = {'mech_type_air_changes', 'mech_type_air_supply', MASK_TYPES = {'Type I', 'FFP2'} MASK_WEARING_OPTIONS = {'mask_on', 'mask_off'} VENTILATION_TYPES = {'natural_ventilation', 'mechanical_ventilation', 'no_ventilation'} -VIRUS_TYPES = {'SARS_CoV_2', 'SARS_CoV_2_B117', 'SARS_CoV_2_P1'} +VIRUS_TYPES = {'SARS_CoV_2', 'SARS_CoV_2_B117', 'SARS_CoV_2_P1', 'SARS_CoV_2_B16172'} VOLUME_TYPES = {'room_volume_explicit', 'room_volume_from_dimensions'} WINDOWS_OPENING_REGIMES = {'windows_open_permanently', 'windows_open_periodically', 'not-applicable'} WINDOWS_TYPES = {'window_sliding', 'window_hinged', 'not-applicable'} diff --git a/cara/apps/calculator/templates/base/calculator.report.html.j2 b/cara/apps/calculator/templates/base/calculator.report.html.j2 index 043578e6..3e9be048 100644 --- a/cara/apps/calculator/templates/base/calculator.report.html.j2 +++ b/cara/apps/calculator/templates/base/calculator.report.html.j2 @@ -40,9 +40,11 @@ {% if form.virus_type == "SARS_CoV_2" %} SARS-CoV-2 (nominal strain) {% elif form.virus_type == "SARS_CoV_2_B117" %} - SARS-CoV-2 (B.1.1.7) + SARS-CoV-2 (Alpha VOC) {% elif form.virus_type == "SARS_CoV_2_P1" %} - SARS-CoV-2 (P.1) + SARS-CoV-2 (Gamma VOC) + {% elif form.virus_type == "SARS_CoV_2_B16172" %} + SARS-CoV-2 (Delta VOC) {% endif %}
Room Volume: {{ model.concentration_model.room.volume }} m³
SARS-CoV-2 (nominal strain), covering typical strains and varaints which are not of concern from an epidemiologic point of view of the virus;SARS-CoV-2 (B.1.1.7), the VOC first identified in the UK at the end of 2020 which is found to be approximately 1.5x more transmissible compared to the non-VOCs; SARS-CoV-2 (P.1), the VOC first identified in Brazil in January 2021 which is found to be approximately 2.2x more transmissible compared to the non-VOCs.SARS-CoV-2 (Alpha VOC), first identified in the UK at the end of 2020 which is found to be approximately 1.5x more transmissible compared to the non-VOCs; SARS-CoV-2 (Gamma VOC), first identified in Brazil in January 2021 which is found to be approximately 2.2x more transmissible compared to the non-VOCs.SARS-CoV-2 (Delta VOC), first identified in India towards the end of 2020 which is found to be approximately 60% more transmissible compared to the ALPHA VOC.The user can base their choice according to the prevalence of the different variants in the local area. Access to this information can be found here:
N.B. The transmission data for the P.1 variant has been taken from a study data gathered in Manaus, Brazil where the variant was first observed. +
N.B. The transmission data for the Gamma variant has been taken from a study data gathered in Manaus, Brazil where the variant was first observed. The local population in Manaus had very high levels of Covid-19 antibodies (>67%) in recent months. This factor has been taken into account by the authors of the study, via statistical adjustments to the transmission value (i.e. it has been increased, to account for spread in a population with significant acquired Covid-19 immunity). -However, this value may be revised in the future as more studies of P.1 transmission in different geographical locations become available.
+However, this value may be revised in the future as more studies of the Gamma VOC transmission in different geographical locations become available.Please enter either the room volume (in m³) or both the floor area (m²) and the room height (m). This information is available via GIS Portal (https://gis.cern.ch/gisportal/).
diff --git a/cara/models.py b/cara/models.py index ad4493ba..585fb824 100644 --- a/cara/models.py +++ b/cara/models.py @@ -469,6 +469,10 @@ Virus.types = { viral_load_in_sputum=1e9, quantum_infectious_dose=1/0.045, ), + 'SARS_CoV_2_B16172': SARSCoV2( + viral_load_in_sputum=1e9, + quantum_infectious_dose=30/1.6, + ), } diff --git a/cara/monte_carlo/data.py b/cara/monte_carlo/data.py index 79e25517..57c7ebba 100644 --- a/cara/monte_carlo/data.py +++ b/cara/monte_carlo/data.py @@ -53,4 +53,8 @@ virus_distributions = { viral_load_in_sputum=symptomatic_vl_frequencies, quantum_infectious_dose=100/2.25, ), + 'SARS_CoV_2_B16172': mc.SARSCoV2( + viral_load_in_sputum=symptomatic_vl_frequencies, + quantum_infectious_dose=60/1.6, + ), }