diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-10-25 20:18:50 -0700 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-10-25 20:18:50 -0700 |
commit | 8eb63f635c801f236e8e8992f75d473c7e3d85c8 (patch) | |
tree | a8c98f31df0b559fbf2ad46dc23f03bde4e0c823 | |
parent | 235e1abc21b54a60913adbe1062b8ad3a0bd09d6 (diff) | |
download | modelthing-8eb63f635c801f236e8e8992f75d473c7e3d85c8.tar.gz modelthing-8eb63f635c801f236e8e8992f75d473c7e3d85c8.zip |
more minimal examples
-rw-r--r-- | examples/minimal2.modelica | 8 | ||||
-rw-r--r-- | examples/minimal3.modelica | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/examples/minimal2.modelica b/examples/minimal2.modelica new file mode 100644 index 0000000..69790b0 --- /dev/null +++ b/examples/minimal2.modelica @@ -0,0 +1,8 @@ +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 new file mode 100644 index 0000000..1e9a211 --- /dev/null +++ b/examples/minimal3.modelica @@ -0,0 +1,8 @@ +model MinimalModel + parameter Real a; + Real b; +equation + connect(a, b); + a = 1; + b = (abs(a) + 2) / 4; +end FirstOrder; |