tgenscatfig.sh - pism - [fork] customized build of PISM, the parallel ice sheet model (tillflux branch)
 (HTM) git clone git://src.adamsgaard.dk/pism
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) LICENSE
       ---
       tgenscatfig.sh (1021B)
       ---
            1 #!/bin/bash
            2 
            3 # these figures show velocity bins, with coloring by ice thickness,
            4 # where P(W) looks quite different in each bin
            5 # each bin is managably small for even 2km Greenland run, I think
            6 # run as:
            7 #   $ ./genscatfig.sh ex_distributed-decoupled.nc g2km.png
            8 # to generate figure files like
            9 #   bin*-g2km.png
           10 
           11 FILENAME=$1
           12 OUTROOT=$2
           13 
           14 ./showPvsW.py -wmin 0.0 -wmax 0.15 -c thk -cmin 0 -cmax 2000 -s hydrovelbase_mag -smin 300  -smax 600 -o bin300-${OUTROOT} --colorbar $FILENAME
           15 ./showPvsW.py -wmin 0.0 -wmax 0.15 -c thk -cmin 0 -cmax 2000 -s hydrovelbase_mag -smin 100  -smax 200  -o bin100-${OUTROOT}  $FILENAME
           16 ./showPvsW.py -wmin 0.0 -wmax 0.15 -c thk -cmin 0 -cmax 2000 -s hydrovelbase_mag -smin 30   -smax 60  -o bin30-${OUTROOT}   $FILENAME
           17 ./showPvsW.py -wmin 0.0 -wmax 0.15 -c thk -cmin 0 -cmax 2000 -s hydrovelbase_mag -smin 10   -smax 20   -o bin10-${OUTROOT}   $FILENAME
           18 ./showPvsW.py -wmin 0.0 -wmax 0.15 -c thk -cmin 0 -cmax 2000 -s hydrovelbase_mag -smin 3    -smax 6   -o bin1-${OUTROOT}    $FILENAME
           19