-- @example Multiple simulations of a Susceptible-Infected-Recovered (SIR) model with a public campaign.
-- The campaign asks the population to stop leaving home, which reduces the number of
-- contacts by half. The example shows the outcomes given different thresholds to start the campaign.
-- @image sir-campaign.bmp

import("calibration")
import("sysdyn")

runs = MultipleRuns{
	model = SIR,
	parameters = {
		maximum = Choice{min = 100, max = 4000, step = 10}
	}
}

chart = Chart{
	target = runs.output,
	select = {"maxInfected", "susceptible"},
	xAxis = "maximum"
}

