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;