1234567891011121314151617 |
- model UncontrolledScenario
- PowerSystem power();
- Window window();
- Obstacle obstacle();
- equation
- power.u = 1.0;
- power.d = 0.0;
- window.speed = power.omega;
- window.displacement = power.theta;
- window.reaction_force = obstacle.F;
- power.tau = window.tau;
- obstacle.disp = window.height;
- annotation(
- experiment(StartTime = 0, StopTime = 6, Tolerance = 1e-06, Interval = 0.0024),
- __OpenModelica_simulationFlags(jacobian = "coloredNumerical", s = "dassl", lv = "LOG_STATS"));
- end UncontrolledScenario;
|