Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_XGrid) | :: | xgrid | ||||
integer, | intent(out) | :: | count | |||
integer, | intent(out) | :: | rc |
subroutine f_esmf_xgridgetsideameshcount(xgrid, count, rc) use ESMF_XGridMod use ESMF_XGridGetMod use ESMF_XGridCreateMod use ESMF_XGridGeomBaseMod use ESMF_UtilTypesMod use ESMF_BaseMod use ESMF_LogErrMod implicit none type(ESMF_XGrid) :: xgrid integer, intent(out) :: count integer, intent(out) :: rc ! Init rc rc = ESMF_RC_NOT_IMPL ! Get info call ESMF_XGridGet(xgrid, sideAMeshCount=count, rc=rc) if (ESMF_LogFoundError(rc, ESMF_ERR_PASSTHRU, & ESMF_CONTEXT, rcToReturn=rc)) return ! set rc to success rc = ESMF_SUCCESS end subroutine f_esmf_xgridgetsideameshcount