Subsections

7 Appendices


52 Appendix A: Master List of Constants

52.1 ESMF_ALARMLIST

This flag is documented in section 45.2.1.


52.2 ESMF_DIM_ARB

DESCRIPTION:
An integer named constant which is used to indicate that a particular dimension is arbitrarily distributed.

52.3 ESMF_ATTCOPY

This flag is documented in section 55.0.1.

52.4 ESMF_ATTGETCOUNT

This flag is documented in section 55.0.2.


52.5 ESMF_ATTNEST

DESCRIPTION:
Indicate whether or not to descend the Attribute hierarchy.

The type of this flag is:

type(ESMF_AttNest_Flag)

The valid values are:

ESMF_ATTNEST_ON
Indicates that the Attribute hierarchy should be traversed.
ESMF_ATTNEST_OFF
Indicates that the Attribute hierarchy should not be traversed.


52.6 ESMF_ATTRECONCILE

DESCRIPTION:
Indicate whether or not to handle metadata (Attributes) in ESMF_StateReconcile().

The type of this flag is:

type(ESMF_AttReconcileFlag)

The valid values are:

ESMF_ATTRECONCILE_ON
Attribute reconciliation will be turned on.
ESMF_ATTRECONCILE_OFF
Attribute reconciliation will be turned off.

52.7 ESMF_ATTWRITE

This flag is documented in section 55.0.3.

52.8 ESMF_CALKIND

This flag is documented in section 41.2.1.


52.9 ESMF_COMPTYPE

DESCRIPTION:
Indicate the type of a Component.

The type of this flag is:

type(ESMF_CompType_Flag)

The valid values are:

ESMF_COMPTYPE_GRID
A ESMF_GridComp object.
ESMF_COMPTYPE_CPL
A ESMF_CplComp objects.
ESMF_COMPTYPE_SCI
A ESMF_SciComp objects.


52.10 ESMF_CONTEXT

DESCRIPTION:
Indicates the type of VM context in which a Component will be executing its standard methods.

The type of this flag is:

type(ESMF_Context_Flag)

The valid values are:

ESMF_CONTEXT_OWN_VM
The component is running in its own, separate VM context. Resources are inherited from the parent but can be arranged to fit the component's requirements.
ESMF_CONTEXT_PARENT_VM
The component uses the parent's VM for resource management. Compared to components that use their own VM context components that run in the parent's VM context are more light-weight with respect to the overhead of calling into their initialize, run and finalize methods. Furthermore, VM-specific properties remain unchanged when going from the parent component to the child component. These properties include the MPI communicator, the number of PETs, the PET labeling, communication attributes, threading-level.


52.11 ESMF_COORDSYS

DESCRIPTION:
A set of values which indicates in which system the coordinates in a class (e.g. Grid) are. This type is useful both to indicate to other users the type of the coordinates, but also to control how the coordinates are interpreted in ESMF methods which depend on the coordinates (e.g. regridding methods like ESMF_FieldRegridStore()).

The type of this flag is:

type(ESMF_CoordSys_Flag)

The valid values are:

ESMF_COORDSYS_CART
Cartesian coordinate system. In this system, the Cartesian coordinates are mapped to the coordinate dimensions in the following order: x,y,z. (E.g. using coordDim=2 in ESMF_GridGetCoord() references the y dimension)

ESMF_COORDSYS_SPH_DEG
Spherical coordinates in degrees. In this system, the spherical coordinates are mapped to the coordinate dimensions in the following order: longitude, latitude, radius. (E.g. using coordDim=2 in ESMF_GridGetCoord() references the latitude dimension.)

ESMF_COORDSYS_SPH_RAD
Spherical coordinates in radians. In this system, the spherical coordinates are mapped to the coordinate dimensions in the following order: longitude, latitude, radius. (E.g. using coordDim=2 in ESMF_GridGetCoord() references the latitude dimension.)


52.12 ESMF_DATACOPY

DESCRIPTION:
Indicates how data references, copies, and memory allocations to hold data are handled.

The type of this flag is:

type(ESMF_DataCopy_Flag)

The valid values are:

ESMF_DATACOPY_ALLOC
Create a new allocation that is sufficient in size to hold the data. However, no data is copied and the allocation is returned uninitialized.
ESMF_DATACOPY_REFERENCE
Reference the data within the existing allocation.
ESMF_DATACOPY_VALUE
Copy the data to another allocation. If needed create the new allocation.


52.13 ESMF_DECOMP

DESCRIPTION:
Indicates how DistGrid elements are decomposed over DEs.

The type of this flag is:

type(ESMF_Decomp_Flag)

The valid values are:

ESMF_DECOMP_BALANCED
Decompose elements as balanced as possible across DEs. The maximum difference in number of elements per DE is 1, with the extra elements on the lower DEs.
ESMF_DECOMP_CYCLIC
Decompose elements cyclically across DEs.
ESMF_DECOMP_RESTFIRST
Divide elements over DEs. Assign the rest of this division to the first DE.
ESMF_DECOMP_RESTLAST
Divide elements over DEs. Assign the rest of this division to the last DE.
ESMF_DECOMP_SYMMEDGEMAX
Decompose elements across the DEs in a symmetric fashion. Start with the maximum number of elements at the two edge DEs, and assign a decending number of elements to the DEs as the center of the decomposition is approached from both sides.

52.14 ESMF_DIRECTION

This flag is documented in section 44.2.1.

52.15 ESMF_DISTGRIDMATCH

This flag is documented in section 35.2.1.

52.16 ESMF_END

This flag is documented in section 16.2.1.


52.17 ESMF_EXTRAPMETHOD

DESCRIPTION:
Specify which extrapolation method to use on unmapped destination points after regridding.

The type of this flag is:

type(ESMF_ExtrapMethod_Flag)

The valid values are:

ESMF_EXTRAPMETHOD_NONE
Indicates that no extrapolation should be done.
ESMF_EXTRAPMETHOD_NEAREST_IDAVG
Inverse distance weighted average. Here the value of an unmapped destination point is the weighted average of the closest N source points. The weight is the reciprocal of the distance of the source point from the destination point raised to a power P. All the weights contributing to one destination point are normalized so that they sum to 1.0. The user can choose N and P when using this method, but defaults are also provided. This extrapolation method is not supported with conservative regrid methods (e.g. ESMF_REGRIDMETHOD_CONSERVE).
ESMF_EXTRAPMETHOD_NEAREST_STOD
Nearest source to destination. Here the value of each unmapped destination point is set to the value of the closest source point. This extrapolation method is not supported with conservative regrid methods (e.g. ESMF_REGRIDMETHOD_CONSERVE).
ESMF_EXTRAPMETHOD_NEAREST_D
Nearest mapped destination to unmapped destination. Here the value of each unmapped destination point is set to the value of the closest mapped (i.e. regridded) destination point. This extrapolation method is not supported with conservative regrid methods (e.g. ESMF_REGRIDMETHOD_CONSERVE).
ESMF_EXTRAPMETHOD_CREEP
Creep fill. Here unmapped destination points are filled by moving data from mapped locations to neighboring unmapped locations. The data filled into a new location is the average of its already filled neighbors' values. This process is repeated for a user specified number of levels (e.g. in ESMF_FieldRegridStore() this is specified via the extrapNumLevels argument). This extrapolation method is not supported with conservative regrid methods (e.g. ESMF_REGRIDMETHOD_CONSERVE).
ESMF_EXTRAPMETHOD_CREEP_NRST_D
Creep fill with nearest destination. Here unmapped destination points are filled using creep fill as described under that entry (see ESMF_EXTRAPMETHOD_CREEP above), any points not filled by creep fill are then set to the closest filled or mapped destination point as if the nearest destination method (see ESMF_EXTRAPMETHOD_NEAREST_D above) were run after the initial regridding followed by creep fill. Like creep fill, this method is repeated for a user specified number of levels (e.g. in ESMF_FieldRegridStore() this is specified via the extrapNumLevels argument). This extrapolation method is not supported with conservative regrid methods (e.g. ESMF_REGRIDMETHOD_CONSERVE).

52.18 ESMF_FIELDSTATUS

This flag is documented in section 26.2.1.


52.19 ESMF_FILEFORMAT

DESCRIPTION:
This flag is used in ESMF_GridCreate and ESMF_MeshCreate functions. It is also used in the ESMF_RegridWeightGen API as an optional argument.

The type of this flag is:

type(ESMF_FileFormat_Flag)

The valid values are:

ESMF_FILEFORMAT_CFGRID
A single tile logically rectangular grid file that follows the NetCDF CF convention. See section 12.8.3 for more detailed description.

ESMF_FILEFORMAT_ESMFMESH
ESMF unstructured grid file format. This format was developed by the ESMF team to match the capabilities of the Mesh class and to be efficient to convert to that class. See section 12.8.2 for more detailed description.

