Skip to content

Commit

Permalink
Draft description
Browse files Browse the repository at this point in the history
  • Loading branch information
confunguido committed Aug 8, 2024
1 parent a8c4e9d commit bebf568
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions examples/basic_infection/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Infection model: constant force of infection
The purpose of this example is to model the infection process in a homogeneous population assuming a constant force of infection, such as from the environment.

## Entities, states and variables

- individuals: represent people in a population who can have three states representing their infection status: susceptible, infected, or recovered.
- susceptible: individuals with this status can be infected
- infected: represents active infection. In this model, infected individuals are not able to transmit to others. After a recovery period, infected individuals update their status to recovered.
- recovered: represents recovery from infection. Individuals with this state are not able to get infected.
- variables:
- force of infection: rate at which susceptible individuals become infected
- infected period: time that an individual spends from infection to recovery

## Process overview
```{mermaid}
flowchart LR
A(Susceptible) -> B(Infected) -> C(Recovered)
```

0 comments on commit bebf568

Please sign in to comment.