! $Id: user_model1.F90,v 1.11 2011/06/30 06:00:41 theurich Exp $ ! ! Example/test code which shows User Component calls. !------------------------------------------------------------------------- !------------------------------------------------------------------------- ! ! !DESCRIPTION: ! User-supplied Component ! ! !\begin{verbatim} module user_model1 ! ESMF Framework module use ESMF implicit none private public userm1_setvm, userm1_register contains !------------------------------------------------------------------------- ! ! The Register routine sets the subroutines to be called ! ! as the init, run, and finalize routines. Note that these are ! ! private to the module. subroutine userm1_setvm(comp, rc) type(ESMF_GridComp) :: comp integer, intent(out) :: rc #ifdef ESMF_TESTWITHTHREADS type(ESMF_VM) :: vm logical :: pthreadsEnabled #endif ! Initialize user return code rc = ESMF_SUCCESS #ifdef ESMF_TESTWITHTHREADS ! The following call will turn on ESMF-threading (single threaded) ! for this component. If you are using this file as a template for ! your own code development you probably don't want to include the ! following call unless you are interested in exploring ESMF's ! threading features. ! First test whether ESMF-threading is supported on this machine call ESMF_VMGetGlobal(vm, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_VMGet(vm, pthreadsEnabledFlag=pthreadsEnabled, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out if (pthreadsEnabled) then call ESMF_GridCompSetVMMinThreads(comp, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out endif #endif end subroutine subroutine userm1_register(comp, rc) ! use complianceIC !!!!!! for external compliance I C !!!!!! type(ESMF_GridComp) :: comp integer, intent(out) :: rc ! Local variables integer :: localPet ! Initialize user return code rc = ESMF_SUCCESS call ESMF_GridCompGet(comp, localPet=localPet, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Register starting" ! Register the callback routines. call ESMF_GridCompSetEntryPoint(comp, ESMF_METHOD_INITIALIZE, userRoutine=user_init, & rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_GridCompSetEntryPoint(comp, ESMF_METHOD_RUN, userRoutine=user_run, & rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_GridCompSetEntryPoint(comp, ESMF_METHOD_FINALIZE, userRoutine=user_final, & rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out ! call registerIC(comp, rc=rc) !!!!!! for external compliance I C !!!!!! ! if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Register returning" end subroutine !------------------------------------------------------------------------- ! ! User Comp Component created by higher level calls, here is the ! ! Initialization routine. subroutine user_init(comp, importState, exportState, clock, rc) type(ESMF_GridComp) :: comp type(ESMF_State) :: importState, exportState type(ESMF_Clock) :: clock integer, intent(out) :: rc ! Local variables integer :: localPet type(ESMF_DistGrid) :: distgrid type(ESMF_Array) :: array type(ESMF_Field) :: field ! Initialize user return code rc = ESMF_SUCCESS call ESMF_GridCompGet(comp, localPet=localPet, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Init starting" distgrid = ESMF_DistGridCreate(minIndex=(/1,1/), maxIndex=(/5,5/), & regDecomp=(/2,3/), rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out array = ESMF_ArrayCreate(typekind=ESMF_TYPEKIND_R8, distgrid=distgrid, & rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out call ESMF_StateAdd(importState, (/array/), rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out field = ESMF_FieldEmptyCreate(name="myTestField", 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_AttributeAdd(field, convention="ESG", & purpose="General", rc=rc) call ESMF_AttributeSet(field, name="LongName", & value="ExchangeCorrelationEnergy", & convention="ESG", purpose="General", & rc=rc) print *, localPet, "User Comp1 Init returning" end subroutine user_init !------------------------------------------------------------------------- ! ! The Run routine where data is computed. ! ! subroutine user_run(comp, importState, exportState, clock, rc) type(ESMF_GridComp) :: comp type(ESMF_State) :: importState, exportState type(ESMF_Clock) :: clock integer, intent(out) :: rc ! Local variables integer :: localPet ! Initialize user return code rc = ESMF_SUCCESS call ESMF_GridCompGet(comp, localPet=localPet, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Run starting" call ESMF_ClockAdvance(clock, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Run returning" end subroutine user_run !------------------------------------------------------------------------- ! ! The Finalization routine where things are deleted and cleaned up. ! ! subroutine user_final(comp, importState, exportState, clock, rc) type(ESMF_GridComp) :: comp type(ESMF_State) :: importState, exportState type(ESMF_Clock) :: clock integer, intent(out) :: rc ! Local variables integer :: localPet ! Initialize user return code rc = ESMF_SUCCESS call ESMF_GridCompGet(comp, localPet=localPet, rc=rc) if (rc/=ESMF_SUCCESS) return ! bail out print *, localPet, "User Comp1 Final starting" print *, localPet, "User Comp1 Final returning" end subroutine user_final end module user_model1 !\end{verbatim}