Spatial grid¶
The PISM grid covering the computational box is equally spaced in horizontal (grid
.ice_vertical_spacing
at bootstrapping. The
bedrock thermal layer model always uses equal vertical spacing.
The grid is described by four numbers, namely the number of grid points grid
.Mx
in the grid
.My
in the grid
.Mz
in the grid
.Mbz
in the -Mx
, -My
, -Mz
, and -Mbz
, respectively. Note that Mx
,
My
, Mz
, and Mbz
all indicate the number of grid points so the number of grid
spaces are one less.
The lowest grid point in a grounded column of ice, at grid
.Mbz
must always be at least one.

Fig. 18 PISM’s vertical grid with uniform
Some PISM components (currently: the Blatter stress balance solver) use a geometry-following vertical grid with uniform vertical spacing withing each column. See Fig. 19.

Fig. 19 The “sigma” vertical grid used by PISM’s Blatter solver¶
Set grid
.Mbz
to a number greater than one to use the bedrock thermal model. When
a thermal bedrock layer is used, the depth of the layer is controlled by
grid
.Lbz
. Note that grid
.Mbz
is unrelated to the bed deformation model
(glacial isostasy model); see section Earth deformation models.
In the quadratically-spaced case the vertical spacing near the ice/bedrock interface is
about grid
.lambda
times finer than it would be with equal spacing for the same
value of grid
.Mz
, while the spacing near the top of the computational box is
correspondingly coarser. For a detailed description of the spacing of the grid, see the
documentation on Grid::compute_vertical_levels()
in the PISM class browser.
The user should specify the grid when using -bootstrap
or when initializing a
verification test (section Verification) or a simplified-geometry experiment (section
Simplified geometry experiments). If one initializes PISM from a saved model state using -i
then the
input file determines all grid parameters. For instance, the command
pism -i foo.nc -y 100
should work fine if foo.nc
is a PISM output file. Because -i
input files take
precedence over options,
pism -i foo.nc -Mz 201 -y 100
will give a warning that “PISM WARNING: ignoring command-line option '-Mz'
”.
Setting grid resolution¶
Once grid
.Lx
and grid
.Mx
are known, the grid resolution in the X
direction grid
.registration
is “center”) or (4) (with the “corner” grid
registration). Alternatively, one can set grid
.Lx
and grid
.dx
to
compute
in the case of the “center” grid registration; compare this to (3) and
note that we round grid
.registration
is “corner” (see (4)).
Set grid
.Ly
and grid
.dy
to set grid resolution in the Y direction.
Note
Recall that PISM will automatically convert from provided units into units used internally, so the command below will work as expected.
pism -bootstrap -i pism_Greenland_5km_v1.1.nc \
-dx 5km -dy 5km ...
Grid registration¶
PISM’s horizontal computational grid is uniform and (by default) cell-centered.[1]
This is not the only possible interpretation, but it is consistent with the finite-volume handling of mass (ice thickness) evolution is PISM.
Consider a grid with minimum and maximum

Fig. 20 Computational grids using the default (center
) grid registration.¶
Left: a coarse grid. Right: a finer grid covering the same domain.
The solid black line represents the domain boundary, dashed red lines are cell boundaries, black circles represent grid points.
When getting the size of the domain from an input file, PISM will compute cell-centered grid parameters as follows:
This is not an issue when re-starting from a PISM output file but can cause confusion when specifying grid parameters at bootstrapping and reading in fields using “regridding.”
For example:
> pism -eisII A \
-grid.registration center \
-Lx 10 -Mx 4 -My 4 \
-y 0 -verbose 1 \
-o grid-test.nc
> ncdump -v x grid-test.nc | grep "^ x ="
x = -7500, -2500, 2500, 7500 ;
Note that we specified the domain half width of 10 km and selected 4 grid points in the
In summary, with the default (center) grid registration
where
Note
One advantage of this approach is that it is easy to build a set of grids covering a given region such that grid cells nest within each other as in Fig. 20. In particular, this makes it easier to create a set of surface mass balance fields for the domain that use different resolutions but have the same total SMB.
Compare this to
> pism -eisII A \
-grid.registration corner \
-Lx 10 -Mx 5 -My 5 \
-y 0 -verbose 1 \
-o grid-test.nc
> ncdump -v x grid-test.nc | grep "^ x ="
x = -10000, -5000, 0, 5000, 10000 ;
Here the grid spacing is also 5 km, although there are 5 grid points in the
With the “corner” grid registration
See Fig. 21 for an illustration.

