Abstract of the PhD Thesis Intelligent monitoring and early warning system of pandemic viruses

Size: px
Start display at page:

Download "Abstract of the PhD Thesis Intelligent monitoring and early warning system of pandemic viruses"

Transcription

1 FACULTY OF AUTOMATION AND COMPUTER SCIENCE Abstract of the PhD Thesis Intelligent monitoring and early warning system of pandemic viruses PhD Student: eng. Adina-Violeta Pop Thesis advisor: Prof.Dr.Eng. Mihail Abrudean The present thesis aims to develop mathematical models of pandemic influenza virus propagation and, based on these models, a system that will help to prevent its spreading in the populated area and to warn population about it. The thesis proposes the use of the models to determine the avian influenza spreading for Romania. A similar system called HPAI (Highly Pathogenic Avian Influenza) exists in the USA, and, together with the program for pandemic response, are part of the National Strategy for pandemic influenza. The architecture of the system is based on the Model View - Controller architectural pattern. The basic Model View - Controller relationship is presented in figure 1.

2 Figure 1: Model-View-Controller relationship Model - the domain specific representation of the data on which the application operates. Domain logic adds meaning to raw data. Many applications use a persistent storage mechanism (such as a database) to store data. MVC does not specifically mention the data access layer because it is understood to be underneath or encapsulated by the model. View - renders the model into a form suitable for interaction, typically a user interface element. Multiple views can exist for a single model for different purposes. Controller - processes and responds to events (typically user actions) and may indirectly invoke changes on the model. The Model The model not only represents the data for the application, but it also represents persistent data, that is, data that persists beyond the life of the application. In other words, the model represents an application's persistent business domain objects. The model contains various Java classes. Some of the classes are entity classes typical Java Persistence API entity objects. In the Java Persistence API, an entity instance, an instance of an entity object, represents a row of data in a database table. For example, Judete is an entity class that maps to the Judete table in the database. An instance of the Judete entity represents a row of data in the Judete table. Some of the main database tables and the relationships between them are: Judete (Counties) Denumire text County name Rec2007 int County population in 2007 Suprafata int The area of county Densitate double Density of population Localitati (Localities) Denumire text Locality name Rec2007 int Population in 2007 Latitudine float Latitude Longitudine float Longitude Suprafata double Area of locality Densitate decimal Density of locality Tip varchar Type of locality (town or village) Gara tinyint 1 if railway station exists

3 Aeroport tinyint 1 if airport exists Port tinyint 1 if seaport exists Judete_fk int Foreign key that points to primary key from the table Judete Localitati vecine (Neighbor localities) Sosea tinyint 1 if in the locality with the id Localitate_fk is neighbor, on the road, with the Tren tinyint 1 if in the locality with the id Localitate_fk is neighbor, on the railway, with the Avion tinyint 1 if in the locality with the id Localitate_fk is neighbor, on the airport, with the Naval tinyint 1 if in the locality with the id Localitate_fk is neighbor, on the seaport, with the Loc_vecin_fk int Foreign key that points to primary key from the table Localitati Alerta (Warning) Nr_cazuri int The number of infected people Alerta simulare celulare (Simulation warning) Stare_localitate int 0 if the state of the locality is the initial state (uninfected), 1 if the state of the locality is infected and 2 if the state of the locality is recovered Pas_predictie int The prediction step Cazuri simulare (Simulation cases) PrSuspecti double Susceptible people (in %) PrInfectati double Infected people (in %) PrRecuperati double Recovered people (in %) PrDecedati double Dead people (in %) NrZilePredictie int Prediction days horizon Data date The time when simulation start The View The view of this application is a GUI based on Romanian territory maps. The maps are split into two levels: The first level represents the administrative map of Romanian territory (Fig. 2); The second level represents the Romanian counties (Fig. 3);

4 Figure 2: Romanian territory map Figure 3: Two county maps (Bistrita and Cluj) The Controller The controller is the brain of the application. The controller decides what the user's input was, how the model needs to change as a result of that input, and which resulting view should be used. The controller has four parts: Controller 1 - reads the input given by the user (for example the locality from where the virus is starting to spread); Controller 2 execute the SIR simulation model; Controller 3 execute the Bayesian network simulation model; Controller 4 execute the Cellular Automata simulation model; The SIR model is used to model the virus spreading into a populated area. The Bayesian networks are used to estimate the probability of virus spreading in the neighborhood of an infected area, and the Cellular Automata are used to predict the virus propagation. An extended SIR model (called Susceptible - Infected - Removed) was proposed, by introducing a new parameter which allows removing individuals (people that can die from the disease) during the simulation. In this model, the individuals can be: susceptible to contact

5 the disease, infected, removed (recovered or dead) and immune to the disease. As a result, our data is a time series (Fig. 4) where we have a number of infected individuals at each point in time. Similarly, we also have a number of susceptible and recovered individuals at each point in time. This model is applied in order to simulate the disease evolution in each affected locality. The Bayesian network is composed by a set V of vertexes which represent localities and the set of oriented arches the communication paths between them. On the arches, the virus spreading probability is labeled. We have to take into account different probability depending on the type of the link between two neighbor nodes: direct neighborhood, neighborhood due to roads, railroads or air transport. The probability is also highly dependent on the geographical parameters (for example, the probability of direct virus spreading is higher on valleys than over the hills or on national roads than on local roads, etc.). The total probability on an arch is computed as the weighted sum of the probabilities depending on the link type. Figure 4. Virus spreading inside an area A cellular automata is a discrete model studied in computability theory, mathematics, theoretical biology and Microstructure Modeling. It consists of a regular grid of cells, each in one of a finite number of states. The grid can be in any finite number of dimensions. Time is also discrete, and the state of a cell at time t is a function of the states of a finite number of cells (called its neighborhood) at time t 1. These neighbors are a selection of cells relative to the specified cell, and do not change. Every cell has the same rule for updating, based on the values in this neighborhood. Each time the rules are applied to the whole grid, a new

