Changes between Version 2 and Version 7 of Ticket #3440
- Timestamp:
- 2015-09-02T15:32:54Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3440
- Property Cc added
- Property Owner changed from to
- Property Status new → accepted
-
Ticket #3440 – Description
v2 v7 1 1 Using the MSL mass with stop and friction with a force (see example below), Dymola detects a mixed system, which is handled as nonlinear system in OpenModelica. When looking at the equations, there is one linear equation, which depends on a boolean variable. Is there a mixed system detection and handling in OpenModelica? 2 2 3 {{{#!mo 3 4 model TestModel 4 5 Modelica.Mechanics.Translational.Components.MassWithStopAndFriction 5 massWithStopAndFriction(m=1);6 massWithStopAndFriction(m=1); 6 7 Modelica.Mechanics.Translational.Sources.Force force; 7 8 Modelica.Blocks.Sources.Sine sine; 8 9 9 equation 10 10 connect(force.flange, massWithStopAndFriction.flange_a); 11 11 connect(sine.y, force.f); 12 13 12 end TestModel; 13 }}}