File: fsh.auto

package info (click to toggle)
auto-07p 0.9.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,200 kB
  • sloc: fortran: 22,644; f90: 19,340; python: 19,045; ansic: 11,116; sh: 1,079; makefile: 618; perl: 339
file content (19 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#==============
# AUTO Demo fsh
#==============

pgm = "fsh"
print "\nDemo %s is started"%pgm
print "\n%s : first run : continuation in the period T"%pgm
r1 = run(e=pgm,c=pgm)
save(r1, '0')

print "\n%s : second run : continuation in c and T"%pgm
r2 = run(r1("UZ4"),ICP =  [2, 11, 12, 13, 14],NINT=1,
DS='-',UZR =  {2: [1.0,2.0,3.0,5.0,10.0]}, UZSTOP={2: 0.0}, A0=-0.1)
save(r2, pgm)

print "\n***Clean the directory***"
cl()