Ticket #6408: ModelWithoutHomotopy.mo

File ModelWithoutHomotopy.mo, 311 bytes (added by Tin Rabuzin <trabuzin@…>, 4 years ago)

A small model without homotopy

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