{
    "model": {
        "title": "Model of breeding site volume for container breeders",
        "type": "ODE",
        "deterministic": true,
        "parameters": {
            "algorithm": "rk8pd",
            "hstart": 1e-3,
            "eps_abs": 1e-8,
            "eps_rel": 1e-8
        }
    },
    "environ": [
        {
            "id": "prec",
            "name": "Daily total precipitation (in mm)"
        }
    ],
    "parameters": [
        {
            "id": "alpha",
            "constant": false,
            "name": "Accumulation coefficient",
            "value": 1.0
        }, {
            "id": "beta",
            "constant": false,
            "name": "Evaporation coefficient",
            "value": 0.5
        }
    ],
    "populations": [
        {
            "id": "bsvol",
            "name": "Breeding site volume"
        }
    ],
    "reactions": [
        {
            "id": "accumulation",
            "to": {
                "bsvol": 1
            },
            "value": ["*", "alpha", ["prec", "TIME"]]
        },{
            "id": "evaporation",
            "from": {
                "bsvol": 1
            },
            "value": ["*", "beta", "bsvol"]
        }
    ]
}
