tREADME.md - 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
---
tREADME.md (4249B)
---
1 Ross flow model example
2 =================
3
4 This example demonstrates PISM modeling of ice shelves. This model can be thought of as a validation case (see subsection 12.2 of the PISM User's Manual) or as a regional model.
5
6 We use a 5km data set for the entire Antarctic ice sheet. Thus, based on the steps here, one can build models of any Antarctic ice shelf, either diagnostic (ice thickness prescribed, velocity boundary conditions prescribed, but computing flow velocity of the floating ice) or prognostic (ice thickness evolution).
7
8 These publications cover PISM applications to Antarctic ice shelves:
9
10 * T. Albrecht, A. Levermann (2012). *Fracture field for large-scale ice dynamics*. Journal of Glaciology 58 (207), 165--176.
11 * A. Levermann, T. Albrecht, R. Winkelmann, M. A. Martin, M. Haseloff, I. Joughin (2012) [*Kinematic first-order calving law implies potential for abrupt ice-shelf retreat*](http://www.the-cryosphere.net/6/273/2012/tc-6-273-2012.html). The Cryosphere 6, 273--286.
12 * M. A. Martin, R. Winkelmann, M. Haseloff, T. Albrecht, E. Bueler, C. Khroulev, A. Levermann (2011). [*The Potsdam Parallel Ice Sheet Model (PISM-PIK)--Part 2: Dynamic equilibrium simulation of the Antarctic ice sheet*](http://www.the-cryosphere.net/5/727/2011/tc-5-727-2011.html). The Cryosphere 5, 727--740.
13
14 Input datasets
15 ==========
16
17 We use two public datasets which are 16 Mb and 96 Mb, respectively:
18
19 * [*An improved Antarctic dataset for high resolution numerical ice sheet models (ALBMAP v1)*](http://doi.pangaea.de/10.1594/PANGAEA.734145) by A. M. Le Brocq, A. J. Payne, and A. Vieli
20 * [*MEaSUREs InSAR-Based Antarctica Velocity Map*](http://nsidc.org/data/nsidc-0484.html) by Rignot, E., J. Mouginot, and B. Scheuchl. 2011,
21
22 From these data sets, the following fields from ALBMAP are used:
23
24 * ice thickness (equivalently: the upper/lower surface elevation pair),
25 * ice surface temperature,
26 * ice surface mass balance,
27 * bedrock topography, and
28
29 From the MEaSUREs data set these fields are used:
30
31 * u and v components of the surface ice velocity for grounded ice
32
33 These velocity components become the horizontal boundary conditions for the floating ice shelf. The values from the interior of the ice shelf are used only by `plot.py` (below) to evaluate the model velocities.
34
35
36 Running the examples
37 =================
38
39 First run
40
41 $ ./preprocess.py
42
43 This will download the data sets `ALBMAPv1.nc.zip` and `antarctica_ice_velocity.nc.gz` if they are not already downloaded. Then it uses NCO and CDO tools to fix metadata.
44
45 Now, depending on your intent you will choose among the three subdirectories:
46
47 * `diagnostic/`: Use PISM's SSA stress balance to compute flow velocity from geometry, ice hardness (a function of temperature), and observed velocities at the grounding line as boundary conditions. This case is documented in subsection 12.2 of the PISM User's Manual. See `README.m` and `run_diag.sh` in the subdirectory.
48
49 * `prognostic/`: Use PISM's SSA stress balance to do a time-stepping run, which computes evolcing flow velocity and evolving ice thickness. There is an evolving calving front using the eigencalving parameterization (Levermann et al., 2012). See `README.m` and `run_prog.sh` in the subdirectory.
50
51 * `fracture/`: Use PISM's SSA stress balance to do a prognostic run, adding feedback of evolving fracture density on flow, but with a prescribed calving front (`-calving ocean_kill`). See `README.m` and `run_frac.sh` in the subdirectory.
52
53 For each of the three examples an output `.nc` file is produced. View it with `ncview` or other NetCDF viewer. If python tools `numpy`, `matplotlib`, and `netcdf4-python` are present, do this
54
55 $ ../plot.py result.nc
56
57 from the subdirectory and view the output `.png` images.
58
59 Notes
60 ====
61
62 * Be aware of periodic boundary conditions at boundaries of the computational domain, and that several fields have jumps at domain boundaries.
63 * Evolving runs need stress boundary conditions at the ice shelf front (`-cfbc`) plus removal of icebergs if they appear. Thus you can do runs like this with `-pik` or `-cfbc -part_grid -kill_icebergs`, but simpler option combinations `-cfbc` alone or `-cfbc -part_grid` or `-cfbc -part_grid` or `-cfbc -kill_icebergs` may fail.
64