-
Notifications
You must be signed in to change notification settings - Fork 0
/
predatorprey.json
69 lines (69 loc) · 1.57 KB
/
predatorprey.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[
{
"modelParams": {
"name": "PredatorPrey",
"description": "Simulation of predator-prey model using Lotka-Voltera equations.",
"steps": "700",
"method": "deterministic"
},
"blocks": [
{
"initialValue": "800",
"history": true,
"name": "Prey",
"show": true,
"type": "Accumulator",
"typeCode": 3,
"value": "Prey * PreyGrowthRate - Predator * ConsumeRate * Prey"
},
{
"initialValue": "100",
"history": true,
"name": "Predator",
"show": true,
"type": "Accumulator",
"typeCode": 3,
"value": "PredatorIncreaseRate * Prey * Predator - PredatorDeathRate * Predator"
},
{
"file": null,
"name": "PreyGrowthRate",
"show": false,
"type": "Data",
"typeCode": 2,
"useAsParameter": false,
"value": "0.049"
},
{
"file": null,
"name": "ConsumeRate",
"show": false,
"type": "Data",
"typeCode": 2,
"useAsParameter": false,
"value": "0.00027"
},
{
"file": null,
"name": "PredatorDeathRate",
"show": false,
"type": "Data",
"typeCode": 2,
"useAsParameter": false,
"value": "0.047"
},
{
"file": null,
"name": "PredatorIncreaseRate",
"show": false,
"type": "Data",
"typeCode": 2,
"useAsParameter": false,
"value": "0.0001"
}
],
"methodParams": {
"samples": ""
}
}
]