From dc6fcfd56f05144009dd28ab8d28c1a718bbe1b3 Mon Sep 17 00:00:00 2001
From: gaazzopa
Air supply flow rate: {{ air_supply }}
Air changes per hour: {{ air_changes }}
+ {% if mechanical_ventilation_type == "air_supply"%} + Air supply flow rate: {{ air_supply }} + {% elif mechanical_ventilation_type == "air_changes"%} + Air changes per hour: {{ air_changes }} + {% endif %} +
Event data:
Number of attendees and infected people: {{ total_people }} in attendance, of whom {{ infected_people }} - {% if infected_people == 1 %} - is - {% else %} - are - {% endif %} + {{ 'is' if infected_people == 1 else 'are' }} infected.
Activity type: {% if activity_type == "office" %} @@ -82,7 +83,6 @@ {% if event_type == "recurrent_event"%}
Recurrent event for the month of {{ recurrent_event_month }}
Break data:
@@ -110,19 +110,15 @@Mask wearing:
Masks worn at workstations? - {% if mask_wearing == "removed" %} - No - {% else %} - Yes - {% endif %} +
Masks worn at workstations? + {{ "No" if mask_wearing == "removed" else "Yes" }}
Mask type: Type 1
Results:
- In this scenario, the estimated probability of one exposed occupant getting infected P(i) is {{ "{:#.2g}".format(prob_inf) }}% and the estimated basic reproduction rate (R0) is {{ "{:#.2g}".format(R0) }}. + In this scenario, the estimated probability of one exposed occupant getting infected P(i) is {{ "{0:.2f}".format(prob_inf) }}% and the estimated basic reproduction rate (R0) is {{ "{0:.2f}".format(R0) }}.
Exposure graph:
Event data:
Number of attendees and infected people: {{ total_people }} in attendance, of whom {{ infected_people }} - {{ 'is' if infected_people == 1 else 'are' }} + {{ "is" if infected_people == 1 else "are" }} infected.
Activity type:
{% if activity_type == "office" %}
From 10b9a5e24d403bebb1f26f1c8d16aea85955c4dd Mon Sep 17 00:00:00 2001
From: Phil Elson Ventilation data: Mechanical ventilation:
- {% if ventilation_type == "mechanical"%}
+ {% if form.ventilation_type == "mechanical"%}
Yes
- {% if mechanical_ventilation_type == "air_supply"%}
+ {% if form.mechanical_ventilation_type == "air_supply"%}
Air supply flow rate: {{ air_supply }}
- {% elif mechanical_ventilation_type == "air_changes"%}
+ {% elif form.mechanical_ventilation_type == "air_changes"%}
Air changes per hour: {{ air_changes }}
{% endif %}
Natural ventilation: - {% if ventilation_type == "natural"%} + {% if form.ventilation_type == "natural"%} Yes
Number of windows: {{ windows_number }}
Height of window: {{ window_height }}
Width of window: {{ window_width }}
Opening distance: {{ opening_distance }}
Windows open: {{ windows_open }}
Number of windows: {{ form.windows_number }}
Height of window: {{ form.window_height }}
Width of window: {{ form.window_width }}
Opening distance: {{ form.opening_distance }}
Windows open: {{ form.windows_open }}
When using the natural ventilation option, air flows are calculated using averaged hourly temperatures for the Geneva region, based on historical data for the month selected.
{% else %}