f_esmf_outputsimpleweightfile Subroutine

subroutine f_esmf_outputsimpleweightfile(fileName, count, factorList, factorIndexList, rc)

Uses

  • proc~~f_esmf_outputsimpleweightfile~~UsesGraph proc~f_esmf_outputsimpleweightfile f_esmf_outputsimpleweightfile module~esmf_ioscripmod ESMF_IOScripMod proc~f_esmf_outputsimpleweightfile->module~esmf_ioscripmod module~esmf_logerrmod ESMF_LogErrMod proc~f_esmf_outputsimpleweightfile->module~esmf_logerrmod module~esmf_utiltypesmod ESMF_UtilTypesMod proc~f_esmf_outputsimpleweightfile->module~esmf_utiltypesmod module~esmf_ioscripmod->module~esmf_logerrmod module~esmf_ioscripmod->module~esmf_utiltypesmod module~esmf_arraymod ESMF_ArrayMod module~esmf_ioscripmod->module~esmf_arraymod module~esmf_attpacktypemod ESMF_AttPackTypeMod module~esmf_ioscripmod->module~esmf_attpacktypemod module~esmf_distgridmod ESMF_DistGridMod module~esmf_ioscripmod->module~esmf_distgridmod module~esmf_infomod ESMF_InfoMod module~esmf_ioscripmod->module~esmf_infomod module~esmf_initmacrosmod ESMF_InitMacrosMod module~esmf_ioscripmod->module~esmf_initmacrosmod module~esmf_iogridmosaicmod ESMF_IOGridmosaicMod module~esmf_ioscripmod->module~esmf_iogridmosaicmod module~esmf_iogridspecmod ESMF_IOGridspecMod module~esmf_ioscripmod->module~esmf_iogridspecmod module~esmf_iougridmod ESMF_IOUGridMod module~esmf_ioscripmod->module~esmf_iougridmod module~esmf_utilmod ESMF_UtilMod module~esmf_ioscripmod->module~esmf_utilmod module~esmf_vmmod ESMF_VMMod module~esmf_ioscripmod->module~esmf_vmmod module~esmf_logerrmod->module~esmf_utiltypesmod module~esmf_ioutilmod ESMF_IOUtilMod module~esmf_logerrmod->module~esmf_ioutilmod module~esmf_utilstringmod ESMF_UtilStringMod module~esmf_logerrmod->module~esmf_utilstringmod iso_c_binding iso_c_binding module~esmf_utiltypesmod->iso_c_binding

Arguments

Type IntentOptional Attributes Name
character(len=*) :: fileName
integer :: count
real(kind=ESMF_KIND_R8) :: factorList(count)
integer(kind=ESMF_KIND_I4) :: factorIndexList(2,count)
integer :: rc

Calls

proc~~f_esmf_outputsimpleweightfile~~CallsGraph proc~f_esmf_outputsimpleweightfile f_esmf_outputsimpleweightfile proc~esmf_logfounderror ESMF_LogFoundError proc~f_esmf_outputsimpleweightfile->proc~esmf_logfounderror proc~esmf_outputsimpleweightfile ESMF_OutputSimpleWeightFile proc~f_esmf_outputsimpleweightfile->proc~esmf_outputsimpleweightfile 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 proc~esmf_outputsimpleweightfile->proc~esmf_logfounderror 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 proc~esmf_logclose->proc~esmf_logflush proc~esmf_logflush->proc~esmf_utiliounitflush proc~esmf_utilarray2string ESMF_UtilArray2String proc~esmf_logflush->proc~esmf_utilarray2string proc~esmf_logopenfile->proc~esmf_utiliounitflush proc~esmf_utiliounitget ESMF_UtilIOUnitGet proc~esmf_logopenfile->proc~esmf_utiliounitget

Source Code

subroutine f_esmf_outputsimpleweightfile(fileName, count, factorList, &
  factorIndexList, rc)
  use ESMF_UtilTypesMod
  use ESMF_IOScripMod
  use ESMF_LogErrMod
  
  implicit none
  
  character(len=*)          :: fileName
  integer                   :: count
  real(ESMF_KIND_R8)        :: factorList(count)
  integer(ESMF_KIND_I4)     :: factorIndexList(2,count)
  integer                   :: rc
  
  ! Initialize return code; assume routine not implemented
  rc = ESMF_RC_NOT_IMPL

  ! call into the ESMF_ routine
  call ESMF_OutputSimpleWeightFile(fileName, factorList, &
    factorIndexList, rc=rc)
  if (ESMF_LogFoundError(rc, &
    ESMF_ERR_PASSTHRU, &
    ESMF_CONTEXT)) return
  
  ! return successfully
  rc = ESMF_SUCCESS
  
end subroutine f_esmf_outputsimpleweightfile