Skip to content

Commit

Permalink
Update and rename datm_datamode_jra_mod.F90 to datm_datamode_jra55do_…
Browse files Browse the repository at this point in the history
…mod.F90

Module and subroutine names are changed to jra55do
  • Loading branch information
ezhilsabareesh8 authored Jul 12, 2023
1 parent d7d2377 commit ed01290
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module datm_datamode_jra_mod
module datm_datamode_jra55do_mod

use ESMF , only : ESMF_State, ESMF_StateGet, ESMF_SUCCESS, ESMF_LogWrite, ESMF_LOGMSG_INFO
use ESMF , only : ESMF_MeshGet
Expand Down Expand Up @@ -67,7 +67,7 @@ module datm_datamode_jra_mod
contains
!===============================================================================

subroutine datm_datamode_jra_advertise(exportState, fldsexport, flds_scalar_name, &
subroutine datm_datamode_jra55do_advertise(exportState, fldsexport, flds_scalar_name, &
flds_co2, flds_wiso, flds_presaero, flds_presndep, rc)

! input/output variables
Expand Down Expand Up @@ -137,10 +137,10 @@ subroutine datm_datamode_jra_advertise(exportState, fldsexport, flds_scalar_name
fldList => fldList%next
enddo

end subroutine datm_datamode_jra_advertise
end subroutine datm_datamode_jra55do_advertise

!===============================================================================
subroutine datm_datamode_jra_init_pointers(exportState, sdat, rc)
subroutine datm_datamode_jra55do_init_pointers(exportState, sdat, rc)

! input/output variables
type(ESMF_State) , intent(inout) :: exportState
Expand Down Expand Up @@ -223,10 +223,10 @@ subroutine datm_datamode_jra_init_pointers(exportState, sdat, rc)
call shr_sys_abort(trim(subname)//'ERROR: prec and swdn must be in streams for CORE_IAF_JRA')
endif

end subroutine datm_datamode_jra_init_pointers
end subroutine datm_datamode_jra55do_init_pointers

!===============================================================================
subroutine datm_datamode_jra_advance(exportstate, target_ymd, target_tod, model_calendar, rc)
subroutine datm_datamode_jra55do_advance(exportstate, target_ymd, target_tod, model_calendar, rc)

! input/output variables
type(ESMF_State) , intent(inout) :: exportState
Expand Down Expand Up @@ -283,10 +283,10 @@ subroutine datm_datamode_jra_advance(exportstate, target_ymd, target_tod, model_
Faxa_ndep(:,:) = Faxa_ndep(:,:) / 1000._r8
end if

end subroutine datm_datamode_jra_advance
end subroutine datm_datamode_jra55do_advance

!===============================================================================
subroutine datm_datamode_jra_restart_write(case_name, inst_suffix, ymd, tod, &
subroutine datm_datamode_jra55do_restart_write(case_name, inst_suffix, ymd, tod, &
logunit, my_task, sdat)

! input/output variables
Expand All @@ -302,10 +302,10 @@ subroutine datm_datamode_jra_restart_write(case_name, inst_suffix, ymd, tod, &
call dshr_restart_write(rpfile, case_name, 'datm', inst_suffix, ymd, tod, &
logunit, my_task, sdat)

end subroutine datm_datamode_jra_restart_write
end subroutine datm_datamode_jra55do_restart_write

!===============================================================================
subroutine datm_datamode_jra_restart_read(rest_filem, inst_suffix, logunit, my_task, mpicom, sdat)
subroutine datm_datamode_jra55do_restart_read(rest_filem, inst_suffix, logunit, my_task, mpicom, sdat)

! input/output arguments
character(len=*) , intent(inout) :: rest_filem
Expand All @@ -318,6 +318,6 @@ subroutine datm_datamode_jra_restart_read(rest_filem, inst_suffix, logunit, my_t

call dshr_restart_read(rest_filem, rpfile, inst_suffix, nullstr, logunit, my_task, mpicom, sdat)

end subroutine datm_datamode_jra_restart_read
end subroutine datm_datamode_jra55do_restart_read

end module datm_datamode_jra_mod
end module datm_datamode_jra55do_mod

0 comments on commit ed01290

Please sign in to comment.