ESMF_FILEFORMAT_GRIDSPEC
Equivalent to ESMF_FILEFORMAT_CFGRID flag.

ESMF_FILEFORMAT_MOSAIC
This format is a proposed extension to the CF-conventions for grid mosaics consisting of multiple logically rectangular grid tiles. See section 12.8.5 for more detailed description.

ESMF_FILEFORMAT_SCRIP
SCRIP format grid file. The SCRIP format is the format accepted by the SCRIP regridding tool [13]. See section12.8.1 for more detailed description.

ESMF_FILEFORMAT_UGRID
CF-convention unstructured grid file format. This format is a proposed extension to the CF-conventions for unstructured grid data model. See section 12.8.4 for more detailed description.


52.20 ESMF_FILEMODE

DESCRIPTION:
This flag is used to indicate which mode to use when writing a weight file.

The type of this flag is:

type(ESMF_FileMode_Flag)

The valid values are:

ESMF_FILEMODE_BASIC
Indicates that only the factorList and factorIndexList should be written.
ESMF_FILEMODE_WITHAUX
Indicates that grid center coordinates should also be written.


52.21 ESMF_FILESTATUS

DESCRIPTION:
This flag is used in ESMF I/O functions. It's use is similar to the status keyword in the Fortran open statement.

The type of this flag is:

type(ESMF_FileStatus_Flag)

The valid values are:

ESMF_FILESTATUS_NEW
The file must not exist, it will be created.
ESMF_FILESTATUS_OLD
The file must exist.
ESMF_FILESTATUS_REPLACE
If the file exists, all of its contents will be deleted before writing. If the file does not exist, it will be created.
ESMF_FILESTATUS_UNKNOWN
The value is treated as if it were ESMF_FILESTATUS_OLD if the corresponding file already exists. Otherwise, the value is treated as if it were ESMF_FILESTATUS_NEW.


52.22 ESMF_GEOMTYPE

DESCRIPTION:
Different types of geometries upon which an ESMF Field or ESMF Fieldbundle may be built.

The type of this flag is:

type(ESMF_GeomType_Flag)

The valid values are:

ESMF_GEOMTYPE_GRID
An ESMF_Grid, a structured grid composed of one or more logically rectangular tiles.
ESMF_GEOMTYPE_MESH
An ESMF_Mesh, an unstructured grid.
ESMF_GEOMTYPE_XGRID
An ESMF_XGrid, an exchange grid.
ESMF_GEOMTYPE_LOCSTREAM
An ESMF_LocStream, a disconnected series of points with associated key values.

52.23 ESMF_GRIDCONN

This flag is documented in section 31.2.1.

52.24 ESMF_GRIDITEM

This flag is documented in section 31.2.2.

52.25 ESMF_GRIDMATCH

This flag is documented in section 31.2.3.

52.26 ESMF_GRIDSTATUS

This flag is documented in section 31.2.4.


52.27 ESMF_INDEX

DESCRIPTION:
Indicates whether index is local (per DE) or global (per object).

The type of this flag is:

type(ESMF_Index_Flag)

The valid values are:

ESMF_INDEX_DELOCAL
Indicates that DE-local index space starts at lower bound 1 for each DE.
ESMF_INDEX_GLOBAL
Indicates that global indices are used. This means that DE-local index space starts at the global lower bound for each DE.
ESMF_INDEX_USER
Indicates that the DE-local index bounds are explicitly set by the user.


52.28 ESMF_IOFMT

DESCRIPTION:
Indicates I/O format options that are currently supported.

The type of this flag is:

type(ESMF_IOFmt_Flag)

The valid values are:

ESMF_IOFMT_BIN
Binary format.
ESMF_IOFMT_NETCDF
NETCDF and PNETCDF format.
ESMF_IOFMT_NETCDF_64BIT_OFFSET
NETCDF and PNETCDF 64-bit format.


52.29 ESMF_IO_NETCDF_PRESENT

DESCRIPTION:
Indicates whether netcdf feature support has been enabled within the current ESMF build.

The type of this flag is:

logical

The valid values are:

.true.
Netcdf features are enabled.
.false.
Netcdf features are not enabled.


52.30 ESMF_IO_PIO_PRESENT

DESCRIPTION:
Indicates whether PIO (parallel I/O) feature support has been enabled within the current ESMF build.

The type of this flag is:

logical

The valid values are:

.true.
PIO features are enabled..
.false.
PIO features are not enabled.


52.31 ESMF_IO_PNETCDF_PRESENT

DESCRIPTION:
Indicates whether parallel netcdf feature support has been enabled within the current ESMF build.

The type of this flag is:

logical

The valid values are:

.true.
Parallel netcdf features are enabled.
.false.
Parallel netcdf features are not enabled.


52.32 ESMF_ITEMORDER

DESCRIPTION:
Specifies the order of items in a list.

The type of this flag is:

type(ESMF_ItemOrder_Flag)

The valid values are:

ESMF_ITEMORDER_ABC
The items are in alphabetical order, according to their names.
ESMF_ITEMORDER_ADDORDER
The items are in the order in which they were added to the container.


52.33 ESMF_KIND

DESCRIPTION:
Named constants to be used as kind-parameter in Fortran variable declarations. For example:

  integer(ESMF_KIND_I4)       :: integerVariable
  integer(kind=ESMF_KIND_I4)  :: integerVariable
  real(ESMF_KIND_R4)          :: realVariable
  real(kind=ESMF_KIND_R4)     :: realVariable
The Fortran standard does not mandate what numeric values correspond to actual number of bytes allocated for the various kinds. The following constants are defined by ESMF to be correct across the supported Fortran compilers. Note that not all compilers support every kind listed below; in particular 1 and 2 byte integers can be problematic.

The type of these named constants is:

integer

The named constants are:

ESMF_KIND_I1
Kind-parameter for 1 byte integer.
ESMF_KIND_I2
Kind-parameter for 2 byte integer.
ESMF_KIND_I4
Kind-parameter for 4 byte integer.
ESMF_KIND_I8
Kind-parameter for 8 byte integer.
ESMF_KIND_R4
Kind-parameter for 4 byte real.
ESMF_KIND_R8
Kind-parameter for 8 byte real.


52.34 ESMF_LINETYPE

DESCRIPTION:
This argument allows the user to select the path of the line which connects two points on the surface of a sphere. This in turn controls the path along which distances are calculated and the shape of the edges that make up a cell.

The type of this flag is:

type(ESMF_LineType_Flag)

The valid values are:

ESMF_LINETYPE_CART
Cartesian line. When this option is specified distances are calculated in a straight line through the 3D Cartesian space in which the sphere is embedded. Cells are approximated by 3D planes bounded by 3D Cartesian lines between their corner vertices. When calculating regrid weights, this line type is currently the default for the following regrid methods: ESMF_REGRIDMETHOD_BILINEAR, ESMF_REGRIDMETHOD_PATCH, ESMF_REGRIDMETHOD_NEAREST_STOD, and ESMF_REGRIDMETHOD_NEAREST_DTOS.
ESMF_LINETYPE_GREAT_CIRCLE
Great circle line. When this option is specified distances are calculated along a great circle path (the shortest distance between two points on a sphere surface). Cells are bounded by great circle paths between their corner vertices. When calculating regrid weights, this line type is currently the default for the following regrid method: ESMF_REGRIDMETHOD_CONSERVE.

52.35 ESMF_LOGERR

This flag is documented in section 47.2.1.

52.36 ESMF_LOGKIND

This flag is documented in section 47.2.2.

52.37 ESMF_LOGMSG

This flag is documented in section 47.2.3.

52.38 ESMF_MESHELEMTYPE

This flag is documented in section 33.2.1.


52.39 ESMF_MESHLOC

DESCRIPTION:
Used to indicate a specific part of a Mesh. This is commonly used to specify the part of the Mesh to create a Field on.

The type of this flag is:

type(ESMF_MeshLoc)

The valid values are:

ESMF_MESHLOC_NODE
The nodes (also known as corners or vertices) of a Mesh.

ESMF_MESHLOC_ELEMENT
The elements (also known as cells) of a Mesh.


52.40 ESMF_MESHOP

DESCRIPTION:
Specifies the spatial operation with two source Meshes, treating the Meshes as point sets.

The type of this flag is:

type(ESMF_MeshOp_Flag)

The valid values are:

ESMF_MESHOP_DIFFERENCE
Calculate the difference of the two point sets from the source Meshes.


52.41 ESMF_MESHSTATUS

DESCRIPTION:
The ESMF Mesh class can exist in several states. The ESMF_MESHSTATUS flag is used to indicate which of these states a Mesh is currently in.

