Insight diagram
The SEIRS(D) model for the purpose of experimenting with the phenomena of viral spread. I use it for COVID-19 simulation.
SEIR - COVID-19 (v.1)
Insight diagram
This insight began as a March 22nd Clone of "Italian COVID 19 outbreak control"; thanks to Gabo HN for the original insight. The following links are theirs:

Initial data from:
Italian data [link] (Mar 4)
Incubation estimation [link]

Andy Long
Northern Kentucky University
May 2nd, 2020

This is an update of our model from April 9th, 2020. As we prepare for our final exam, I read a story in The Guardian about Italy's struggle to return to normalcy. The final paragraphs:

During the debate in the Senate on Thursday, the opposition parties grilled Conte. Ex-prime minister Matteo Renzi, who has called for less restraint in the reopening, remarked, “The people in Bergamo and Brescia who are gone, those who died of the virus, if they could speak, they’d tell us to relaunch the country for them, in their honour.”

Renzi’s controversial statement was harshly criticised by doctors who warned that the spread of the disease, which, as of Thursday, had killed almost 30,000 people in the country and infected more than 205,000 [ael: my emphasis], was not over and that a misstep could take the entire country back to mid-March coronavirus levels.

“We risk a new wave of infections and outbreaks if we’re not careful,” said Tullio Prestileo, an infectious diseases specialist at Palermo’s Benefratelli Hospital. “If we don’t realise this, we could easily find ourselves back where we started. In that case, we may not have the strength to get back up again.”

I have since updated the dataset, to include total cases from February 24th to May 2nd. I went to Harvard's Covid-19 website for Italy  and and then to their daily updates, available at github. I downloaded the regional csv file for May 2nd,  which had regional totals (21 regions); I grabbed the column "totale_casi" and did some processing to get the daily totals from the 24th of February to the 2nd of May.

The cases I obtained in this way matched those used by Gabo HN.

