Blame view

LabTools/IRAP/JPB/srun/make_phangs_grids.pro 916 Bytes
25b04fb8   Jean-Philippe Bernard   added
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
28
PRO make_phangs_grids

;make_phangs_grids.pro
;====== srundir
;=== To be run on titan using something like this:
;srun -pn51 -J makeG -o {$phangs_srundir}/make_phangs_grids.log /home/soft/exelis/idl83/bin/idl {$phangs_srundir}/make_phangs_grids.pro &
;=== To be run on alma1 using something like this:
;nohup /usr/local/harris/idl87/bin/idl < {$phangs_srundir}/make_phangs_grid.pro >& {$phangs_srundir}/make_phangs_grids.log &
;=== check progress using:
;tail -20 {$phangs_srundir}/make_phangs_grids.log
;grep 'Will produce' {$phangs_srundir}/make_phangs_grids.log
;more {$phangs_srundir}/make_phangs_grids.log | grep "iteration "
;more {$phangs_srundir}/make_phangs_grids.log | grep "Will produce"

t0=systime(/sec)

;make grid 
make_sed_phangs_tables,/test,grid_type=2,/show_seds,isrf_class=15

t1=systime(/sec)

message,'It took '+strtrim((t1-t0)/60./60.,2)+' hrs',/info

message,'Job finished',/info

exit

END