The type of this flag is:

type(ESMF_MeshStatus_Flag)

The valid values are:

ESMF_MESHSTATUS_UNINIT:
The Mesh status is uninitialized. This might happen if the Mesh hasn't been created yet, or if the Mesh has been destroyed.
ESMF_MESHSTATUS_EMPTY:
Status after a Mesh has been created with ESMF_MeshEmptyCreate. Only distribution information has been set in the Mesh. This object can be used in the ESMF_MeshGet() method to retrieve distgrids and the distgrid's presence.
ESMF_MESHSTATUS_STRUCTCREATED:
Status after a Mesh has been through the first step of the three step creation process. The Mesh is now ready to have nodes added to it.
ESMF_MESHSTATUS_NODESADDED:
Status after a Mesh has been through the second step of the three step creation process. The Mesh is now ready to be completed with elements.
ESMF_MESHSTATUS_COMPLETE:
The Mesh has been completely created and can be used to create a Field. Further, if the internal Mesh memory hasn't been freed, then the Mesh should be usable in any Mesh functionality (e.g. regridding). The status of the internal Mesh memory can be checked using the isMemFreed argument to ESMF_MeshGet().


52.42 ESMF_METHOD

DESCRIPTION:
Specify standard ESMF Component method.

The type of this flag is:

type(ESMF_Method_Flag)

The valid values are:

ESMF_METHOD_FINALIZE
Finalize method.
ESMF_METHOD_INITIALIZE
Initialize method.
ESMF_METHOD_READRESTART
ReadRestart method.
ESMF_METHOD_RUN
Run method.
ESMF_METHOD_WRITERESTART
WriteRestart method.

52.43 ESMF_NORMTYPE

DESCRIPTION:
When doing conservative regridding (e.g. ESMF_REGRIDMETHOD_CONSERVE), this option allows the user to select the type of normalization used when producing the weights.

type(ESMF_NormType_Flag)

The valid values are:

ESMF_NORMTYPE_DSTAREA
Destination area normalization. Here the weights are calculated by dividing the area of overlap of the source and destination cells by the area of the entire destination cell. In other words, the weight is the fraction of the entire destination cell which overlaps with the given source cell.
ESMF_NORMTYPE_FRACAREA
Fraction area normalization. Here in addition to the weight calculation done for destination area normalization (ESMF_NORMTYPE_DSTAREA) the weights are also divided by the fraction that the destination cell overlaps with the entire source grid. In other words, the weight is the fraction of just the part of the destination cell that overlaps with the entire source mesh.

52.44 ESMF_PIN

This flag is documented in section 48.2.1.

52.45 ESMF_POLEKIND

This flag is documented in section 31.2.5.


52.46 ESMF_POLEMETHOD

DESCRIPTION:
When interpolating between two Grids which have been mapped to a sphere these can be used to specify the type of artificial pole to create on the source Grid during interpolation. Creating the pole allows destination points above the top row or below the bottom row of the source Grid to still be mapped.

The type of this flag is:

type(ESMF_PoleMethod_Flag)

The valid values are:

ESMF_POLEMETHOD_NONE
No pole. Destination points which lie above the top or below the bottom row of the source Grid won't be mapped.
ESMF_POLEMETHOD_ALLAVG
Construct an artificial pole placed in the center of the top (or bottom) row of nodes, but projected onto the sphere formed by the rest of the grid. The value at this pole is the average of all the source values surrounding the pole.
ESMF_POLEMETHOD_NPNTAVG
Construct an artificial pole placed in the center of the top (or bottom) row of nodes, but projected onto the sphere formed by the rest of the grid. The value at this pole is the average of the N source nodes next to the pole and surrounding the destination point (i.e. the value may differ for each destination point). Here N is set by using the regridPoleNPnts parameter and ranges from 1 to the number of nodes around the pole. This option is useful for interpolating values which may be zeroed out by averaging around the entire pole (e.g. vector components).
ESMF_POLEMETHOD_TEETH
No new pole point is constructed, instead the holes at the poles are filled by constructing triangles across the top and bottom row of the source Grid. This can be useful because no averaging occurs, however, because the top and bottom of the sphere are now flat, for a big enough mismatch between the size of the destination and source pole holes, some destination points may still not be able to be mapped to the source Grid.


52.47 ESMF_REDUCE

DESCRIPTION:
Indicates reduce operation.

The type of this flag is:

type(ESMF_Reduce_Flag)

The valid values are:

ESMF_REDUCE_SUM
Use arithmetic sum to add all data elements.
ESMF_REDUCE_MIN
Determine the minimum of all data elements.
ESMF_REDUCE_MAX
Determine the maximum of all data elements.


52.48 ESMF_REGION

DESCRIPTION:
Specifies various regions in the data layout of an Array or Field object.

The type of this flag is:

type(ESMF_Region_Flag)

The valid values are:

ESMF_REGION_TOTAL
Total allocated memory.
ESMF_REGION_SELECT
Region of operation-specific elements.
ESMF_REGION_EMPTY
The empty region contains no elements.


52.49 ESMF_REGRIDMETHOD

DESCRIPTION:
Specify which interpolation method to use during regridding. For a more detailed discussion of these methods, as well as ESMF regridding in general, see Section 24.2.

The type of this flag is:

type(ESMF_RegridMethod_Flag)

The valid values are:

ESMF_REGRIDMETHOD_BILINEAR
Bilinear interpolation. Destination value is a linear combination of the source values in the cell which contains the destination point. The weights for the linear combination are based on the distance of destination point from each source value.
ESMF_REGRIDMETHOD_PATCH
Higher-order patch recovery interpolation. Destination value is a weighted average of 2D polynomial patches constructed from cells surrounding the source cell which contains the destination point. This method typically results in better approximations to values and derivatives than bilinear. However, because of its larger stencil, it also results in a much larger interpolation matrix (and thus routeHandle) than the bilinear.
ESMF_REGRIDMETHOD_NEAREST_STOD
In this version of nearest neighbor interpolation each destination point is mapped to the closest source point. A given source point may go to multiple destination points, but no destination point will receive input from more than one source point.
ESMF_REGRIDMETHOD_NEAREST_DTOS
In this version of nearest neighbor interpolation each source point is mapped to the closest destination point. A given destination point may receive input from multiple source points, but no source point will go to more than one destination point.
ESMF_REGRIDMETHOD_CONSERVE
First-order conservative interpolation. The main purpose of this method is to preserve the integral of the field between the source and destination. Will typically give a less accurate approximation to the individual field values than the bilinear or patch methods. The value of a destination cell is calculated as the weighted sum of the values of the source cells that it overlaps. The weights are determined by the amount the source cell overlaps the destination cell. Needs corner coordinate values to be provided in the Grid. Currently only works for Fields created on the Grid center stagger or the Mesh element location.
ESMF_REGRIDMETHOD_CONSERVE_2ND
Second-order conservative interpolation. As with first-order, preserves the integral of the value between the source and destination. However, typically produces a smoother more accurate result than first-order. Also like first-order, the value of a destination cell is calculated as the weighted sum of the values of the source cells that it overlaps. However, second-order also includes additional terms to take into account the gradient of the field across the source cell. Needs corner coordinate values to be provided in the Grid. Currently only works for Fields created on the Grid center stagger or the Mesh element location.


52.50 ESMF_REGRIDSTATUS

DESCRIPTION:
These values can be output during regridding (e.g. from ESMF_FieldRegridStore() via the dstStatusField argument). They indicate the status of each destination location.

The type of this flag is:

integer(ESMF_KIND_I4)

The valid values for all regrid methods are:

ESMF_REGRIDSTATUS_DSTMASKED
The destination location is masked, so no regridding has been peformed on it.
ESMF_REGRIDSTATUS_SRCMASKED
The destination location is within a masked part of the source grid, so no regridding has been performed on it.
ESMF_REGRIDSTATUS_OUTSIDE
The destination location is outside the source grid, so no regridding has been performed on it.
ESMF_REGRIDSTATUS_MAPPED
The destination location is within the unmasked source grid, and so has been regridded (i.e. there is an entry for it within the factorIndexList or routeHandle).
ESMF_REGRIDSTATUS_EXMAPPED
The destination location was not within the unmasked source grid, and so typically it wouldn't be regridded. However, extrapolation was used, and so it has been regridded (i.e. there is an entry for it within the factorIndexList or routeHandle).

In addition to the above, regridding using the conservative method can result in other values. The reason for this is that in that method one destination cell can overlap multiple source cells, so a single destination can have a combination of values. The following are the additional values that apply to the conservative method:

