ttest_eigencalving.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
       ---
       ttest_eigencalving.sh (908B)
       ---
            1 #!/bin/bash
            2 
            3 N=4
            4 M=201
            5 xx=$M
            6 yy=$M
            7 length=400
            8 
            9 infile="circular_noshelf.nc"
           10 
           11 ./circular_dirichlet.py -Mx $M -My $M -o $infile
           12 
           13 grid="-Mx $xx -My $yy -Mz 31 -Mbz 1 -Lz 1500 -Lbz 1000"
           14 
           15 stressbalance="-ssa_method fd -stress_balance ssa -ssa_dirichlet_bc"
           16 
           17 output_basename="test_eigencalving"
           18 
           19 calving="-calving eigen_calving -eigen_calving_K 1e15"
           20 
           21 diagnostics="thk,mask,velbar_mag,ice_area_specific_volume,velbar,tendency_of_ice_mass_due_to_discharge"
           22 
           23 viewers="-view $diagnostics"
           24 
           25 extra="-extra_times 10 -extra_vars $diagnostics -extra_file ${output_basename}_ex.nc"
           26 
           27 ts="-ts_times 10 -ts_file ${output_basename}_ts.nc"
           28 
           29 misc_options="-cfbc -part_grid -o_order zyx -energy none"
           30 
           31 pismopts="-i $infile -bootstrap $grid $stressbalance $calving $viewers $extra $ts $misc_options"
           32 
           33 doit="mpiexec -n $N pismr $pismopts"
           34 
           35 set -x
           36 # run with CFBC and part_grid
           37 $doit $pismopts -y $length -o ${output_basename}_o.nc