Changes between Version 2 and Version 7 of Ticket #3440


Ignore:
Timestamp:
2015-09-02T15:32:54Z (9 years ago)
Author:
Lennart Ochel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3440

    • Property Cc Volker Waurich added
    • Property Owner changed from somebody to Lennart Ochel
    • Property Status newaccepted
  • Ticket #3440 – Description

    v2 v7  
    11Using 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?
    22
     3{{{#!mo
    34model TestModel
    45  Modelica.Mechanics.Translational.Components.MassWithStopAndFriction
    5   massWithStopAndFriction(m=1);
     6    massWithStopAndFriction(m=1);
    67  Modelica.Mechanics.Translational.Sources.Force force;
    78  Modelica.Blocks.Sources.Sine sine;
    8 
    99equation
    1010  connect(force.flange, massWithStopAndFriction.flange_a);
    1111  connect(sine.y, force.f);
    12 
    1312end TestModel;
     13}}}