Changes between Initial Version and Version 4 of Ticket #1690
- Timestamp:
- 2012-10-11T12:15:10Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1690
- Property Component → Backend
- Property Owner changed from to
- Property Status accepted → reopened
-
Ticket #1690 – Description
initial v4 1 1 The following model isn't initial correctly. 2 2 {{{ 3 model m14 parameter Real a = 3;5 parameterReal b(fixed = false);3 loadString("model m1 4 Real a; 5 Real b(fixed = false); 6 6 initial algorithm 7 7 b:=a ^ 2; 8 end m1; 8 equation 9 sin(time)+1 = a; 10 der(b) = b; 11 end m1;"); 12 simulate(m1); 13 val(b,0.0); 14 val(b,0.5); 15 val(b,1.0); 9 16 }}}