| 1 | model TestLambda0DAEMode
|
|---|
| 2 | Real x, y, z, w;
|
|---|
| 3 | equation
|
|---|
| 4 | der(x) = z;
|
|---|
| 5 | der(y) = w;
|
|---|
| 6 | z = homotopy((x - y)^2, x - y);
|
|---|
| 7 | w = homotopy((y - 1)^2, y - 1);
|
|---|
| 8 | initial equation
|
|---|
| 9 | der(x) = 0;
|
|---|
| 10 | der(y) = 0;
|
|---|
| 11 | //annotation(__OpenModelica_commandLineOptions="--daeMode");
|
|---|
| 12 | end TestLambda0DAEMode;
|
|---|