tMakefile - 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
---
tMakefile (534B)
---
1 TS=-ts_times 1 -ts_file
2 GRID= -Mx 201 -My 3 -Mz 3 -Lz 1000
3 OTHER=-stress_balance prescribed_sliding -prescribed_sliding_file input.nc -o_order zyx -energy none -shelf_base_melt_rate 0.0 -max_dt 0.123456789 -calving float_kill
4 EXTRA=-extra_times 1 -extra_vars thk,mask,usurf,topg,Href -extra_file
5 RUN_LENGTH=800
6
7 OPTIONS=${GRID} -y ${RUN_LENGTH} ${OTHER}
8 input.nc: generate_input.py
9 python ./generate_input.py -M 201 -o $@
10
11 run: input.nc
12 pismr -i input.nc -bootstrap ${OPTIONS} ${TS} ts_$@.nc ${EXTRA} ex_$@.nc
13
14 clean:
15 @rm -f *.nc*