tset-physics.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
       ---
       tset-physics.sh (1657B)
       ---
            1 # Copyright (C) 2009-2016  PISM authors
            2 
            3 # grids
            4 export THIRTYKMGRID="-Mx 200 -My 200 -Lz 5000 -Lbz 2000 -Mz 41 -Mbz 16"
            5 export TWENTYKMGRID="-Mx 300 -My 300 -Lz 5000 -Lbz 2000 -Mz 81 -Mbz 21"
            6 export FIFTEENKMGRID="-Mx 400 -My 400 -Lz 5000 -Lbz 2000 -Mz 81 -Mbz 21"
            7 export TWELVEKMGRID="-Mx 500 -My 500 -Lz 5000 -Lbz 2000 -Mz 101 -Mbz 31"
            8 export TENKMGRID="-Mx 600 -My 600 -Lz 5000 -Lbz 2000 -Mz 101 -Mbz 31"
            9 export SEVENKMGRID="-Mx 800 -My 800 -Lz 5000 -Lbz 2000 -Mz 151 -Mbz 31"
           10 export FIVEKMGRID="-Mx 1200 -My 1200 -Lz 5000 -Lbz 2000 -Mz 201 -Mbz 51"
           11 
           12 # skips
           13 export SKIPTHIRTYKM=10
           14 export SKIPTWENTYKM=10
           15 export SKIPFIFTEENKM=10
           16 export SKIPTWELVEKM=50
           17 export SKIPTENKM=100
           18 export SKIPSEVENKM=100
           19 export SKIPFIVEKM=200
           20 
           21 #PIK-stuff; notes:
           22 # 1)   '-pik' = '-cfbc -part_grid -kill_icebergs -subgl'
           23 # 2)   -meltfactor_pik 5e-3 is default when using -ocean pik
           24 export PIKPHYS="-ssa_method fd -ssa_e 0.6 -pik -calving eigen_calving,thickness_calving -eigen_calving_K 2.0e18 -thickness_calving_threshold 200.0"
           25 export PIKPHYS_COUPLING="-atmosphere given -atmosphere_given_file $PISM_INDATANAME -surface simple -ocean pik -meltfactor_pik 5e-3"
           26 
           27 # dynamics related options
           28 export SIA_ENHANCEMENT="-sia_e 3.0"
           29 export PARAMS="-pseudo_plastic -pseudo_plastic_q 0.25 -till_effective_fraction_overburden 0.02 -tauc_slippery_grounding_lines"
           30 export TILLPHI="-topg_to_phi 15.0,40.0,-300.0,700.0"
           31 export FULLPHYS="-stress_balance ssa+sia -hydrology null $PARAMS $TILLPHI"
           32 
           33 # perhaps use these if KSP "diverged" errors occur
           34 export STRONGKSP="-ssafd_ksp_type gmres -ssafd_ksp_norm_type unpreconditioned -ssafd_ksp_pc_side right -ssafd_pc_type asm -ssafd_sub_pc_type lu"
           35