OK, so now you are going to extend both the continuous and agent based model of the SIRD to and fictional disease.
I mentioned that I recently read The End of Men by Christina Sweeney-Baird which describes a new virus that only killed males. I want you to build a SIR type model to represent the disease spread as described in the book.
The book does not describe every detail of the disease spread so I have to make some guesses based on the text. And have intentionally left things vague so you will need to make some modelling decisions yourselves.
Create a new notebook called End_of_Men_Model.ipynb
to implement this model. You will have a lot of code in common with your SIR_Models.ipynb
notebook, but using a separate notebook will help grading.
In notebook End_of_Men_Model.ipynb
implement both the continuous and the Agent based model representing the spread of this disease.
For the continuous model:
Construct the ODE system representing your model, then determine suitable parameters for the model and plot the model curves showing the infection progression. What is the number of infected and the number of deaths?
For the discrete (agent based) model:
You will need to either add another variable to Agent
to represent gender or have more values for state
, i.e, INFECTED_MALE
etc.
Only the infected males will show symptoms so only they will isolate. Is this disease worse because it only affect males?