6 generation is created. In this case, the cells represent the Romanian map areas. Each cell can have 3 states: 0 for the susceptible areas; 1 for the infected areas; 2 for the recovered areas; The cells can change their states only from 0 to 1 or from 1 to 2. A cell passes from 0 to 1 only if it has at least one neighbor in state 1. A cell passes from 1 to 2 only after a period of time assigned by the SIR model. The simulation applied on the Romanian territory map is presented in figure 5 and figure 6. Figure 5. The evolution of epidemic

7 Figure 6. Different steps of simulation inside a locality In Table 1, the risk code used to represent the virus evolution in time is presented. Table 1: The risk code used to represent the virus evolution Risk code Color Color Description 6 Red Maximum value of the infected population 5 Braun Average value of the infected population 4 Beige Minimum value of the infected population 3 White First part of the recovering process 2 Yellow Second part of the recovering process 1 Green Uninfected or totally recovered population In conclusion, a map based simulation for the spreading of avian influenza virus was presented, and solutions for some problems concerning the modeling of virus spreading and the processing of images that contain maps are given. Three different models were developed and used in order to simulate the magnitude of an infection inside a locality as well as the spread of the infection in the national territory. The models were tested and the results are presented above. The spreading model can be used in order to generate early warnings if the condition of a pandemic disease apparition is satisfied. Also, this simulation and accordingly, the early warning generation, can be extended to the EU territory. The application is built for H5N1 virus. Because all the features of the virus and its spreading can be managed by users, the application can be easily extended to other viruses, such as H1N1.

Modern Epidemiology A New Computational Science

Modern Epidemiology A New Computational Science Modern Epidemiology A New Computational Science Facilitating Epidemiological Research through Computational Tools Armin R. Mikler Computational Epidemiology Research Laboratory Department of Computer Science

More information

A GLOBAL STOCHASTIC MODELING FRAMEWORK TO SIMULATE AND VISUALIZE EPIDEMICS. Saratchandra Indrakanti. Thesis Prepared for the Degree of

A GLOBAL STOCHASTIC MODELING FRAMEWORK TO SIMULATE AND VISUALIZE EPIDEMICS. Saratchandra Indrakanti. Thesis Prepared for the Degree of A GLOBAL STOCHASTIC MODELING FRAMEWORK TO SIMULATE AND VISUALIZE EPIDEMICS Saratchandra Indrakanti Thesis Prepared for the Degree of MASTER OF SCIENCE UNIVERSITY OF NORTH TEXAS May 2012 APPROVED: Armin

More information

Agent-Based Models. Maksudul Alam, Wei Wang

Agent-Based Models. Maksudul Alam, Wei Wang Agent-Based Models Maksudul Alam, Wei Wang Outline Literature Review about Agent-Based model Modeling disease outbreaks in realistic urban social Networks EpiSimdemics: an Efficient Algorithm for Simulating

More information

Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2

Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2 Causal Knowledge Modeling for Traditional Chinese Medicine using OWL 2 Peiqin Gu College of Computer Science, Zhejiang University, P.R.China gupeiqin@zju.edu.cn Abstract. Unlike Western Medicine, those

More information

PANDEMICS. Year School: I.S.I.S.S. M.Casagrande, Pieve di Soligo, Treviso - Italy. Students: Beatrice Gatti (III) Anna De Biasi

PANDEMICS. Year School: I.S.I.S.S. M.Casagrande, Pieve di Soligo, Treviso - Italy. Students: Beatrice Gatti (III) Anna De Biasi PANDEMICS Year 2017-18 School: I.S.I.S.S. M.Casagrande, Pieve di Soligo, Treviso - Italy Students: Beatrice Gatti (III) Anna De Biasi (III) Erica Piccin (III) Marco Micheletto (III) Yui Man Kwan (III)

More information

(Non-legislative acts) REGULATIONS

(Non-legislative acts) REGULATIONS EN 22.6.2012 Official Journal of the European Union L 163/1 II (Non-legislative acts) REGULATIONS COMMISSION IMPLEMENTING REGULATION (EU) No 532/2012 of 21 June 2012 amending Annex II to Decision 2007/777/EC

More information

Assignment Question Paper I

Assignment Question Paper I Subject : - Discrete Mathematics Maximum Marks : 30 1. Define Harmonic Mean (H.M.) of two given numbers relation between A.M.,G.M. &H.M.? 2. How we can represent the set & notation, define types of sets?

More information

AN EPIDEMIOLOGIC MODELING AND DATA INTEGRATION FRAMEWORK

AN EPIDEMIOLOGIC MODELING AND DATA INTEGRATION FRAMEWORK AN EPIDEMIOLOGIC MODELING AND DATA INTEGRATION FRAMEWORK Pfeifer B 1, Seger M 1, Netzer M 1, Osl M 1, Modre-Osprian R 2, Schreier G 2, Hanser F 3, Baumgartner C 1 Abstract In this work a cellular automaton

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