ESMF_REGRIDSTATUS_SMSK_OUT
The destination cell overlaps a masked source cell, and extends outside the source grid.
ESMF_REGRIDSTATUS_SMSK_MP
The destination cell overlaps a masked source cell, and an unmasked source cell. (Because it overlaps with the unmasked source grid, there will be an entry for the destination cell within the factorIndexList or routeHandle).
ESMF_REGRIDSTATUS_OUT_MP
The destination cell overlaps an unmasked source cell, and extends outside the source grid. (Because it overlaps with the unmasked source grid, there will be an entry for the destination cell within the factorIndexList or routeHandle).
ESMF_REGRIDSTATUS_SMSK_OUT_MP
The destination cell overlaps a masked source cell, an unmasked source cell, and extends outside the source grid. (Because it overlaps with the unmasked source grid, there will be an entry for the destination cell within the factorIndexList or routeHandle).


52.51 ESMF_ROUTESYNC

DESCRIPTION:
Switch between blocking and non-blocking execution of RouteHandle based communication calls. Every RouteHandle based communication method contains an optional argument routesyncflag that is of type ESMF_RouteSync_Flag.

The type of this flag is:

type(ESMF_RouteSync_Flag)

The valid values are:

ESMF_ROUTESYNC_BLOCKING
Execute a precomputed communication pattern in blocking mode. This mode guarantees that when the method returns all PET-local data transfers, both in-bound and out-bound, have finished.
ESMF_ROUTESYNC_NBSTART
Start executing a precomputed communication pattern in non-blocking mode. When a method returns from being called in this mode, it guarantees that all PET-local out-bound data has been transferred. It is now safe for the user to overwrite out-bound data elements. No guarantees are made for in-bound data elements at this stage. It is unsafe to access these elements until a call in ESMF_ROUTESYNC_NBTESTFINISH mode has been issued and has returned with finishedflag equal to .true., or a call in ESMF_ROUTESYNC_NBWAITFINISH mode has been issued and has returned.
ESMF_ROUTESYNC_NBTESTFINISH
Test whether the transfer of data of a precomputed communication pattern, started with ESMF_ROUTESYNC_NBSTART, has completed. Finish up as much as possible and set the finishedflag to .true. if all data operations have completed, or .false. if there are still outstanding transfers. Only after a finishedflag equal to .true. has been returned is it safe to access any of the in-bound data elements.
ESMF_ROUTESYNC_NBWAITFINISH
Wait (i.e. block) until the transfer of data of a precomputed communication pattern, started with ESMF_ROUTESYNC_NBSTART, has completed. Finish up all data operations and set the returned finishedflag to .true.. It is safe to access any of the in-bound data elements once the call has returned.
ESMF_ROUTESYNC_CANCEL
Cancel outstanding transfers for a precomputed communication pattern.

52.52 ESMF_SERVICEREPLY

This flag is documented in section 48.2.2.

52.53 ESMF_STAGGERLOC

This flag is documented in section 31.2.6.


52.54 ESMF_STARTREGION

DESCRIPTION:
Specifies the start of the effective halo region of an Array or Field object.

The type of this flag is:

type(ESMF_StartRegion_Flag)

The valid values are:

ESMF_STARTREGION_EXCLUSIVE
Region of elements that are exclusively owned by the local DE.
ESMF_STARTREGION_COMPUTATIONAL
User defined region, greater or equal to the exclusive region.

52.55 ESMF_STATEINTENT

This flag is documented in section 21.2.1.

52.56 ESMF_STATEITEM

This flag is documented in section 21.2.2.


52.57 ESMF_SYNC

DESCRIPTION:
Indicates method blocking behavior and PET synchronization for VM communication methods, as well as for standard Component methods, such as Initialize(), Run() and Finalize().

For VM communication calls the ESMF_SYNC_BLOCKING and ESMF_SYNC_NONBLOCKING modes provide behavior that is practically identical to the blocking and non-blocking communication calls familiar from MPI.

The details of how the blocking mode setting affects Component methods are more complex. This is a consequence of the fact that ESMF Components can be executed in threaded or non-threaded mode. However, in the default, non-threaded case, where an ESMF application runs as a pure MPI or mpiuni program, most of the complexity is removed.

See the VM item in 6.5 for an explanation of the PET and VAS concepts used in the following descriptions.

The type of this flag is:

type(ESMF_Sync_Flag)

The valid values are:

ESMF_SYNC_BLOCKING
Communication calls: The called method will block until all (PET-)local operations are complete. After the return of a blocking communication method it is safe to modify or use all participating local data.

Component calls: The called method will block until all PETs of the VM have completed the operation.

For a non-threaded, pure MPI component the behavior is identical to calling a barrier before returning from the method. Generally this kind of rigid synchronization is not the desirable mode of operation for an MPI application, but may be useful for application debugging. In the opposite case, where all PETs of the component are running as threads in shared memory, i.e. in a single VAS, strict synchronization of all PETs is required to prevent race conditions.

ESMF_SYNC_VASBLOCKING
Communication calls: Not available for communication calls.

Component calls: The called method will block each PET until all operations in the PET-local VAS have completed.

This mode is a combination of ESMF_SYNC_BLOCKING and ESMF_SYNC_NONBLOCKING modes. It provides a default setting that leads to the typically desirable behavior for pure MPI components as well as those that share address spaces between PETs.

For a non-threaded, pure MPI component each PET returns independent of the other PETs. This is generally the expected behavior in the pure MPI case where calling into a component method is practically identical to a subroutine call without extra synchronization between the processes.

In the case where some PETs of the component are running as threads in shared memory ESMF_SYNC_VASBLOCKING becomes identical to ESMF_SYNC_BLOCKING within thread groups, to prevent race conditions, while there is no synchronization between the thread groups.

ESMF_SYNC_NONBLOCKING
Communication calls: The called method will not block but returns immediately after initiating the requested operation. It is unsafe to modify or use participating local data before all local operations have completed. Use the ESMF_VMCommWait() or ESMF_VMCommQueueWait() method to block the local PET until local data access is safe again.

Component calls: The behavior of this mode is fundamentally different for threaded and non-threaded components, independent on whether the components use shared memory or not. The ESMF_SYNC_NONBLOCKING mode is the most complex mode for calling component methods and should only be used if the extra control, described below, is absolutely necessary.

For non-threaded components (the ESMF default) calling a component method with ESMF_SYNC_NONBLOCKING is identical to calling it with ESMF_SYNC_VASBLOCKING. However, different than for ESMF_SYNC_VASBLOCKING, a call to ESMF_GridCompWait() or ESMF_CplCompWait() is required in order to deallocate memory internally allocated for the ESMF_SYNC_NONBLOCKING mode.

For threaded components the calling PETs of the parent component will not be blocked and return immediately after initiating the requested child component method. In this scenario parent and child components will run concurrently in identical VASs. This is the most complex mode of operation. It is unsafe to modify or use VAS local data that may be accessed by concurrently running components until the child component method has completed. Use the appropriate ESMF_GridCompWait() or ESMF_CplCompWait() method to block the local parent PET until the child component method has completed in the local VAS.


52.58 ESMF_TERMORDER

DESCRIPTION:
Specifies the order of source terms in a destination sum, e.g. during sparse matrix multiplication.

The type of this flag is:

type(ESMF_TermOrder_Flag)

The valid values are:

ESMF_TERMORDER_SRCSEQ
The source terms are in strict ascending order according to their source sequence index.
ESMF_TERMORDER_SRCPET
The source terms are first ordered according to their distribution across the source side PETs: for each destination PET the source PET order starts with the localPet and decrements from there, modulo petCount, until all petCount PETs are accounted for. The term order within each source PET is given by the source term sequence index.
ESMF_TERMORDER_FREE
There is no prescribed term order. The source terms may be summed in any order that optimizes performance.


52.59 ESMF_TYPEKIND

DESCRIPTION:
Named constants used to indicate type and kind combinations supported by the overloaded ESMF interfaces. The corresponding Fortran kind-parameter constants are described in section 52.33.

The type of these named constants is:

type(ESMF_TypeKind_Flag)

The named constants numerical types are:

ESMF_TYPEKIND_I1
Indicates 1 byte integer.
(Only available if ESMF was built with ESMF_NO_INTEGER_1_BYTE = FALSE. This is not the default.)
ESMF_TYPEKIND_I2
Indicates 2 byte integer.
(Only available if ESMF was built with ESMF_NO_INTEGER_2_BYTE = FALSE. This is not the default.)
ESMF_TYPEKIND_I4
Indicates 4 byte integer.
ESMF_TYPEKIND_I8
Indicates 8 byte integer.
ESMF_TYPEKIND_R4
Indicates 4 byte real.
ESMF_TYPEKIND_R8
Indicates 8 byte real.

The named constants non-numerical types are:

ESMF_TYPEKIND_LOGICAL
Indicates a logical value.
ESMF_TYPEKIND_CHARACTER
Indicates a character string.


