1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#=============
# AUTO Demo ab
#=============
print "\n***Generate starting data***"
start=run(e='ab',c='ab.1')
print "\n***Compute stationary solution families***"
ab = []
for solution in start():
ab = ab + run(solution,c='ab.2')
print "\n***Relabel and save the output files***"
ab=rl(ab)
sv(ab,'ab')
print "\n***Compute periodic solution families***"
for solution in ab("HB"):
ab = ab + run(solution,c='ab.3')
print "\n***Relabel and save the output files***"
ab=rl(ab)
sv(ab,'ab')
print "\n***Clean the directory***"
cl()
|