aboutsummaryrefslogtreecommitdiffstats
path: root/examples/von_bertalanffy_organism_growth/model.modelica
blob: afc6f7f39c8f64728bd29548ad66c79ce6024d3b (plain)
1
2
3
4
5
6
7
8
model VonBertalanffyGrowth
    "Rate-of-growth model for biological organisms"
    parameter Real K    "growth rate";
    parameter Real L    "asymptotic final length (L infinity)";
    Real l              "length";
equation
    der(l) = K * (L - l);
end VonBertalanffyGrowth;