1 |
#!/usr/bin/env python |
2 |
import unittest |
3 |
|
4 |
import platform, sys |
5 |
if platform.system() != "Windows": |
6 |
import dl |
7 |
sys.setdlopenflags(dl.RTLD_GLOBAL|dl.RTLD_NOW) |
8 |
|
9 |
import ascpy |
10 |
import math |
11 |
import os, subprocess |
12 |
import atexit |
13 |
import cunit |
14 |
|
15 |
class Ascend(unittest.TestCase): |
16 |
|
17 |
def setUp(self): |
18 |
import ascpy |
19 |
self.L = ascpy.Library() |
20 |
|
21 |
def tearDown(self): |
22 |
self.L.clear() |
23 |
del self.L |
24 |
|
25 |
class AscendSelfTester(Ascend): |
26 |
|
27 |
def _run(self,modelname,solvername="QRSlv",filename=None): |
28 |
if filename==None: |
29 |
filename = 'johnpye/%s.a4c' % modelname |
30 |
self.L.load(filename) |
31 |
T = self.L.findType(modelname) |
32 |
M = T.getSimulation('sim') |
33 |
M.build() |
34 |
M.solve(ascpy.Solver(solvername),ascpy.SolverReporter()) |
35 |
M.run(T.getMethod('self_test')) |
36 |
return M |
37 |
|
38 |
class TestCompiler(Ascend): |
39 |
|
40 |
def testloading(self): |
41 |
pass |
42 |
|
43 |
def testsystema4l(self): |
44 |
self.L.load('system.a4l') |
45 |
|
46 |
def testatomsa4l(self): |
47 |
self.L.load('atoms.a4l') |
48 |
|
49 |
class TestSolver(AscendSelfTester): |
50 |
|
51 |
def testlog10(self): |
52 |
self._run('testlog10') |
53 |
|
54 |
def testconopt(self): |
55 |
self._run('testconopt',"CONOPT") |
56 |
|
57 |
def testcmslv2(self): |
58 |
self._run('testcmslv2',"CMSlv") |
59 |
|
60 |
def testsunpos1(self): |
61 |
self._run('example_1_6_1',"QRSlv","johnpye/sunpos.a4c") |
62 |
|
63 |
def testsunpos2(self): |
64 |
self._run('example_1_6_2',"QRSlv","johnpye/sunpos.a4c") |
65 |
|
66 |
def testsunpos3(self): |
67 |
self._run('example_1_7_1',"QRSlv","johnpye/sunpos.a4c") |
68 |
|
69 |
def testsunpos4(self): |
70 |
self._run('example_1_7_2',"QRSlv","johnpye/sunpos.a4c") |
71 |
|
72 |
def testsunpos5(self): |
73 |
self._run('example_1_7_3',"QRSlv","johnpye/sunpos.a4c") |
74 |
|
75 |
def testsunpos6(self): |
76 |
self._run('example_1_8_1',"QRSlv","johnpye/sunpos.a4c") |
77 |
|
78 |
class TestIntegrator(Ascend): |
79 |
|
80 |
def testListIntegrators(self): |
81 |
I = ascpy.Integrator.getEngines() |
82 |
s1 = sorted([str(i) for i in I.values()]) |
83 |
s2 = sorted(['IDA','LSODE','AWW']) |
84 |
assert s1==s2 |
85 |
|
86 |
# this routine is reused by both testIDA and testLSODE |
87 |
def _testIntegrator(self,integratorname): |
88 |
self.L.load('johnpye/shm.a4c') |
89 |
M = self.L.findType('shm').getSimulation('sim') |
90 |
M.setSolver(ascpy.Solver('QRSlv')) |
91 |
print M.getChildren() |
92 |
assert float(M.x) == 10.0 |
93 |
assert float(M.v) == 0.0 |
94 |
t_end = math.pi |
95 |
|
96 |
I = ascpy.Integrator(M) |
97 |
I.setReporter(ascpy.IntegratorReporterNull(I)) |
98 |
I.setEngine(integratorname); |
99 |
I.setLinearTimesteps(ascpy.Units("s"), 0.0, t_end, 100); |
100 |
I.setMinSubStep(0.0005); # these limits are required by IDA at present (numeric diff) |
101 |
I.setMaxSubStep(0.02); |
102 |
I.setInitialSubStep(0.001); |
103 |
I.setMaxSubSteps(200); |
104 |
if(integratorname=='IDA'): |
105 |
I.setParameter('autodiff',False) |
106 |
I.analyse(); |
107 |
I.solve(); |
108 |
print "At end of simulation," |
109 |
print "x = %f" % M.x |
110 |
print "v = %f" % M.v |
111 |
assert abs(float(M.x) + 10) < 1e-2 |
112 |
assert abs(float(M.v)) < 1e-2 |
113 |
assert I.getNumObservedVars() == 3 |
114 |
|
115 |
def testInvalidIntegrator(self): |
116 |
self.L.load('johnpye/shm.a4c') |
117 |
M = self.L.findType('shm').getSimulation('sim') |
118 |
M.setSolver(ascpy.Solver('QRSlv')) |
119 |
I = ascpy.Integrator(M) |
120 |
try: |
121 |
I.setEngine('___NONEXISTENT____') |
122 |
except RuntimeError: |
123 |
return |
124 |
self.fail("setEngine did not raise error!") |
125 |
|
126 |
def testLSODE(self): |
127 |
self._testIntegrator('LSODE') |
128 |
|
129 |
def testIDA(self): |
130 |
self._testIntegrator('IDA') |
131 |
|
132 |
def testparameters(self): |
133 |
self.L.load('johnpye/shm.a4c') |
134 |
M = self.L.findType('shm').getSimulation('sim') |
135 |
M.build() |
136 |
I = ascpy.Integrator(M) |
137 |
I.setEngine('IDA') |
138 |
P = I.getParameters() |
139 |
for p in P: |
140 |
print p.getName(),"=",p.getValue() |
141 |
assert len(P)==11 |
142 |
assert P[0].isStr() |
143 |
assert P[0].getName()=="linsolver" |
144 |
assert P[0].getValue()=='SPGMR' |
145 |
assert P[2].getName()=="autodiff" |
146 |
assert P[2].getValue()==True |
147 |
assert P[7].getName()=="atolvect" |
148 |
assert P[7].getBoolValue() == True |
149 |
P[2].setBoolValue(False) |
150 |
assert P[2].getBoolValue()==False |
151 |
I.setParameters(P) |
152 |
assert I.getParameterValue('autodiff')==False |
153 |
I.setParameter('autodiff',True) |
154 |
try: |
155 |
v = I.getParameterValue('nonexist') |
156 |
except KeyError: |
157 |
pass |
158 |
else: |
159 |
self.fail('Failed to trip invalid Integrator parameter') |
160 |
|
161 |
class TestLSODE(Ascend): |
162 |
|
163 |
def testzill(self): |
164 |
self.L.load('johnpye/zill.a4c') |
165 |
T = self.L.findType('zill') |
166 |
M = T.getSimulation('sim') |
167 |
M.setSolver(ascpy.Solver('QRSlv')) |
168 |
I = ascpy.Integrator(M) |
169 |
I.setEngine('LSODE') |
170 |
I.setMinSubStep(1e-7) |
171 |
I.setMaxSubStep(0.001) |
172 |
I.setMaxSubSteps(10000) |
173 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
174 |
I.setLinearTimesteps(ascpy.Units(), 1.0, 1.5, 5) |
175 |
I.analyse() |
176 |
I.solve() |
177 |
M.run(T.getMethod('self_test')) |
178 |
|
179 |
def testnewton(self): |
180 |
sys.stderr.write("STARTING TESTNEWTON\n") |
181 |
self.L.load('johnpye/newton.a4c') |
182 |
T = self.L.findType('newton') |
183 |
M = T.getSimulation('sim') |
184 |
M.solve(ascpy.Solver("QRSlv"),ascpy.SolverReporter()) |
185 |
I = ascpy.Integrator(M) |
186 |
I.setEngine('LSODE') |
187 |
I.setParameter('rtolvect',False) |
188 |
I.setParameter('rtol',1e-7) |
189 |
I.setParameter('atolvect',False) |
190 |
I.setParameter('atol',1e-7) |
191 |
I.setMinSubStep(1e-7) |
192 |
I.setMaxSubStep(0.001) |
193 |
I.setMaxSubSteps(10000) |
194 |
|
195 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
196 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 2*float(M.v)/float(M.g), 2) |
197 |
I.analyse() |
198 |
I.solve() |
199 |
print "At end of simulation," |
200 |
print "x = %f" % M.x |
201 |
print "v = %f" % M.v |
202 |
M.run(T.getMethod('self_test')) |
203 |
|
204 |
def testlotka(self): |
205 |
self.L.load('johnpye/lotka.a4c') |
206 |
M = self.L.findType('lotka').getSimulation('sim') |
207 |
M.setSolver(ascpy.Solver("QRSlv")) |
208 |
I = ascpy.Integrator(M) |
209 |
I.setEngine('LSODE') |
210 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
211 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 200, 5) |
212 |
I.analyse() |
213 |
print "Number of vars = %d" % I.getNumVars() |
214 |
assert I.getNumVars()==2 |
215 |
I.solve() |
216 |
assert I.getNumObservedVars() == 3; |
217 |
assert abs(M.R - 832) < 1.0 |
218 |
assert abs(M.F - 21.36) < 0.1 |
219 |
|
220 |
#------------------------------------------------------------------------------- |
221 |
# Testing of a external blackbox functions |
222 |
|
223 |
class TestBlackBox(AscendSelfTester): |
224 |
def testparsefail0(self): |
225 |
try: |
226 |
self.L.load('test/blackbox/parsefail0.a4c') |
227 |
self.fail("parsefail0 should not have loaded without errors") |
228 |
except: |
229 |
pass |
230 |
|
231 |
def testparsefail1(self): |
232 |
try: |
233 |
self.L.load('test/blackbox/parsefail1.a4c') |
234 |
self.fail("parsefail1 should not have loaded without errors") |
235 |
except: |
236 |
pass |
237 |
|
238 |
def testparsefail2(self): |
239 |
try: |
240 |
self.L.load('test/blackbox/parsefail2.a4c') |
241 |
self.fail("parsefail2 should not have loaded without errors") |
242 |
except: |
243 |
pass |
244 |
|
245 |
def testparsefail3(self): |
246 |
try: |
247 |
self.L.load('test/blackbox/parsefail3.a4c') |
248 |
self.fail("parsefail3 should not have loaded without errors") |
249 |
except: |
250 |
pass |
251 |
|
252 |
def testparsefail4(self): |
253 |
try: |
254 |
self.L.load('test/blackbox/parsefail4.a4c') |
255 |
self.fail("parsefail4 should not have loaded") |
256 |
except: |
257 |
pass |
258 |
|
259 |
def testfail1(self): |
260 |
"""Mismatched arg counts check-- tests bbox, not ascend.""" |
261 |
self.L.load('test/blackbox/fail1.a4c') |
262 |
try: |
263 |
M = self.L.findType('fail1').getSimulation('sim') |
264 |
self.fail("expected exception was not raised") |
265 |
except RuntimeError,e: |
266 |
print "Caught exception '%s', assumed ok" % e |
267 |
|
268 |
def testfail2(self): |
269 |
"""Incorrect data arg check -- tests bbox, not ascend""" |
270 |
self.L.load('test/blackbox/fail2.a4c') |
271 |
try: |
272 |
M = self.L.findType('fail2').getSimulation('sim') |
273 |
self.fail("expected exception was not raised") |
274 |
except RuntimeError,e: |
275 |
print "Caught exception '%s', assumed ok (should mention errors during instantiation)" % e |
276 |
|
277 |
def testpass1(self): |
278 |
"""simple single bbox forward solve""" |
279 |
M = self._run('pass1',filename='test/blackbox/pass.a4c') |
280 |
|
281 |
def testpass2(self): |
282 |
"""simple single bbox reverse solve""" |
283 |
M = self._run('pass2',filename='test/blackbox/pass.a4c') |
284 |
|
285 |
def testpass3(self): |
286 |
"""simple double bbox solve""" |
287 |
M = self._run('pass3',filename='test/blackbox/pass3.a4c') |
288 |
|
289 |
def testpass4(self): |
290 |
"""simple double bbox reverse solve""" |
291 |
M = self._run('pass4',filename='test/blackbox/pass3.a4c') |
292 |
|
293 |
def testpass5(self): |
294 |
M = self._run('pass5',filename='test/blackbox/pass5.a4c') |
295 |
|
296 |
def testpass6(self): |
297 |
M = self._run('pass6',filename='test/blackbox/pass5.a4c') |
298 |
|
299 |
def testpass7(self): |
300 |
M = self._run('pass7',filename='test/blackbox/passmerge.a4c') |
301 |
|
302 |
def testpass8(self): |
303 |
M = self._run('pass8',filename='test/blackbox/passmerge.a4c') |
304 |
|
305 |
def testpass9(self): |
306 |
M = self._run('pass9',filename='test/blackbox/passmerge.a4c') |
307 |
|
308 |
def testpass10(self): |
309 |
M = self._run('pass10',filename='test/blackbox/passmerge.a4c') |
310 |
|
311 |
def testpass11(self): |
312 |
M = self._run('pass11',filename='test/blackbox/passmerge.a4c') |
313 |
|
314 |
def testpass12(self): |
315 |
M = self._run('pass12',filename='test/blackbox/passmerge.a4c') |
316 |
|
317 |
# this test doesn't work: 'system is inconsistent' -- and structurally singular |
318 |
# def testpass13(self): |
319 |
# """cross-merged input/output solve""" |
320 |
# M = self._run('pass13',filename='test/blackbox/passmerge.a4c') |
321 |
|
322 |
def testpass14(self): |
323 |
"""cross-merged input/output reverse solve""" |
324 |
M = self._run('pass14',filename='test/blackbox/passmerge.a4c') |
325 |
|
326 |
def testpass20(self): |
327 |
M = self._run('pass20',filename='test/blackbox/passarray.a4c') |
328 |
|
329 |
def testparsefail21(self): |
330 |
"""dense array of black boxes wrong syntax""" |
331 |
try: |
332 |
self.L.load('test/blackbox/parsefail21.a4c') |
333 |
self.fail("parsefail21 should not have loaded without errors") |
334 |
except: |
335 |
pass |
336 |
|
337 |
def testpass22(self): |
338 |
M = self._run('pass22',filename='test/blackbox/passarray.a4c') |
339 |
|
340 |
def testpass23(self): |
341 |
M = self._run('pass23',filename='test/blackbox/passarray.a4c') |
342 |
|
343 |
def testpass61(self): |
344 |
M = self._run('pass61',filename='test/blackbox/reinstantiate.a4c') |
345 |
|
346 |
def testpass62(self): |
347 |
M = self._run('pass62',filename='test/blackbox/reinstantiate.a4c') |
348 |
|
349 |
def testpass64(self): |
350 |
M = self._run('pass64',filename='test/blackbox/reinstantiate.a4c') |
351 |
|
352 |
def testpass65(self): |
353 |
M = self._run('pass65',filename='test/blackbox/reinstantiate.a4c') |
354 |
|
355 |
def testpass66(self): |
356 |
M = self._run('pass66',filename='test/blackbox/reinstantiate.a4c') |
357 |
|
358 |
def testpass67(self): |
359 |
M = self._run('pass67',filename='test/blackbox/reinstantiate.a4c') |
360 |
|
361 |
class TestExtFn(AscendSelfTester): |
362 |
def testextfntest(self): |
363 |
M = self._run('extfntest',filename='johnpye/extfn/extfntest.a4c') |
364 |
self.assertAlmostEqual(M.y, 2); |
365 |
self.assertAlmostEqual(M.x, 1); |
366 |
self.assertAlmostEqual(M.y, M.x + 1); |
367 |
|
368 |
def testextrelfor(self): |
369 |
M = self._run('extrelfor',filename='johnpye/extfn/extrelfor.a4c') |
370 |
|
371 |
def testextrelforbadnaming(self): |
372 |
self.L.load('johnpye/extfn/extrelforbadnaming.a4c') |
373 |
T = self.L.findType('extrelfor') |
374 |
M = T.getSimulation('sim') |
375 |
M.solve(ascpy.Solver('QRSlv'),ascpy.SolverReporter()) |
376 |
print "x[1] = %f" % M.x[1] |
377 |
print "x[2] = %f" % M.x[2] |
378 |
print "x[3] = %f" % M.x[3] |
379 |
print "x[4] = %f" % M.x[4] |
380 |
print "x[5] = %f" % M.x[5] |
381 |
M.run(T.getMethod('self_test')) |
382 |
|
383 |
def testextrelrepeat(self): |
384 |
M = self._run('extrelrepeat',filename='johnpye/extfn/extrelrepeat.a4c') |
385 |
|
386 |
#------------------------------------------------------------------------------- |
387 |
# Testing of a ExtPy - external python methods |
388 |
|
389 |
class TestExtPy(AscendSelfTester): |
390 |
def testextpytest(self): |
391 |
print "-------------------=--=-=-=-" |
392 |
M = self._run('extpytest',filename='johnpye/extpy/extpytest.a4c') |
393 |
|
394 |
#------------------------------------------------------------------------------- |
395 |
# Testing of saturated steam properties library (iapwssatprops.a4c) |
396 |
|
397 |
class TestSteam(AscendSelfTester): |
398 |
def testiapwssatprops1(self): |
399 |
M = self._run('testiapwssatprops1',filename='steam/iapwssatprops.a4c') |
400 |
def testiapwssatprops2(self): |
401 |
M = self._run('testiapwssatprops2',filename='steam/iapwssatprops.a4c') |
402 |
def testiapwssatprops3(self): |
403 |
M = self._run('testiapwssatprops3',filename='steam/iapwssatprops.a4c') |
404 |
def testsatsteamstream(self): |
405 |
M = self._run('satsteamstream',filename='steam/satsteamstream.a4c') |
406 |
|
407 |
def testsatsteamstream(self): |
408 |
M = self._run('satsteamstream',filename='steam/satsteamstream.a4c') |
409 |
|
410 |
def testiapwssat1(self): |
411 |
M = self._run('testiapwssat1',filename='steam/iapwssat.a4c') |
412 |
|
413 |
#------------------------------------------------------------------------------- |
414 |
# Testing of freesteam external steam properties functions |
415 |
|
416 |
with_freesteam = True |
417 |
try: |
418 |
# we assume that if the freesteam python module is installed, the ASCEND |
419 |
# external library will also be. |
420 |
import freesteam |
421 |
have_freesteam = True |
422 |
except ImportError,e: |
423 |
have_freesteam = False |
424 |
|
425 |
if with_freesteam and have_freesteam: |
426 |
class TestFreesteam(AscendSelfTester): |
427 |
def testfreesteamtest(self): |
428 |
"""run the self-test cases bundled with freesteam""" |
429 |
self._run('testfreesteam',filename='testfreesteam.a4c') |
430 |
|
431 |
def testload(self): |
432 |
"""check that we can load 'thermalequilibrium2' (IMPORT "freesteam", etc)""" |
433 |
self.L.load('johnpye/thermalequilibrium2.a4c') |
434 |
|
435 |
def testinstantiate(self): |
436 |
"""load an instantiate 'thermalequilibrium2'""" |
437 |
self.testload() |
438 |
M = self.L.findType('thermalequilibrium2').getSimulation('sim') |
439 |
return M |
440 |
|
441 |
def testintegrate(self): |
442 |
"""integrate transfer of heat from one mass of water/steam to another |
443 |
according to Newton's law of cooling""" |
444 |
M = self.testinstantiate() |
445 |
M.setSolver(ascpy.Solver("QRSlv")) |
446 |
I = ascpy.Integrator(M) |
447 |
I.setEngine('LSODE') |
448 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
449 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 3000, 30) |
450 |
I.setMinSubStep(0.001) |
451 |
I.setInitialSubStep(0.01) |
452 |
I.analyse() |
453 |
print "Number of vars = %d" % I.getNumVars() |
454 |
assert I.getNumVars()==2 |
455 |
I.solve() |
456 |
assert I.getNumObservedVars() == 3; |
457 |
print "S[1].T = %f K" % M.S[1].T |
458 |
print "S[2].T = %f K" % M.S[2].T |
459 |
print "Q = %f W" % M.Q |
460 |
self.assertAlmostEqual(float(M.S[1].T),506.77225109); |
461 |
self.assertAlmostEqual(float(M.S[2].T),511.605173967); |
462 |
self.assertAlmostEqual(float(M.Q),-48.32922877329); |
463 |
self.assertAlmostEqual(float(M.t),3000); |
464 |
print "Note that the above values have not been verified analytically" |
465 |
|
466 |
#------------------------------------------------------------------------------- |
467 |
# Testing of IDA models using DENSE linear solver |
468 |
|
469 |
class TestIDADENSE(Ascend): |
470 |
"""IDA DAE integrator, DENSE linear solver""" |
471 |
|
472 |
def testnewton(self): |
473 |
sys.stderr.write("STARTING TESTNEWTON\n") |
474 |
self.L.load('johnpye/newton.a4c') |
475 |
T = self.L.findType('newton') |
476 |
M = T.getSimulation('sim') |
477 |
M.solve(ascpy.Solver("QRSlv"),ascpy.SolverReporter()) |
478 |
I = ascpy.Integrator(M) |
479 |
I.setEngine('IDA') |
480 |
I.setParameter('linsolver','DENSE') |
481 |
I.setParameter('safeeval',True) |
482 |
I.setParameter('rtol',1e-8) |
483 |
I.setMaxSubStep(0.001) |
484 |
I.setMaxSubSteps(10000) |
485 |
|
486 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
487 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 2*float(M.v)/float(M.g), 2) |
488 |
I.analyse() |
489 |
I.solve() |
490 |
print "At end of simulation," |
491 |
print "x = %f" % M.x |
492 |
print "v = %f" % M.v |
493 |
M.run(T.getMethod('self_test')) |
494 |
|
495 |
def testlotka(self): |
496 |
self.L.load('johnpye/lotka.a4c') |
497 |
M = self.L.findType('lotka').getSimulation('sim') |
498 |
M.setSolver(ascpy.Solver("QRSlv")) |
499 |
I = ascpy.Integrator(M) |
500 |
I.setEngine('IDA') |
501 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
502 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 200, 5); |
503 |
I.setParameter('linsolver','DENSE') |
504 |
I.setParameter('rtol',1e-8); |
505 |
I.analyse() |
506 |
assert I.getNumVars()==2 |
507 |
assert abs(M.R - 1000) < 1e-300 |
508 |
I.solve() |
509 |
assert I.getNumObservedVars() == 3 |
510 |
assert abs(M.R - 832) < 1.0 |
511 |
assert abs(M.F - 21.36) < 0.1 |
512 |
|
513 |
def testdenx(self): |
514 |
print "-----------------------------=====" |
515 |
self.L.load('johnpye/idadenx.a4c') |
516 |
M = self.L.findType('idadenx').getSimulation('sim') |
517 |
M.setSolver(ascpy.Solver("QRSlv")) |
518 |
I = ascpy.Integrator(M) |
519 |
I.setEngine('IDA') |
520 |
I.setParameter('calcic','YA_YPD') |
521 |
I.setParameter('linsolver','DENSE') |
522 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
523 |
I.setLogTimesteps(ascpy.Units("s"), 0.4, 4e10, 11) |
524 |
I.setMaxSubStep(0); |
525 |
I.setInitialSubStep(0) |
526 |
I.setMaxSubSteps(0); |
527 |
I.setParameter('autodiff',True) |
528 |
I.analyse() |
529 |
I.solve() |
530 |
assert abs(float(M.y1) - 5.1091e-08) < 2e-9 |
531 |
assert abs(float(M.y2) - 2.0437e-13) < 2e-14 |
532 |
assert abs(float(M.y3) - 1.0) < 1e-5 |
533 |
|
534 |
def testkryx(self): |
535 |
self.L.load('johnpye/idakryx.a4c') |
536 |
M = self.L.findType('idakryx').getSimulation('sim') |
537 |
M.setSolver(ascpy.Solver('QRSlv')) |
538 |
M.build() |
539 |
I = ascpy.Integrator(M) |
540 |
I.setEngine('IDA') |
541 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
542 |
I.setParameter('linsolver','DENSE') |
543 |
I.setParameter('maxl',8) |
544 |
I.setParameter('gsmodified',False) |
545 |
I.setParameter('autodiff',True) |
546 |
I.setParameter('rtol',0) |
547 |
I.setParameter('atol',1e-3); |
548 |
I.setParameter('atolvect',False) |
549 |
I.setParameter('calcic','YA_YDP') |
550 |
I.analyse() |
551 |
I.setLogTimesteps(ascpy.Units("s"), 0.01, 10.24, 11) |
552 |
I.solve() |
553 |
assert abs(M.u[2][2].getValue()) < 1e-5 |
554 |
|
555 |
#------------------------------------------------------------------------------- |
556 |
# Testing of IDA models using SPGMR linear solver (Krylov) |
557 |
|
558 |
# these tests are disabled until SPGMR preconditioning has been implemented |
559 |
class TestIDASPGMR:#(Ascend): |
560 |
def testlotka(self): |
561 |
self.L.load('johnpye/lotka.a4c') |
562 |
M = self.L.findType('lotka').getSimulation('sim') |
563 |
M.setSolver(ascpy.Solver("QRSlv")) |
564 |
I = ascpy.Integrator(M) |
565 |
I.setEngine('IDA') |
566 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
567 |
I.setLinearTimesteps(ascpy.Units("s"), 0, 200, 5) |
568 |
I.setParameter('rtol',1e-8) |
569 |
I.analyse() |
570 |
assert I.getNumVars()==2 |
571 |
assert abs(M.R - 1000) < 1e-300 |
572 |
I.solve() |
573 |
assert I.getNumObservedVars() == 3 |
574 |
assert abs(M.R - 832) < 1.0 |
575 |
assert abs(M.F - 21.36) < 0.1 |
576 |
|
577 |
|
578 |
def testkryx(self): |
579 |
self.L.load('johnpye/idakryx.a4c') |
580 |
M = self.L.findType('idakryx').getSimulation('sim') |
581 |
M.build() |
582 |
I = ascpy.Integrator(M) |
583 |
I.setEngine('IDA') |
584 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
585 |
I.setParameter('linsolver','SPGMR') |
586 |
I.setParameter('prec','JACOBI') |
587 |
I.setParameter('maxl',8) |
588 |
I.setParameter('gsmodified',False) |
589 |
I.setParameter('autodiff',True) |
590 |
I.setParameter('gsmodified',True) |
591 |
I.setParameter('rtol',0) |
592 |
I.setParameter('atol',1e-3); |
593 |
I.setParameter('atolvect',False) |
594 |
I.setParameter('calcic','Y') |
595 |
I.analyse() |
596 |
I.setLogTimesteps(ascpy.Units("s"), 0.01, 10.24, 10); |
597 |
print M.udot[1][3] |
598 |
I.solve() |
599 |
assert 0 |
600 |
|
601 |
def testzill(self): |
602 |
self.L.load('johnpye/zill.a4c') |
603 |
T = self.L.findType('zill') |
604 |
M = T.getSimulation('sim') |
605 |
M.setSolver(ascpy.Solver('QRSlv')) |
606 |
I = ascpy.Integrator(M) |
607 |
I.setEngine('IDA') |
608 |
I.setParameter('safeeval',False) |
609 |
I.setMinSubStep(1e-7) |
610 |
I.setMaxSubStep(0.001) |
611 |
I.setMaxSubSteps(10000) |
612 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
613 |
I.setLinearTimesteps(ascpy.Units(), 1.0, 1.5, 5) |
614 |
I.analyse() |
615 |
I.solve() |
616 |
M.run(T.getMethod('self_test')) |
617 |
|
618 |
def testdenxSPGMR(self): |
619 |
self.L.load('johnpye/idadenx.a4c') |
620 |
M = self.L.findType('idadenx').getSimulation('sim') |
621 |
M.setSolver(ascpy.Solver('QRSlv')) |
622 |
I = ascpy.Integrator(M) |
623 |
I.setEngine('IDA') |
624 |
I.setReporter(ascpy.IntegratorReporterConsole(I)) |
625 |
I.setLogTimesteps(ascpy.Units("s"), 0.4, 4e10, 11) |
626 |
I.setMaxSubStep(0); |
627 |
I.setInitialSubStep(0); |
628 |
I.setMaxSubSteps(0); |
629 |
I.setParameter('autodiff',True) |
630 |
I.setParameter('linsolver','SPGMR') |
631 |
I.setParameter('gsmodified',False) |
632 |
I.setParameter('maxncf',10) |
633 |
I.analyse() |
634 |
I.solve() |
635 |
assert abs(float(M.y1) - 5.1091e-08) < 1e-10 |
636 |
assert abs(float(M.y2) - 2.0437e-13) < 1e-15 |
637 |
assert abs(float(M.y3) - 1.0) < 1e-5 |
638 |
|
639 |
# move code above down here if you want to temporarily avoid testing it |
640 |
class NotToBeTested: |
641 |
def nothing(self): |
642 |
pass |
643 |
|
644 |
if __name__=='__main__': |
645 |
atexit.register(ascpy.shutdown) |
646 |
#suite = unittest.TestSuite() |
647 |
#suite = unittest.defaultTestLoader.loadTestsFromName('__main__') |
648 |
#unittest.TextTestRunner(verbosity=2).run(suite) |
649 |
unittest.main() |