diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/minimal.modelica | 6 | ||||
-rw-r--r-- | examples/minimal2.modelica | 8 | ||||
-rw-r--r-- | examples/minimal3.modelica | 8 |
3 files changed, 0 insertions, 22 deletions
diff --git a/examples/minimal.modelica b/examples/minimal.modelica deleted file mode 100644 index 85335a5..0000000 --- a/examples/minimal.modelica +++ /dev/null @@ -1,6 +0,0 @@ -model FirstOrder - parameter Real c; - Real x; -equation - der(x) = -c*x; -end FirstOrder; diff --git a/examples/minimal2.modelica b/examples/minimal2.modelica deleted file mode 100644 index 69790b0..0000000 --- a/examples/minimal2.modelica +++ /dev/null @@ -1,8 +0,0 @@ -model FirstOrder - parameter Real c; - Real x; -equation - connect(c, x); - 1 = c; - (5 + 4) = x; -end FirstOrder; diff --git a/examples/minimal3.modelica b/examples/minimal3.modelica deleted file mode 100644 index 1e9a211..0000000 --- a/examples/minimal3.modelica +++ /dev/null @@ -1,8 +0,0 @@ -model MinimalModel - parameter Real a; - Real b; -equation - connect(a, b); - a = 1; - b = (abs(a) + 2) / 4; -end FirstOrder; |