Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_CplComp) | :: | ccomp | ||||
type(ESMF_State) | :: | importstate | ||||
type(ESMF_State) | :: | exportstate | ||||
type(ESMF_Clock) | :: | externalclock | ||||
integer, | intent(out) | :: | rc |
subroutine my_run(ccomp, importstate, exportstate, externalclock, rc) type(ESMF_CplComp) :: ccomp type(ESMF_State) :: importstate, exportstate type(ESMF_Clock) :: externalclock integer, intent(out) :: rc call ESMF_LogWrite("Coupler Run routine called", ESMF_LOGMSG_INFO) call ESMF_LogWrite("Coupler Run routine returning", ESMF_LOGMSG_INFO) rc=ESMF_SUCCESS end subroutine my_run