MAE 298, Lecture 10 May 4, Percolation and Epidemiology on Networks

MAE 298, Lecture 10 May 4, Percolation and Epidemiology on Networks MAE 298, Lecture 10 May 4, 2006 Percolation and Epidemiology on Networks Processes on networks Search for information Spreading processes Interplay of topology and function Epidemiology Understanding how

More information

Cellular Automata Model for Epidemics

Cellular Automata Model for Epidemics Cellular Automata Model for Epidemics Sharon Chang UC Davis Physics shschang@ucdavis.edu Cellular automata models are used to simulate the spread of disease across a population. Two types of infections

More information

ESTIMATION OF THE REPRODUCTION NUMBER OF THE NOVEL INFLUENZA A, H1N1 IN MALAYSIA

ESTIMATION OF THE REPRODUCTION NUMBER OF THE NOVEL INFLUENZA A, H1N1 IN MALAYSIA ESTIMATION OF THE REPRODUCTION NUMBER OF THE NOVEL INFLUENZA A, H1N1 IN MALAYSIA Radzuan Razali * and SamsulAriffin Abdul Karim Fundamental and Applied Sciences Department, UniversitiTeknologiPetronas,

More information

Strategies for containing an emerging influenza pandemic in South East Asia 1

Strategies for containing an emerging influenza pandemic in South East Asia 1 Strategies for containing an emerging influenza pandemic in South East Asia 1 Modeling pandemic spread and possible control plans of avian flu H5N1 BBSI, Nicole Kennerly, Shlomo Ta asan 1 Nature. 2005

More information

Introduction CHAPTER 1

Introduction CHAPTER 1 CHAPTER 1 Introduction Mathematical sociology is not an oxymoron. There is a useful role for mathematics in the study of society and groups. In fact, that role is growing as social scientists and others

More information

Simulation of HIV/AIDS distribution using GIS based cellular automata model.

Simulation of HIV/AIDS distribution using GIS based cellular automata model. Biomedical Research 2017; 28 (9): 4053-4057 ISSN 0970-938X www.biomedres.info Simulation of HIV/AIDS distribution using GIS based cellular automata model. Shu Yang 1, Daihai He 2, Jing Luo 3, Weizhong

More information

EBCC Data Analysis Tool (EBCC DAT) Introduction

EBCC Data Analysis Tool (EBCC DAT) Introduction Instructor: Paul Wolfgang Faculty sponsor: Yuan Shi, Ph.D. Andrey Mavrichev CIS 4339 Project in Computer Science May 7, 2009 Research work was completed in collaboration with Michael Tobia, Kevin L. Brown,

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

DESIGNING AND IMPLEMENTING APPLICATIONS FOR HEARING-IMPAIRED CHILDREN

DESIGNING AND IMPLEMENTING APPLICATIONS FOR HEARING-IMPAIRED CHILDREN STUDIA UNIV. BABEŞ BOLYAI, INFORMATICA, Volume LVII, Number 1, 2012 DESIGNING AND IMPLEMENTING APPLICATIONS FOR HEARING-IMPAIRED CHILDREN Abstract. Hearing-impaired children need extra help when learning

More information

From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars

From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars Downloaded from vbn.aau.dk on: april 02, 2019 Aalborg Universitet From where does the content of a certain geo-communication come? semiotics in web-based geo-communication Brodersen, Lars Published in:

More information

SIS-SEIQR Adaptive Network Model for Pandemic Influenza

SIS-SEIQR Adaptive Network Model for Pandemic Influenza SIS-SEIQR Adaptive Network Model for Pandemic Influenza WANNIKA JUMPEN,2, SOMSAK ORANKITJAROEN,2, PICHIT BOONKRONG,2 BOONMEE WATTANANON, BENCHAWAN WIWATANAPATAPHEE,2 Department of Mathematics, Faculty

More information

PART - A 1. Define Artificial Intelligence formulated by Haugeland. The exciting new effort to make computers think machines with minds in the full and literal sense. 2. Define Artificial Intelligence

More information

China HPAI Situation - Update

China HPAI Situation - Update JUNE 2012 NO.6 China HPAI Situation - Update CHINA ECTAD-CHINA HPAI Outbreak Situation Update (2010 - e 2012) HPAI Surveillance Situation Update (2010-2011) HPAI H5N1 Virus Monitoring and New Vaccine Development

More information

