-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flexible restart write times (restart_fh) for med, ocn, ice, wav #2419
Open
NickSzapiro-NOAA
wants to merge
26
commits into
ufs-community:develop
Choose a base branch
from
NickSzapiro-NOAA:restart_fh_marine
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 19 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
efb9646
Feature branches of CICE & CMEPS in .gitmodules
NickSzapiro-NOAA 2bd58ee
Update hash: CMEPS & CICE
NickSzapiro-NOAA 051ad6c
Merge branch 'ufs-community:develop' into restart_fh_med_ice
NickSzapiro-NOAA 944454a
MOM6 restart_fh in .gitmodules
NickSzapiro-NOAA 2a65120
fh_s=NINT(restart_fh*3600)
NickSzapiro-NOAA 824706e
Update CMEPS hash
NickSzapiro-NOAA a24a0eb
Merge remote-tracking branch 'ufs-community/develop' into restart_fh_…
NickSzapiro-NOAA a570f32
Exercise restart_fh in datm_cdeps_gfs for med,ocn,ice
NickSzapiro-NOAA 85a1dbe
update mom6 hash
NickSzapiro-NOAA e70b4a5
Merge remote-tracking branch 'ufs-community/develop' into restart_fh_…
NickSzapiro-NOAA 3f22e99
ESMF_ConfigGetAttribute from model_configure
NickSzapiro-NOAA ba7eec6
Update MOM6 hash
NickSzapiro-NOAA 12cf89c
Shared is_restart_fh module...moving into ufs/cdeps_share
NickSzapiro-NOAA a5525d4
Update is_restart_fh mode in cice_files.cmake
NickSzapiro-NOAA d190908
Update is_restart_fh mod in CMEPS-interface/CMakeLists.txt
NickSzapiro-NOAA 2daced1
Update is_restart_fh mod in mom6_files.cmake
NickSzapiro-NOAA 352623d
Update CICE, CMEPS, MOM6 hashes
NickSzapiro-NOAA 0b9f6e0
Merge 'ufs-community/develop' into restart_fh_marine
NickSzapiro-NOAA ec854eb
Make write_restartfh public in shr_is_restart_fh_mod
NickSzapiro-NOAA ae98062
Update CICE hash
NickSzapiro-NOAA 4a335f8
No need to add_dependencies(cdeps)
NickSzapiro-NOAA 28e4930
Merge branch 'develop' into restart_fh_marine
NickSzapiro-NOAA 901ed87
Default RESTART_FH is empty
NickSzapiro-NOAA e909d8e
Merge branch 'ufs-community:develop' into restart_fh_marine
NickSzapiro-NOAA 9a8710e
Test restart_fh in cpld_control_p8 RT
NickSzapiro-NOAA c976b02
Add med,ocn,ice,wave restart_fh restarts to cpld_control_p8 baseline
NickSzapiro-NOAA File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
module shr_is_restart_fh_mod | ||
|
||
! Common methods for components to check if it's time to write forecast hour-based restarts | ||
|
||
!use dshr_methods_mod , only : chkerr | ||
use ESMF, only : ESMF_ConfigCreate, ESMF_ConfigDestroy, ESMF_ConfigLoadFile, & | ||
ESMF_ConfigGetLen, ESMF_ConfigGetAttribute, ESMF_TimePrint, & | ||
ESMF_LOGMSG_INFO, ESMF_LogWrite, ESMF_TimeInterval, & | ||
ESMF_Time, ESMF_KIND_R8, ESMF_Config, ESMF_Clock, & | ||
ESMF_TimeIntervalSet, ESMF_TimePrint, operator(+), operator(==), & | ||
ESMF_LogFoundError, ESMF_LOGERR_PASSTHRU | ||
|
||
implicit none | ||
private | ||
save | ||
|
||
logical :: write_restartfh = .false. | ||
type(ESMF_Time), allocatable :: restartFhTimes(:) | ||
!$OMP THREADPRIVATE (write_restartfh, restartFhTimes) | ||
|
||
public :: init_is_restart_fh, is_restart_fh, finalize_restart_fh, write_restartfh | ||
|
||
contains | ||
|
||
!----------------------------------------------------------------------- | ||
subroutine init_is_restart_fh(currentTime, dtime, lLog) | ||
! | ||
! !DESCRIPTION: | ||
! Process restart_fh attribute from model_configure in UFS | ||
! | ||
! !USES: | ||
! | ||
! !ARGUMENTS: | ||
type(ESMF_Time), intent(in) :: currentTime | ||
integer, intent(in) :: dtime ! time step (s) | ||
logical, intent(in) :: lLog ! If true, this task logs restart_fh info | ||
! | ||
! !LOCAL VARIABLES: | ||
character(len=256) :: timestr | ||
integer :: n, nfh, fh_s, rc | ||
logical :: isPresent | ||
real(kind=ESMF_KIND_R8), allocatable :: restart_fh(:) | ||
type(ESMF_TimeInterval) :: fhInterval | ||
type(ESMF_Config) :: CF_mc | ||
|
||
character(len=*), parameter :: subname = 'init_restart_fh' | ||
!----------------------------------------------------------------------- | ||
|
||
! set up Times to write non-interval restarts | ||
inquire(FILE='model_configure', EXIST=isPresent) | ||
if (isPresent) then !model_configure exists. this is ufs run | ||
CF_mc = ESMF_ConfigCreate(rc=rc) | ||
call ESMF_ConfigLoadFile(config=CF_mc,filename='model_configure' ,rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
|
||
nfh = ESMF_ConfigGetLen(config=CF_mc, label ='restart_fh:',rc=rc) | ||
if (nfh .gt. 0) then | ||
allocate(restart_fh(1:nfh)) | ||
allocate(restartFhTimes(1:nfh)) !not deallocated here | ||
|
||
call ESMF_ConfigGetAttribute(CF_mc,valueList=restart_fh,label='restart_fh:', rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
! create a list of times at each restart_fh | ||
do n = 1,nfh | ||
fh_s = NINT(3600*restart_fh(n)) | ||
call ESMF_TimeIntervalSet(fhInterval, s=fh_s, rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
restartFhTimes(n) = currentTime + fhInterval | ||
call ESMF_TimePrint(restartFhTimes(n), options="string", & | ||
preString="restart_fh at ", unit=timestr, rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
if (lLog) then | ||
if (mod(fh_s,dtime) /= 0) then | ||
call ESMF_LogWrite('restart time NOT to be written for '//trim(timestr), ESMF_LOGMSG_INFO) | ||
else | ||
call ESMF_LogWrite('restart time to be written for '//trim(timestr), ESMF_LOGMSG_INFO) | ||
end if | ||
end if | ||
end do | ||
deallocate(restart_fh) | ||
end if !nfh>0 | ||
call ESMF_ConfigDestroy(CF_mc, rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
end if !model_configure | ||
|
||
end subroutine init_is_restart_fh | ||
|
||
function is_restart_fh(clock) result(lWrite) | ||
! | ||
! !DESCRIPTION: | ||
! True/false if time to write restart | ||
! | ||
! !USES: | ||
use ESMF, only : ESMF_ClockGetNextTime | ||
|
||
! | ||
! !ARGUMENTS: | ||
type(ESMF_Clock), intent(in) :: clock | ||
logical :: lWrite ! function result | ||
! | ||
! !LOCAL VARIABLES: | ||
integer :: nfh, rc | ||
type(ESMF_Time) :: nextTime | ||
|
||
character(len=*), parameter :: subname = 'is_restart_fh' | ||
!----------------------------------------------------------------------- | ||
|
||
write_restartfh = .false. | ||
if (allocated(restartFhTimes)) then | ||
! check if next time is == to any restartfhtime | ||
do nfh = 1,size(restartFhTimes) | ||
call ESMF_ClockGetNextTime(clock, nextTime=nexttime, rc=rc) | ||
!if (ChkErr(rc,__LINE__,__FILE__)) return | ||
if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return | ||
if (nextTime == restartFhTimes(nfh)) write_restartfh = .true. | ||
end do | ||
end if | ||
|
||
lWrite = write_restartfh | ||
|
||
end function is_restart_fh | ||
|
||
subroutine finalize_restart_fh() | ||
! | ||
! !DESCRIPTION: | ||
! Clean-up...release allocated memory | ||
! | ||
! !USES: | ||
! | ||
! !ARGUMENTS: | ||
! | ||
! !LOCAL VARIABLES: | ||
|
||
character(len=*), parameter :: subname = 'finalize_restart_fh' | ||
!----------------------------------------------------------------------- | ||
|
||
if (allocated(restartFhTimes)) deallocate(restartFhTimes) | ||
|
||
end subroutine finalize_restart_fh | ||
|
||
end module shr_is_restart_fh_mod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ start_second: 0 | |
nhours_fcst: @[FHMAX] | ||
dt_atmos: @[DT_ATMOS] | ||
fhrot: @[FHROT] | ||
restart_fh: @[RESTART_FH] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why can't you use the cleaner form ? I see it commented out.
Add
use dshr_methods_mod , only : chkerr
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can, but that brings additional dependencies into this module besides ESMF. There are also quite some duplicate ChkErr functions floating around all just wrapping an ESMF function