Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Mesh), | intent(in) | :: | mesh | |||
type(ESMF_MeshLoc), | intent(in), | optional | :: | loc | ||
integer, | intent(out), | optional | :: | rc |
function ESMF_XGridGeomBaseCreateMesh(mesh, loc, rc) ! ! !RETURN VALUE: type(ESMF_XGridGeomBase) :: ESMF_XGridGeomBaseCreateMesh ! ! !ARGUMENTS: type(ESMF_Mesh), intent(in) :: mesh type(ESMF_MeshLoc), intent(in), optional :: loc integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Create an {\tt ESMF\_XGridGeomBase} object from an {\tt ESMF\_Mesh} object. ! This will be overloaded for each type of object a GeomBase can represent. ! ! The arguments are: ! \begin{description} ! \item[mesh] ! {\tt ESMF\_Mesh} object to create the Mesh Base from. ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI type(ESMF_XGridGeomBaseClass),pointer :: gbcp integer :: localrc ! local error status type(ESMF_MeshLoc) :: localLoc ! Initialize return code; assume failure until success is certain localrc = ESMF_RC_NOT_IMPL if (present(rc)) rc = ESMF_RC_NOT_IMPL ! Check init status of arguments ESMF_INIT_CHECK_DEEP_SHORT(ESMF_MeshGetInit, mesh, rc) ! initialize pointers nullify(gbcp) nullify( ESMF_XGridGeomBaseCreateMesh%gbcp) ! allocate GeomBase type allocate(gbcp, stat=localrc) if (ESMF_LogFoundAllocError(localrc, msg="Allocating GeomBase type object", & ESMF_CONTEXT, rcToReturn=rc)) return ! Set default if (present(loc)) then localLoc=loc else localLoc=ESMF_MESHLOC_NODE endif ! Set values in GeomBase gbcp%type = ESMF_XGRIDGEOMTYPE_MESH gbcp%mesh = mesh gbcp%meshloc = localLoc ! Set GeomBase Type into GeomBase ESMF_XGridGeomBaseCreateMesh%gbcp=>gbcp ! Add reference to this object into ESMF garbage collection table call c_ESMC_VMAddFObject(ESMF_XGridGeomBaseCreateMesh, ESMF_ID_GEOMBASE%objectID) ! Set init status ESMF_INIT_SET_CREATED(ESMF_XGridGeomBaseCreateMesh) ! Return successfully if (present(rc)) rc = ESMF_SUCCESS end function ESMF_XGridGeomBaseCreateMesh