Ticket #2028: TestInitial.mos

File TestInitial.mos, 259 bytes (added by Christian Schubert, 12 years ago)
Line 
1loadString("
2model TestInitial
3 discrete Real T[3,3];
4initial equation
5 pre(T) = identity(3);
6equation
7 when sample(1e-8, 1) then
8 T = time*identity(3);
9 end when;
10end TestInitial;
11"); getErrorString();
12
13simulate(TestInitial); getErrorString();