Defines a SIS epidemic model with total population normalized to 1: S + I = 1, I' = βI(1 - I) - γI.
Infection rate
Recovery rate
const ode = Chalkboard.diff.SIS(0.8, 0.1);const derivative = ode.rule(0, [0.01]); // Evaluates an SIS state Copy
const ode = Chalkboard.diff.SIS(0.8, 0.1);const derivative = ode.rule(0, [0.01]); // Evaluates an SIS state
Defines a SIS epidemic model with total population normalized to 1: S + I = 1, I' = βI(1 - I) - γI.