Ticket #4436: TestDebug.mo

File TestDebug.mo, 196 bytes (added by Francesco Casella, 9 years ago)

Test case

Line 
1model TestDebug
2 Real x(start = 0, fixed= true),y,z,w,s;
3equation
4 der(x) = 10 - x;
5 y + 1e-3*sin(w) = x;
6 z + 1e-3*sin(w) = y;
7 w + 1e-3*sin(w) = z;
8 s = log(5-x);
9end TestDebug;