Changes between Initial Version and Version 1 of Ticket #4890, comment 5
- Timestamp:
- 2018-04-18T19:20:46Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4890, comment 5
initial v1 3 3 {{{#!modelica 4 4 model pow_test 5 Real x = (-y)^(1/ 7);6 Real y(start = 2, fixed=true);5 Real x = (-y)^(1/3); 6 Real y(start = 1, fixed=true); 7 7 equation 8 8 der(y) = 0; 9 9 end pow_test; 10 10 }}} 11 work, solution `x = -1 .104089513673812`11 work, solution `x = -1` 12 12 13 13 {{{#!modelica 14 14 model pow_test 15 Real x = (-y)^(2/ 7);16 Real y(start = 2, fixed=true);15 Real x = (-y)^(2/3); 16 Real y(start = 1, fixed=true); 17 17 equation 18 18 der(y) = 0; 19 19 end pow_test; 20 20 }}} 21 failed, solution `x = (-1 .104089513673812)^2`21 failed, solution `x = (-1)^2`