Achoo! Modeling the Spread of the Flu. New Mexico. Supercomputing Challenge. Final Report. April 20 th, Team Number 56. Los Alamos Middle School

Size: px
Start display at page:

Download "Achoo! Modeling the Spread of the Flu. New Mexico. Supercomputing Challenge. Final Report. April 20 th, Team Number 56. Los Alamos Middle School"

Transcription

1 Achoo! Modeling the Spread of the Flu New Mexico Supercomputing Challenge Final Report April 20 th, 2007 Team Number 56 Los Alamos Middle School Emily TenCate Sponsoring Teachers: Jessie Gac, Donna Grim Project Mentor: Deborah Summa

2 Overview: A simple computer program was developed to model the spread of the flu in a contained environment such as a school. The StarLogo programming environment was chosen to implement the algorithm. StarLogo allows many agents to be acting indepently but at the same time. This feature correlates well with a school environment. The basic model elements were desks and walls (StarLogo patches ) and students (StarLogo turtles ). Desks and walls were combined to make classrooms, and classrooms were combined to build a school. Classrooms were populated with students, each of whom received a random schedule. A school day consisted of 8 periods, with students changing classrooms randomly each period. Within a class each student could walk randomly. Student attributes included color (corresponding to health status), chance of sneezing on and infecting a desk, and chances of getting the disease from either a desk or another student. To test whether the model was realistic, two sets of simulations were to be run. Thirty trials with one set of parameters was used to baseline the program, then chances of sneezing, getting infected, and initial number of ill students coming to school were systematically varied. For each set of initial conditions, 15 simulations were run. The output of each simulation was the number of sick people at the of one day. The same set of conditions was run again, but this time, a command including studentto-student interactions was included. Simulation results for the simulations run without direct contact between agents showed a wide distribution of potential outcomes, but general trs were apparent. This model was most sensitive to the student susceptibility, and least sensitive to the initial number of

3 ill students, which was likely due to the absence of student-tostudent interactions. Introduction: The World Health Organization is warning that a potentially devastating global flu pandemic is imminent. President Bush has requested $7.1 billion to stockpile medications to reduce the impact of such an outbreak. Bioterrorism threats are also of major concern. Computer models are helpful in predicting the likelihood of epidemics and studying their movement within a population. Even simple models can provide insight to help guide public health policies. The goal of this project was to develop a computer simulation of the spread of the flu in a semi-contained population, such as a school, and to use the model to examine the relative effect of different parameters on the evolution of a small-scale epidemic. I predict that even with a simple model it should be possible to show a valid relationship between the spread of infection and factors such as susceptibility of a population, the number of times people sneeze, and the initial number of infected students who come to school on any given day. I think infection rates will climb as susceptibility increases (corresponding to weak, tired individuals such as students who continually stay up too late), or as people openly sneeze more (practicing poor hygiene such as not covering their mouth or washing their hands), and as the number of ill students coming to school increases. I think the latter variable is most important.

4 I suspect that in most cases the spread of the infection will be self-limiting, but at some point there may be conditions that cause exponential growth or widespread epidemic. Procedure: This work had 3 indepent phases. The main thrust was to develop the logic, then to write, test, and refine the computer algorithm. A layered approach, where the simplest elements are defined first, then progressively more complex elements are built up, was taken. Special attention was paid to interactions between students and objects and interactions among students. The second component was to find information on the mode of transmission, incubation period, virulence, etc. of the influenza virus. Assumptions were made about student movement and daily interactions in a typical school, based loosely on observations at my school. The final phase was to apply the code. A test matrix consisting of different experiments (in which all conditions were held constant except one) was drawn up and simulations run. Intuition, guided by literature data and classroom observations, was used to choose the initial conditions. Developing the Algorithm: To construct a Virtual Schoolhouse, I broke the problem into three categories: 1) Physical setting (stationary items); 2) People (mobile); 3) Interactions between stationary and mobile objects; and

5 4) Interactions between mobile objects. The basic elements for each category were defined and used as building blocks for more complex things. In the physical setting, first level objects were desks and walls. Four walls enclosed a classroom, which was filled with 25 desks. Nine classrooms made up the school building. The lowest level mobile object was a single student. The next level was a classroom full of students, then all classrooms filled with students. Each student s random schedule assigned him or her to a certain classroom. A school day consisted of 8 periods, with students switching classes every 100 clock cycles. Students could interact with their environment and with each other. There was a certain probability of disease transmission whenever an infected student sneezed on a desk or a healthy student came in contact with a germ-covered desk, as well as a probability of transmission when a healthy student made contact with an infected student. The School Simulation program was written modularly using StarLogo. A screen-shot of the control panel is shown in Figure 1. The first procedure written was Set-Up. It created the walls for 9 classrooms, then filled each classroom with 25 desks. Next, 224 healthy students (blue) and one ill student (red) were created. The number of initially ill students could be changed by using the Create-Sick procedure. The School-Day procedure assigned each student a schedule, then set the students in motion. It kept track of clock cycles, and told each student to change classes (another procedure) every 100 cycles, until 8 class periods had been completed. Since the flu virus can only live on surfaces for several

6 hours, a Sanitization procedure was written. This procedure, invoked at the of each class period, had students clean up a random number of infected desks. Students moved by selecting a random direction, then going forward 0 or 1 space. If the student was ill (red) AND the patch immediately ahead was blue (a clean desk), THEN the student would check its sneeze probability. If the student did sneeze, germs were spread to 1/4 of the desk in front of him and that piece of desk turned red. IF the student was healthy (cyan) AND the patch immediately ahead was red (infected desk) THEN the student would check its susceptibility chances. If the student was in a weakened state, it became infected (turned red). The same procedure was repeated for disease transmission between students. This cycle was repeated until the school day ed. As the school day progressed, a real-time graph tracked the number of infected students. The complete, annotated code listing is attached in Appix 1.

7 Figure 1: School Simulator Control Panel The virtual school is on the right. The bright green lines are walls, and the square blue patches are desks. The turtle-shaped blobs are students (cyan = healthy, red = infected). On the left are the buttons that invoke the different procedures as well as a counter that tells the number of infected students. The sliders are for changing the initial values of the variables. The plot in the center left graphs the number of sick people as a function of time. Simulations: A base set of parameters was selected to test the code with and without the addition of interactions between students. Thirty trials were run, and the total number of infected students at the of one day was recorded. Three variables were systematically changed and the simulation was rerun 15 times for each new set of initial conditions. The range of parameters tested is shown in Table 1.

