Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_GridComp) | :: | comp | ||||
type(ESMF_State) | :: | importState | ||||
type(ESMF_State) | :: | exportState | ||||
type(ESMF_Clock) | :: | clock | ||||
integer, | intent(out) | :: | rc |
subroutine user_initP1(comp, importState, exportState, clock, rc) type(ESMF_GridComp) :: comp type(ESMF_State) :: importState, exportState type(ESMF_Clock) :: clock integer, intent(out) :: rc ! Local variables type(ESMF_Field) :: field ! Initialize return code rc = ESMF_SUCCESS print *, "User Comp2 Init phase=1 starting" call ESMF_LogWrite (msg='User Comp2 Init phase=1 starting', & logmsgFlag=ESMF_LOGMSG_TRACE) ! Create the destination Field and add it to the import State field = ESMF_FieldEmptyCreate(name="dstField", rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_StateAdd(importState, (/field/), rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_LogWrite (msg='User Comp2 Init phase=1 complete', & logmsgFlag=ESMF_LOGMSG_TRACE) print *, "User Comp2 Init phase=1 returning" end subroutine user_initP1