Changes between Initial Version and Version 1 of Ticket #1694


Ignore:
Timestamp:
2013-06-24T11:15:16Z (12 years ago)
Author:
Martin Sjölund
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1694

    • Property Cc Frenkel TUD added; Jens Frenkel removed
    • Property ComponentRun-time
  • Ticket #1694 – Description

    initial v1  
    1 {{{model M
     1{{{#!mo
     2model M
    23  function f
    34    input Real i1,i2,i3;
     
    1112  der(o2) = 1;
    1213  der(o3) = 1;
    13 end M;}}}
     14end M;
     15}}}
    1416
    1517If we evaluate an equation like the function call above, we need to scalarize the tuples since you cannot create anonymous tuples in the C runtime.
    16 {{{o1 = i1;
     18{{{#!mo
     19o1 = i1;
    1720o2 = i2;
    18 o3 = i3;}}}
     21o3 = i3;
     22}}}
    1923
    20 For a larger example using this, see {{{Modelica 3.2.Blocks.Examples.Filter}}}
     24For a larger example using this, see `Modelica 3.2.Blocks.Examples.Filter`