ESMF_TimeIntervalQuotR Function

private function ESMF_TimeIntervalQuotR(timeinterval, divisor)

Arguments

Type IntentOptional Attributes Name
type(ESMF_TimeInterval), intent(in) :: timeinterval
real(kind=ESMF_KIND_R8), intent(in) :: divisor

Return Value type(ESMF_TimeInterval)


Calls

proc~~esmf_timeintervalquotr~~CallsGraph proc~esmf_timeintervalquotr ESMF_TimeIntervalQuotR c_esmc_timeintervalquotr c_esmc_timeintervalquotr proc~esmf_timeintervalquotr->c_esmc_timeintervalquotr proc~esmf_imerrs ESMF_IMErrS proc~esmf_timeintervalquotr->proc~esmf_imerrs proc~esmf_timeintervalgetinit ESMF_TimeIntervalGetInit proc~esmf_timeintervalquotr->proc~esmf_timeintervalgetinit proc~esmf_timeintervalinit ESMF_TimeIntervalInit proc~esmf_timeintervalquotr->proc~esmf_timeintervalinit proc~esmf_initcheckshallow ESMF_InitCheckShallow proc~esmf_imerrs->proc~esmf_initcheckshallow proc~esmf_logfounderror ESMF_LogFoundError proc~esmf_imerrs->proc~esmf_logfounderror esmf_breakpoint esmf_breakpoint proc~esmf_logfounderror->esmf_breakpoint proc~esmf_logrc2msg ESMF_LogRc2Msg proc~esmf_logfounderror->proc~esmf_logrc2msg proc~esmf_logwrite ESMF_LogWrite proc~esmf_logfounderror->proc~esmf_logwrite c_esmc_loggeterrormsg c_esmc_loggeterrormsg proc~esmf_logrc2msg->c_esmc_loggeterrormsg c_esmc_vmwtime c_esmc_vmwtime proc~esmf_logwrite->c_esmc_vmwtime proc~esmf_logclose ESMF_LogClose proc~esmf_logwrite->proc~esmf_logclose proc~esmf_logflush ESMF_LogFlush proc~esmf_logwrite->proc~esmf_logflush proc~esmf_logopenfile ESMF_LogOpenFile proc~esmf_logwrite->proc~esmf_logopenfile proc~esmf_utiliounitflush ESMF_UtilIOUnitFlush proc~esmf_logwrite->proc~esmf_utiliounitflush proc~esmf_utilstring2array ESMF_UtilString2Array proc~esmf_logwrite->proc~esmf_utilstring2array

Called by

proc~~esmf_timeintervalquotr~~CalledByGraph proc~esmf_timeintervalquotr ESMF_TimeIntervalQuotR interface~operator(SLASH) operator(/) interface~operator(SLASH)->proc~esmf_timeintervalquotr

Source Code

      function ESMF_TimeIntervalQuotR(timeinterval, divisor)

! !RETURN VALUE:
      type(ESMF_TimeInterval) :: ESMF_TimeIntervalQuotR

! !ARGUMENTS:
      type(ESMF_TimeInterval), intent(in) :: timeinterval
      real(ESMF_KIND_R8),      intent(in) :: divisor

! !DESCRIPTION:
!     This method overloads the (/) operator for the {\tt ESMF\_TimeInterval}
!     class.  See "interface operator(/)" above for complete description.
!
!EOPI
      integer :: localrc

      ! check input
      ESMF_INIT_CHECK_SHALLOW_SHORT(ESMF_TimeIntervalGetInit,timeinterval,localrc)

      ! invoke C to C++ entry point
      call c_ESMC_TimeIntervalQuotR(timeinterval, divisor, &
                                    ESMF_TimeIntervalQuotR)

      ! mark output as successfully initialized
      call ESMF_TimeIntervalInit(ESMF_TimeIntervalQuotR)

      end function ESMF_TimeIntervalQuotR