Changes between Initial Version and Version 1 of Ticket #1694
- Timestamp:
- 2013-06-24T11:15:16Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1694
- Property Cc added; removed
- Property Component → Run-time
-
Ticket #1694 – Description
initial v1 1 {{{model M 1 {{{#!mo 2 model M 2 3 function f 3 4 input Real i1,i2,i3; … … 11 12 der(o2) = 1; 12 13 der(o3) = 1; 13 end M;}}} 14 end M; 15 }}} 14 16 15 17 If 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 19 o1 = i1; 17 20 o2 = i2; 18 o3 = i3;}}} 21 o3 = i3; 22 }}} 19 23 20 For a larger example using this, see {{{Modelica 3.2.Blocks.Examples.Filter}}}24 For a larger example using this, see `Modelica 3.2.Blocks.Examples.Filter`