- Index
- » Usage and Applications
- » OpenModelica Usage and Applications
- » Interactive Simulation missing in 1.9.0?
Page Start Prev 1 Next End
Interactive Simulation missing in 1.9.0?
Interactive Simulation missing in 1.9.0?
Aug-02-13 18:48:46
Hello,
I've been playing around with OpenModelica for the past few days and wanted to use the interactive simulation. Per the user guide I looked for it in the Simulation menu.
However, only Simulate, Instantiate, and Check Model were available.
I'm using OMEdit 1.9.0 beta4 r15030 on Windows 8 64-bit.
In case it's needed here is the model
Code:
model Lorenz
Real x(start = 1);
Real y(start = 1);
Real z(start = 1);
parameter Real b = 3;
parameter Real r = 20;
parameter Real s = 10;
annotation(experiment(StartTime = 0.0, StopTime = 25.0, Tolerance = 0.000001));
equation
der(x) = s * (y - x);
der(y) = x * (r - z) - y;
der(z) = x * y - b * z;
end Lorenz;
Any help would be appreciated.
Re: Interactive Simulation missing in 1.9.0?
Aug-02-13 18:50:37
Interactive simulation is currently not available. It will be back again soon but I can't tell you exactly when.
Adeel.
- adeas
- 454 Posts
Page Start Prev 1 Next End
- Index
- » Usage and Applications
- » OpenModelica Usage and Applications
- » Interactive Simulation missing in 1.9.0?
There are 0 guests and 0 other users also viewing this topic