Ticket #5818: Test.mo

File Test.mo, 131 bytes (added by casella, 4 years ago)
Line 
1model Test
2  Real x, y, z;
3  parameter Real x0, y0, z0;
4equation
5  der(x) = -x;
6  y = 10+sin(x);
7  z = 2*sin(x);
8end Test;