loom
1import "diff/PredatorPrey.diff" type PredatorPrey;
2
3PredatorPrey PP = {
4alpha : 6.,
5beta : 0.8,
6gamma : 1.0,
7delta : 0.1,
8x : 10.,
9y : 10.
10};
11
12string sx = "Жертвы";
13string sy = "Хищники";
14
15chart.init("Модель хищник-жертва");
16
17void onShow()
18{
19sys.print(scene.t() + " " + PP.x);
20
21chart.addPoint(sx, scene.t(), PP.x);
22chart.addPoint(sy, scene.t(), PP.y);
23
24}
25
26scene.setIterationCallback(onShow, 5);
27scene.setT(0.0);
28scene.setTk(20.0);
29scene.setDt(0.01);
30
31scene.add(PP);
32
33sys.print("t x");
34
35scene.start();
36