aboutsummaryrefslogtreecommitdiffstats
path: root/examples/von_bertalanffy/model.modelica
blob: 4eb45f6d92dbb5d6810f4745f7dac7b30a05d68f (plain)
1
2
3
4
5
6
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;