{
    "model": {
        "title": "Lorenz equations",
        "type": "ODE",
        "deterministic": true,
        "parameters": {
            "algorithm": "rk8pd",
            "hstart": 1e-3,
            "eps_abs": 1e-8,
            "eps_rel": 1e-8
        }
    },
    "environ": [ ],
    "parameters": [
        {
            "id": "sigma",
            "constant": false,
            "value": 10.0
        }, {
            "id": "rho",
            "constant": false,
            "value": 28.0
        }, {
            "id": "beta",
            "constant": false,
            "value": 2.6666666666666665
        },{
            "id": "time_scale",
            "constant": false,
            "value": 1.0
        }
    ],
    "populations": [
        {
            "id": "xx"
        },{
            "id": "yy"
        },{
            "id": "zz"
        }
    ],
    "reactions": [
        {
            "id": "r0",
            "to": { "xx": 1 },
            "value": ["*", "time_scale", "sigma", "yy"]
        },{
            "id": "r1",
            "from": { "xx": 1 },
            "value": ["*", "time_scale", "sigma", "xx"]
        },{
            "id": "r2",
            "to": { "yy": 1 },
            "value": ["*", "time_scale", "rho", "xx"]
        },{
            "id": "r3",
            "from": { "yy": 1 },
            "value": ["*", "time_scale", "xx", "zz"]
        },{
            "id": "r4",
            "from": { "yy": 1 },
            "value": ["*", "time_scale", "yy"]
        },{
            "id": "r5",
            "to": { "zz": 1 },
            "value": ["*", "time_scale", "xx", "yy"]
        },{
            "id": "r6",
            "from": { "zz": 1 },
            "value": ["*", "time_scale", "beta", "zz"]
        }
    ]
}
