aboutsummaryrefslogtreecommitdiffstats
path: root/examples/von_bertalanffy/model.modelica
diff options
context:
space:
mode:
Diffstat (limited to 'examples/von_bertalanffy/model.modelica')
-rw-r--r--examples/von_bertalanffy/model.modelica7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/von_bertalanffy/model.modelica b/examples/von_bertalanffy/model.modelica
new file mode 100644
index 0000000..4eb45f6
--- /dev/null
+++ b/examples/von_bertalanffy/model.modelica
@@ -0,0 +1,7 @@
+model VonBertalanffyGrowth
+ parameter Real K "growth rate";
+ parameter Real L "asymptotic final size";
+ Real l "length";
+equation
+ der(l) = K * (L - l);
+end VonBertalanffyGrowth;