Changes between Initial Version and Version 1 of Ticket #1973, comment 3
- Timestamp:
- 2012-12-18T07:14:12Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1973, comment 3
initial v1 1 1 simple example with the same issue: 2 2 {{{ 3 model test 4 parameter Real a = 4; 5 parameter Real b(start=0, fixed=(a < 3)); 3 loadString(" 4 model test1 5 constant Boolean FIXED = false; 6 parameter Real a(start=0, fixed=FIXED); 6 7 initial equation 7 b = a + 3; 8 end test; 8 a = 1; 9 end test1; 10 11 model test2 12 parameter Boolean FIXED = false; 13 parameter Real a(start=0, fixed=FIXED); 14 initial equation 15 a = 1; 16 end test2; 17 "); getErrorString(); 18 19 simulate(test1); getErrorString(); 20 simulate(test2); getErrorString(); 9 21 }}} 10 22 11 messages 23 test1 works fine, but test2 not: 12 24 {{{ 13 25 "Warning: Trying to fix over-determined initial system... [not implemented yet!] 14 Warning: It was not possible to solve the over-determined initial system ( 3 equations and 2variables)26 Warning: It was not possible to solve the over-determined initial system (2 equations and 1 variables) 15 27 Warning: No system for the symbolic initialization was generated. A method using numerical algorithms will be used instead. 16 28 "