Fig. 21 Computational grids using the corner
grid registration.¶
Left: a coarse grid. Right: a finer grid covering the same domain.
To switch between (3) and (4),
set the configuration parameter grid
.registration
.
Coordinate Reference Systems¶
PISM can use the PROJ library (see Required tools and libraries) and coordinate reference system (CRS) information to
compute latitudes and longitudes of cell centers (used by some parameterizations and saved to output files as variables
lat
andlon
),compute latitudes and longitudes of cell corners (saved to output files as variables
lat_bnds
andlon_bnds
to simplify post-processing),interpolate inputs (climate forcing, etc) from a grid present in an input file to PISM’s computational grid.
Interpolation of model inputs requires YAC in addition to PROJ; see Enabling flexible interpolation using YAC and PROJ and Interpolation of input data.
Limitations
PISM’s supports most projections defined in the Appendix F of the CF Conventions document.
Longitude, latitude grids containing a pole are not supported yet.
The “Vertical perspective” grid mapping is not supported.
To use features listed above, compile PISM with PROJ and specify the grid projection in an input file as described below.
NetCDF metadata describing a CRS¶
To convert coordinates from a projected coordinate system to longitudes and latitudes PISM needs a string containing PROJ parameters corresponding to this mapping.
We support four ways of setting these parameters. Here they are listed in the order PISM uses when looking for a CRS definition in an input file.
crs_wkt
attribute of the grid mapping variable corresponding to a data variable (CF Conventions)proj_params
attribute of the grid mapping variable corresponding to a data variable (convention used by CDO)global attributes
proj
orproj4
(PISM’s old convention)attributes of the grid mapping variable corresponding to a data or domain variable, according to CF Conventions.
We recommend following CF Conventions if possible. However, sometimes what we want is a
minimal modification of a file’s metadata needed to make it usable. In this case setting
the proj
attribute might be easier.
If the proj
(or proj_params
) attribute has the form "+init=EPSG:XXXX"
,
"+init=epsg:XXXX"
, "EPSG:XXXX"
or "epsg:XXXX"
where XXXX
is an EPSG code
listed below PISM will convert the EPSG code to a grid mapping variable conforming to CF
metadata conventions and use that in PISM’s output files.
EPSG code |
Description |
---|---|
3413 |
|
3031 |
|
3057 |
|
5936 |
|
26710 |
Grid mapping variable¶
PISM supports some CF grid mapping variables corresponding to coordinate reference systems described in Appendix F of the CF Conventions document. Please see CF Conventions sections 5.6 for details about specifying the grid mapping for a NetCDF variable.
CRS Name |
|
---|---|
Albers Equal Area |
|
Azimuthal equidistant |
|
Lambert azimuthal equal area |
|
Lambert conformal |
|
Lambert Cylindrical Equal Area |
|
Latitude-Longitude |
|
Mercator |
|
Orthographic |
|
Polar stereographic |
|
Rotated pole |
|
Stereographic |
|
Transverse Mercator |
|
ncdump -h
output for a climate forcing file following CF metadata
conventions and using the polar stereographic projection¶netcdf climate_forcing {
dimensions:
time = UNLIMITED ; // (12 currently)
nv = 2 ;
x = 301 ;
y = 561 ;
variables:
double time(time) ;
time:units = "days since 1980-1-1" ;
time:calendar = "365_day" ;
time:long_name = "time" ;
time:bounds = "time_bounds" ;
double time_bounds(time, nv) ;
double x(x) ;
x:units = "m" ;
x:standard_name = "projection_x_coordinate" ;
double y(y) ;
y:units = "m" ;
y:standard_name = "projection_y_coordinate" ;
char mapping;
mapping:grid_mapping_name = "polar_stereographic";
mapping:false_easting = 0.0;
mapping:false_northing = 0.0;
mapping:latitude_of_projection_origin = 90.0;
mapping:scale_factor_at_projection_origin = 1.0;
mapping:standard_parallel = 70.0;
mapping:straight_vertical_longitude_from_pole = -45.0;
double air_temp(time, y, x) ;
air_temp:units = "kelvin" ;
air_temp:long_name = "near surface air temperature" ;
air_temp:grid_mapping = "mapping" ;
double precipitation(time, y, x) ;
precipitation:units = "kg m^-2 year^-1" ;
precipitation:long_name = "total (liquid and solid) precipitation" ;
precipitation:grid_mapping = "mapping" ;
:Conventions = "CF-1.8";
}
If a grid mapping variable contains the crs_wkt
attribute as described in CF
Conventions sections 5.6 PISM will use this string to initialize the
mapping from projected coordinates to longitude and latitude coordinates and will not
attempt to create a PROJ string from other attributes of this variable.
If a grid mapping variable contains the proj_params
attribute as used by CDO PISM
will use this string to initialize the mapping from projected coordinates to longitude and
latitude coordinates and will not attempt to create a PROJ string from other attributes of
this variable.
Attribute proj_params
of a grid mapping variable¶
netcdf climate_forcing {
dimensions:
time = UNLIMITED ; // (12 currently)
nv = 2 ;
x = 301 ;
y = 561 ;
variables:
double time(time) ;
time:units = "days since 1980-1-1" ;
time:calendar = "365_day" ;
time:long_name = "time" ;
time:bounds = "time_bounds" ;
double time_bounds(time, nv) ;
double x(x) ;
x:units = "m" ;
x:standard_name = "projection_x_coordinate" ;
double y(y) ;
y:units = "m" ;
y:standard_name = "projection_y_coordinate" ;
char mapping;
mapping:proj_params = "EPSG:3413";
double air_temp(time, y, x) ;
air_temp:units = "kelvin" ;
air_temp:long_name = "near surface air temperature" ;
air_temp:grid_mapping = "mapping" ;
double precipitation(time, y, x) ;
precipitation:units = "kg m^-2 year^-1" ;
precipitation:long_name = "total (liquid and solid) precipitation" ;
precipitation:grid_mapping = "mapping" ;
}
Note
This data set does not follow CF metadata conventions.
Global attribute proj
¶
Note
The global attribute proj4
is still supported for compatibility with older PISM
versions.
For example, the input file pism_Greenland_5km_v1.1.nc
in Getting started: a Greenland ice sheet example contains the
following metadata:
> ncdump -h pism_Greenland_5km_v1.1.nc | grep :proj
:proj = "+proj=stere +lat_0=90 +lat_ts=71 +lon_0=-39 +k=1 +x_0=0 +y_0=0 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs" ;
The spinup run in that example disables the code re-computing longitude, latitude grid
coordinates using projection information to avoid the dependency on PROJ (look for
-grid.recompute_longitude_and_latitude
in the command). If we remove this option,
PISM will report the following.
> pism -i pism_Greenland_5km_v1.1.nc \
-bootstrap -Mx 76 -My 141 -Mz 101 -Mbz 11 ... \
-grid.recompute_longitude_and_latitude true ... -o output.nc
...
* Got projection parameters "+proj=stere +lat_0=90 +lat_ts=71 +lon_0=-39 +k=1 +x_0=0 +y_0=0 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs" from "pism_Greenland_5km_v1.1.nc".
* Computing longitude and latitude using projection parameters...
...
... done with run
Writing model state to file `output.nc'...
To simplify post-processing and analysis with CDO PISM adds the PROJ string (if known)
to the mapping variable, putting it in the proj_params
attribute.
> ncdump -h g20km_10ka_hy.nc | grep mapping:
mapping:ellipsoid = "WGS84" ;
mapping:grid_mapping_name = "polar_stereographic" ;
mapping:false_easting = 0. ;
mapping:false_northing = 0. ;
mapping:latitude_of_projection_origin = 90. ;
mapping:standard_parallel = 71. ;
mapping:straight_vertical_longitude_from_pole = -39. ;
mapping:proj_params = "+proj=stere +lat_0=90 +lat_ts=71 +lon_0=-39 +k=1 +x_0=0 +y_0=0 +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +units=m +no_defs" ;
Using a grid definition file¶
Configuration parameters grid
.dx
, grid
.dy
, grid
.Mx
,
grid
.My
, grid
.Lx
, grid
.Ly
make it relatively easy to change
the size and resolution of a grid, but not its location on the globe.
The parameter grid
.file
makes it possible to read a grid definition from a
NetCDF file and then override values read from this file using configuration parameters,
if necessary. Its argument is a string containing the name of a grid definition file or
a string containing the name of a NetCDF file and the name of a 2D variable to get grid
information from, separated by a colon, file_name:variable_name
(for example:
pism_Greenland_5km_v1.1.nc:thk
).
A grid definition file has to contain a “domain variable” (see CF Conventions version
1.11 or later, section 5.8, ). A domain variable is a scalar variable that has the
dimensions
attribute, a space-separated list of names of coordinate variables defining
the domain. It may also have other attributes, e.g. grid_mapping
to specify the
coordinate reference system.
See Listing 5 for an example of a grid definition. Here the size of a domain is determined as described in section Grid registration; see equations (2), (3) and (4).
netcdf grid {
dimensions:
x = 9 ;
y = 14 ;
variables:
double x(x) ;
x:units = "km" ;
x:standard_name = "projection_x_coordinate" ;
double y(y) ;
y:units = "km" ;
y:standard_name = "projection_y_coordinate" ;
byte domain ;
domain:dimensions = "x y" ;
domain:grid_mapping = "mapping";
domain:long_name = "Greenland model domain definition" ;
byte mapping ;
mapping:grid_mapping_name = "polar_stereographic" ;
mapping:latitude_of_projection_origin = 90 ;
mapping:scale_factor_at_projection_origin = 1. ;
mapping:straight_vertical_longitude_from_pole = -45 ;
mapping:standard_parallel = 70 ;
mapping:false_northing = 0 ;
mapping:false_easting = 0 ;
:Conventions = "CF-1.8";
data:
x = -700, -500, -300, -100, 100,
300, 500, 700, 900 ;
y = -3300, -3100, -2900, -2700,
-2500, -2300, -2100, -1900,
-1700, -1500, -1300, -1100,
-900, -700 ;
}
Note
PISM uses the first and last values of
x
in Listing 5 to determine and and the first and second values ofx
to compute , and similarly fory
. Other values ofx
andy
are not used.This example specifies grid coordinates in km. PISM will automatically convert to meters used internally.
Note that it can also be used as a domain and CRS definition since configuration
parameters grid
.Mx
and grid
.My
(or grid
.dx
and
grid
.dy
) can be used to create a finer grid covering the same domain.
For example, Listing 6 below shows how one could set up a
simulation using a
pism \
-bootstrap -i pism_Greenland_5km_v1.1.nc \
-grid.file grid.nc \
-dx 5km -dy 5km \
-y 1s \
-o output.nc
Note
The grid in the data set pism_Greenland_v1.1.nc
from section Getting started: a Greenland ice sheet example and
the grid described in Listing 5 use different projections.
PISM will use YAC to re-project and interpolate data between these grids; see
Interpolation of input data.
A better way to define a modeling domain¶
Defining the domain extent by setting
netcdf domain {
dimensions:
// length of the x dimension is not important
x = 1 ;
// length of the y dimension is not important
y = 1 ;
nv2 = 2 ;
variables:
double x(x) ;
x:units = "km" ;
x:standard_name = "projection_x_coordinate" ;
x:bounds = "x_bnds";
double x_bnds(x, nv2);
double y(y) ;
y:units = "km" ;
y:standard_name = "projection_y_coordinate" ;
y:bounds = "y_bnds";
double y_bnds(y, nv2);
byte domain;
domain:dimensions = "x y";
domain:grid_mapping = "mapping";
byte mapping;
mapping:proj_params = "EPSG:3413";
data:
x_bnds = -800, 1000;
y_bnds = -3400, -600;
}
Note
This file defines exactly the same domain as Listing 6.
If
x
andy
bounds (x_bnds
andy_bnds
in Listing 7) are present then only bounds are used to determine the domain extent and the number of grid points. Values ofx
andy
are ignored.All methods of specifying the CRS described in Coordinate Reference Systems are supported (here: the
proj_params
attribute).Similarly to Listing 4, a file with metadata in Listing 7 does not follow CF conventions.
Minimal domain definition
If following conventions is not a concern a domain definition file can be stripped down to its smallest form, see Listing 8.
netcdf domain_minimal {
dimensions:
x = 1 ;
y = 1 ;
nv2 = 2 ;
variables:
double x(x) ;
x:units = "km" ;
x:bounds = "x_bnds";
double x_bnds(x, nv2);
double y(y) ;
y:units = "km" ;
y:bounds = "y_bnds";
double y_bnds(y, nv2);
byte domain;
domain:dimensions = "x y";
:proj = "EPSG:3413";
data:
x_bnds = -800, 1000;
y_bnds = -3400, -600;
}
Parallel domain distribution¶
When running PISM in parallel with mpiexec -n N
, the horizontal grid is distributed
across
Users seeking to override this default can specify grid
.Nx
and grid
.Ny
.
Once grid
.procs_x
and grid
.procs_y
. Both of these parameters take a
comma-separated list of numbers as its argument. For example,
mpiexec -n 3 pism -eisII A -Mx 101 -My 101 \
-Nx 1 -grid.procs_x 101 \
-Ny 3 -grid.procs_y 20,61,20
splits a
To see the parallel domain decomposition from a completed run, see the rank
variable in the output file, e.g. using -o_size big
. The same rank
variable is
available as a spatial diagnostic field (section Spatially-varying diagnostic quantities).
Configuration parameters controlling grid choices¶
grid
.Lbz
(1000 meters) Thickness of the thermal bedrock layer. (Inactive ifgrid
.Mbz
< 2)grid
.Lx
(no default value; units: km) Half-width of the computational box in the directiongrid
.Ly
(no default value; units: km) Half-width of the computational box in the directiongrid
.Lz
(4000 meters) Height of the computational domain.grid
.Mbz
(1) Number of thermal bedrock layers; 1 level corresponds to no bedrock.grid
.Mx
(no default value; units: count) Number of grid points in the x direction (see alsogrid
.dx
)grid
.My
(no default value; units: count) Number of grid points in the y direction (see alsogrid
.dy
)grid
.Mz
(31) Number of vertical grid levels in the ice.grid
.Nx
(no default value; units: count) Number of MPI sub-domains in the x direction (uses default if negative)grid
.Ny
(no default value; units: count) Number of MPI sub-domains in the y direction (uses default if negative)grid
.allow_extrapolation
(no) Allow extrapolation during regridding.grid
.dx
(no default value; units: meter) Grid resolution in the X direction (overridesgrid
.Mx
)grid
.dy
(no default value; units: meter) Grid resolution in the Y direction (overridesgrid
.My
)grid
.file
grid definition file used to initialize the horizontal computational gridgrid
.ice_vertical_spacing
(quadratic
) vertical spacing in the icegrid
.lambda
(4) Vertical grid spacing parameter. Roughly equal to the factor by which the grid is coarser at an end away from the ice-bedrock interface.grid
.max_stencil_width
(2) Maximum width of the finite-difference stencil used in PISM.grid
.periodicity
(xy
) horizontal grid periodicitygrid
.procs_x
comma-separated list of custom sub-domain widths in the X directiongrid
.procs_y
comma-separated list of custom sub-domain widths in the Y directiongrid
.recompute_longitude_and_latitude
(yes) Re-compute longitude and latitude using grid information and provided projection parameters. Requires PROJ.grid
.registration
(center
) horizontal grid registration
Footnotes
Previous | Up | Next |