f_esmf_bundlecreate Subroutine

subroutine f_esmf_bundlecreate(bundlep, rc)

Uses

  • proc~~f_esmf_bundlecreate~~UsesGraph proc~f_esmf_bundlecreate f_esmf_bundlecreate ESMF_FieldBundleMod ESMF_FieldBundleMod proc~f_esmf_bundlecreate->ESMF_FieldBundleMod module~esmf_basemod ESMF_BaseMod proc~f_esmf_bundlecreate->module~esmf_basemod module~esmf_utiltypesmod ESMF_UtilTypesMod proc~f_esmf_bundlecreate->module~esmf_utiltypesmod module~esmf_basemod->module~esmf_utiltypesmod iso_c_binding iso_c_binding module~esmf_basemod->iso_c_binding module~esmf_initmacrosmod ESMF_InitMacrosMod module~esmf_basemod->module~esmf_initmacrosmod module~esmf_ioutilmod ESMF_IOUtilMod module~esmf_basemod->module~esmf_ioutilmod module~esmf_logerrmod ESMF_LogErrMod module~esmf_basemod->module~esmf_logerrmod module~esmf_vmmod ESMF_VMMod module~esmf_basemod->module~esmf_vmmod module~esmf_utiltypesmod->iso_c_binding module~esmf_initmacrosmod->module~esmf_utiltypesmod module~esmf_initmacrosmod->module~esmf_logerrmod module~esmf_ioutilmod->module~esmf_utiltypesmod module~esmf_logerrmod->module~esmf_utiltypesmod module~esmf_logerrmod->module~esmf_ioutilmod module~esmf_utilstringmod ESMF_UtilStringMod module~esmf_logerrmod->module~esmf_utilstringmod module~esmf_vmmod->module~esmf_utiltypesmod module~esmf_vmmod->iso_c_binding module~esmf_vmmod->module~esmf_initmacrosmod module~esmf_vmmod->module~esmf_ioutilmod module~esmf_vmmod->module~esmf_logerrmod module~esmf_f90interfacemod ESMF_F90InterfaceMod module~esmf_vmmod->module~esmf_f90interfacemod module~esmf_f90interfacemod->module~esmf_utiltypesmod module~esmf_f90interfacemod->module~esmf_logerrmod

Arguments

Type IntentOptional Attributes Name
type(ESMF_FieldBundle), pointer :: bundlep
integer, intent(out) :: rc

Calls

proc~~f_esmf_bundlecreate~~CallsGraph proc~f_esmf_bundlecreate f_esmf_bundlecreate esmf_fieldbundlecreate esmf_fieldbundlecreate proc~f_esmf_bundlecreate->esmf_fieldbundlecreate

Source Code

   subroutine f_esmf_bundlecreate(bundlep, rc)
     use ESMF_UtilTypesMod    ! ESMF generic types class
     use ESMF_BaseMod         ! ESMF base class
     use ESMF_FieldBundleMod

     implicit none

     type(ESMF_FieldBundle), pointer :: bundlep
     type(ESMF_FieldBundle), target :: thebundle
     integer, intent(out) :: rc              
     integer :: localrc

     ! Initialize return codes; assume routines not initialized
     rc = ESMF_RC_NOT_IMPL
     localrc = ESMF_RC_NOT_IMPL

     thebundle = ESMF_FieldBundleCreate(rc=localrc)
    
     bundlep => thebundle
     rc = localrc
   end subroutine f_esmf_bundlecreate