52.60 ESMF_UNMAPPEDACTION

DESCRIPTION:
Indicates what action to take with respect to unmapped destination points and the entries of the sparse matrix that correspond to these points.

The type of this flag is:

type(ESMF_UnmappedAction_Flag)

The valid values are:

ESMF_UNMAPPEDACTION_ERROR
An error is issued when there exist destination points in a regridding operation that are not mapped by corresponding source points.
ESMF_UNMAPPEDACTION_IGNORE
Destination points which do not have corresponding source points are ignored and zeros are used for the entries of the sparse matrix that is generated.


52.61 ESMF_VERSION

DESCRIPTION:
The following named constants define the precise version of ESMF in use.

ESMF_VERSION_BETASNAPSHOT
Constant of type logical indicating beta snapshot phase (.true. for any version during the pre-release development phase, .false. for any released version of the software).
ESMF_VERSION_MAJOR
Constant of type integer indicating the major version number (e.g. 5 for v5.2.0r).
ESMF_VERSION_MINOR
Constant of type integer indicating the minor version number (e.g. 2 for v5.2.0r).
ESMF_VERSION_PATCHLEVEL
Constant of type integer indicating the patch level of a specific revision (e.g. 0 for v5.2.0r, or 1 for v5.2.0rp1).
ESMF_VERSION_PUBLIC
Constant of type logical indicating public vs. internal release status (e.g. .true. for v5.2.0r, or .false. for v5.2.0).
ESMF_VERSION_REVISION
Constant of type integer indicating the revision number (e.g. 0 for v5.2.0r).
ESMF_VERSION_STRING
Constant of type character holding the exact release version string (e.g. "5.2.0r").

52.62 ESMF_VMEPOCH

This flag is documented in section 49.2.1.

52.63 ESMF_XGRIDSIDE

This flag is documented in section 34.2.1.

53 Appendix B: A Brief Introduction to UML

The schematic below shows the Unified Modeling Language (UML) notation for the class diagrams presented in this Reference Manual. For more on UML, see references such as The Unified Modeling Language Reference Manual, Rumbaugh et al, [32].

\scalebox{0.8}{\includegraphics{Appendix_uml}}


54 Appendix C: ESMF Error Return Codes

The tables below show the possible error return codes for Fortran and C methods.

 
 =====================================
 Fortran Symmetric Return Codes 1-500
 =====================================
 
  ESMF_SUCCESS               0
  ESMF_RC_OBJ_BAD            1
  ESMF_RC_OBJ_INIT           2
  ESMF_RC_OBJ_CREATE         3
  ESMF_RC_OBJ_COR            4
  ESMF_RC_OBJ_WRONG          5
  ESMF_RC_ARG_BAD            6
  ESMF_RC_ARG_RANK           7
  ESMF_RC_ARG_SIZE           8
  ESMF_RC_ARG_VALUE          9
  ESMF_RC_ARG_DUP           10
  ESMF_RC_ARG_SAMETYPE      11
  ESMF_RC_ARG_SAMECOMM      12
  ESMF_RC_ARG_INCOMP        13
  ESMF_RC_ARG_CORRUPT       14
  ESMF_RC_ARG_WRONG         15
  ESMF_RC_ARG_OUTOFRANGE    16
  ESMF_RC_ARG_OPT           17
  ESMF_RC_NOT_IMPL          18
  ESMF_RC_FILE_OPEN         19
  ESMF_RC_FILE_CREATE       20
  ESMF_RC_FILE_READ         21
  ESMF_RC_FILE_WRITE        22
  ESMF_RC_FILE_UNEXPECTED   23
  ESMF_RC_FILE_CLOSE        24
  ESMF_RC_FILE_ACTIVE       25
  ESMF_RC_PTR_NULL          26
  ESMF_RC_PTR_BAD           27
  ESMF_RC_PTR_NOTALLOC      28
  ESMF_RC_PTR_ISALLOC       29
  ESMF_RC_MEM               30
  ESMF_RC_MEM_ALLOCATE      31
  ESMF_RC_MEM_DEALLOCATE    32
  ESMF_RC_MEMC              33
  ESMF_RC_DUP_NAME          34
  ESMF_RC_LONG_NAME         35
  ESMF_RC_LONG_STR          36
  ESMF_RC_COPY_FAIL         37
  ESMF_RC_DIV_ZERO          38
  ESMF_RC_CANNOT_GET        39
  ESMF_RC_CANNOT_SET        40
  ESMF_RC_NOT_FOUND         41
  ESMF_RC_NOT_VALID         42
  ESMF_RC_INTNRL_LIST       43
  ESMF_RC_INTNRL_INCONS     44
  ESMF_RC_INTNRL_BAD        45
  ESMF_RC_SYS               46
  ESMF_RC_BUSY              47
  ESMF_RC_LIB               48
  ESMF_RC_LIB_NOT_PRESENT   49
  ESMF_RC_ATTR_UNUSED       50
  ESMF_RC_OBJ_NOT_CREATED   51
  ESMF_RC_OBJ_DELETED       52
  ESMF_RC_NOT_SET           53
  ESMF_RC_VAL_WRONG         54
  ESMF_RC_VAL_ERRBOUND      55
  ESMF_RC_VAL_OUTOFRANGE    56
  ESMF_RC_ATTR_NOTSET       57
  ESMF_RC_ATTR_WRONGTYPE    58
  ESMF_RC_ATTR_ITEMSOFF     59
  ESMF_RC_ATTR_LINK         60
  ESMF_RC_BUFFER_SHORT      61
  ESMF_RC_TIMEOUT           62
  ESMF_RC_FILE_EXISTS       63
  ESMF_RC_FILE_NOTDIR       64
  ESMF_RC_MOAB_ERROR        65
  ESMF_RC_NOOP              66
  ESMF_RC_NETCDF_ERROR      67
 
 68-499 reserved for future Fortran symmetric return code definitions
 
 =====================================
 C/C++ Symmetric Return Codes 501-999
 =====================================
 
  ESMC_RC_OBJ_BAD          501
  ESMC_RC_OBJ_INIT         502
  ESMC_RC_OBJ_CREATE       503
  ESMC_RC_OBJ_COR          504
  ESMC_RC_OBJ_WRONG        505
  ESMC_RC_ARG_BAD          506
  ESMC_RC_ARG_RANK         507
  ESMC_RC_ARG_SIZE         508
  ESMC_RC_ARG_VALUE        509
  ESMC_RC_ARG_DUP          510
  ESMC_RC_ARG_SAMETYPE     511
  ESMC_RC_ARG_SAMECOMM     512
  ESMC_RC_ARG_INCOMP       513
  ESMC_RC_ARG_CORRUPT      514
  ESMC_RC_ARG_WRONG        515
  ESMC_RC_ARG_OUTOFRANGE   516
  ESMC_RC_ARG_OPT          517
  ESMC_RC_NOT_IMPL         518
  ESMC_RC_FILE_OPEN        519
  ESMC_RC_FILE_CREATE      520
  ESMC_RC_FILE_READ        521
  ESMC_RC_FILE_WRITE       522
  ESMC_RC_FILE_UNEXPECTED  523
  ESMC_RC_FILE_CLOSE       524
  ESMC_RC_FILE_ACTIVE      525
  ESMC_RC_PTR_NULL         526
  ESMC_RC_PTR_BAD          527
  ESMC_RC_PTR_NOTALLOC     528
  ESMC_RC_PTR_ISALLOC      529
  ESMC_RC_MEM              530
  ESMC_RC_MEM_ALLOCATE     531
  ESMC_RC_MEM_DEALLOCATE   532
  ESMC_RC_MEMC             533
  ESMC_RC_DUP_NAME         534
  ESMC_RC_LONG_NAME        535
  ESMC_RC_LONG_STR         536
  ESMC_RC_COPY_FAIL        537
  ESMC_RC_DIV_ZERO         538
  ESMC_RC_CANNOT_GET       539
  ESMC_RC_CANNOT_SET       540
  ESMC_RC_NOT_FOUND        541
  ESMC_RC_NOT_VALID        542
  ESMC_RC_INTNRL_LIST      543
  ESMC_RC_INTNRL_INCONS    544
  ESMC_RC_INTNRL_BAD       545
  ESMC_RC_SYS              546
  ESMC_RC_BUSY             547
  ESMC_RC_LIB              548
  ESMC_RC_LIB_NOT_PRESENT  549
  ESMC_RC_ATTR_UNUSED      550
  ESMC_RC_OBJ_NOT_CREATED  551
  ESMC_RC_OBJ_DELETED      552
  ESMC_RC_NOT_SET          553
  ESMC_RC_VAL_WRONG        554
  ESMC_RC_VAL_ERRBOUND     555
  ESMC_RC_VAL_OUTOFRANGE   556
  ESMC_RC_ATTR_NOTSET      557
  ESMC_RC_ATTR_WRONGTYPE   558
  ESMC_RC_ATTR_ITEMSOFF    559
  ESMC_RC_ATTR_LINK        560
  ESMC_RC_BUFFER_SHORT     561
  ESMC_RC_TIMEOUT          562
  ESMC_RC_FILE_EXISTS      563
  ESMC_RC_FILE_NOTDIR      564
  ESMC_RC_MOAB_ERROR       565
  ESMC_RC_NOOP             566
  ESMC_RC_NETCDF_ERROR     567
 
 568-999 reserved for future C/C++ symmetric return code definitions
 
 =====================================
 C/C++ Non-symmetric Return Codes 1000
 =====================================
 
  ESMC_RC_OPTARG_BAD      1000


