We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccb54e7 + ae38e2b commit 8691109Copy full SHA for 8691109
ModelicaByExample/Components/LotkaVolterra/Examples/ThreeSpecies_Quiescent.mo
@@ -2,8 +2,8 @@ within ModelicaByExample.Components.LotkaVolterra.Examples;
2
model ThreeSpecies_Quiescent "Three species in a quiescent state"
3
import ModelicaByExample.Components.LotkaVolterra.Components.RegionalPopulation.InitializationOptions.SteadyState;
4
extends ThirdSpecies(
5
- rabbits(init=SteadyState),
6
- foxes(init=SteadyState),
7
- wolves(init=SteadyState));
+ rabbits(init=SteadyState, population(start=30)),
+ foxes(init=SteadyState, population(start=2)),
+ wolves(init=SteadyState, population(start=4)));
8
annotation (experiment(StopTime=100, Tolerance=1e-006));
9
end ThreeSpecies_Quiescent;
0 commit comments