8 Approximately 30 hours of CPU time was required to generate a total of 330 data points. The matrix shown in Table 1 has yet to be run with the inclusion of student-to-student interactions. Table 1: Test matrix showing baseline values and range of parameters tested. In each series, only one variable changed; others were held at baseline values. Results: A frequency plot of the baseline data for the first simulation is shown in Figure 2. The data is spread out with the peak on the lower. A range of results is expected because there are probabilities associated with transmitting or catching disease.

9 Figure 2: Histogram Plot of Baseline Data (5% Sneeze, 5% Susceptibility, 1 Initially Ill) The effects of increasing the number of initially ill students arriving at school, increasing the chances of sneezing and spreading germs, and increasing the susceptibility of healthy students are plotted in Figures 3 5. The red lines are the minimum and maximum values obtained for each set of initial conditions. The average value is shown in blue. The area between the red lines is the expected response envelope. A discussion of the results is given in the next section. Figure 3: Effect of Increasing the Number of Initially Ill Students (without inclusion of student-to-student interactions)

10 Figure 4: Effect of Increasing the Chance that an Infected Student Sneezes (without inclusion of student-to-student interactions) Figure 5: Effect of Increasing the Chance that a Healthy Student Gets Ill (without inclusion of student-to-student interactions)

11 Discussion and Conclusions: StarLogo was a good choice of programming environments for this project. It was easy to learn, fairly simple to use, and relatively powerful even if not too robust. Having agents running indepently and in parallel was essential for this application. The layered model worked well. It was easy to build individual modules that incorporated the smaller modules from the previous layer (for instance, schools filled with classrooms filled with desks and walls). The simulations actually worked, even though they weren t completely realistic. The results were not completely unrealistic either, given the rather broad assumptions. For each set of initial conditions the data did have a wide spread, but general trs were apparent. This simulation is very sensitive to increasing the chance of an infected person sneezing or increasing the chance of a healthy person getting infected from touching a sneezed-on desk. When the sneezing probability went up to 20%, the infection rate jumped and diseased almost 2/3 of the population. When the susceptibility went up to 25%, the maximum infection rate skyrocketed to 88%. It would be interesting to include external interactions, such as students going home and encountering people outside of the school, but that would be very difficult to model and code with this program. I would also like to run simulations with a much larger population and test different strategies for containing the outbreak of disease, such as quarantine versus vaccination or examining what percentage of

12 the population should be vaccinated in order to contain an outbreak.

13 References: 1. Colella, Vanessa Stevens; Eric Klopfer; and Mitchel Resnick; Adventures in Modeling: Exploring Complex, Dynamic Systems with StarLogo. Teachers College Press, New York, Resnick, Mitchel; Turtles, Termites, and Traffic Jams: Explorations in Massively Parallel Microworlds. MIT Press, Cambridge MA, StarLogo on the Web. Massachusetts Institute of Technology. Online posting. (and associated links). 4. StarLogo User s Group postings. starlogo-users@media.mit.edu 5. Influenza Fact Sheet. American Lung Association. Online Posting Health Matters: Flu. National Institute of Allergy and Infectious Diseases, National Institutes of Health. Online Posting Fact Sheet: Key Facts About Influenza and the Influenza Vaccine. Centers for Disease Control and Prevention. Online posting. (and associated links) 8. Bush unveils $7.1 billion plan to prepare for flu pandemic. Online posting. Posted November 2, Transcript of Bush speech on flu pandemic strategy. Online posting. dex.html. Posted November 2, Fact Sheet: Safeguarding America Against Pandemic Influenza The United States White House, press release. Online posting. Posted November 1, Responding to the avian influenza pandemic threat: Recommed strategic actions. World Health Organization. Communicable Disease Surveillance and Response, Global Influenza Programme. WHO/CDS/CSR/GIP/

14 Appix 1: Code Listing `turtle` turtles-own [schedule ger] to school-day ; this command runs an 8 class period day setger random 2 repeat 7 [change-classes go clean-up change-classes] to go ; this command moves the agents randomly for 100 clock turns, infecting as they go repeat 100 [enclose wiggle enclose random-move enclose sneeze enclose wiggle enclose infect enclose] to random-move ; agents move randomly in any direction

15 seth random 360 enclose fd random 2 to wiggle ; changes an agents' directions, also sets chance of agent becoming infected from other agents according to slider rt random 10 grab one-of-turtles-here [if color = red and ((random 100) < student_infection) [setc-of partner red]] lt random 10 to enclose ; contains turtles in lime green classrooms if pc-ahead = lime [rt 180 fd random 2] to sneeze to slider ; sets the chance of infecting a desk according ifelse (color = red) and ((random 100 ) < chance_of_sneeze) [ if pc-ahead = blue [fd 1 stamp red]] [fd 1] to infect ; sets the chance of an agent becoming infected from a desk according to the get-infected slider ifelse (color = cyan) and ((random 100) < get_infected) [if pc-ahead = red [fd 1 setc red]] [fd 1]

16 to box to create desks ; involved in setup, places agents in separate rooms if color = sky [set xcor -24 set ycor 10 seth 360] if color = cyan [set xcor -8 set ycor 10 seth 360] if color = turquoise [set xcor 10 set ycor 10 seth 360] if color = lime [set xcor -24 set ycor -8 seth 360] if color = green [set xcor -8 set ycor -8 seth 360] if color = yellow [set xcor 10 set ycor -8 seth 360] if color = brown [set xcor -24 set ycor -24 seth 360] if color = orange [set xcor -8 set ycor -24 seth 360] if color = red [set xcor 10 set ycor -24 seth 360] to room creation ; moves agents into separate classrooms for desk if color = sky [set xcor -30 set ycor 12 seth 360] if color = cyan [set xcor -10 set ycor 12 seth 360] if color = turquoise [set xcor 12 set ycor 12 seth 360] if color = lime [set xcor -30 set ycor -10 seth 360] if color = green [set xcor -30 set ycor -30 seth 360] if color = yellow [set xcor -10 set ycor -10 seth 360] if color = brown [set xcor 12 set ycor -30 seth 360] if color = orange [set xcor 12 set ycor -10 seth 360] if color = red [set xcor -10 set ycor -30 seth 360] to make-desks ; agents create one desk