55 Appendix D: Attribute Class Legacy API

Documentation for the legacy ESMF_Attribute Class. It is recommended that users use or migrate to the ESMF_Info class (see section 39).


55.0.1 ESMF_ATTCOPY

DESCRIPTION:
Indicates which type of copy behavior is used when copying ESMF Attribute objects.

The type of this flag is:

type(ESMF_AttCopy_Flag)

The valid values are:

ESMF_ATTCOPY_REFERENCE
The destination Attribute hierarchy becomes a reference copy of the Attribute hierarchy of the source object. Any further changes to one will also be reflected in the other.
ESMF_ATTCOPY_VALUE
All of the Attributes and Attribute packages of the source object will be copied by value to the destination object. None of the Attribute links to the Attribute hierarchies of other objects are copied to the destination object.


55.0.2 ESMF_ATTGETCOUNT

DESCRIPTION:
Indicates which type of Attribute object count to return.

The type of this flag is:

type(ESMF_AttGetCountFlag)

The valid values are:

ESMF_ATTGETCOUNT_ATTRIBUTE
This option will allow the routine to return the number of single Attributes.
ESMF_ATTGETCOUNT_ATTPACK
This option will allow the routine to return the number of Attribute packages.
ESMF_ATTGETCOUNT_TOTAL
This option will allow the routine to return the total number of Attributes.


55.0.3 ESMF_ATTWRITE

DESCRIPTION:
Indicates which file format to use in the write operation.

The type of this flag is:

type(ESMF_AttWriteFlag)

The valid values are:

ESMF_ATTWRITE_JSON
This option will allow the routine to write in JSON format.

55.0.4 ESMF_AttributeAdd - Add an ESMF Attribute package


INTERFACE:

       ! Private name; call using ESMF_AttributeAdd()
       subroutine ESMF_AttAddPackInfo(info, convention, purpose, attrList, &
         nestConvention, nestPurpose, attpack, rc)
ARGUMENTS:
       type(<ESMF_Info>),   intent(inout)           :: info
       character (len = *), intent(in)              :: convention
       character (len = *), intent(in)              :: purpose
       character (len = *), intent(in),    optional :: attrList(:)
       character (len = *), intent(in)     optional :: nestConvention
       character (len = *), intent(in)     optional :: nestPurpose
       type(ESMF_AttPack),  intent(out),   optional :: attpack
       integer,             intent(inout), optional :: rc
DESCRIPTION:

Add an ESMF Attribute package.

The arguments are:

info
An ESMF_Info object.
convention
The convention of the new Attribute package.
purpose
The purpose of the new Attribute package.
[attrList]
The list of Attribute names to add to the Attribute package.
[nestConvention]
The convention(s) of the standard Attribute package(s) around which to nest the new Attribute package.
[nestPurpose]
The purpose(s) of the standard Attribute package(s) around which to nest the new Attribute package.
[attpack]
An optional handle to the Attribute package that is to be created.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.5 ESMF_AttributeAdd - Add a nested ESMF Attribute package


INTERFACE:

       ! Private name; call using ESMF_AttributeAdd()
       subroutine ESMF_AttAddPackStd(target, convention, purpose, attrList, &
         nestConvention, nestPurpose, attpack, rc)
ARGUMENTS:
       type(<object>),      intent(inout)           :: target
       character (len = *), intent(in)              :: convention
       character (len = *), intent(in)              :: purpose
       character (len = *), intent(in),    optional :: attrList(:)
       character (len = *), intent(in)     optional :: nestConvention
       character (len = *), intent(in)     optional :: nestPurpose
       type(ESMF_AttPack),  intent(out),   optional :: attpack
       integer,             intent(inout), optional :: rc
DESCRIPTION:

Add an ESMF Attribute package containing a nested Attribute package.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
convention
The convention of the new Attribute package.
purpose
The purpose of the new Attribute package.
[attrList]
The list of Attribute names to add to the Attribute package.
[nestConvention]
The convention(s) of the standard Attribute package(s) around which to nest the new Attribute package.
[nestPurpose]
The purpose(s) of the standard Attribute package(s) around which to nest the new Attribute package.
[attpack]
An optional handle to the Attribute package that is to be created.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.6 ESMF_AttributeCopy - Copy an Attribute hierarchy


INTERFACE:

       ! Private name; call using ESMF_AttributeCopy()
       subroutine ESMF_AttributeCopy(src, dst, attcopy, rc)
ARGUMENTS:
       type(<object>),          intent(in)            :: src
       type(<object>),          intent(inout)         :: dst
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       type(ESMF_AttCopy_Flag), intent(in),  optional :: attcopy
       integer,                 intent(out), optional :: rc
DESCRIPTION:

Copy an Attribute hierarchy from src to dst.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

NOTE: Copies between different ESMF object types are not possible.

The arguments are:

src
An Attribute-bearing ESMF object.
dst
An Attribute-bearing ESMF object.
[attcopy]
A flag to determine if the copy is by value (the default) or reference. This flag is documented in section 55.0.1.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.7 ESMF_AttributeGet - Get an Attribute from an ESMF_AttPack


INTERFACE:

       subroutine ESMF_AttributeGet(target, name, attpack, <value> &
         <defaultvalue>, attnestflag, isPresent, rc)
ARGUMENTS:
       type(<object>),         intent(in)              :: target
       character (len = *),    intent(in)              :: name
       type(ESMF_AttPack),     intent(inout)           :: attpack
       <value>, see below for supported values
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       <defaultvalue>, see below for supported values
       type(ESMF_AttNest_Flag),intent(in),  optional   :: attnestflag
       logical,                intent(out), optional   :: isPresent
       integer,                intent(inout), optional :: rc
DESCRIPTION:

Return an Attribute value from the target, or from an Attribute package on the target, specified by attpack. A defaultvalue argument may be given if a return code is not desired when the Attribute is not found.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <value> and <defaultvalue> are:

integer(ESMF_KIND_I4), intent(out)
integer(ESMF_KIND_I8), intent(out)
real (ESMF_KIND_R4), intent(out)
real (ESMF_KIND_R8), intent(out)
logical, intent(out)
character (len = *), intent(out)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to retrieve.
attpack
A handle to the Attribute package.
<value>
The value of the named Attribute.
[<defaultvalue>]
The default value of the named Attribute.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.8 ESMF_AttributeGet - Get an Attribute from an ESMF_AttPack


INTERFACE:

       subroutine ESMF_AttributeGet(target, name, attpack, <valueList>, &
         <defaultvalueList>, attnestflag, itemCount, &
         isPresent, rc)
ARGUMENTS:
       type(<object>),         intent(in)              :: target
       character (len = *),    intent(in)              :: name
       type(ESMF_AttPack),     intent(inout)           :: attpack
       <valueList>, see below for supported values
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       <defaultvalueList>, see below for supported values
       type(ESMF_AttNest_Flag),intent(in),  optional   :: attnestflag
       integer,                intent(out), optional   :: itemCount
       logical,                intent(out), optional   :: isPresent
       integer,                intent(inout), optional :: rc
DESCRIPTION:

Return an Attribute valueList from the target, or from an Attribute package on the target, specified by attpack. A defaultvalueList list argument may be given if a return code is not desired when the Attribute is not found.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <valueList> and <defaultvalueList> are:

integer(ESMF_KIND_I4), intent(out), dimension(:)
integer(ESMF_KIND_I8), intent(out), dimension(:)
real(ESMF_KIND_R4), intent(out), dimension(:)
real(ESMF_KIND_R8), intent(out), dimension(:)
logical, intent(out), dimension(:)
character(len=*), intent(out), dimension(:)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to retrieve.
attpack
A handle to the Attribute package.
<valueList>
The valueList of the named Attribute.
[<defaultvalueList>]
The default value list of the named Attribute.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[itemCount]
The number of items in a multi-valued Attribute.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.9 ESMF_AttributeGet - Get an Attribute


