make_phangs_grids.pro
918 Bytes
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_grids.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=0,isrf_class=15
t1=systime(/sec)
message,'It took '+strtrim((t1-t0)/60./60.,2)+' hrs',/info
message,'Job finished',/info
exit
END