Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_FieldType), | pointer | :: | ftypep | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_FieldInitialize(ftypep, rc) ! ! !ARGUMENTS: type(ESMF_FieldType), pointer :: ftypep integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Takes an {\tt ESMF\_Field} object and default initialize its ! auxiliary data members. Only to be used by other Field Create methods. ! ! The arguments are: ! \begin{description} ! \item [ftypep] ! {\tt ESMF\_FieldType} object to be default initialized. ! \item [{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI ftypep%status = ESMF_FIELDSTATUS_UNINIT ftypep%iostatus = ESMF_STATUS_UNINIT ftypep%array_internal = .false. ftypep%geomb_internal = .false. ftypep%is_proxy = .false. ftypep%gridToFieldMap = -1 ftypep%ungriddedLBound = -1 ftypep%ungriddedUBound = -1 ftypep%totalLWidth = -1 ftypep%totalUWidth = -1 if(present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_FieldInitialize