INTERFACE:

       subroutine ESMF_AttributeGet(target, name, <value>, <defaultvalue>, &
         convention, purpose, attnestflag, isPresent, rc)
ARGUMENTS:
       type(<object>),         intent(in)              :: target
       character (len = *),    intent(in)              :: name
       <value>, see below for supported values
       <defaultvalue>, see below for supported values
       character (len = *),    intent(in),    optional :: convention
       character (len = *),    intent(in),    optional :: purpose
       type(ESMF_AttNest_Flag),intent(in),    optional :: attnestflag
       logical,                intent(out),   optional :: isPresent
       integer,                intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Return an Attribute value from the target, or from an Attribute package on the target, specified by convention and purpose. A defaultvalue argument may be given if a return code is not desired when the Attribute is not found.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <value> and <defaultvalue> are:

integer(ESMF_KIND_I4), intent(out)
integer(ESMF_KIND_I8), intent(out)
real (ESMF_KIND_R4), intent(out)
real (ESMF_KIND_R8), intent(out)
logical, intent(out)
character (len = *), intent(out)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to retrieve.
<value>
The value of the named Attribute.
[<defaultvalue>]
The default value of the named Attribute.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.10 ESMF_AttributeGet - Get an Attribute


INTERFACE:

       subroutine ESMF_AttributeGet(target, name, <valueList>, <defaultvalueList>, &
         convention, purpose, attnestflag, itemCount, isPresent, rc)
ARGUMENTS:
       type(<object>),         intent(in)              :: target
       character (len = *),    intent(in)              :: name
       <valueList>, see below for supported values
       <defaultvalueList>, see below for supported values
       character (len = *),    intent(in),    optional :: convention
       character (len = *),    intent(in),    optional :: purpose
       type(ESMF_AttNest_Flag),intent(in),    optional :: attnestflag
       integer,                intent(out),   optional :: itemCount
       logical,                intent(out),   optional :: isPresent
       integer,                intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Return an Attribute valueList from the target, or from an Attribute package on the target, specified by convention and purpose. A defaultvalueList list argument may be given if a return code is not desired when the Attribute is not found.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <valueList> and <defaultvalueList> are:

integer(ESMF_KIND_I4), intent(out), dimension(:)
integer(ESMF_KIND_I8), intent(out), dimension(:)
real(ESMF_KIND_R4), intent(out), dimension(:)
real(ESMF_KIND_R8), intent(out), dimension(:)
logical, intent(out), dimension(:)
character(len=*), intent(out), dimension(:)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to retrieve.
<valueList>
The valueList of the named Attribute.
[<defaultvalueList>]
The default value list of the named Attribute.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[itemCount]
The number of items in a multi-valued Attribute.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.11 ESMF_AttributeGet - Get the Attribute count from an ESMF_AttPack


INTERFACE:

       ! Private name; call using ESMF_AttributeGet()
       subroutine ESMF_AttributeGetCount(target, attpack, count, &
                                         attcountflag, attnestflag, rc)
ARGUMENTS:
       type(<object>),             intent(in)              :: target
       type(ESMF_AttPack),         intent(inout)           :: attpack
       integer,                    intent(inout)           :: count
       type(ESMF_AttGetCountFlag), intent(in),    optional :: attcountflag
       type(ESMF_AttNest_Flag),    intent(in),    optional :: attnestflag
       integer,                    intent(inout), optional :: rc
DESCRIPTION:

Return the Attribute count for target.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
attpack
A handle to the Attribute package.
count
The number of all existing Attributes of the type designated in the attcountflag, not just Attribute that have been set.
[attcountflag]
The flag to specify which attribute count to return, the default is ESMF_ATTGETCOUNT_ATTRIBUTE. This flag is documented in section 55.0.2.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.12 ESMF_AttributeGet - Get the Attribute count


INTERFACE:

       ! Private name; call using ESMF_AttributeGet()
       subroutine ESMF_AttributeGetCount(target, count, convention, purpose, &
         attcountflag, attnestflag, rc)
ARGUMENTS:
       type(<object>),             intent(in)              :: target
       integer,                    intent(inout)           :: count
       character (len=*),          intent(in),    optional :: convention
       character (len=*),          intent(in),    optional :: purpose
       type(ESMF_AttGetCountFlag), intent(in),    optional :: attcountflag
       type(ESMF_AttNest_Flag),    intent(in),    optional :: attnestflag
       integer,                    intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Return the Attribute count for target.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
count
The number of all existing Attributes of the type designated in the attcountflag, not just Attribute that have been set.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attcountflag]
The flag to specify which attribute count to return, the default is ESMF_ATTGETCOUNT_ATTRIBUTE. This flag is documented in section 55.0.2.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.13 ESMF_AttributeGet - Get Attribute info by name from an ESMF_AttPack


INTERFACE:

       ! Private name; call using ESMF_AttributeGet()
       subroutine ESMF_AttributeGetInfoByNamAP(target, name, attpack, &
         attnestflag, typekind, itemCount, isPresent, rc)
ARGUMENTS:
       type(<object>),           intent(in)              :: target
       character (len = *),      intent(in)              :: name
       type(ESMF_AttPack),       intent(inout)           :: attpack
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       type(ESMF_AttNest_Flag),  intent(in),    optional :: attnestflag
       type(ESMF_TypeKind_Flag), intent(out),   optional :: typekind
       integer,                  intent(out),   optional :: itemCount
       logical,                  intent(out),   optional :: isPresent
       integer,                  intent(inout), optional :: rc
DESCRIPTION:

Return information associated with an Attribute in an Attribute package, including typekind and itemCount.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
name
The name of the Attribute to query.
attpack
A handle to the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[typekind]
The typekind of the Attribute. This flag is documented in section 52.59.
[itemCount]
The number of items in this Attribute.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.14 ESMF_AttributeGet - Get Attribute info by name


INTERFACE:

       ! Private name; call using ESMF_AttributeGet()
       subroutine ESMF_AttributeGetInfoByNam(target, name, &
         convention, purpose, attnestflag, typekind, itemCount, isPresent, rc)
ARGUMENTS:
       type(<object>),           intent(in)              :: target
       character (len = *),      intent(in)              :: name
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       character (len=*),        intent(in),    optional :: convention
       character (len=*),        intent(in),    optional :: purpose
       type(ESMF_AttNest_Flag),  intent(in),    optional :: attnestflag
       type(ESMF_TypeKind_Flag), intent(out),   optional :: typekind
       integer,                  intent(out),   optional :: itemCount
       logical,                  intent(out),   optional :: isPresent
       integer,                  intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Return information associated with the named Attribute, including typekind and itemCount.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
name
The name of the Attribute to query.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[typekind]
The typekind of the Attribute. This flag is documented in section 52.59.
[itemCount]
The number of items in this Attribute.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.15 ESMF_AttributeGet - Get Attribute info by index number


INTERFACE:

       ! Private name; call using ESMF_AttributeGet()
       subroutine ESMF_AttributeGetInfoByNum(target, attributeIndex, &
         name, convention, purpose, attnestflag, typekind, itemcount, isPresent, &
         rc)
ARGUMENTS:
       type(<object>),           intent(in)              :: target
       integer,                  intent(in)              :: attributeIndex
       character (len = *),      intent(out)             :: name
       character (len = *),      intent(in),    optional :: convention
       character (len = *),      intent(in),    optional :: purpose
       type(ESMF_AttNest_Flag),  intent(in),    optional :: attnestflag
       type(ESMF_TypeKind_Flag), intent(out),   optional :: typekind
       integer,                  intent(out),   optional :: itemCount
       logical,                  intent(out),   optional :: isPresent
       integer,                  intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Returns information associated with the indexed Attribute, including name, typekind and itemCount. Keep in mind that these indices start from 1, as expected in a Fortran API.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
attributeIndex
The index number of the Attribute to query.
name
The name of the Attribute.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when looking for this Attribute, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[typekind]
The typekind of the Attribute. This flag is documented in section 52.59.
[itemCount]
The number of items in this Attribute.
[isPresent]
A logical flag to tell if this Attribute is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.16 ESMF_AttributeGetAttPack - Get an ESMF Attribute package object and/or query for presence


INTERFACE:

       ! Private name; call using ESMF_AttributeGetAttPack()
       subroutine ESMF_AttGetAttPack(target, convention, purpose, &
         attpack, attnestflag, isPresent, rc)
ARGUMENTS:
       type(<object>),          intent(in)               :: target
       character (len = *),     intent(in)               :: convention
       character (len = *),     intent(in)               :: purpose
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       type(ESMF_AttPack),      intent(inout),  optional :: attpack
       type(ESMF_AttNest_Flag), intent(in),     optional :: attnestflag
       logical,                 intent(out),    optional :: isPresent
       integer,                 intent(out),    optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Get an ESMF Attribute package object.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