The initial data they used started on March 3rd (that's the 0 point in this Insight).

You can get a good fit to the data through April 9th by choosing the following (and notice that I've short-circuited the process from the Infectious to the Dead and Recovered). I've also added the Infectious to the Total cases.

The question is: how well did we do at modeling this epidemic through May 2nd (day 60)? And how can we change the model to do a better job of capturing the outbreak from March 3rd until May 2nd?

Incubation Rate:  .025
R0: 3
First Lockdown: IfThenElse(Days() == 5, 16000000, 0)
Total Lockdown: IfThenElse(Days() >= 7, 0.7,0)

(I didn't want to assume that the "Total Lockdown" wasn't leaky! So it gets successively tighter, but people are sloppy, so it simply goes to 0 exponentially, rather than completely all at once.)

deathrate: .01
recoveryrate: .03

"Death flow": [deathrate]*[Infectious]
"Recovery flow": [recoveryrate]*[Infectious]

Total Reported Cases: [Dead]+[Surviving / Survived]+[Infectious]



Resources:
  * https://annals.org/aim/fullarticle/2762808/incubation-period-coronavirus-disease-2019-covid-19-from-publicly-reported
Butcher/Student Check of Final Version of Italian COVID-19 outbreak
Insight diagram
A Susceptible - Infected - Recovered disease as a stock and flow model for COVID.
COVID SIR Disease Model
Insight diagram
Model ini dirancang untuk membuat model tentang penyebaran Covid-19 dan vaksinasi di Kabupaten Sleman pada November 2022

Model ini dibuat untuk memenuhi tugas kelompok dari matakuliah Metode Penyelesaian Masalah dan Pemodelan, atas nama :
Sabilla Halimatus Mahmud
Nurul Widyastuti
Muhammad Najib



Edit Model Penyebaran Covid-19 di Kabupaten Sleman
Insight diagram

Here we have a basic SEIR model and we will investigate what changes would be appropriate for modelling the 2019 Coronavirus 

SEIR Infectious Disease Model for COVID-19
697 last month
Insight diagram
Сovid 19 South Korea
Insight diagram
An SIR model for Covid-19

This is a simple example of an SIR model for my Mathematics for Liberal Arts classes at Northern Kentucky University, Spring of 2022.

Let's think about things on the scale of a week. What happens over a week?

With an Ro of 2 (2 people infected for each infected individual, over the course of a week); recovery rate of 1 (every infected person loses their infectiousness after a week), and resusceptible rate of .05 (meaning .05, or a twentieth of the recovered lose their immunity each week), the disease peaks -- does the wave, then waves again before the year is out, then ultimately becomes
"endemic" (that is, it's never going away, which is clear after two years -- that is, a time of 104 weeks). This is like our seasonal flu (only the disease in this simulation doesn't illustrate seasonality -- that requires a more complicated model).

With an Ro of .9, recovery rate of 1, and resusceptible rate of .05, the disease is eliminated.

Masking, social distancing (including quarantining following contact), and quarantines all serve to reduce infectivity. And if we can drive infectivity down far enough, the disease can be eliminated. Other things that help is slowing down the resusceptibility, by vaccinating. Vaccines (in general) impart an immune response that reduces -- or even eliminates -- your susceptibility. We are still learning the extent to which these vaccines impart long-term immunity.

Other tools at our disposal include Covid-19 treatments, which increase the recovery rate, and vaccinations, which reduce the resusceptible rate. These can also serve to help us eradicate a disease, so that it doesn't become endemic (and so plague us forever).

Andy Long
Mathematics and Statistics

Some resources:
  1. Wear a good mask: https://www.cdc.gov/coronavirus/2019-ncov/your-health/effective-masks.html
  2. Gotta catch those sneezes: https://www.dailymail.co.uk/sciencetech/article-8221773/Video-shows-26-foot-trajectory-coronavirus-infected-sneeze.html

MAT115 Covid Simulation
Insight diagram
March 22nd Clone of "Italian COVID 19 outbreak control"; thanks to Gabo HN for the insight.

Initial data from:
Italian data [link] (Mar 4)
Incubation estimation [link]

Andy Long
April 9th, 2020

I have since updated the dataset, to include total cases from February 24th to April 9th.
I went to                                                                                                 
https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/KDFYZW                           
and downloaded the archive for April 9th:                                                                 
https://dataverse.harvard.edu/file.xhtml?persistentId=doi:10.7910/DVN/KDFYZW/C2HSTK&version=19.0          

I dug through the files, and found the file dpc-covid19-ita-regioni.csv, which had regional totals (21 regions); I grabbed the column "totale_casi" and used some lsp code to get the daily totals from the 24th of February til the 9th of April.

The good news is that the cases I obtained in this way matched those used by Gabo HN.

The initial data started on March 3rd (that's 0 in this Insight).

You can get a good fit to the data by choosing the following (and notice that I've short-circuited the process from the Infectious to the Dead and Recovered). I've also added the Infectious to the Total cases.

Incubation Rate:  .025
R0: 3
First Lockdown: IfThenElse(Days() == 5, 16000000, 0)
Total Lockdown: IfThenElse(Days() >= 7, 0.7,0)

(I didn't want to assume that the "Total Lockdown" wasn't leaky! So it gets successively tighter, but people are sloppy, so it simply goes to 0 exponentially, rather than completely all at once.)

deathrate: .01
recoveryrate: .03

"Death flow": [deathrate]*[Infectious]
"Recovery flow": [recoveryrate]*[Infectious]

Total Reported Cases: [Dead]+[Surviving / Survived]+[Infectious]



Resources:
  * https://annals.org/aim/fullarticle/2762808/incubation-period-coronavirus-disease-2019-covid-19-from-publicly-reported
MAT375 Version of Italian COVID 19 outbreak control
Insight diagram
Simple epidemiological model for Burnie, Tasmania
SIR: Susceptible to infection - Infected - Recovery, Government responses and Economic impacts  

Government policy is activated when there are 10 or fewer reported cases of COVID-19. The more people tested, the fewer people became infected. So the government's policy is to reduce infections by increasing the number of people tested and starting early. At the same time, it has slowed the economic growth (which, according to the model,  will stop for next 52 weeks).
Model of Covid-19 Outbreak in Burnie, Tasmania (Yue Xiang 512994)
Insight diagram
COVID-19 SEIR Model (Indonesia values)
Insight diagram
Covid 19 in China
Insight diagram
Өзіндік жұмыс 2
Insight diagram
Evolution of Covid-19 in Brazil:
A System Dynamics Approach

Villela, Paulo (2020)
villela.paulo@gmail.com

This model is based on Crokidakis, Nuno. (2020). Data analysis and modeling of the evolution of COVID-19 in Brazil. For more details see full paper here.

Evolution of Covid-19 in Brazil: A System Dynamics Approach
Insight diagram
spread model of COVID-19
Insight diagram
This insight began as a March 22nd Clone of "Italian COVID 19 outbreak control"; thanks to Gabo HN for the original insight. The following links are theirs:

Initial data from:
Italian data [link] (Mar 4)
Incubation estimation [link]

Andy Long
Northern Kentucky University
August 11th, 2020

This is an update of our "final" model from May, 2020.

I thought I'd check back, as classes begin again, to see how well our SIR did. So I'm updating the data on the Italian situation. Meanwhile, I'm thinking that an agent-based model would be better for the US situation, given the wild variation in local parameters (e.g. rates of mask-use).

It looks like our model was overly pessimistic: deaths were only about 89% of what we expected; total cases were perhaps 82% of what we expected (and the situation flattened quite a bit shortly after the 60 day mark).

What follows were the notes for the previous version.





As we prepare for our final exam, I read a story in The Guardian about Italy's struggle to return to normalcy. The final paragraphs:

During the debate in the Senate on Thursday, the opposition parties grilled Conte. Ex-prime minister Matteo Renzi, who has called for less restraint in the reopening, remarked, “The people in Bergamo and Brescia who are gone, those who died of the virus, if they could speak, they’d tell us to relaunch the country for them, in their honour.”

Renzi’s controversial statement was harshly criticised by doctors who warned that the spread of the disease, which, as of Thursday, had killed almost 30,000 people in the country and infected more than 205,000 [ael: my emphasis], was not over and that a misstep could take the entire country back to mid-March coronavirus levels.

“We risk a new wave of infections and outbreaks if we’re not careful,” said Tullio Prestileo, an infectious diseases specialist at Palermo’s Benefratelli Hospital. “If we don’t realise this, we could easily find ourselves back where we started. In that case, we may not have the strength to get back up again.”

I have since updated the dataset, to include total cases from February 24th to May 2nd. I went to Harvard's Covid-19 website for Italy  and and then to their daily updates, available at github. I downloaded the regional csv file for May 2nd,  which had regional totals (21 regions); I grabbed the column "totale_casi" and did some processing to get the daily totals from the 24th of February to the 2nd of May.

The cases I obtained in this way matched those used by Gabo HN.

The initial data they used started on March 3rd (that's the 0 point in this Insight).

You can get a good fit to the data through April 9th by choosing the following (and notice that I've short-circuited the process from the Infectious to the Dead and Recovered). I've also added the Infectious to the Total cases.

The question is: how well did we do at modeling this epidemic through May 2nd (day 60)? And how can we change the model to do a better job of capturing the outbreak from March 3rd until May 2nd?

Incubation Rate:  .025
R0: 3
First Lockdown: IfThenElse(Days() == 5, 16000000, 0)
Total Lockdown: IfThenElse(Days() >= 7, 0.7,0)

(I didn't want to assume that the "Total Lockdown" wasn't leaky! So it gets successively tighter, but people are sloppy, so it simply goes to 0 exponentially, rather than completely all at once.)

deathrate: .01
recoveryrate: .03

"Death flow": [deathrate]*[Infectious]
"Recovery flow": [recoveryrate]*[Infectious]

Total Reported Cases: [Dead]+[Surviving / Survived]+[Infectious]

Based on my student Sean's work, I altered the death rate to introduce the notion that doctors are getting better at saving lives:
[deathrate] = 0.02/(.0022*Days()^1.8+1)
I don't agree with this model of the death rate, but it was a start motivated by his work. Thanks Sean!:)

Resources:
  * Recent news: "Since the early days of the outbreak in China, scientists have known that SARS-CoV-2 is unusually contagious — more so than influenza or a typical cold virus. Scientific estimates of the reproduction number — the R0, which is the number of new infections that each infected person generates on average — have varied among different communities and different points but have generally been between 2 and 4. That is significantly higher than seasonal influenza."
  * https://annals.org/aim/fullarticle/2762808/incubation-period-coronavirus-disease-2019-covid-19-from-publicly-reported
  * https://covid19.healthdata.org/italy
Update of May Version (Final Exam Key) of Italian COVID-19 outbreak
Insight diagram
Model di samping adalah model SEIR yang telah dimodifikasi sehingga dapat digunakan untuk menyimulasikan perkembangan penyebaran COVID-19.
SEIR Model for COVID-19 in Indonesia - v2
Insight diagram
Germany COVID-19
Insight diagram
Simulation of the spread of COVID-19 in Wuhan.
COVID-19
Insight diagram
Initial data from:
Italian data [link], as of Mar 28
Incubation estimation [link

Model focuses on outbreak dynamics and control, this version ignores symptom onset to hospital admission and the rest of recovery dynamics.
Italian COVID 19 outbreak control V2
Insight diagram
Data provided by: PHE and Worldometers

UK COVID 19 Simulator
Insight diagram
Spread of disease (e.g. Covid)
Insight diagram
This System Model presents the cases of COVID-19 in Puerto Princesa City as of June 3, 2021

Insight Author: Pia Mae M. Palay
System Dynamic Model of COVID 19 in Puerto Princesa City
Insight diagram

This model is designed for the local government of Burnie, Tasmania, aiming to help with balancing COIVD-19 and economic impacts during a possible outbreak. 

The model has been developed based upon the SIR model (Susceptible, Infected, Recovered) model used in epidemiology. 

It lists several possible actions that can be taken by the government during a COVID-19 outbreak and provide the economic impact simulation. 

The model allow users to Change the government policies factors (Strength of Policies) and simulate the total economic impact.

Interestingly, the government plicies largely help with controlling the COVID outbreak. However, the stronger the policies are, the larger impact on local economy

Burnie Covid Model, Zilin Huang 533476