aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/minimal.modelica6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/minimal.modelica b/examples/minimal.modelica
new file mode 100644
index 0000000..85335a5
--- /dev/null
+++ b/examples/minimal.modelica
@@ -0,0 +1,6 @@
+model FirstOrder
+ parameter Real c;
+ Real x;
+equation
+ der(x) = -c*x;
+end FirstOrder;