aboutsummaryrefslogtreecommitdiffstats
path: root/examples/von_bertalanffy
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2017-01-16 16:24:09 -0800
committerbnewbold <bnewbold@robocracy.org>2017-01-16 16:28:35 -0800
commit6c9ec4f093ecfa48fe3a4a3fa99de16c5676d7dc (patch)
tree09402fb4b41e36473bba33ca1604a07d0d2c6ea3 /examples/von_bertalanffy
parent6ab08f6b19734ac925ab9cafd567cb2f7735af6b (diff)
downloadmodelthing-6c9ec4f093ecfa48fe3a4a3fa99de16c5676d7dc.tar.gz
modelthing-6c9ec4f093ecfa48fe3a4a3fa99de16c5676d7dc.zip
update remaining models
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))