17 if color = sky [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = cyan [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = turquoise [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = lime [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = yellow [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = orange [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = green [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = red [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] if color = brown [stamp blue fd 1 stamp blue rt 90 fd 1 stamp blue rt 90 fd 1 stamp blue] to make-desk-row ; each agent creates a row of five desks repeat 5 [make-desks seth 270 fd 1 seth 0 fd 4] bk 2 to fill-room desks ; each agent creates an five by five array of make-desk-row room

18 seth 90 fd 4 seth 0 make-desk-row room seth 90 fd 8 seth 0 make-desk-row room seth 90 fd 12 seth 0 make-desk-row room seth 90 fd 16 seth 0 make-desk-row room to change-classes new classroom ; this command relocates each student to a setschedule random 9 if schedule = 0 [set xcor -22 set ycor 21] if schedule = 1 [set xcor -2 set ycor 21] if schedule = 2 [set xcor 20 set ycor 21] if schedule = 3 [set xcor -22 set ycor -1]

19 if schedule = 4 [set xcor -2 set ycor -1] if schedule = 5 [set xcor 20 set ycor -1] if schedule = 6 [set xcor -22 set ycor -21] if schedule = 7 [set xcor -2 set ycor -21] if schedule = 8 [set xcor 20 set ycor -21] to clean-up ; this procedure simulates the fact that germs don't usually last outside of the body for too long repeat 100 [random-move if pc-ahead = red [fd 1 stamp blue]] `observer` patches-own [germs] to crt-sick crt infected ask-turtles [ifelse (color = red) or (color = cyan)[fd 1 bk 1][setc red]] to setup ca crt 1 ask-turtles [set xcor -31 set ycor -31 setc lime pd fd 63

20 die] crt 1 ask-turtles [set xcor -31 set ycor -31 setc lime rt 90 pd fd 63 die] crt 1 ask-turtles [set xcor 31 set ycor -31 setc lime pd fd 63 die] crt 1 ask-turtles [set xcor 31 set ycor 31 lt 90 setc lime pd fd 63 die] crt 1 ask-turtles [ set xcor 31 set ycor 11 seth 270

21 setc lime pd fd 63 die] crt 1 ask-turtles [set xcor 31 set ycor -11 seth 270 setc lime pd fd 63 die] crt 1 ask-turtles [set xcor -11 set ycor 31 seth 180 setc lime pd fd 63 die] crt 1 ask-turtles [set xcor 11 set ycor 31 seth 180 setc lime pd fd 63 die] crt 9

22 ask-turtles [room] ask-turtles [fill-room] ask-turtles [ifelse color = red [fd 1] [setc cyan]] ask-turtles [repeat numberofstudents [hatch [setc cyan]]] ask-turtles [change-classes] clearplots

The Ginseng Effect. Malcolm Bob

The Ginseng Effect. Malcolm Bob The Ginseng Effect By Malcolm Bob 1 Table of Contents Abstract...3 Question and Hypothesis....5 Introduction....6 Review of literature 7 Materials and Method...9 Data... 11 Discussion..12 Conclusion.13

More information

Current Swine Influenza Situation Updated frequently on CDC website 109 cases in US with 1 death 57 confirmed cases aroun

Current Swine Influenza Situation Updated frequently on CDC website  109 cases in US with 1 death 57 confirmed cases aroun Swine Flu Olga Emgushov, MD, MPH Director Epidemiology/Public Health Preparedness Brevard County Health Department April 30, 2009 Current Swine Influenza Situation Updated frequently on CDC website http://www.cdc.gov/swineflu/

More information

Disease dynamics: understanding the spread of diseases

Disease dynamics: understanding the spread of diseases Disease dynamics: understanding the spread of diseases Image courtesy of Lightspring / shutterstock.com Get to grips with the spread of infectious diseases with these classroom activities highlighting

More information

PANDEMIC INFLUENZA PLAN

PANDEMIC INFLUENZA PLAN PANDEMIC INFLUENZA PLAN August 13, 2009 Credits: We wish to acknowledge and thank Saskatoon Public Schools for their willingness to share information which served as the basis for this document. 1 Pandemic

More information

A. No. There are no current reports of avian influenza (bird flu) in birds in the U.S.

A. No. There are no current reports of avian influenza (bird flu) in birds in the U.S. Bird Flu FAQ 2 Frequently Asked Avian Influenza Questions Avian influenza in birds Q. What is avian influenza? A. Avian influenza is an infectious disease of birds caused by type A strains of the influenza

More information

Annex H - Pandemic or Disease Outbreak

Annex H - Pandemic or Disease Outbreak or Disease Outbreak Version: 1.0 Effective: 10/01/2015 Revision Date: 10/01/2015 Approved By: John Pitcher Purpose A pandemic is a worldwide epidemic of an infectious disease. It occurs when a new organism

More information

Influenza: The Threat of a Pandemic

Influenza: The Threat of a Pandemic April, 2009 Definitions Epidemic: An increase in disease above what you what would normally expect. Pandemic: A worldwide epidemic 2 What is Influenza? Also called Flu, it is a contagious respiratory illness

More information

Consensus Dynamics. Giulia Graglia, Pietro Quaglio

Consensus Dynamics. Giulia Graglia, Pietro Quaglio Consensus Dynamics Giulia Graglia, Pietro Quaglio 1 Introduction The attempt of our work is to create a model that simulates the consensus dynamics in a population, that result from the interactions between

More information

Infectious Disease: An agent-based simulation.

Infectious Disease: An agent-based simulation. East Tennessee State University Digital Commons @ East Tennessee State University Undergraduate Honors Theses 5-213 Infectious Disease: An agent-based simulation. Iqra Ahmad East Tennessee State University

More information

MMCS Turkey Flu Pandemic Project

MMCS Turkey Flu Pandemic Project MMCS Turkey Flu Pandemic Project This is a group project with 2 people per group. You can chose your own partner subject to the constraint that you must not work with the same person as in the banking

More information

Disease Detectives 60-Minute Health & Life Science Lesson Interactive Video Conference Grades: Disease Detectives: An Exercise In Epidemiology

Disease Detectives 60-Minute Health & Life Science Lesson Interactive Video Conference Grades: Disease Detectives: An Exercise In Epidemiology Disease Detectives 60-Minute Health & Life Science Lesson Interactive Video Conference Grades: 6-12 TEACHER GUIDE Disease Detectives: An Exercise In Epidemiology Description This just in: Nearly half of

More information

H1N1 FLU H1N1 Influenza (Flu) 2009 H1N1 Flu in People. What is 2009 H1N1 flu swine flu? Why is 2009 H1N1 flu sometimes called swine flu?

H1N1 FLU H1N1 Influenza (Flu) 2009 H1N1 Flu in People. What is 2009 H1N1 flu swine flu? Why is 2009 H1N1 flu sometimes called swine flu? 2009 H1N1 Influenza (Flu) What is 2009 H1N1 flu swine flu? 2009 H1N1 (also known as swine flu ) is a new flu virus that makes people sick. The 2009 H1N1 flu spreads from person to person like seasonal

More information

Community Influenza Surveillance Report Update of Current Status January 9 th, 2019

Community Influenza Surveillance Report Update of Current Status January 9 th, 2019 218-219 Community Influenza Surveillance Report Update of Current Status January 9 th, 219 First report of 219 This is the first Community Influenza Surveillance Report of 219 and covers the three-week

More information

INFLUENZA WATCH Los Angeles County

INFLUENZA WATCH Los Angeles County January 3, 2007: Vol.1, Issue 2 Surveillance Week: 12/24/06 12/30/06 INFLUENZA WATCH Los Angeles County http://lapublichealth.org/acd/flu.htm SURVEILLANCE SYSTEM* Week 52 To Date Positive Influenza Tests±

More information

We own buses and are organizing trips across Canada and the United States. What should we do if someone in a bus has the flu?

We own buses and are organizing trips across Canada and the United States. What should we do if someone in a bus has the flu? 1.877.356.3226 www.redcross.ca/flu Questions & Answers An Introduction to the Prevention of Disease Transmission for Canadian Workplaces Webcast November 8 and 9, 2007 Q1 Our Company is involved in transportation

More information

An Agent-Based Model for Containing a Virus Outbreak

An Agent-Based Model for Containing a Virus Outbreak An Agent-Based Model for Containing a Virus Outbreak Jenibel N. Paray 1, Romeric F. Pobre 1, Al Rey C. Villagracia 1 1Physics Department, De La Salle University, 2401 Taft Avenue, Malate 1004, Manila,

More information

The Mathematics of Flu, Explained

The Mathematics of Flu, Explained The Mathematics of Flu, Explained Richard C. Larson rclarson@mit.edu Massachusetts Institute of Technology Cambridge, Massachusetts 02139 USA September 5, 2009 Thank you for doing this exercise in your

More information

Importance and Benefits of Being Prepared

Importance and Benefits of Being Prepared Importance and Benefits of Being Prepared It is difficult to predict when the next influenza pandemic will occur or how severe it will be. The effects of a pandemic can be lessened if preparations are

More information

County-Wide Pandemic Influenza Preparedness & Response Plan

County-Wide Pandemic Influenza Preparedness & Response Plan County-Wide Pandemic Influenza Preparedness & Response Plan Presented by the Santa Clara County Public Health Department to the Emergency Managers Association April 27, 2006 Why the Concern About Pandemic

More information

Five Features of Fighting the Flu

Five Features of Fighting the Flu Five Features of Fighting the Flu Public Health Emergency Preparedness Pandemic Influenza Prevention Curriculum Grades 9-12 1 Day One Understand the Flu Virus 2 Five Features of Flu Fighting Code 1: Understand

More information

P2 P7 SCN 1-13a HWB 1-15a, 2-15a HWB 1-16a, 2-16a HWB 1-17a, 2-17a Unit of Study Unit 6 Micro-organisms Estimated Teaching Time 50 minutes

P2 P7 SCN 1-13a HWB 1-15a, 2-15a HWB 1-16a, 2-16a HWB 1-17a, 2-17a Unit of Study Unit 6 Micro-organisms Estimated Teaching Time 50 minutes P2 P7 SCN 1-13a HWB 1-15a, 2-15a HWB 1-16a, 2-16a HWB 1-17a, 2-17a Unit of Study Unit 6 Micro-organisms Estimated Teaching Time 50 minutes The Spread of Infection section aims to teach students how poor

More information

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected?

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected? Some Similarities between the Spread of an Infectious Disease and Population Growth by Jennifer Doherty and Dr. Ingrid Waldron, Department of Biology, University of Pennsylvania, 2007 1 How Does an Infectious

More information

Incidence of Seasonal Influenza

Incidence of Seasonal Influenza What Is All the Fuss? A Just-in in-time Primer on H1N1 Influenza A and Pandemic Influenza provided by the National Association of State EMS Officials May 1, 2009 Disclaimer This self-learning learning

More information

U.S. Human Cases of Swine Flu Infection (As of April 29, 2009, 11:00 AM ET)

U.S. Human Cases of Swine Flu Infection (As of April 29, 2009, 11:00 AM ET) Swine Flu Call Center Script 4/29/2009 3:00 PM SWINE FLU QUESTIONS What is swine flu? Swine Influenza, also called swine flu, is a respiratory disease of pigs caused by type A influenza viruses. Outbreaks

More information

H1N1 Flu Virus Sudbury & District Health Unit Response. Shelley Westhaver May 2009

H1N1 Flu Virus Sudbury & District Health Unit Response. Shelley Westhaver May 2009 H1N1 Flu Virus Sudbury & District Health Unit Response Shelley Westhaver May 2009 Pandemic Influenza A global outbreak of disease that occurs when a new influenza virus appears or emerges in the human

More information

How Math (and Vaccines) Keep You Safe From the Flu

How Math (and Vaccines) Keep You Safe From the Flu How Math (and Vaccines) Keep You Safe From the Flu Simple math shows how widespread vaccination can disrupt the exponential spread of disease and prevent epidemics. By Patrick Honner BIG MOUTH for Quanta

More information

Influenza Pandemic: Overview of Ops Response. Ministry of Health SINGAPORE

Influenza Pandemic: Overview of Ops Response. Ministry of Health SINGAPORE Influenza Pandemic: Overview of Ops Response Ministry of Health SINGAPORE Photos from CBC News Recent Human infections caused by avian influenza Jan 2004 Aug 05 (H5N1) Thailand - 17 cases (12 deaths) Vietnam

More information

Guideline for Students and Staff at Post-Secondary Institutions and Private Vocational Training Providers

Guideline for Students and Staff at Post-Secondary Institutions and Private Vocational Training Providers Pandemic (H1N1) 2009 Revised 09 29 2009 Guideline for Students and Staff at Post-Secondary Institutions and Private Vocational Training Providers Prevention and Management of Student Exposure to Pandemic

More information

Protect Yourself and Reduce the Spread of Infectious Disease.

Protect Yourself and Reduce the Spread of Infectious Disease. Infectious Disease Outbreak People and trade goods travel around the world quickly in our global economy. Infectious diseases can hitchhike with people, goods, and animals, and can potentially spread worldwide

More information

Management of Pandemic Influenza Outbreaks. Bryan K Breland Director, Emergency Management University of Alabama at Birmingham

Management of Pandemic Influenza Outbreaks. Bryan K Breland Director, Emergency Management University of Alabama at Birmingham Management of Pandemic Influenza Outbreaks Bryan K Breland Director, Emergency Management University of Alabama at Birmingham Management of Pandemic Disease Outbreaks PANDEMIC DEFINED HISTORY OF PANDEMIC

More information

August 26, 2009 Florida Flu Information Line

August 26, 2009 Florida Flu Information Line www.myflusafety.com August 26, 2009 3 p.m. Florida Flu Information Line 1-877-352-3581 On Monday, August 24th, Florida Department of Health launched a toll-free number to provide public health information

More information

How many students at St. Francis Preparatory School in New York City have become ill or been confirmed with swine flu?

How many students at St. Francis Preparatory School in New York City have become ill or been confirmed with swine flu? Swine Flu Call Center Script SWINE FLU QUESTIONS What is swine flu? Swine Influenza, also called swine flu, is a respiratory disease of pigs caused by type A influenza viruses. Outbreaks of swine flu happen

More information

Influenza. Gwen Clutario, Terry Chhour, Karen Lee

Influenza. Gwen Clutario, Terry Chhour, Karen Lee Influenza Gwen Clutario, Terry Chhour, Karen Lee Overview Commonly referred to as the flu Defined as a highly contagious viral infection where it starts at the upper respiratory tract and attacks the nose,

More information

Simulation of the Spread of a Virus Using Agent Based Modeling

Simulation of the Spread of a Virus Using Agent Based Modeling Simulation of the Spread of a Virus Using Agent Based Modeling Matt Wade June 10, 2008 Abstract My goal is to make an agent based modeling simulation that shows the spread of a cold through a school. It

More information

State of California Health and Human Services Agency California Department of Public Health

State of California Health and Human Services Agency California Department of Public Health State of California Health and Human Services Agency California Department of Public Health MARK B HORTON, MD, MSPH Director ARNOLD SCHWARZENEGGER Governor Introduction CDPH Guidance for School (K-12)

More information

This letter contains important information from the Vermont Department of Health.

This letter contains important information from the Vermont Department of Health. September 2009 This letter contains important information from the Vermont Department of Health. Dear Parent: Only a few months ago we were alerting you about the novel H1N1 or swine flu. This new flu

More information

The effect of infectiousness, duration of sickness, and chance of recovery on a population: a simulation study

The effect of infectiousness, duration of sickness, and chance of recovery on a population: a simulation study Research Article The effect of infectiousness, duration of sickness, and chance of recovery on a population: a simulation study McKayla Johnson, Tashauna Gilliam, and Istvan Karsai East Tennessee State

More information

The Impact of Pandemic Influenza on Public Health

The Impact of Pandemic Influenza on Public Health This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License. Your use of this material constitutes acceptance of that license and the conditions of use of materials on this

More information

Should the U.S. develop and stockpile vaccines against A(H5N1) avian flu?

Should the U.S. develop and stockpile vaccines against A(H5N1) avian flu? Amy Dewees July 7, 2006 Biol 501 Should the U.S. develop and stockpile vaccines against A(H5N1) avian flu? A(H5N1) is a strain of flu virus that infects many species of birds, including domestic and migratory

More information

Hepatitis B. What Is Hepatitis? What Are The Two Stages Of Hepatitis? Published on: 5 Oct 2010

Hepatitis B. What Is Hepatitis? What Are The Two Stages Of Hepatitis? Published on: 5 Oct 2010 Published on: 5 Oct 2010 Hepatitis B What Is Hepatitis? Hepatitis is an inflammation of the liver. Inflammation causes soreness and swelling. Hepatitis can be caused by many things. Hepatitis is most commonly

More information

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected?

Next, your teacher will ask everyone who is infected to raise their hand. How many people were infected? Some Similarities between the Spread of an Infectious Disease and Population Growth by Jennifer Doherty and Dr. Ingrid Waldron, Department of Biology, University of Pennsylvania, 2007 1 How Does an Infectious

More information

University of Colorado Denver. Pandemic Preparedness and Response Plan. April 30, 2009

University of Colorado Denver. Pandemic Preparedness and Response Plan. April 30, 2009 University of Colorado Denver Pandemic Preparedness and Response Plan April 30, 2009 UCD Pandemic Preparedness and Response Plan Executive Summary The World Health Organization (WHO) and the Centers for

More information

Pandemic H1N1 2009: The Public Health Perspective. Massachusetts Department of Public Health November, 2009

Pandemic H1N1 2009: The Public Health Perspective. Massachusetts Department of Public Health November, 2009 Pandemic H1N1 2009: The Public Health Perspective Massachusetts Department of Public Health November, 2009 Training Objectives Describe and distinguish between seasonal and pandemic influenza. Provide

More information

How to Become a Flu Fighter

How to Become a Flu Fighter How to Become a Flu Fighter Pandemic Influenza Prevention Curriculum Grades 6-8 1 Lesson One Understanding the Flu Virus 2 Five Codes of Flu Fighting Code 1: Understand the flu virus Code 2: Know what

More information

Swine Influenza A: Information for Child Care Providers INTERIM DAYCARE ADVISORY General Information: do not

Swine Influenza A: Information for Child Care Providers INTERIM DAYCARE ADVISORY General Information: do not Swine Influenza A: Information for Child Care Providers INTERIM DAYCARE ADVISORY 4-29-2009 The State of Connecticut Department of Public Health (DPH) would like to provide information to childcare providers

More information

Module 3 : Informing and mobilizing the community

Module 3 : Informing and mobilizing the community Module 3 : Informing and mobilizing the community Title Responsible/facilitators General Objective Informing and mobilizing the community Agency medical coordinator To foster behaviours that decrease the

More information

Where Health Care Meets Policy. with Dr. Mike Magee

Where Health Care Meets Policy. with Dr. Mike Magee Where Health Care Meets Policy with Dr. Mike Magee The Threat of Bird Flu Understanding Bird Flu and the Influenza Virus 3 types of the influenza virus: A, B and C reflect differences in the M protein

More information

Teen Smoking. New Mexico. Supercomputing Challenge. Final Report. April 2, Team Number 20. Centennial High School

Teen Smoking. New Mexico. Supercomputing Challenge. Final Report. April 2, Team Number 20. Centennial High School Barrera, Doctor, Maldonado, Nguyen 1 Teen Smoking New Mexico Supercomputing Challenge Final Report April 2, 2014 Team Number 20 Centennial High School Team Members: Cristian Barrera Max Doctor Jessica

More information

Pandemic lesson plan ITEMS. Teachers lesson plan. Student assignments. About pandemics. Real life stories. Pandemics: Be prepared.

Pandemic lesson plan ITEMS. Teachers lesson plan. Student assignments. About pandemics. Real life stories. Pandemics: Be prepared. Pandemic lesson plan The pandemic lesson plan provides teachers and students with an opportunity to investigate pandemics through individual or classroom activities. ITEMS Teachers lesson plan Student

More information

PANDEMIC INFLUENZA RESPONSE PLAN

PANDEMIC INFLUENZA RESPONSE PLAN Section: Safety and Security PANDEMIC INFLUENZA RESPONSE PLAN Policy: The University of Georgia has established a Pandemic Influenza Response Plan. University Housing provides more specific guidelines

More information

Student Exploration: Disease Spread

Student Exploration: Disease Spread Name: Date: Student Exploration: Disease Spread Vocabulary: disease, epidemic, infect, infectious disease, pathogen Prior Knowledge Questions (Do these BEFORE using the Gizmo.) 1. Why do you think it is

More information

Supplemental Resources

Supplemental Resources Supplemental Resources Key Chain Questions 15 Key Questions Activity Key Questions: 1. What are the core community mitigation measures? 2. How can community mitigation measures reduce the effects of

More information

INFLUENZA FACTS AND RESOURCES

INFLUENZA FACTS AND RESOURCES U.S. HOUSE OF REPRESENTATIVES COMMITTEE ON HOMELAND SECURITY CHAIRMAN BENNIE G. THOMPSON (D-MS) INFLUENZA FACTS AND RESOURCES BACKGROUND The illness caused by the Influenza A/H1N1 virus has been called

More information

SNEEZE ZONE BACKGROUND INFORMATION MATERIALS TO RUN THE ACTIVITY. Teacher s notes

SNEEZE ZONE BACKGROUND INFORMATION MATERIALS TO RUN THE ACTIVITY. Teacher s notes BACKGROUND INFORMATION Many diseases are airborne and can spread in tiny droplets of water or aerosols that people cough or sneeze into the air. Aerosols in a sneeze can travel at more than 100 kilometres

More information

PANDEMIC POLICY. 1. It is important to understand the definitions of influenza (the flu) and pandemic ; attached is a comparison chart.

PANDEMIC POLICY. 1. It is important to understand the definitions of influenza (the flu) and pandemic ; attached is a comparison chart. Section: D Policy Number: D-008 Subject: Pandemic Total Pages: 6 Approval Date: Nov. 18, 2009 Revision Date(s) PANDEMIC POLICY Community Living-Central Huron is committed to providing a safe and healthy

More information

Pandemic Planning. Jan Chappel, MHSc Sr. Technical Specialist. Presented by

Pandemic Planning.  Jan Chappel, MHSc Sr. Technical Specialist. Presented by Presented by Jan Chappel, MHSc Sr. Technical Specialist www.ccohs.ca The Basics Why Prepare? Business Continuity Plan Staying Healthy Where to Find Information Families and Communities What is a pandemic?

More information

SARS Outbreak Study 2

SARS Outbreak Study 2 This week in Epiville, you will continue with the remaining steps of the outbreak investigation and begin to learn how to frame a hypothesis, design a study, and draw conclusions from your investigation.

More information

Case Studies in Ecology and Evolution. 10 The population biology of infectious disease

Case Studies in Ecology and Evolution. 10 The population biology of infectious disease 10 The population biology of infectious disease In 1918 and 1919 a pandemic strain of influenza swept around the globe. It is estimated that 500 million people became infected with this strain of the flu

More information

Best Practice Guideline for the Workplace During Pandemic Influenza OHS & ES

Best Practice Guideline for the Workplace During Pandemic Influenza OHS & ES Best Practice Guideline for the Workplace During Pandemic Influenza OHS & ES May/June 2009 Karlene Johner Laura Geddert Alberta Employment and Immigration Outline Document final May 2009 What is pandemic

More information

Running head: INFLUENZA VIRUS SEASON PREPAREDNESS AND RESPONSE 1

Running head: INFLUENZA VIRUS SEASON PREPAREDNESS AND RESPONSE 1 Running head: INFLUENZA VIRUS SEASON PREPAREDNESS AND RESPONSE 1 Electron micrograph of H1N1 Virus (CDC, 2009) Influenza Virus Season Preparedness and Response Patricia Bolivar Walden University Epidemiology

More information

RESPONDING TO AN INFLUENZA OUTBREAK

RESPONDING TO AN INFLUENZA OUTBREAK Created by LifeWind International Date: 4/09 (1 HOUR) OBJECTIVES: After working through this lesson, participants will be able to: 1. Describe the steps that individuals can take to protect themselves

More information

TABLE OF CONTENTS. Peterborough County-City Health Unit Pandemic Influenza Plan Section 1: Introduction

TABLE OF CONTENTS. Peterborough County-City Health Unit Pandemic Influenza Plan Section 1: Introduction TABLE OF CONTENTS 1. Introduction...1-2 1.1 Background...1-2 1.2 Why Does Peterborough County and City Need a Plan for Influenza Pandemic?...1-2 1.3 About Influenza...1-3 1.4 When Does Influenza Become

More information

Module 1 : Influenza - what is it and how do you get it?

Module 1 : Influenza - what is it and how do you get it? Module 1 : Influenza - what is it and how do you get it? Responsible/facilitators General Objective Specific Objectives Methodology Agency medical coordinator Understand the mechanism how influenza is

More information

Pandemic Preparedness: Pigs, Poultry, and People versus Plans, Products, and Practice

Pandemic Preparedness: Pigs, Poultry, and People versus Plans, Products, and Practice SUPPLEMENT ARTICLE Pandemic Preparedness: Pigs, Poultry, and People versus Plans, Products, and Practice Julie L. Gerberding Centers for Disease Control and Prevention, Atlanta, Georgia Influenza pandemic

More information

Global Challenges of Pandemic and Avian Influenza. 19 December 2006 Keiji Fukuda Global influenza Programme

Global Challenges of Pandemic and Avian Influenza. 19 December 2006 Keiji Fukuda Global influenza Programme Global Challenges of Pandemic and Avian Influenza 19 December 2006 Keiji Fukuda Global influenza Programme Summary of Current H5N1 Situation 1997 First known outbreak infecting humans 18 people hospitalized

More information

Pandemic Preparedness

Pandemic Preparedness Pandemic Preparedness Disclosure Dr. Michael Braida is a full-time International SOS / MedAire employee Regional Medical Director Northern Seas based in Aberdeen MedAire Medical Director for Europe Medical

More information

Worker Protection and Infection Control for Pandemic Flu

Worker Protection and Infection Control for Pandemic Flu Factsheet #2 What Workers Need to Know About Pandemic Flu Worker Protection and Infection Control for Pandemic Flu An influenza pandemic will have a huge impact on workplaces throughout the United States.

More information

Pandemic Influenza Planning:

Pandemic Influenza Planning: Pandemic Influenza Planning: Get Information. Stay Informed. U.S. Department of Health and Human Services May 2006 While the Federal Government will use all resources at its disposal to prepare for and

More information

COMMUNITY EMERGENCY RESPONSE TEAM PANDEMIC INFLUENZA INTRODUCTION AND OVERVIEW

COMMUNITY EMERGENCY RESPONSE TEAM PANDEMIC INFLUENZA INTRODUCTION AND OVERVIEW INTRODUCTION AND OVERVIEW A pandemic is a global disease outbreak. Pandemics are characterized by the sudden onset of an extremely virulent pathogen with potentially lethal results. Though historically

More information

Mobile Health Surveillance: The Development of Software Tools for. Monitoring the Spread of Disease

Mobile Health Surveillance: The Development of Software Tools for. Monitoring the Spread of Disease Mobile Health Surveillance: The Development of Software Tools for Monitoring the Spread of Disease Albert Gerovitch 1 and Andrew Gritsevskiy 2 and Gregory Barboy 3 Abstract Disease spread monitoring data

More information

Sets out clearly the DoH s expectations of the NHS and the roles and responsibilities of each part of the system over the coming months.

Sets out clearly the DoH s expectations of the NHS and the roles and responsibilities of each part of the system over the coming months. NORTH EAST AMBULANCE SERVICE NHS TRUST UPDATE AND RESILIENCE ACTIONS FOR NHS BOARDS REPORT BY : Director of Ambulance Operations INTRODUCTION As Board members are aware, the World Health Organisation (WHO)

More information

MODELING DISEASE FINAL REPORT 5/21/2010 SARAH DEL CIELLO, JAKE CLEMENTI, AND NAILAH HART

MODELING DISEASE FINAL REPORT 5/21/2010 SARAH DEL CIELLO, JAKE CLEMENTI, AND NAILAH HART MODELING DISEASE FINAL REPORT 5/21/2010 SARAH DEL CIELLO, JAKE CLEMENTI, AND NAILAH HART ABSTRACT This paper models the progression of a disease through a set population using differential equations. Two

More information

COMMUNITY EMERGENCY RESPONSE TEAM PANDEMIC INFLUENZA INTRODUCTION AND OVERVIEW

COMMUNITY EMERGENCY RESPONSE TEAM PANDEMIC INFLUENZA INTRODUCTION AND OVERVIEW INTRODUCTION AND OVERVIEW A pandemic is a global disease outbreak. Pandemics are characterized by the sudden onset of an extremely virulent pathogen with potentially lethal results. Though historically

More information

H1N1 Influenza. Influenza-A Basics. Influenza Basics. April 1, History of Influenza Pandemics. April 1 September 25, 2009

H1N1 Influenza. Influenza-A Basics. Influenza Basics. April 1, History of Influenza Pandemics. April 1 September 25, 2009 April 1, 2009 H1N1 Influenza Jeff Goad, Pharm.D., MPH Associate Professor of Clinical Pharmacy USC School of Pharmacy April 1 September 25, 2009 History of Influenza Pandemics 400 B.C. 1889 Russian Flu

More information

SUNDAY Nature Academy 2018/2019: Influenza Outbreak

SUNDAY Nature Academy 2018/2019: Influenza Outbreak SUNDAY Nature Academy 2018/2019: Influenza Outbreak Description: Outbreaks (epidemics) have had devastating outcomes on the human population. Public health and other health care providers are essential

More information

Synthetic Data Products for Societal Infrastructures and Proto-Populations: Data Set 2.0

Synthetic Data Products for Societal Infrastructures and Proto-Populations: Data Set 2.0 Open Report Synthetic Data Products for Societal Infrastructures and Proto-Populations: Data Set 2.0 Network Dynamics and Simulation and Science Laboratory Virginia Polytechnic Institute and State University

More information

Pandemic Influenza: Considerations for Business Continuity Planning

Pandemic Influenza: Considerations for Business Continuity Planning Pandemic Influenza: Considerations for Business Continuity Planning Maine Telecommunications Users Group (MTUG) VTEC, South Portland, ME 10 October 2006 Steven J. Trockman, MPH Joshua C. Frances, NREMT-I

More information

University of Ottawa H1N1 Pandemic Framework

University of Ottawa H1N1 Pandemic Framework University of Ottawa H1N1 Pandemic Framework Purpose This document provides an overview of the specific protocols, procedures and processes for the University of Ottawa s response to the H1N1 pandemic.

More information

Mathematical Modeling of Infectious Diseases

Mathematical Modeling of Infectious Diseases Mathematical Modeling of Infectious Diseases Breakthrough Cincinnati s Super Saturday November 22, 2014 David J. Gerberry Assistant Professor of Mathematics Xavier University www.cs.xavier.edu/~david.gerberry!

More information

What is the Flu? The Flu is also called Influenza (In-flu-en-za) It is caused by an infection of the. Nose Throat And lungs

What is the Flu? The Flu is also called Influenza (In-flu-en-za) It is caused by an infection of the. Nose Throat And lungs Flu Facts What is the Flu? The Flu is also called Influenza (In-flu-en-za) It is caused by an infection of the Nose Throat And lungs Seasonal Flu Illness that can spread from person to person Every winter

More information

Step 1: Learning Objectives

Step 1: Learning Objectives SARS Outbreak Study 2 This week in Epiville, you will continue with the remaining steps of the outbreak investigation and begin to learn how to frame a hypothesis, design a study, and draw conclusions

More information

Preparing for a Pandemic: What Parents Need to Know About Seasonal and Pandemic Flu

Preparing for a Pandemic: What Parents Need to Know About Seasonal and Pandemic Flu Preparing for a Pandemic: What Parents Need to Know About Seasonal and Pandemic Flu A Message from the Health Officer An influenza, or flu, pandemic happens when a new flu virus appears that easily spreads

More information

Procedures for all Medical Emergencies

Procedures for all Medical Emergencies Norfolk State University Emergency Medical Procedure The Director of the Spartan Health Center practices general oversight on public health issues concerning the campus community and advises the university

More information

Useful Contacts. Essential information concerning travel, schools and colleges, and the workplace will be published on

Useful Contacts. Essential information concerning travel, schools and colleges, and the workplace will be published on Useful Contacts Call 0800 1 513 513 to hear the latest information on swine flu. England: www.nhs.uk www.direct.gov.uk/swineflu Scotland: www.nhs24.com Wales: www.nhsdirect.wales.nhs.uk www.wales.gov.uk/health

More information

Swine Influenza (H1N1) precautions being taken in Europe No U.S. military travel advisories issued yet

Swine Influenza (H1N1) precautions being taken in Europe No U.S. military travel advisories issued yet News Release EUROPE REGIONAL MEDICAL COMMAND Public Affairs Office CMR 442 APO AE 09042 U.S. Army Hospital Nachrichten Kaserne Postfach 103180 69021 Heidelberg, Germany DSN 371-3317/3049 Tel. 06221-17-3317/3049

More information

Should the US develop and Stockpile Vaccines and Antiviral Medications Against. A(H5N1) Avian Flu?

Should the US develop and Stockpile Vaccines and Antiviral Medications Against. A(H5N1) Avian Flu? Spring Upshaw Biology Due: 7/7/06 Should the US develop and Stockpile Vaccines and Antiviral Medications Against A(H5N1) Avian Flu? The A(H5N1) avian flu, which has existed since 1997 is lethal in humans

More information

Influenza B viruses are not divided into subtypes, but can be further broken down into different strains.

Influenza B viruses are not divided into subtypes, but can be further broken down into different strains. Influenza General Information Influenza (the flu) is a highly transmissible respiratory illness caused by influenza viruses. It can cause mild to severe illness, and may lead to death. Older people, young

More information

Using SAS to Model the Spread of Infectious Disease Karl Mink, Mike Zdeb, School of Public Health, Rensselaer, NY

Using SAS to Model the Spread of Infectious Disease Karl Mink, Mike Zdeb, School of Public Health, Rensselaer, NY Paper 174-29 Using SAS to Model the Spread of Infectious Disease Karl Mink, Mike Zdeb, University@Albany School of Public Health, Rensselaer, NY ABSTRACT An epidemic is the rapid and extensive spread of

More information

Pandemic Planning. Presented by Jan Chappel Project Lead.

Pandemic Planning. Presented by Jan Chappel Project Lead. Pandemic Planning Presented by Jan Chappel Project Lead www.ccohs.ca Pandemic Planning The Basics Why Prepare? Business Continuity Plan Staying Healthy Where to Find Information Families and Communities

More information

MARYLAND DEPARTMENT OF HEALTH AND MENTAL HYGIENE John M. Colmers, Secretary

MARYLAND DEPARTMENT OF HEALTH AND MENTAL HYGIENE John M. Colmers, Secretary MARYLAND DEPARTMENT OF HEALTH AND MENTAL HYGIENE John M. Colmers, Secretary COMMUNITY HEALTH ADMINISTRATION Peter A. Sybinsky, Ph.D., Director Richard W. Stringer, Deputy Director April 29, 2009 Swine

More information

Public Health Agency of Canada Skip to content Skip to institutional links Common menu bar links

Public Health Agency of Canada   Skip to content Skip to institutional links Common menu bar links Skip to content Skip to institutional links Common menu bar links Public Health Agency of Canada www.publichealth.gc.ca Public Health Guidance for Child Care Programs and Schools (K to grade 12) regarding

More information

Exercises on SIR Epidemic Modelling

Exercises on SIR Epidemic Modelling Exercises on SIR Epidemic Modelling 1 Epidemic model (from Wikipedia) An epidemic model is a simplified means of describing the transmission of communicable disease through individuals. The modeling of

More information

Bioterrorism and the Pandemic Potential

Bioterrorism and the Pandemic Potential Page 1 of 5 Bioterrorism and the Pandemic Potential March 7, 2013 1001 GMT Print 38 35 125 29 Text Size Stratfor By Rebecca Keller Periodic media reports of bird flu, a new SARS-like virus and a case of

More information

Preparing for a Pandemic What Business and Organization Leaders Need to Know

Preparing for a Pandemic What Business and Organization Leaders Need to Know Preparing for a Pandemic What Business and Organization Leaders Need to Know Information provided by. Introduction An influenza, or flu, pandemic happens when a new flu virus appears that easily spreads

More information

Swine Flu; Symptoms, Precautions & Treatments

Swine Flu; Symptoms, Precautions & Treatments Swine Flu; Symptoms, Precautions & Treatments What is the swine flu? Swine flu, also known as the H1N1 virus, is a relatively new strain of an influenza virus that causes symptoms similar to the regular

More information

LEARN ABOUT INFLUENZA OUTBREAKS

LEARN ABOUT INFLUENZA OUTBREAKS 1 LEARN ABOUT INFLUENZA OUTBREAKS 1 LEARN ABOUT INFLUENZA OUTBREAKS DISCUSSION QUESTIONS What do you see in these pictures? Have you seen symptoms like this in your family or community? MAIN POINTS These

More information

Spread of an Infectious Disease

Spread of an Infectious Disease Teacher Preparation Notes for Spread of Infectious Disease and Population Growth Jennifer Doherty and Dr. Ingrid Waldron, Department of Biology, University Of Pennsylvania, 2007 1 Spread of an Infectious

More information

FAO of the UN, WHO and OIE with the collaboration of UNSIC and UNICEF. Background Paper

FAO of the UN, WHO and OIE with the collaboration of UNSIC and UNICEF. Background Paper FAO of the UN, WHO and OIE with the collaboration of UNSIC and UNICEF Background Paper 3.4 d Ensuring intergovernmental support to national and other stakeholders for integrated action to tackle HPAI and

More information

Swine Flu Pandemic Policy Llanishen High School

Swine Flu Pandemic Policy Llanishen High School 2009/2010 Swine Flu Pandemic Policy Llanishen High School This document contains the specific policy and associated information relating to the Swine Flu Pandemic and how it could possible affect Llanishen

More information