diff --git a/cara/apps/calculator/model_generator.py b/cara/apps/calculator/model_generator.py index dbfd97f3..ad2c27bb 100644 --- a/cara/apps/calculator/model_generator.py +++ b/cara/apps/calculator/model_generator.py @@ -373,35 +373,35 @@ class FormData: scenario_activity_and_expiration = { 'office': ( 'Seated', - # Mostly silent in the office, but 1/3rd of time talking. - {'Talking': 1, 'Breathing': 2} + # Mostly silent in the office, but 1/3rd of time speaking. + {'Speaking': 1, 'Breathing': 2} ), 'controlroom-day': ( 'Seated', - # Daytime control room shift, 50% talking. - {'Talking': 1, 'Breathing': 1} + # Daytime control room shift, 50% speaking. + {'Speaking': 1, 'Breathing': 1} ), 'controlroom-night': ( 'Seated', - # Nightshift control room, 10% talking. - {'Talking': 1, 'Breathing': 9} + # Nightshift control room, 10% speaking. + {'Speaking': 1, 'Breathing': 9} ), 'meeting': ( 'Seated', - # Conversation of N people is approximately 1/N% of the time talking. - {'Talking': 1, 'Breathing': self.total_people - 1} + # Conversation of N people is approximately 1/N% of the time speaking. + {'Speaking': 1, 'Breathing': self.total_people - 1} ), - 'callcentre': ('Seated', 'Talking'), + 'callcentre': ('Seated', 'Speaking'), 'library': ('Seated', 'Breathing'), - 'training': ('Standing', 'Talking'), + 'training': ('Standing', 'Speaking'), 'lab': ( 'Light activity', - #Model 1/2 of time spent talking in a lab. - {'Talking': 1, 'Breathing': 1}), + #Model 1/2 of time spent speaking in a lab. + {'Speaking': 1, 'Breathing': 1}), 'workshop': ( 'Moderate activity', - #Model 1/2 of time spent talking in a workshop. - {'Talking': 1, 'Breathing': 1}), + #Model 1/2 of time spent speaking in a workshop. + {'Speaking': 1, 'Breathing': 1}), 'gym':('Heavy exercise', 'Breathing'), } diff --git a/cara/apps/calculator/templates/base/calculator.report.html.j2 b/cara/apps/calculator/templates/base/calculator.report.html.j2 index 88aec4af..0f55fd75 100644 --- a/cara/apps/calculator/templates/base/calculator.report.html.j2 +++ b/cara/apps/calculator/templates/base/calculator.report.html.j2 @@ -279,25 +279,25 @@
  • Activity type: {% if form.activity_type == "office" %} - Office – typical scenario with all persons seated, talking occasionally (talking assumed for 1/3rd of the time). + Office – typical scenario with all persons seated, speaking occasionally (speaking assumed for 1/3rd of the time). {% elif form.activity_type == "meeting" %} - Meeting – typical scenario with all persons seated, one person talking at a time. + Meeting – typical scenario with all persons seated, one person speaking at a time. {% elif form.activity_type == "callcentre" %} - Call Centre = typical office-like scenario with all persons seated, all talking continuously. + Call Centre = typical office-like scenario with all persons seated, all speaking continuously. {% elif form.activity_type == "controlroom-day" %} - Control Room (Day Shift) = specific control room scenario, all persons seated, all talking 50% of the time. + Control Room (Day Shift) = specific control room scenario, all persons seated, all speaking 50% of the time. {% elif form.activity_type == "controlroom-night" %} - Control Room (Night Shift) = specific control room scenario with all persons seated, all talking for 10% of the time. + Control Room (Night Shift) = specific control room scenario with all persons seated, all speaking for 10% of the time. {% elif form.activity_type == "library" %} - Library = Library scenario with all persons seated, breathing and not talking. + Library = Library scenario with all persons seated, breathing and not speaking. {% elif form.activity_type == "workshop" %} - Workshop = assembly workshop environment, all persons doing moderate physical activity, talking 50% of the time. + Workshop = assembly workshop environment, all persons doing moderate physical activity, speaking 50% of the time. {% elif form.activity_type == "training" %} - Training – one person (the trainer) standing, talking, all others seated, talking quietly (whispering). It is assumed the trainer is the infected person, for the worst case scenario. + Training – one person (the trainer) standing, speaking, all others seated, speaking quietly (whispering). It is assumed the trainer is the infected person, for the worst case scenario. {% elif form.activity_type == "lab" %} - Laboratory = Lab or technical environment, all persons doing light physical activity, talking 50% of the time. + Laboratory = Lab or technical environment, all persons doing light physical activity, speaking 50% of the time. {% elif form.activity_type == "gym" %} - Gym = For comparison only, all persons doing heavy physical exercise, breathing and not talking. + Gym = For comparison only, all persons doing heavy physical exercise, breathing and not speaking. {% endif %}

  • Exposed occupant(s) activity time:

  • diff --git a/cara/apps/calculator/templates/calculator.form.html.j2 b/cara/apps/calculator/templates/calculator.form.html.j2 index 28d275eb..c3ba1e76 100644 --- a/cara/apps/calculator/templates/calculator.form.html.j2 +++ b/cara/apps/calculator/templates/calculator.form.html.j2 @@ -369,17 +369,17 @@ v{{ calculator_version }} Please sen Activity types:
    The type of activity applies to both the infected and exposed persons: Activity breaks: