Ticket #6433: ModelStartNotDefined.mo

File ModelStartNotDefined.mo, 316 bytes (added by Tin Rabuzin <trabuzin@…>, 5 years ago)

A model demonstrating the issue

Line 
1model ModelStartNotDefined
2
3parameter Real startA(fixed=false);
4final parameter Real a(start=startA, fixed=false);
5
6Real x;
7initial equation
8startA = 1;
9x^a = 2;
10equation
11x = 2;
12annotation(
13 __OpenModelica_simulationFlags(lv = "LOG_NLS,LOG_NLS_V,LOG_STATS", s = "dassl"));
14end ModelStartNotDefined;