For this project you will be designing and implementing a system, in C++, to simulate an outbreak across a geographic area. Specifically, you will be using a cellular automata, with a Moore neighborhood configuration, to model a geographic region, and a SIR model to model the health states of the populace. Your model should visually output how the regions population changes over time, the final S, I, R, V counts, the day of the outbreaks peak, and the day the outbreak ended.
Additionally, sample input files will be uploaded
This project has two parts: a design portion and an implementation portion.
Design Document
For the design portion, you must generate documentation, in PDF format, describing your system and design process. The purpose of this is for you to explain not just what your system is doing, and how it is doing it, but why. You will need to justify your design decisions in a concise, informative manner. Justifications such as I did this because it was easy are not sufficient, as you should actually explain why a particular data structure or algorithm was more efficient, effective, or optimal. Additionally, commented code, while sometimes helpful in small examples, is not a sufficient explanation in and of itself. Your explanations and justifications are expected to be presented in prose and in paragraph format, i.e. not bulleted lists. Further, part of the evaluation of your design document is the apparent amount of thought and effort that went into its creation.
This document should be divided into four main parts, each with an appropriate header.
In the first part, you should describe your design process. Did you work out the algorithm on paper or a whiteboard before hand? Did you draw UML diagrams of the system? Did you create a small prototype? Did you simply start coding away and then recode once or twice with newfound understanding? In a few paragraphs, describe in detail how you went about designing the system, and be sure to provide sufficient justification of your methodology.
For the second part, you should describe the data structures you used in your system. What, if any, objects or structs did you create to store data? How did you organize and manage them? What types of formal data structures did you make use of (trees, graphs, arrays, hashes, etc)? In a few paragraphs, describe in detail how you stored the various data elements in your system, and be sure to provide sufficient justification of your methodology.
For the third part, you should describe functionality of your system. How is data moved and transformed? How is it read in? How is it output? What are the various major functions you constructed and how do they work? In a few paragraphs, describe in detail how your system works, and be sure to provide sufficient justification of your methodology. You might also consider including diagrams to more easily visualize how all of the pieces fit together.
Implementation
Your program must provide the following functionality and adhere to the following constraints:
s: susceptible
i: infectious
r: recovered
v: vaccinated
Suggestions
This project requires the use of a few different data structures to store and represent the agents within the model. First, you will need a way to store the grid of the cellular automata. This is a good opportunity to use either vectors or dynamic arrays, as you do not know how big the region is until you have read the entire input file. Then within that grid, you will need to represent each agent. Because each agent maintains both their health state (S,I,R,V) and how long they have been infectious, you should consider using a struct or object. As for the health states themselves, perhaps consider an enumerated type to make checking for states a bit more readable in your code.
Additionally, updating the grid from one day to the next could be done with two grids, one for the current day and one for the next day. Trying to update in place may cause problems, as an agent should not be considered infectious until the day after they have enough infectious agents in their neighborhood. Thus, consider using a temporary grid to determine what the state of the region will be the next day given the state of the region on the current day, and then once it is filled in, overwrite the current day with the next day.
Example Output
Threshold:1
Infectious Period:2
Display:1
Day 0 to Day 4: see image.