2020-11-04 21:18:08 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2020-11-09 17:23:46 +00:00
<meta charset="UTF-8">
2021-12-15 14:33:57 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
2020-11-04 21:18:08 +00:00
2020-11-09 18:58:18 +00:00
<title>Report | CARA (COVID Airborne Risk Assessment)</title>
2021-06-14 13:06:25 +00:00
<link rel="stylesheet" type="text/css" href="{{ calculator_prefix }}/static/css/report.css">
2020-11-11 08:50:54 +00:00
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
2021-12-15 14:33:57 +00:00
<link rel="stylesheet" href="/static/css/style.css">
2021-08-06 08:18:40 +00:00
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="{{ calculator_prefix }}/static/js/report.js" type="application/javascript"></script>
2021-08-26 08:35:07 +00:00
2020-11-04 21:18:08 +00:00
</head>
<body id="body">
2021-04-15 09:36:18 +00:00
{% block report_header %}
2020-11-04 21:18:08 +00:00
2021-12-15 14:33:57 +00:00
<div id="report-header-div" class="d-flex flex-row" style="margin: 1%">
<img id="report_logo" src="/static/images/cara_logo.200x200.png" class="d-inline-block align-middle mr-3">
<div style="margin-right: -105px" class='align-self-center mr-auto'>
<h2 class="header_text mb-0">REPORT</h1>
<p class="mb-0" id="report_version"> Created {{ creation_date }} using CARA calculator version v{{ form.calculator_version }}</p>
2021-07-14 10:03:15 +00:00
</div>
2022-03-22 13:08:22 +00:00
<button type="button" class="btn btn-outline-dark align-self-center" id="download-pdf" style="margin-right: -100pt" onclick="print();">Print Report</button>
2021-12-15 14:33:57 +00:00
<a href="{{ permalink.link }}" style="float: left;" id="pdf_qrcode_aref" class="align-self-center invisible mr-0"><div id="pdf_qrcode"></div></a>
2021-04-15 17:55:50 +00:00
</div>
2021-04-15 09:36:18 +00:00
{% endblock report_header %}
2021-01-14 20:12:46 +00:00
2021-08-18 10:17:01 +00:00
<div class="tabs-div">
2021-08-19 13:25:02 +00:00
<ul class="nav nav-tabs" role="tablist" style="margin: 0.5% 0% 0% 1%">
2021-07-14 15:30:30 +00:00
<li class="nav-item">
<a class="nav-link active" id="results-tab" data-toggle="tab" href="#results" role="tab" aria-controls="results" aria-selected="true">Results</a>
</li>
<li class="nav-item">
<a class="nav-link" id="data-tab" data-toggle="tab" href="#data" role="tab" aria-controls="data" aria-selected="false">Input Data</a>
</li>
2021-08-02 09:41:25 +00:00
{% block report_preamble_navtab %}
{% endblock report_preamble_navtab %}
2021-07-14 15:30:30 +00:00
</ul>
2021-07-30 10:21:01 +00:00
<div class="tab-content" style="border-top: #dee2e6 1px solid; margin-top: -1px" >
2021-07-14 15:30:30 +00:00
2021-08-19 13:25:02 +00:00
<div class="tab-pane show active" id="results" role="tabpanel" aria-labelledby="results-tab" style="padding: 1%">
2021-07-14 12:41:41 +00:00
2021-07-14 15:30:30 +00:00
{% block report_results %}
2021-08-23 08:32:57 +00:00
<div class="card bg-light mb-3" id="results-div">
2021-07-15 10:15:53 +00:00
<div class="card-header"><strong>Results </strong>
2021-07-21 06:48:19 +00:00
<button class="icon_button p-0 float-right" data-toggle="collapse" href="#collapseResults" role="button" aria-expanded="true" aria-controls="collapseResults">
2021-07-15 10:15:53 +00:00
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-expand" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M3.646 9.146a.5.5 0 0 1 .708 0L8 12.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708zm0-2.292a.5.5 0 0 0 .708 0L8 3.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708z"/>
</svg>
</button>
</div>
<div class="collapse show" id="collapseResults">
2021-08-02 15:18:01 +00:00
<div class="card-body">
<p class="card-text">
<div class="align-self-center">
<div class="d-flex">
2021-12-15 14:33:57 +00:00
<div class="split">
<div class="col-md-3">
2021-08-26 08:25:04 +00:00
<div style="text-align:center"><b>Probability of infection (%)</b></div>
<div class="d-flex" style="min-height: 160px">
{% block warning_animation %}
2021-12-15 14:33:57 +00:00
<div class="intro-banner-vdo-play-btn animation-color m-auto d-flex align-items-center justify-content-center">
2021-08-26 08:25:04 +00:00
<b>{{prob_inf | non_zero_percentage}}</b>
<i class="glyphicon glyphicon-play whiteText" aria-hidden="true"></i>
2021-12-15 14:33:57 +00:00
<span class="ripple animation-color"></span>
<span class="ripple animation-color"></span>
<span class="ripple animation-color"></span>
2021-08-02 15:18:01 +00:00
</div>
2021-08-26 08:25:04 +00:00
{% endblock warning_animation %}
2021-08-02 15:18:01 +00:00
</div>
2021-08-25 13:42:29 +00:00
</div>
2021-12-15 14:33:57 +00:00
<div class="col-md-8 pr-0 pl-0 d-flex">
{% block report_summary %}
<div class="align-self-center alert alert-dark mb-0" role="alert">
Taking into account the uncertainties tied to the model variables, in this scenario, the <b>probability of one exposed occupant getting infected is {{ prob_inf | non_zero_percentage }}</b> and the <b>expected number of new cases is {{ expected_new_cases | float_format }}</b>*.
</div>
{% endblock report_summary %}
</div>
</div>
2021-08-02 15:18:01 +00:00
</div>
2021-12-15 14:33:57 +00:00
<br>
2021-08-02 15:18:01 +00:00
{% block report_summary_footnote %}
{% endblock report_summary_footnote %}
</div>
2021-08-27 14:53:18 +00:00
<p id="section1">* The results are based on the parameters and assumptions published in the CERN Open Report <a href="https://cds.cern.ch/record/2756083"> CERN-OPEN-2021-004</a>.</p>
2022-03-18 11:53:01 +00:00
{% if form.short_range_option == "short_range_yes" %}
2022-03-22 13:08:22 +00:00
{% if 'Speaking' in form.short_range_interactions|string or 'Shouting' in form.short_range_interactions|string %}
2022-03-18 11:53:01 +00:00
<button class="btn btn-sm btn-primary" id="button_full_exposure" disabled>Show full exposure</button>
2022-03-22 13:08:22 +00:00
<button class="btn btn-sm btn-primary ml-0" id="button_hide_high_concentration">Hide high concentration</button>
2022-03-18 11:53:01 +00:00
{% endif %}
<input type="checkbox" id="long_range_cumulative_checkbox">
2022-03-22 13:08:22 +00:00
<label class="form-check-label" for="long_range_cumulative_checkbox" id="lr_cumulative_checkbox_label">Show long range cumulative doses</label>
2022-03-18 11:53:01 +00:00
{% endif %}
2021-12-15 14:33:57 +00:00
<div id="concentration_plot" style="height: 400px"></div>
2021-08-25 13:42:29 +00:00
<script type="application/javascript">
2022-03-22 13:08:22 +00:00
let times = {{ times | JSONify }}
let concentrations_zoomed = {{ concentrations_zoomed | JSONify }}
let concentrations = {{ concentrations | JSONify }}
let cumulative_doses = {{ cumulative_doses | JSONify }}
let long_range_cumulative_doses = {{ long_range_cumulative_doses | JSONify }}
let exposed_presence_intervals = {{ exposed_presence_intervals | JSONify }}
let short_range_intervals = {{ short_range_intervals | JSONify }}
let short_range_activities = {{ short_range_activities | JSONify }}
let alternative_scenarios = {{ alternative_scenarios.stats | JSONify }}
draw_plot("concentration_plot")
2021-08-27 15:22:37 +00:00
</script>
2021-08-25 13:42:29 +00:00
</p>
2021-08-02 15:18:01 +00:00
</div>
2021-07-15 10:15:53 +00:00
</div>
2021-08-19 10:29:06 +00:00
</div>
2021-08-23 09:22:15 +00:00
<div class="card bg-light mb-3">
2021-07-15 10:15:53 +00:00
<div class="card-header"><strong>Alternative scenarios</strong>
2021-08-02 09:44:48 +00:00
<button class="icon_button p-0 float-right" data-toggle="collapse" href="#collapseAlternativeScenarios" role="button" aria-expanded="false" aria-controls="collapseAlternativeScenarios">
2021-07-15 10:15:53 +00:00
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-expand" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M3.646 9.146a.5.5 0 0 1 .708 0L8 12.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708zm0-2.292a.5.5 0 0 0 .708 0L8 3.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708z"/>
</svg>
</button>
</div>
2021-08-02 09:44:48 +00:00
<div class="collapse" id="collapseAlternativeScenarios">
2021-07-15 10:15:53 +00:00
<div class="card-body">
2021-08-23 09:22:15 +00:00
<div>
2022-03-22 13:08:22 +00:00
{% if form.short_range_option == "short_range_yes" %}
{% if 'Speaking' in form.short_range_interactions|string or 'Shouting' in form.short_range_interactions|string %}
<button class="btn btn-sm btn-primary" id="button_alternative_full_exposure" disabled>Show full exposure</button>
<button class="btn btn-sm btn-primary ml-0" id="button_alternative_hide_high_concentration">Hide high concentration</button>
{% endif %}
{% endif %}
2021-12-15 14:33:57 +00:00
<div id="alternative_scenario_plot" style="height: 400px"></div>
2021-09-07 04:43:22 +00:00
<script type="application/javascript">
2022-03-22 13:08:22 +00:00
draw_alternative_scenarios_plot("concentration_plot", "alternative_scenario_plot");
2021-09-07 04:43:22 +00:00
</script>
2021-12-15 14:33:57 +00:00
<br>
2021-07-15 10:15:53 +00:00
{% block report_scenarios_summary_table %}
<table class="table w-auto">
<thead class="thead-light">
<tr>
<th>Scenario</th>
<th>P(I)</th>
<th>Expected new cases</th>
</tr>
</thead>
<tbody>
{% for scenario_name, scenario_stats in alternative_scenarios.stats.items() %}
<tr>
<td> {{ scenario_name }}</td>
<td> {{ scenario_stats.probability_of_infection | non_zero_percentage }}</td>
<td style="text-align:right">{{ scenario_stats.expected_new_cases | float_format }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock report_scenarios_summary_table %}
2021-07-21 06:48:19 +00:00
</div>
<br/>
<p class="data_text"> <strong> Notes for alternative scenarios: </strong><br>
<ol>
<li>This graph shows the concentration of infectious quanta in the air. The filtration of Type I and FFP2 masks, if worn, applies not only to the emission rate but also to the individual exposure (i.e. inhalation).
For this reason, scenarios with different types of mask will show the same concentration on the graph but have different absorbed doses and infection probabilities.</li>
<li>If you have selected more sophisticated options, such as HEPA filtration or FFP2 masks, this will be indicated in the plot as the "base scenario", representing the inputs inserted in the form.<br>
The other alternative scenarios shown for comparison will not include either HEPA filtration or FFP2 masks.</li>
</ol>
<br>
2021-07-15 10:15:53 +00:00
</p>
</div>
</div>
</div>
2021-07-14 15:30:30 +00:00
{% endblock report_results %}
{% block report_footer %}
2021-12-15 14:33:57 +00:00
<div class="card bg-light mb-3" id="link-results">
2021-08-04 08:21:07 +00:00
<div class="card-header"><strong>Link to reproduce results </strong>
<button class="icon_button p-0 float-right" data-toggle="collapse" href="#collapseQRcode" role="button" aria-expanded="true" aria-controls="collapseQRcode">
2021-08-02 15:18:01 +00:00
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-expand" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M3.646 9.146a.5.5 0 0 1 .708 0L8 12.793l3.646-3.647a.5.5 0 0 1 .708.708l-4 4a.5.5 0 0 1-.708 0l-4-4a.5.5 0 0 1 0-.708zm0-2.292a.5.5 0 0 0 .708 0L8 3.207l3.646 3.647a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 0 0 0 .708z"/>
</svg>
</button>
</div>
2021-08-04 08:21:07 +00:00
<div class="collapse show" id="collapseQRcode">
2021-08-02 15:18:01 +00:00
<div class="card-body">
2021-12-15 14:33:57 +00:00
<div class="text-center"><button id="mobile_link" class="btn btn-primary btn-sm d-none" data-toggle="tooltip" data-placement="top" title="Copy to clipboard" onclick="copy_clipboard('{{ permalink.link }}');">Click to copy a shareable link</button></div>
<div id="link_reproduce_results" class="split">
<div><a href="{{ permalink.link }}" style="float: left;"><div id="qrcode"></div></a></div>
<div class="align-self-center"><span style="float: left; vertical-align: middle; display: inline-block;">
2021-08-02 15:18:01 +00:00
<p style="display: inline-block; vertical-align: middle; line-height: normal;">
2021-12-15 14:33:57 +00:00
Click the QR code to regenerate the report and get a shareable link.<br>Alternatively, scan to regenerate the report.<br>
2021-08-02 15:18:01 +00:00
</p>
2021-12-15 14:33:57 +00:00
</span></div>
2021-08-02 15:18:01 +00:00
</div>
</div>
</div>
2021-07-14 12:41:41 +00:00
</div>
2021-07-14 15:30:30 +00:00
<div style="clear: both;"></div>
{% endblock report_footer %}
</div>
2021-08-19 13:25:02 +00:00
<div class="tab-pane" id="data" role="tabpanel" aria-labelledby="data-tab" style="padding: 1%">
2021-07-14 15:30:30 +00:00
{% block simulation_overview %}
2021-08-27 14:38:45 +00:00
<div class="card">
2021-08-02 15:18:01 +00:00
<div class="card-header"><strong>Simulation:</strong></div>
<div class="card-body">
<p>Simulation Name: {{ form.simulation_name }}</p>
<p>Room Number: {{ form.room_number }}</p>
</div>
</div>
<br>
<div class="card">
<div class="card-header"> <strong>Input data:</strong></div>
<div class="card-body">
<ul>
<li><p class="data_text">Virus variant:
{% if form.virus_type == "SARS_CoV_2" %}
SARS-CoV-2 (nominal strain)
2021-10-12 07:55:44 +00:00
{% elif form.virus_type == "SARS_CoV_2_ALPHA" %}
2021-08-02 15:18:01 +00:00
<a href="https://www.ecdc.europa.eu/en/publications-data/covid-19-risk-assessment-spread-new-sars-cov-2-variants-eueea">SARS-CoV-2 (Alpha VOC) </a>
2021-10-12 14:49:18 +00:00
{% elif form.virus_type == "SARS_CoV_2_BETA" %}
2022-01-06 16:51:18 +00:00
<a href="https://www.eurosurveillance.org/content/10.2807/1560-7917.ES.2021.26.24.2100509">SARS-CoV-2 (Beta VOC) </a>
2021-10-12 07:55:44 +00:00
{% elif form.virus_type == "SARS_CoV_2_GAMMA" %}
2021-08-27 13:27:28 +00:00
<a href="https://doi.org/10.1126/science.abh2644">SARS-CoV-2 (Gamma VOC)</a>
2021-10-12 07:55:44 +00:00
{% elif form.virus_type == "SARS_CoV_2_DELTA" %}
2021-08-02 15:18:01 +00:00
<a href="https://www.bmj.com/content/373/bmj.n1513">SARS-CoV-2 (Delta VOC)</a>
2022-01-11 09:54:01 +00:00
{% elif form.virus_type == "SARS_CoV_2_OMICRON" %}
2022-01-06 16:51:18 +00:00
<a href="https://gitlab.cern.ch/cara/cara/-/issues/226">SARS-CoV-2 (Omicron VOC)</a>
2021-08-02 15:18:01 +00:00
{% endif %}
</p></li>
<li><p class="data_text">Room Volume: {{ model.concentration_model.room.volume }} m³</p></li>
<li><p class="data_text">Room Central Heating: {{ "On" if form.room_heating_option else "Off" }}</p></li>
2021-09-02 09:58:32 +00:00
<li><p class="data_text">Geographic Location: {{ form.location_name }}</p></li>
{% if form.ventilation_type == "natural_ventilation" %}
<li><p class="data_text">Nearest weather station: {{ form.nearest_weather_station()[1].strip().title() }}</p></li>
{% endif %}
2021-08-02 15:18:01 +00:00
</ul>
</div>
</div>
<br>
<div class="card">
<div class="card-header"><strong>Ventilation data:</strong></div>
<div class="card-body">
<ul>
<li><p class="data_text">Mechanical ventilation:
{% if form.ventilation_type == "mechanical_ventilation" %}
Yes </p></li>
<ul>
<li><p class="data_subtext">
{% if form.mechanical_ventilation_type == "mech_type_air_supply"%}
Air supply flow rate: {{ form.air_supply }} m³ / hour
{% elif form.mechanical_ventilation_type == "mech_type_air_changes"%}
Air changes per hour: {{ form.air_changes }} h⁻¹
{% endif %}
</p></li>
</ul>
{% else %}
No </li>
{% endif %}
<li><p class="data_text">Natural ventilation:
{% if form.ventilation_type == "natural_ventilation"%}
Yes </p></li>
<ul>
<li><p class="data_subtext">Number of windows: {{ form.windows_number }}</p></li>
<li><p class="data_subtext">Height of window: {{ form.window_height }} m</p></li>
<li><p class="data_subtext">Window type:
{% if form.window_type == "window_hinged" %}
Top- or Bottom-Hung</p></li>
<li><p class="data_subtext">Width of window: {{ form.window_width }} m</p></li>
{% elif form.window_type == "window_sliding" %}
Sliding / Side-Hung</p></li>
{% endif %}
<li><p class="data_subtext">Opening distance: {{ form.opening_distance }} m</p></li>
<li><p class="data_subtext">Windows open:
{% if form.window_opening_regime == "windows_open_periodically" %}
Periodically for {{ form.windows_duration | readable_minutes}}
every {{ form.windows_frequency | readable_minutes}}
{% elif form.window_opening_regime == "windows_open_permanently" %}
Permanently
{% endif %}
</p></li>
</ul>
2021-09-02 09:58:32 +00:00
<p class="data_subtext data_italic">When using the natural ventilation option, air flows are calculated using averaged hourly temperatures for the region {{ form.location_name }}, based on historical data for the month selected.</p>
2021-08-02 15:18:01 +00:00
{% else %}
No </p></li>
{% endif %}
<li><p class="data_text">HEPA Filtration: {{ 'Yes' if form.hepa_option else 'No' }}</li>
{% if form.hepa_option %}
<ul>
<li><p class="data_text">HEPA amount: {{ form.hepa_amount }} m³ / hour</p></li>
</ul>
{% endif %}
</ul>
</div>
</div>
<br>
<div class="card">
<div class="card-header"><strong>Event data:</strong></div>
<div class="card-body">
<ul>
<li><p class="data_text">Number of attendees and infected people: {{ form.total_people }} in attendance, of whom {{ form.infected_people }}
{{ "is" if form.infected_people == 1 else "are" }}
infected.</p></li>
<li><p class="data_text">
Activity type:
{% if form.activity_type == "office" %}
2021-10-06 13:07:47 +00:00
Office – typical scenario with all persons seated, speaking occasionally (speaking assumed for 1/3rd of the time).
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "meeting" %}
2021-10-06 13:07:47 +00:00
Meeting – typical scenario with all persons seated, one person speaking at a time.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "callcentre" %}
2021-10-06 13:07:47 +00:00
Call Centre = typical office-like scenario with all persons seated, all speaking continuously.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "controlroom-day" %}
2021-10-06 13:07:47 +00:00
Control Room (Day Shift) = specific control room scenario, all persons seated, all speaking 50% of the time.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "controlroom-night" %}
2021-10-06 13:07:47 +00:00
Control Room (Night Shift) = specific control room scenario with all persons seated, all speaking for 10% of the time.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "library" %}
2021-10-06 13:07:47 +00:00
Library = Library scenario with all persons seated, breathing and not speaking.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "workshop" %}
2021-10-06 13:07:47 +00:00
Workshop = assembly workshop environment, all persons doing moderate physical activity, speaking 50% of the time.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "training" %}
2021-12-15 14:33:57 +00:00
Conference/Training – one person (the speaker/trainer) standing, talking, all others seated, talking quietly (whispering). It is assumed the speaker/trainer is the infected person, for the worst case scenario.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "lab" %}
2021-10-06 13:07:47 +00:00
Laboratory = Lab or technical environment, all persons doing light physical activity, speaking 50% of the time.
2021-08-02 15:18:01 +00:00
{% elif form.activity_type == "gym" %}
2021-10-06 13:07:47 +00:00
Gym = For comparison only, all persons doing heavy physical exercise, breathing and not speaking.
2021-08-02 15:18:01 +00:00
{% endif %}
</p></li>
2022-02-08 09:57:37 +00:00
{% if form.short_range_option == "short_range_yes" %}
<li><p class="data_text">
Short range interactions: {{ form.short_range_interactions|length }}
</p></li>
<ul>
{% for interaction in form.short_range_interactions %}
<li>Expiratory activity {{ loop.index if form.short_range_interactions|length > 1 }}: {{ interaction.activity }} </li>
<li>Start time {{ loop.index if form.short_range_interactions|length > 1 }}: {{ interaction.start_time }} </li>
2022-03-10 18:39:42 +00:00
<li>Duration {{ loop.index if form.short_range_interactions|length > 1 }}: {{ interaction.duration }} {{ "minutes" if interaction.duration|float > 1 else "minute" }}</li>
2022-02-08 09:57:37 +00:00
{% endfor %}
</ul>
{% endif %}
2021-08-02 15:18:01 +00:00
<li><p class="data_text">Exposed occupant(s) activity time:</p></li>
<ul>
2021-12-15 14:33:57 +00:00
<li><p class="data_subtext">Start time: {{ form.exposed_start | minutes_to_time }}</p></li>
<li><p class="data_subtext">End time: {{ form.exposed_finish | minutes_to_time }}</p></li>
2021-08-02 15:18:01 +00:00
</ul>
<li><p class="data_text">Infected occupant(s) activity time:</p></li>
<ul>
2021-12-15 14:33:57 +00:00
<li><p class="data_subtext">Start time: {{ form.infected_start | minutes_to_time }}</p></li>
<li><p class="data_subtext">End time: {{ form.infected_finish | minutes_to_time }}</p></li>
2021-08-02 15:18:01 +00:00
</ul>
<li><p class="data_text">Event for the month of {{ form.event_month }}</p></li>
</ul>
</div>
</div>
<br>
<div class="card">
<div class="card-header"><strong>Break data:</strong></div>
<div class="card-body">
{% if form.infected_dont_have_breaks_with_exposed %}
<p style="padding-left:15px;"> Exposed occupant(s):</p>
2021-07-14 15:30:30 +00:00
{% endif %}
<ul>
2021-08-02 15:18:01 +00:00
<li><p class="data_text">Lunch break:
{% if form.exposed_lunch_option%}
Yes</li>
<ul>
2021-12-15 14:33:57 +00:00
<li><p class="data_subtext">Start time: {{ form.exposed_lunch_start | minutes_to_time }}</p></li>
<li><p class="data_subtext">End time: {{ form.exposed_lunch_finish | minutes_to_time }}</p></li>
2021-08-02 15:18:01 +00:00
</ul>
{% else%}
No
{% endif %}
</p></li>
<li><p class="data_text">Coffee breaks: {{ form.exposed_number_of_coffee_breaks() }}
{% if form.exposed_number_of_coffee_breaks() > 0 %}
each of {{ form.exposed_coffee_duration }} minutes duration
</p></li>
<ul>
{%- for start_time, end_time in form.exposed_coffee_break_times() %}
<li><p class="data_subtext">Coffee break {{ loop.index }}: Start: {{ start_time | minutes_to_time }}    End: {{ end_time | minutes_to_time }}</p></li>
{%- endfor %}
</ul>
{% endif %}
2021-07-14 15:30:30 +00:00
</ul>
2021-08-27 13:09:29 +00:00
{% if form.infected_dont_have_breaks_with_exposed %}
<p style="padding-left:15px;"> Infected occupant(s):</p>
2021-08-27 15:14:02 +00:00
2021-08-02 15:18:01 +00:00
<ul>
<li><p class="data_text">Lunch break:
{% if form.infected_lunch_option%}
Yes</li>
<ul>
2021-12-15 14:33:57 +00:00
<li><p class="data_subtext">Start time: {{ form.infected_lunch_start | minutes_to_time }}</p></li>
<li><p class="data_subtext">End time: {{ form.infected_lunch_finish | minutes_to_time }}</p></li>
2021-08-02 15:18:01 +00:00
</ul>
{% else%}
No
{% endif %}
</p></li>
<li><p class="data_text">Coffee breaks: {{ form.infected_number_of_coffee_breaks() }}
{% if form.infected_number_of_coffee_breaks() > 0 %}
each of {{ form.infected_coffee_duration }} minutes duration
</p></li>
<ul>
{%- for start_time, end_time in form.infected_coffee_break_times() %}
<li><p class="data_subtext">Coffee break {{ loop.index }}: Start: {{ start_time | minutes_to_time }}    End: {{ end_time | minutes_to_time }}</p></li>
{%- endfor %}
</ul>
{% endif %}
</ul>
2021-08-27 15:14:02 +00:00
{% else %}
<i>Same breaks taken by the exposed and infected persons.</i>
{% endif %}
2021-08-02 15:18:01 +00:00
</div>
</div>
<br>
<div class="card">
<div class="card-header"><strong>Mask wearing:</strong></div>
<div class="card-body">
<ul>
<li><p class="data_text">Masks worn at workstations? {{ 'Yes' if form.mask_wearing_option == "mask_on" else 'No' }} </p></li>
{% if form.mask_wearing_option == "mask_on" %}
<li><p class="data_text">Mask type: {{ form.mask_type }}</p></li>
{% endif %}
</ul>
</div>
</div>
2021-08-27 14:38:45 +00:00
<br>
{% endblock simulation_overview %}
2021-07-14 15:30:30 +00:00
</div>
2021-08-02 09:41:25 +00:00
{% block report_preamble %}
2021-08-19 10:29:06 +00:00
{% endblock report_preamble %}
2021-07-14 15:30:30 +00:00
</div>
2021-07-14 12:41:41 +00:00
</div>
2021-08-18 10:17:01 +00:00
{% block disclaimer_container %}
<br><br><br>
2021-12-15 14:33:57 +00:00
<div id="disclaimer" style="border: #dee2e6 1px solid; margin: 1%; padding: 20px" class="rounded">
2021-08-18 10:17:01 +00:00
{% block disclaimer %}
<p class="image"> <img align="middle" src="{{ calculator_prefix }}/static/images/disclaimer.jpg" width="40" height="40"><b>Disclaimer:</b><br><br></p>
<p>
CARA is a risk assessment tool developed to model the concentration of viruses in enclosed spaces, in order to inform space-management decisions.
</p>
<p>
CARA models the concentration profile of potential infectious viruses in enclosed spaces with clear and intuitive graphs.
The user can set a number of parameters, including room volume, exposure time, activity type, mask-wearing and ventilation.
The report generated indicates how to avoid exceeding critical concentrations and chains of airborne transmission in spaces such as individual offices, meeting rooms and labs.
</p>
<p>
2022-03-23 10:40:51 +00:00
The risk assessment tool simulates the airborne spread SARS-CoV-2 virus in a finite volume, assuming a homogenous mixture and a two-stage exhaled jet model, and estimates the risk of COVID-19 airborne transmission therein.
The results DO NOT include other known modes of SARS-CoV-2 transmission.
2021-08-18 10:17:01 +00:00
Hence, the output from this model is only valid when the other recommended public health & safety instructions are observed, such as adequate physical distancing, good hand hygiene and other barrier measures.
</p>
<p>
2022-03-23 10:40:51 +00:00
The model used is based on scientific publications relating to airborne transmission of infectious diseases, dose-response exposures and aerosol science, as of February 2022.
2021-08-18 10:17:01 +00:00
It can be used to compare the effectiveness of different airborne-related risk mitigation measures.
</p>
<p>
Note that this model applies a deterministic approach, i.e., it is assumed at least one person is infected and shedding viruses into the simulated volume.
Nonetheless, it is also important to understand that the absolute risk of infection is uncertain, as it will depend on the probability that someone infected attends the event.
The model is most useful for comparing the impact and effectiveness of different mitigation measures such as ventilation, filtration, exposure time, physical activity and
the size of the room, only considering long-range airborne transmission of COVID-19 in indoor settings.
</p>
<p>
This tool is designed to be informative, allowing the user to adapt different settings and model the relative impact on the estimated infection probabilities.
The objective is to facilitate targeted decision-making and investment through comparisons, rather than a singular determination of absolute risk.
While the SARS-CoV-2 virus is in circulation among the population, the notion of 'zero risk' or 'completely safe scenario' does not exist.
Each event modelled is unique, and the results generated therein are only as accurate as the inputs and assumptions.
</p>
<p>
CARA has not undergone review, approval or certification by competent authorities, and as a result, it cannot be considered
as a fully endorsed and reliable tool, namely in the assessment of potential viral emissions from infected hosts to be modelled.
</p>
{% endblock disclaimer %}
</div>
{% endblock disclaimer_container %}
2021-07-14 12:41:41 +00:00
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
2021-12-15 14:33:57 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
2021-08-18 10:17:01 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.2/html2pdf.bundle.js"></script>
2021-12-15 14:33:57 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js" integrity="sha512-CNgIRecGo7nphbeZ04Sc13ka07paqdeTu0WR1IM4kNcpmBAUSHSQX0FslNhTDadL4O5SAGapGt4FodqL8My0mA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript">
//Enable tooltip
$('[data-toggle="tooltip"]').tooltip();
new QRCode(document.getElementById("qrcode"), {
text: "{{ permalink.shortened }}",
width: 330,
height: 330,
correctLevel : QRCode.CorrectLevel.L
});
new QRCode(document.getElementById("pdf_qrcode"), {
text: "{{ permalink.shortened }}",
width: 133,
height: 133,
correctLevel : QRCode.CorrectLevel.L
});
</script>
2020-11-04 21:18:08 +00:00
</body>
2020-11-21 10:11:58 +00:00
</html>