trun_noshelf.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
---
trun_noshelf.sh (560B)
---
1 #!/bin/bash
2
3 N=4
4 xx=101
5 yy=$xx
6 length=400
7
8 infile="circular_noshelf.nc"
9
10 ./circular_dirichlet.py -Mx $xx -My $yy -o $infile
11
12 grid="-Mx $xx -My $yy -Mz 31 -Mbz 5 -Lz 1500 -Lbz 1000"
13
14 pismopts="-i $infile -bootstrap $grid -stress_balance ssa+sia -ssa_dirichlet_bc -o_order zyx"
15
16 doit="mpiexec -n $N pismr $pismopts"
17
18 extra="-extra_times 10 -extra_vars thk,mask,velbar_mag,ice_area_specific_volume,velbar,usurf,mass_fluxes -extra_file ns_ex.nc"
19 ts="-ts_file ns_ts.nc -ts_times 1"
20
21 $doit $pismopts -y $length -ssa_method fd -cfbc -part_grid -o ns_o.nc $extra $ts