aboutsummaryrefslogtreecommitdiffstats
path: root/examples/lotka_volterra/model.modelica
diff options
context:
space:
mode:
Diffstat (limited to 'examples/lotka_volterra/model.modelica')
-rw-r--r--examples/lotka_volterra/model.modelica11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/lotka_volterra/model.modelica b/examples/lotka_volterra/model.modelica
new file mode 100644
index 0000000..6f011a2
--- /dev/null
+++ b/examples/lotka_volterra/model.modelica
@@ -0,0 +1,11 @@
+model LotkaVolterra
+ parameter Real alpha;
+ parameter Real beta;
+ parameter Real delta;
+ parameter Real gamma;
+ Real x;
+ Real y;
+equation
+ der(x) = (alpha * x) - (beta * x * y)
+ der(y) = (delta * x * y) - (gamma * y)
+end LotkaVolterra;