(Network's) Models of epidemiology

(Network's) Models of epidemiology th.if.uj.edu.pl/~gulakov/epi.pdf 04.12.2014 USM (Network's) Models of epidemiology Andrzej Jarynowski Smoluchowski Institute, Jagiellonian University, Cracow, Poland Dep of Sociology, Stockholm Univ.,

More information

LECTURE 5: REACTIVE AND HYBRID ARCHITECTURES

LECTURE 5: REACTIVE AND HYBRID ARCHITECTURES Reactive Architectures LECTURE 5: REACTIVE AND HYBRID ARCHITECTURES An Introduction to MultiAgent Systems http://www.csc.liv.ac.uk/~mjw/pubs/imas There are many unsolved (some would say insoluble) problems

More information

Multi-Agent Methodology Project: Human Immune System Using the GAIA Methodology

Multi-Agent Methodology Project: Human Immune System Using the GAIA Methodology Multi-Agent Methodology Project: Human Immune System Using the GAIA Methodology Written By: Mike Hanna and Furat Fawzi SENG 697 Dr. Far Nov. 1, 2006 Table of Contents 1 Introduction... 3 2 Immune System

More information

SCOPAFF meeting April 2015, Brussels Highly Pathogenic Avian Influenza H5N1 in wild birds, in the Danube Delta Biosphere Reservation - România

SCOPAFF meeting April 2015, Brussels Highly Pathogenic Avian Influenza H5N1 in wild birds, in the Danube Delta Biosphere Reservation - România NSVFSA ROMÂNIA SCOPAFF meeting 16-17 April 2015, Brussels Highly Pathogenic Avian Influenza H5N1 in wild birds, in the Danube Delta Biosphere Reservation - România Inspectors of the Danube Delta Biosphere

More information

SEIQR-Network Model with Community Structure

SEIQR-Network Model with Community Structure SEIQR-Network Model with Community Structure S. ORANKITJAROEN, W. JUMPEN P. BOONKRONG, B. WIWATANAPATAPHEE Mahidol University Department of Mathematics, Faculty of Science Centre of Excellence in Mathematics

More information

INFORMATION NOTE ON AVIAN INFLUENZA AND MIGRATORY BIRDS

INFORMATION NOTE ON AVIAN INFLUENZA AND MIGRATORY BIRDS INFORMATION NOTE ON AVIAN INFLUENZA AND MIGRATORY BIRDS THIS NOTE HAS BEEN COMPILED BY THE NATURE AND BIODIVERSITY UNIT OF DG ENVIRONMENT IN CONSULTATION WITH THE ORNIS SCIENTIFIC WORKING GROUP IT WILL

More information

TJHSST Computer Systems Lab Senior Research Project

TJHSST Computer Systems Lab Senior Research Project TJHSST Computer Systems Lab Senior Research Project 2008-2009 Modeling Virus Transmission on Population Dynamics using Agent Based and Systems Dynamics Modeling Dheeraj Manjunath April 2, 2009 Abstract

More information

Global Influenza Surveillance and Response System (GISRS) Gina Samaan Global Influenza Programme

Global Influenza Surveillance and Response System (GISRS) Gina Samaan Global Influenza Programme Global Influenza Surveillance and Response System (GISRS) Gina Samaan Global Influenza Programme How well do you know GISRS? Quiz! 1. What year was GISRS started? 2. Which was the first WHO CC? 3. How

More information

Epidemic Modeling with Cellular Automata

Epidemic Modeling with Cellular Automata Epidemic Modeling with Cellular Automata Bernadetta Stachura-Terlecka, Antoni Ligęza 07.03.2018 BST ALI ( ) Epidemic Modeling with Cellular Automata 2018 1 / 12 Outline 1 State of the art 2 Classical CA

More information

Mathematical Model on Influenza Disease with Re-Susceptibility

Mathematical Model on Influenza Disease with Re-Susceptibility AUSTRALIAN JOURNAL OF BASIC AND APPLIED SCIENCES ISSN:1991-8178 EISSN: 2309-8414 Journal home page: www.ajbasweb.com Mathematical Model on Influenza Disease with Re-Susceptibility 1 Deepak Kumar and 2

More information

Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient

Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient , ISSN (Print) : 319-8613 Implementation of Inference Engine in Adaptive Neuro Fuzzy Inference System to Predict and Control the Sugar Level in Diabetic Patient M. Mayilvaganan # 1 R. Deepa * # Associate

More information

Overview: Chapter 19 Viruses: A Borrowed Life

Overview: Chapter 19 Viruses: A Borrowed Life Overview: Chapter 19 Viruses: A Borrowed Life Viruses called bacteriophages can infect and set in motion a genetic takeover of bacteria, such as Escherichia coli Viruses lead a kind of borrowed life between

More information

Agricultural Outlook Forum Presented: February 16, 2006 THE CURRENT STATE OF SCIENCE ON AVIAN INFLUENZA

Agricultural Outlook Forum Presented: February 16, 2006 THE CURRENT STATE OF SCIENCE ON AVIAN INFLUENZA Agricultural Outlook Forum Presented: February 16, 2006 THE CURRENT STATE OF SCIENCE ON AVIAN INFLUENZA David L. Suarez Southeast Poultry Research Laboratory, Exotic and Emerging Avian Viral Diseases Research

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

Estimating national adult prevalence of HIV-1 in Generalized Epidemics

Estimating national adult prevalence of HIV-1 in Generalized Epidemics Estimating national adult prevalence of HIV-1 in Generalized Epidemics You are now ready to begin using EPP to generate HIV prevalence estimates for use in the Spectrum program. Introduction REMEMBER The

More information

The Inclusion of Seasonal Influenza Viruses and Genetic Sequence Data (GSD) in the Context of the Pandemic Influenza Preparedness (PIP) Framework

The Inclusion of Seasonal Influenza Viruses and Genetic Sequence Data (GSD) in the Context of the Pandemic Influenza Preparedness (PIP) Framework The Inclusion of Seasonal Influenza Viruses and Genetic Sequence Data (GSD) in the Context of the Pandemic Influenza Preparedness (PIP) Framework A position paper from the Directors of the GISRS WHO Collaborating

More information

Human infection with pandemic (H1N1) 2009 virus: updated interim WHO guidance on global surveillance

Human infection with pandemic (H1N1) 2009 virus: updated interim WHO guidance on global surveillance Human infection with pandemic (H1N1) 2009 virus: updated interim WHO guidance on global surveillance 10 July 2009 Background This document updates the interim WHO guidance on global surveillance of pandemic

More information

Official Journal of the European Union

Official Journal of the European Union L 39/6 16.2.2017 COMMISSION IMPLEMTING DECISION (EU) 2017/263 of 14 February 2017 on risk mitigating and reinforced biosecurity measures and early detection systems in relation to the risks posed by wild

More information

Surviving an HPAI Outbreak

Surviving an HPAI Outbreak Surviving an HPAI Outbreak Lessons Learned VIV Poultry & Egg Summit Latin America, October 2016 Travis Schaal, DVM Avian Influenza Secreted in birds feces and nasal discharges Virus survives for days

More information

Simulation of Infectious Disease Spreading based on Agent Based Model in South Korea 1

Simulation of Infectious Disease Spreading based on Agent Based Model in South Korea 1 Vol.128 (Healthcare and Nursing 2016), pp.53-58 http://dx.doi.org/10.14257/astl.2016. Simulation of Infectious Disease Spreading based on Agent Based Model in South Korea 1 Jinhwa Jang 1, 2 1, 3*, Insung

More information

Automated Social Network Epidemic Data Collector

Automated Social Network Epidemic Data Collector Automated Social Network Epidemic Data Collector Luis F Lopes, João M Zamite, Bruno C Tavares, Francisco M Couto, Fabrício Silva, and Mário J Silva LaSIGE, Universidade de Lisboa epiwork@di.fc.ul.pt Abstract.

More information

National Protocol on

National Protocol on National Protocol on Respiratory illnesses surveillance in Oman Rationale for proposed surveillance Method and responsibilities Surveillance for communicable diseases was launched in March 1992 Diseases

More information

Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL SAL. Lee W. Wagenhals Alexander H. Levis

Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL SAL. Lee W. Wagenhals Alexander H. Levis Pythia WEB ENABLED TIMED INFLUENCE NET MODELING TOOL Lee W. Wagenhals Alexander H. Levis ,@gmu.edu Adversary Behavioral Modeling Maxwell AFB, Montgomery AL March 8-9, 2007 1 Outline Pythia

More information

arxiv: v1 [cs.si] 29 Jan 2018

arxiv: v1 [cs.si] 29 Jan 2018 Detecting the impact of public transit on the transmission of epidemics Zhanwei Du 1,* and Yuan Bai 1 1 Jilin University, Changchun, Jilin, 130012, China * duzhanwei0@gmail.com ABSTRACT arxiv:1801.09333v1

More information

DG SANTE actions under the CBRN Action Plan

DG SANTE actions under the CBRN Action Plan DG SANTE actions under the CBRN Action Plan Antonis Lanaras DG SANTE C3 Crisis management and preparedness in health 10 th Meeting of the CoU on Secure, Safe and Resilient Societies CBRNE 8 March 2018,

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

Modeling Influenza Pandemic Response Effectiveness in Canada

Modeling Influenza Pandemic Response Effectiveness in Canada Zack Jacobson ARAD Health Canada zack.jacobson@hc-sc.gc.ca Ben Houston Exocortex Technologies Canada ben@exocortex.org 1.0 INTRODUCTION As the risk of a global influenza pandemic increases there is growing

More information

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include:

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: CSE 466: Course Project Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: Multiple device communication Deal with constrained

More information

OIE Situation Report for Highly Pathogenic Avian Influenza

OIE Situation Report for Highly Pathogenic Avian Influenza OIE Situation Report for Highly Pathogenic Avian Influenza Latest update: 30/06/2018 The epidemiology of avian influenza (AI) is complex. The AI virus constantly evolves by mutation and re-assortment with

More information

Intelligent Agents. CmpE 540 Principles of Artificial Intelligence

Intelligent Agents. CmpE 540 Principles of Artificial Intelligence CmpE 540 Principles of Artificial Intelligence Intelligent Agents Pınar Yolum pinar.yolum@boun.edu.tr Department of Computer Engineering Boğaziçi University 1 Chapter 2 (Based mostly on the course slides

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

a. From the grey navigation bar, mouse over Analyze & Visualize and click Annotate Nucleotide Sequences.

a. From the grey navigation bar, mouse over Analyze & Visualize and click Annotate Nucleotide Sequences. Section D. Custom sequence annotation After this exercise you should be able to use the annotation pipelines provided by the Influenza Research Database (IRD) and Virus Pathogen Resource (ViPR) to annotate

More information

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department

Princess Nora University Faculty of Computer & Information Systems ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department Princess Nora University Faculty of Computer & Information Systems 1 ARTIFICIAL INTELLIGENCE (CS 370D) Computer Science Department (CHAPTER-3) INTELLIGENT AGENTS (Course coordinator) CHAPTER OUTLINE What

More information

Avian Influenza (Bird Flu) Fact Sheet

Avian Influenza (Bird Flu) Fact Sheet What is an avian influenza A (H5N1) virus? Influenza A (H5N1) virus also called H5N1 virus is an influenza A virus subtype that occurs mainly in birds. It was first isolated from birds (terns) in South

More information

= Λ μs βs I N, (1) (μ + d + r)i, (2)

= Λ μs βs I N, (1) (μ + d + r)i, (2) Advanced Studies in Biology, Vol., 29, no. 8, 383-39 Mathematical Model of the Influenza A(HN) Infection K. Hattaf and N. Yousfi 2 Laboratory Analysis, Modeling and Simulation Department of Mathematics

More information

Avian Influenza (H5N1) Expert System using Dempster-Shafer Theory

Avian Influenza (H5N1) Expert System using Dempster-Shafer Theory Avian Influenza (H5N1) Expert System using Dempster-Shafer Theory Andino Maseleno, Md. Mahmud Hasan Department of Computer Science, Faculty of Science, Universiti Brunei Darussalam Jalan Tungku Link, Gadong

More information

Fever Diagnosis Rule-Based Expert Systems

Fever Diagnosis Rule-Based Expert Systems Fever Diagnosis Rule-Based Expert Systems S. Govinda Rao M. Eswara Rao D. Siva Prasad Dept. of CSE Dept. of CSE Dept. of CSE TP inst. Of Science & Tech., TP inst. Of Science & Tech., Rajah RSRKRR College

More information

RISK ASSESSMENT TO DEMONSTRATE FREEDOM OF HIGHLY PATHOGENIC AVIAN INFLUENZA (HPAI) IN TIMOR LESTE

RISK ASSESSMENT TO DEMONSTRATE FREEDOM OF HIGHLY PATHOGENIC AVIAN INFLUENZA (HPAI) IN TIMOR LESTE RISK ASSESSMENT TO DEMONSTRATE FREEDOM OF HIGHLY PATHOGENIC AVIAN INFLUENZA (HPAI) IN TIMOR LESTE This thesis is presented for the degree of Doctor of Philosophy by Acacio Cardoso Amaral, BVSc, MTVSc.

More information

Outline. What s inside this paper? My expectation. Software Defect Prediction. Traditional Method. What s inside this paper?

Outline. What s inside this paper? My expectation. Software Defect Prediction. Traditional Method. What s inside this paper? Outline A Critique of Software Defect Prediction Models Norman E. Fenton Dongfeng Zhu What s inside this paper? What kind of new technique was developed in this paper? Research area of this technique?

More information

Epidemic Modelling Using Cellular Automata

Epidemic Modelling Using Cellular Automata Epidemic Modelling Using Cellular Automata Shih Ching Fu and George Milne School of Computer Science & Software Engineering Faculty of Engineering, Computing and Mathematics The University of Western Australia

More information

Canada s Inter agency Wild Bird Influenza Survey. Draft Proposal for the Survey Version 1 25 January 2010

Canada s Inter agency Wild Bird Influenza Survey. Draft Proposal for the Survey Version 1 25 January 2010 Canada s Inter agency Wild Bird Influenza Survey Draft Proposal for the 2010 11 Survey Version 1 25 January 2010 Introduction Canada s wild bird influenza survey has been carried out each year since 2005.

More information

OIE Situation Report for Avian Influenza

OIE Situation Report for Avian Influenza OIE Situation Report for Avian Influenza Latest update: 25/01/2018 The epidemiology of avian influenza is complex. The virus constantly evolves and the behavior of each new subtype (and strains within

More information

CS148 - Building Intelligent Robots Lecture 5: Autonomus Control Architectures. Instructor: Chad Jenkins (cjenkins)

CS148 - Building Intelligent Robots Lecture 5: Autonomus Control Architectures. Instructor: Chad Jenkins (cjenkins) Lecture 5 Control Architectures Slide 1 CS148 - Building Intelligent Robots Lecture 5: Autonomus Control Architectures Instructor: Chad Jenkins (cjenkins) Lecture 5 Control Architectures Slide 2 Administrivia

More information

Identifying, Preparing for & Reducing Pandemic Risk

Identifying, Preparing for & Reducing Pandemic Risk Identifying, Preparing for & Reducing Pandemic Risk Jonna Mazet, DVM, MPVM, PhD Professor of Epidemiology & Disease Ecology One Health Institute School of Veterinary Medicine University of California,

More information

CS 771 Artificial Intelligence. Intelligent Agents

CS 771 Artificial Intelligence. Intelligent Agents CS 771 Artificial Intelligence Intelligent Agents What is AI? Views of AI fall into four categories 1. Thinking humanly 2. Acting humanly 3. Thinking rationally 4. Acting rationally Acting/Thinking Humanly/Rationally

More information

OFFLU the joint OIE-FAO network of expertise on animal influenza

OFFLU the joint OIE-FAO network of expertise on animal influenza OFFLU the joint OIE-FAO network of expertise on animal influenza FAO/OIE HPAI Laboratory Network Meeting for SE Asia Keith Hamilton OIE Scientific and Technical Department, OIE Paris OFFLU Objectives Share

More information

Modelling global epidemics: theory and simulations

Modelling global epidemics: theory and simulations Modelling global epidemics: theory and simulations Marc Barthélemy CEA, IPhT, France marc.barthelemy@cea.fr Manchester meeting Modelling complex systems (21-23 june 2010) Outline Introduction Metapopulation

More information

Influenza A (H1N1) transmission by road traffic between cities and towns

Influenza A (H1N1) transmission by road traffic between cities and towns Article Geography August 2011 Vol.56 No.24: 2613 2620 doi: 10.1007/s11434-011-4598-5 Influenza A (H1N1) transmission by road traffic between cities and towns XIAO Hong 1*, TIAN HuaiYu 1, ZHAO Jian 2, ZHANG

More information

Maintaining a Safe and Adequate Blood Supply in the Event of Pandemic Influenza. Guidelines for National Blood Transfusion Services

Maintaining a Safe and Adequate Blood Supply in the Event of Pandemic Influenza. Guidelines for National Blood Transfusion Services Maintaining a Safe and Adequate Blood Supply in the Event of Pandemic Influenza Guidelines for National Blood Transfusion Services 19 May 2006 1 Rationale Current global concern that an occurrence of pandemic

More information

Cognitive Maps-Based Student Model

Cognitive Maps-Based Student Model Cognitive Maps-Based Student Model Alejandro Peña 1,2,3, Humberto Sossa 3, Agustín Gutiérrez 3 WOLNM 1, UPIICSA 2 & CIC 3 - National Polytechnic Institute 2,3, Mexico 31 Julio 1859, # 1099-B, Leyes Reforma,

More information

New Effects-Based Operations Models in War Games. Lee W. Wagenhals Larry K. Wentz

New Effects-Based Operations Models in War Games. Lee W. Wagenhals Larry K. Wentz New Effects-Based Operations Models in War Games Lee W. Wagenhals Larry K. Wentz 2003 ICCRTS 8th International Command and Control Research and Technology Symposium June 19, 2002 National Defense University

More information

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include:

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: CSE 466: Course Project Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: Multiple device communication Deal with constrained

More information

HPAI H5(N8) in Member States in poultry, captive and wild birds

HPAI H5(N8) in Member States in poultry, captive and wild birds HPAI H5(N8) in Member States in poultry, captive and wild birds (01/10/2016-01/03/2017) DG Health and Food Safety 13,578,000 5,610,000 234,000 Broad migration flows of ducks across Europe 1,000,000 71,000

More information

OIE Situation Report for Highly Pathogenic Avian Influenza

OIE Situation Report for Highly Pathogenic Avian Influenza OIE Situation Report for Highly Pathogenic Avian Influenza Latest update: 28/02/2018 The epidemiology of avian influenza is complex. The virus constantly evolves and the behavior of each new subtype (and

More information

Global updates on avian influenza and tools to assess pandemic potential. Julia Fitnzer Global Influenza Programme WHO Geneva

Global updates on avian influenza and tools to assess pandemic potential. Julia Fitnzer Global Influenza Programme WHO Geneva Global updates on avian influenza and tools to assess pandemic potential Julia Fitnzer Global Influenza Programme WHO Geneva Pandemic Influenza Risk Management Advance planning and preparedness are critical

More information

Review Article A Modeling and Experiment Framework for the Emergency Management in AHC Transmission

Review Article A Modeling and Experiment Framework for the Emergency Management in AHC Transmission Computational and Mathematical Methods in Medicine, Article ID 897532, 18 pages http://dx.doi.org/1.1155/214/897532 Review Article A Modeling and Experiment Framework for the Emergency Management in AHC

More information

Modelling the Dynamic of the Foot-and Mouth Disease in England 2001

Modelling the Dynamic of the Foot-and Mouth Disease in England 2001 Modelling the Dynamic of the Foot-and Mouth Disease in England 2001 Seminar on Veterinary Epidemiology Franz Rubel Budapest, 28 May 2003 Mathematical Epidemiology Group, Institute for Medical Physics and

More information

Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model

Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model Fuzzy Decision Analysis in Negotiation between the System of Systems Agent and the System Agent in an Agent-Based Model Paulette Acheson, Cihan Dagli Engineering Management & Systems Engineering Department

More information

Module 1. Introduction. Version 1 CSE IIT, Kharagpur

Module 1. Introduction. Version 1 CSE IIT, Kharagpur Module 1 Introduction Lesson 2 Introduction to Agent 1.3.1 Introduction to Agents An agent acts in an environment. Percepts Agent Environment Actions An agent perceives its environment through sensors.

More information

Research Review: Multiple Resource Theory. out in multi-task environments. Specifically, multiple display layout and control design

Research Review: Multiple Resource Theory. out in multi-task environments. Specifically, multiple display layout and control design Research Review: Multiple Resource Theory Relevance to HCI Multiple resource theory is a framework for predicting effects on performance when multiple tasks are concurrently executed. These predictions

More information

Poultry Diseases Warning System using Dempster- Shafer Theory and Web Mapping

Poultry Diseases Warning System using Dempster- Shafer Theory and Web Mapping Vol. 1, No. 3, 212 Poultry Diseases Warning System using Dempster- Shafer Theory and Web Mapping Andino Maseleno Computer Science Program Faculty of Science, Universiti Brunei Darussalam Jalan Tungku Link,

More information

Programs for facies modeling with DMPE

Programs for facies modeling with DMPE Programs for facies modeling with DMPE Yupeng Li and Clayton V. Deutsch The programs needed for direct multivariate probability estimation (DMPE) are introduced in detail. The first program (TPcalc) is

More information

OIE STANDARDS ON EVENT BASED AND ACTIVE SURVEILLANCE OF AVIAN INFLUENZA VIRUSES. Dr Gounalan Pavade OIE regional workshop, Tokyo, August 2014

OIE STANDARDS ON EVENT BASED AND ACTIVE SURVEILLANCE OF AVIAN INFLUENZA VIRUSES. Dr Gounalan Pavade OIE regional workshop, Tokyo, August 2014 OIE STANDARDS ON EVENT BASED AND ACTIVE SURVEILLANCE OF AVIAN INFLUENZA VIRUSES Dr Gounalan Pavade OIE regional workshop, Tokyo, 26-28 August 2014 1 GENERAL MANDATE OF THE OIE To improve animal health

More information

abcdefghijklmnopqrstu

abcdefghijklmnopqrstu abcdefghijklmnopqrstu Swine Flu UK Planning Assumptions Issued 3 September 2009 Planning Assumptions for the current A(H1N1) Influenza Pandemic 3 September 2009 Purpose These planning assumptions relate

More information

Origins and evolutionary genomics of the novel avian-origin H7N9 influenza A virus in China: Early findings

Origins and evolutionary genomics of the novel avian-origin H7N9 influenza A virus in China: Early findings Origins and evolutionary genomics of the novel 2013 avian-origin H7N9 influenza A virus in : Early findings Jiankui He*, Luwen Ning, Yin Tong Department of Biology, South University of Science and Technology

More information

Towards Real Time Epidemic Vigilance through Online Social Networks

Towards Real Time Epidemic Vigilance through Online Social Networks Towards Real Time Epidemic Vigilance through Online Social Networks SNEFT Social Network Enabled Flu Trends Lingji Chen [1] Harshavardhan Achrekar [2] Benyuan Liu [2] Ross Lazarus [3] MobiSys 2010, San

More information

How Viruses Spread Among Computers and People

How Viruses Spread Among Computers and People Institution: COLUMBIA UNIVERSITY Sign In as Individual FAQ Access Rights Join AAAS Summary of this Article debates: Submit a response to this article Download to Citation Manager Alert me when: new articles

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

Stochastic Modelling of the Spatial Spread of Influenza in Germany

Stochastic Modelling of the Spatial Spread of Influenza in Germany Stochastic ling of the Spatial Spread of Influenza in Germany, Leonhard Held Department of Statistics Ludwig-Maximilians-University Munich Financial support by the German Research Foundation (DFG), SFB

More information

AVIAN FLU (LONG FORMAT) IBM Web Documentary Avian Flu (Long Format) OGILVY & MATHER

AVIAN FLU (LONG FORMAT) IBM Web Documentary Avian Flu (Long Format) OGILVY & MATHER "TruTranscripts, The Transcription Experts" (212-686-0088) A1-1 IBM Web Documentary Avian Flu (Long Format) OGILVY & MATHER DR. JAMES KAUF I think one of the most sobering events was the Liberty Loan Parade

More information

Epidemiological Situation on Pandemic Influenza H1N in the World and in Japan

Epidemiological Situation on Pandemic Influenza H1N in the World and in Japan Research and Reviews Epidemiological Situation on Pandemic Influenza H1N1 2009 in the World and in Japan JMAJ 54(5): 277 283, 2011 Nobuhiko OKABE* 1 Abstract The epidemic of novel influenza in Japan began

More information

Foundations of Artificial Intelligence

Foundations of Artificial Intelligence Foundations of Artificial Intelligence 2. Rational Agents Nature and Structure of Rational Agents and Their Environments Wolfram Burgard, Bernhard Nebel and Martin Riedmiller Albert-Ludwigs-Universität

More information

Optimal Treatment Rate During an Influenza Pandemic in the Presence of Drug-Resistance Emergence

Optimal Treatment Rate During an Influenza Pandemic in the Presence of Drug-Resistance Emergence Proceedings of the 2nd Fields MITACS Industrial Problem-Solving Workshop, 8 Optimal Treatment Rate uring an Influenza Pandemic in the Presence of rug-resistance Emergence Problem Presenter: Seyed Moghadas

More information

Putting it together: The potential role of modeling to explore the impact of FMD

Putting it together: The potential role of modeling to explore the impact of FMD Putting it together: The potential role of modeling to explore the impact of FMD Mo Salman Animal Population Health Institute Colorado State University m.d.salman@colostate.edu And Melissa McLaws European

More information

Mathematical Modeling of Trending Topics on Twitter

Mathematical Modeling of Trending Topics on Twitter Mathematical Modeling of Trending Topics on Twitter April 14, 2015 Comparison of Trending Topics Window refers to the moving sum period (e.g., each point represents count in past 200s) Project Objectives

More information

Early Warning, Information Systems and database for the surveillance of Avian Influenza

Early Warning, Information Systems and database for the surveillance of Avian Influenza Early Warning, Information Systems and database for the surveillance of Avian Influenza V. Martin, S. von DobSchuetz, A. Lemenach, N. Rass, W. Schoustra; L. DeSimone, H. Meningaux EMPRES group Conference

More information

Cluster-Randomized Controlled Trial of a Brief Theory-Based Avian Influenza Prevention Program for Poultry Workers in Taiwan

Cluster-Randomized Controlled Trial of a Brief Theory-Based Avian Influenza Prevention Program for Poultry Workers in Taiwan Cluster-Randomized Controlled Trial of a Brief Theory-Based Avian Influenza Prevention Program for Poultry Workers in Taiwan Jiun-Hau Huang 1 2 +, Yen-Yu Miao 1 and Pei-Chun Kuo 1 1 Institute of Health

More information

7th Mena Influenza Stakeholders Meeting. WHO Influenza Strategy Development and Vaccine-related Research Priorities

7th Mena Influenza Stakeholders Meeting. WHO Influenza Strategy Development and Vaccine-related Research Priorities 7th Mena Influenza Stakeholders Meeting WHO Influenza Strategy Development and Vaccine-related Research Priorities Wenqing Zhang 9 10 September 2017 Riga, Latvia 1 Seasonal influenza 1 billion cases yearly

More information