aboutsummaryrefslogtreecommitdiffstats
path: root/examples/van_der_pol/model.modelica
diff options
context:
space:
mode:
Diffstat (limited to 'examples/van_der_pol/model.modelica')
-rw-r--r--examples/van_der_pol/model.modelica8
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/van_der_pol/model.modelica b/examples/van_der_pol/model.modelica
deleted file mode 100644
index c1aa99b..0000000
--- a/examples/van_der_pol/model.modelica
+++ /dev/null
@@ -1,8 +0,0 @@
-model VanDerPolOscillator
- parameter Real mu "dampening strength";
- Real x;
- Real y;
-equation
- der(x) = y;
- der(y) = mu * y * (1 - x^2) - x;
-end VanDerPolOscillator;