Changes between Initial Version and Version 4 of Ticket #3511


Ignore:
Timestamp:
2015-10-14T15:08:33Z (9 years ago)
Author:
Vitalij Ruge
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3511

    • Property Cc Willi Braun Patrick Täuber added
    • Property Component UnknownBackend
  • Ticket #3511 – Description

    initial v4  
    11{{{Differentiate.differentiateExpSolve,ExpressionSolve.solve2}}} in tryToSolveOrDerive need for correct handling of functions the functionTree.
     2
     3Example:
     4{{{#!modelica
     5model testTearing
     6  function f
     7    input Real t;
     8    output Real y;
     9  algorithm
     10    y := 2 * t;
     11  end f;
     12
     13  Real a annotation(tearingSelect = always);
     14  Real b;
     15  Real _a annotation(tearingSelect = always);
     16  Real _b;
     17equation
     18  a = b + f(b);
     19  b = sin(a) + 3 * f(b);
     20  _a = _b + 2 * _b;
     21  _b = sin(_a) + 3 * 2 * _b;
     22end testTearing;
     23}}}
     24OM should be can find same tearing for {{{a,b}}}and {{{_a,_b}}}