subroutine ESMF_GridCompSet(gridcomp, keywordEnforcer, grid, gridList, &
mesh, meshList, locstream, locstreamList, xgrid, xgridList, &
config, configFile, clock, name, rc)
!
! !ARGUMENTS:
type(ESMF_GridComp), intent(inout) :: gridcomp
type(ESMF_KeywordEnforcer), optional:: keywordEnforcer ! must use keywords below
type(ESMF_Grid), intent(in), optional :: grid
type(ESMF_Grid), intent(in), optional :: gridList(:)
type(ESMF_Mesh), intent(in), optional :: mesh
type(ESMF_Mesh), intent(in), optional :: meshList(:)
type(ESMF_LocStream), intent(in), optional :: locstream
type(ESMF_LocStream), intent(in), optional :: locstreamList(:)
type(ESMF_XGrid), intent(in), optional :: xgrid
type(ESMF_XGrid), intent(in), optional :: xgridList(:)
type(ESMF_Config), intent(in), optional :: config
character(len=*), intent(in), optional :: configFile
type(ESMF_Clock), intent(in), optional :: clock
character(len=*), intent(in), optional :: name
integer, intent(out), optional :: rc
!
! !STATUS:
! \begin{itemize}
! \item\apiStatusCompatibleVersion{5.2.0r}
! \item\apiStatusModifiedSinceVersion{5.2.0r}
! \begin{description}
! \begin{sloppypar}
! \item[7.1.0r] Added arguments {\tt gridList}, {\tt mesh}, {\tt meshList},
! {\tt locstream}, {\tt locstreamList}, {\tt xgrid}, and {\tt xgridList}.
! These arguments add support for holding references to multiple geom objects,
! either of the same type, or different type, in the same
! {\tt ESMF\_GridComp} object.
! \end{sloppypar}
! \end{description}
! \end{itemize}
!
! !DESCRIPTION:
! Sets or resets information about an {\tt ESMF\_GridComp}.
!
! The arguments are:
! \begin{description}
! \item[gridcomp]
! {\tt ESMF\_GridComp} to change.
! \item[{[grid]}]
! Associate an {\tt ESMF\_Grid} object with the {\tt gridcomp} component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt grid} object.
! The {\tt grid} argument is mutually exclusive with the {\tt gridList}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt grid} nor {\tt gridList} are provided,
! the {\tt ESMF\_Grid} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[gridList]}]
! Associate a list of {\tt ESMF\_Grid} objects with the {\tt gridcomp}
! component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt gridList} object.
! The {\tt gridList} argument is mutually exclusive with the {\tt grid}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt grid} nor {\tt gridList} are provided,
! the {\tt ESMF\_Grid} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[mesh]}]
! Associate an {\tt ESMF\_Mesh} object with the {\tt gridcomp} component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt mesh} object.
! The {\tt mesh} argument is mutually exclusive with the {\tt meshList}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt mesh} nor {\tt meshList} are provided,
! the {\tt ESMF\_Mesh} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[meshList]}]
! Associate a list of {\tt ESMF\_Mesh} objects with the {\tt gridcomp}
! component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt meshList} object.
! The {\tt meshList} argument is mutually exclusive with the {\tt mesh}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt mesh} nor {\tt meshList} are provided,
! the {\tt ESMF\_Mesh} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[locstream]}]
! Associate an {\tt ESMF\_LocStream} object with the {\tt gridcomp} component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt locstream} object.
! The {\tt locstream} argument is mutually exclusive with the
! {\tt locstreamList}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt locstream} nor {\tt locstreamList} are
! provided, the {\tt ESMF\_LocStream} association of the incoming
! {\tt gridcomp} component remains unchanged.
! \item[{[locstreamList]}]
! Associate a list of {\tt ESMF\_LocStream} objects with the {\tt gridcomp}
! component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt locstreamList} object.
! The {\tt locstreamList} argument is mutually exclusive with the
! {\tt locstream}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt locstream} nor {\tt locstreamList} are
! provided, the {\tt ESMF\_LocStream} association of the incoming
! {\tt gridcomp} component remains unchanged.
! \item[{[xgrid]}]
! Associate an {\tt ESMF\_XGrid} object with the {\tt gridcomp} component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt xgrid} object.
! The {\tt xgrid} argument is mutually exclusive with the {\tt xgridList}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt xgrid} nor {\tt xgridList} are provided,
! the {\tt ESMF\_XGrid} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[xgridList]}]
! Associate a list of {\tt ESMF\_XGrid} objects with the {\tt gridcomp}
! component.
! This is simply a convenience feature for the user. The ESMF library code
! does not access the {\tt xgridList} object.
! The {\tt xgridList} argument is mutually exclusive with the {\tt xgrid}
! argument. If both arguments are provided, the routine will fail, and an
! error is returned in {\tt rc}.
! By default, i.e. if neither {\tt xgrid} nor {\tt xgridList} are provided,
! the {\tt ESMF\_XGrid} association of the incoming {\tt gridcomp}
! component remains unchanged.
! \item[{[config]}]
! An already-created {\tt ESMF\_Config} object to be attached to the
! component.
! If both {\tt config} and {\tt configFile} arguments are specified,
! {\tt config} takes priority.
! \item[{[configFile]}]
! The filename of an {\tt ESMF\_Config} format file.
! If specified, a new {\tt ESMF\_Config} object is created and attached to the
! component. The {\tt configFile} file is opened and associated
! with the new config object.
! If both {\tt config} and {\tt configFile} arguments are specified,
! {\tt config} takes priority.
! \item[{[clock]}]
! Set the private clock for this {\tt ESMF\_GridComp}.
! \item[{[name]}]
! Set the name of the {\tt ESMF\_GridComp}.
! \item[{[rc]}]
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
! \end{description}
!
!EOP
!------------------------------------------------------------------------------
integer :: localrc ! local return code
! initialize return code; assume routine not implemented
if (present(rc)) rc = ESMF_RC_NOT_IMPL
localrc = ESMF_RC_NOT_IMPL
ESMF_INIT_CHECK_DEEP(ESMF_GridCompGetInit,gridcomp,rc)
ESMF_INIT_CHECK_DEEP(ESMF_GridGetInit,grid,rc)
ESMF_INIT_CHECK_DEEP(ESMF_ConfigGetInit,config,rc)
ESMF_INIT_CHECK_DEEP(ESMF_ClockGetInit,clock,rc)
if (gridcomp%isNamedAlias .and. present(name)) then
! set NamedAlias name
gridcomp%name = trim(name)
! call Comp method (without name)
call ESMF_CompSet(gridcomp%compp, &
grid=grid, gridList=gridList, mesh=mesh, meshList=meshList, &
locstream=locstream, locstreamList=locstreamList, xgrid=xgrid, &
xgridList=xgridList, clock=clock, configFile=configFile, config=config, &
rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
else
! call Comp method
call ESMF_CompSet(gridcomp%compp, name=name, &
grid=grid, gridList=gridList, mesh=mesh, meshList=meshList, &
locstream=locstream, locstreamList=locstreamList, xgrid=xgrid, &
xgridList=xgridList, clock=clock, configFile=configFile, config=config, &
rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
endif
! return successfully
if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_GridCompSet