Archived OpenModelica forums. Posting is disabled.

Alternative forums include GitHub discussions or StackOverflow (make sure to read the Stack Overflow rules; you need to have well-formed questions)


Forgot password? | Forgot username? | Register
  • Index
  • » Users
  • » brhoa
  • » Profile

Posts

Posts

Aug-02-13 19:32:10
Interactive Simulation missing in 1.9.0?

Well that explains why I can't find it.

Thanks.

Aug-02-13 18:48:46
Interactive Simulation missing in 1.9.0?

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.

  • Index
  • » Users
  • » brhoa
  • » Profile
You are here: