- Index
- » Users
- » brhoa
- » Profile
Posts
Posts
Page Start Prev 1 Next End
Well that explains why I can't find it.
Thanks.
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.
Page Start Prev 1 Next End
- Index
- » Users
- » brhoa
- » Profile