<object>
An ESMF object.
convention
The convention of the Attribute package.
purpose
The purpose of the Attribute package.
[attpack]
A handle to the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when searching for this Attribute package, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[isPresent]
A logical flag to tell if this Attribute package is present or not.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.17 ESMF_AttributeRemove - Remove an Attribute or Attribute package using an ESMF_AttPack


INTERFACE:

       subroutine ESMF_AttributeRemove(target, name, &
         attpack, attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(inout)           :: target
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       character (len = *),     intent(in),    optional :: name
       type(ESMF_AttPack),      intent(inout), optional :: attpack
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
DESCRIPTION:

Remove an Attribute, or Attribute package on target.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
[name]
The name of the Attribute to remove.
attpack
A handle to the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when searching for this Attribute package, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

NOTE: An entire Attribute package can be removed by specifying attpack only, without name. By specifying attpack an Attribute will be removed from the corresponding Attribute package, if it exists. An Attribute can be removed directly from target by specifying name, without attpack.

55.0.18 ESMF_AttributeRemove - Remove an Attribute or Attribute package


INTERFACE:

       subroutine ESMF_AttributeRemove(target, name, convention, purpose, &
         attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(inout)           :: target
       character (len = *),     intent(in),    optional :: name
       character (len = *),     intent(in),    optional :: convention
       character (len = *),     intent(in),    optional :: purpose
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Remove an Attribute, or Attribute package on target.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

The arguments are:

target
An ESMF object.
[name]
The name of the Attribute to remove.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[attnestflag]
A flag to determine whether to descend the Attribute hierarchy when searching for this Attribute package, the default is ESMF_ATTNEST_ON. This flag is documented in section 52.5.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

NOTE: An entire Attribute package can be removed by specifying convention, purpose, and attPackInstanceName only, without name. An Attribute can be removed directly from <object> by specifying name, without convention, purpose, and attPackInstanceName.

55.0.19 ESMF_AttributeSet - Set an Attribute in an ESMF_AttPack


INTERFACE:

       subroutine ESMF_AttributeSet(target, name, <value>, attpack, &
         itemcount, attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(in)              :: target
       character (len = *),     intent(in)              :: name
       <value>, see below for supported values
       type(ESMF_AttPack),      intent(inout)           :: attpack
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       integer,                 intent(in),    optional :: itemcount
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
DESCRIPTION:

Attach an Attribute to target, or set an Attribute in an Attribute package. The Attribute has a name and value, and, if in an Attribute package, a attpack.

The itemcount and attnestflag are NOOP. The target is a NOOP if the attpack is used.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <value> and <defaultvalue> are:

integer(ESMF_KIND_I4), intent(out)
integer(ESMF_KIND_I8), intent(out)
real (ESMF_KIND_R4), intent(out)
real (ESMF_KIND_R8), intent(out)
logical, intent(out)
character (len = *), intent(out)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to set.
<value>
The value of the Attribute to set.
attpack
A handle to the Attribute package.
[itemcount]
This parameter is only included for backward compatibility, it is NOOP.
[attnestflag]
This parameter is only included for backward compatibility, it is NOOP.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.20 ESMF_AttributeSet - Set an Attribute in an ESMF_AttPack


INTERFACE:

       subroutine ESMF_AttributeSet(target, name, <valueList>, attpack, &
         itemCount,  attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(in)              :: target
       character (len = *),     intent(in)              :: name
       <valueList>, see below for supported values
       type(ESMF_AttPack),      intent(inout)           :: attpack
 -- The following arguments require argument keyword syntax (e.g. rc=rc). --
       integer,                 intent(in),    optional :: itemcount
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
DESCRIPTION:

Attach an Attribute to target, or set an Attribute in an Attribute package. The Attribute has a name and a valueList, with an itemCount, and, if in an Attribute package, a attpack.

The itemcount and attnestflag are NOOP. The target is a NOOP if the attpack is used.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <valueList> and <defaultvalueList> are:

integer(ESMF_KIND_I4), intent(out), dimension(:)
integer(ESMF_KIND_I8), intent(out), dimension(:)
real(ESMF_KIND_R4), intent(out), dimension(:)
real(ESMF_KIND_R8), intent(out), dimension(:)
logical, intent(out), dimension(:)
character(len=*), intent(out), dimension(:)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to set.
<valueList>
The valueList of the Attribute to set.
attpack
A handle to the Attribute package.
[itemcount]
This parameter is only included for backward compatibility, it is NOOP.
[attnestflag]
This parameter is only included for backward compatibility, it is NOOP.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.21 ESMF_AttributeSet - Set an Attribute


INTERFACE:

       subroutine ESMF_AttributeSet(target, name, <value>, &
         convention, purpose, itemcount, attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(inout)           :: target
       character (len = *),     intent(in)              :: name
       <value>, see below for supported values
       character (len = *),     intent(in),    optional :: convention
       character (len = *),     intent(in),    optional :: purpose
       integer,                 intent(in),    optional :: itemcount
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Attach an Attribute to target, or set an Attribute in an Attribute package. The Attribute has a name and value, and, if in an Attribute package, convention and purpose.

The itemcount and attnestflag are NOOP.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <value> and <defaultvalue> are:

integer(ESMF_KIND_I4), intent(out)
integer(ESMF_KIND_I8), intent(out)
real (ESMF_KIND_R4), intent(out)
real (ESMF_KIND_R8), intent(out)
logical, intent(out)
character (len = *), intent(out)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to set.
<value argument>
The value of the Attribute to set.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[itemcount]
This parameter is only included for backward compatibility, it is NOOP.
[attnestflag]
This parameter is only included for backward compatibility, it is NOOP.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.22 ESMF_AttributeSet - Set an Attribute


INTERFACE:

       subroutine ESMF_AttributeSet(target, name, <valueList>, &
         convention, purpose, itemCount, attnestflag, rc)
ARGUMENTS:
       type(<object>),          intent(inout)           :: target
       character (len = *),     intent(in)              :: name
       <valueList>, see below for supported values
       character (len = *),     intent(in),    optional :: convention
       character (len = *),     intent(in),    optional :: purpose
       integer,                 intent(in),    optional :: itemcount
       type(ESMF_AttNest_Flag), intent(in),    optional :: attnestflag
       integer,                 intent(inout), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Attach an Attribute to target, or set an Attribute in an Attribute package. The Attribute has a name and a valueList, with an itemCount, and, if in an Attribute package, convention and purpose.

The itemcount and attnestflag are NOOP.

Supported values for <object> are:

ESMF_Array
ESMF_ArrayBundle
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_DistGrid
ESMF_Field
ESMF_FieldBundle
ESMF_Grid
ESMF_State
ESMF_LocStream
ESMF_Mesh

Supported types for <valueList> and <defaultvalueList> are:

integer(ESMF_KIND_I4), intent(out), dimension(:)
integer(ESMF_KIND_I8), intent(out), dimension(:)
real(ESMF_KIND_R4), intent(out), dimension(:)
real(ESMF_KIND_R8), intent(out), dimension(:)
logical, intent(out), dimension(:)
character(len=*), intent(out), dimension(:)

The arguments are:

target
An ESMF object.
name
The name of the Attribute to set.
<valueList>
The valueList of the Attribute to set.
[convention]
The convention of the Attribute package.
[purpose]
The purpose of the Attribute package.
[itemcount]
This parameter is only included for backward compatibility, it is NOOP.
[attnestflag]
This parameter is only included for backward compatibility, it is NOOP.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

55.0.23 ESMF_AttributeUpdate - Update an Attribute hierarchy


INTERFACE:

       subroutine ESMF_AttributeUpdate(target, vm, rootList, rc)
ARGUMENTS:
       <target>, see below for supported values
       type(ESMF_VM), intent(in)            :: vm
       integer,       intent(in)            :: rootList(:)
       integer,       intent(out), optional :: rc
STATUS: The following parameters were removed in ESMF version 8.1.0:

DESCRIPTION:

Update an Attribute hierarchy during runtime. The information from the PETs in the rootList is transferred to the PETs that are not in the rootList. Care should be taken to ensure that the information contained in the Attributes on the PETs in the rootList is consistent.

Supported values for <object> are:

ESMF_State
ESMF_CplComp
ESMF_GridComp
ESMF_SciComp
ESMF_Field
ESMF_FieldBundle

The arguments are:

target
An ESMF object.
vm
The virtual machine over which this Attribute hierarchy should be updated.
rootList
The list of PETs that are to be used as the source of the update.
[rc]
Return code; equals ESMF_SUCCESS if there are no errors.

esmf_support@ucar.edu