You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove all 'exogeneous' effects (e.g. time-varying parameters, vaccination).
Choose one exposed state and initialize it to a small number (e.g. $10^-5$).
Define a vector, $\sigma$, that sums to one with one value for each susceptible state (could be a constant vector for a uniform distribution ... but could be the normalized age distribution if the S classes differ only in their age ... ).
Set the values of the susceptible states to the values in $\sigma (1 - 10^-5)$.
Set all other state vectors to zero, resulting in a state vector that sums to 1.
Run simulations for 100 (or so) time-steps and get the final state vector.
Remove any susceptible, dead, or recovered classes from this final state vector.
Normalize this final state vector so that it sums to 1, to produce the eigenvector, $v$.
Create a new state vector, $s$, which will become the initial state vector for simulations from the original model.
Define the total population size, $N$, as the actual population being modelled by the original model.
Define the initial number of exposed/infected/infectious/other individuals, $I_0$ in the original model.
Set the susceptible states in $s$ as $\sigma (N - I_0)$.
Set the dead and recovered states in $s$ to $0$.
Set the remaining states in $s$ to $v I_0$
The text was updated successfully, but these errors were encountered:
1
.The text was updated successfully, but these errors were encountered: