aboutsummaryrefslogtreecommitdiffstats
path: root/examples/von_bertalanffy
diff options
context:
space:
mode:
Diffstat (limited to 'examples/von_bertalanffy')
-rw-r--r--examples/von_bertalanffy/model.modelica7
-rw-r--r--examples/von_bertalanffy/page.md5
2 files changed, 0 insertions, 12 deletions
diff --git a/examples/von_bertalanffy/model.modelica b/examples/von_bertalanffy/model.modelica
deleted file mode 100644
index 4eb45f6..0000000
--- a/examples/von_bertalanffy/model.modelica
+++ /dev/null
@@ -1,7 +0,0 @@
-model VonBertalanffyGrowth
- parameter Real K "growth rate";
- parameter Real L "asymptotic final size";
- Real l "length";
-equation
- der(l) = K * (L - l);
-end VonBertalanffyGrowth;
diff --git a/examples/von_bertalanffy/page.md b/examples/von_bertalanffy/page.md
deleted file mode 100644
index ea6e9f1..0000000
--- a/examples/von_bertalanffy/page.md
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-An alternative/solve variant is:
-
- l = L * (1 - e^(-K * t))