Skip to content

Commit

Permalink
fix the output file name and diag time (NCAR#404)
Browse files Browse the repository at this point in the history
* remove unused coupled suites
* delete v15p2 coupled suites
* update filename when the output time is not integer hours
* fix the diag time issue with output_fh

Co-authored-by: Denise Worthen <[email protected]>
Co-authored-by: Jun Wang <[email protected]>
  • Loading branch information
3 people authored Oct 1, 2021
1 parent 376d374 commit 799b157
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 468 deletions.
13 changes: 7 additions & 6 deletions atmos_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -913,13 +913,14 @@ subroutine update_atmos_model_state (Atmos, rc)
call FV3GFS_diag_output(Atmos%Time, GFS_Diag, Atm_block, GFS_control%nx, GFS_control%ny, &
GFS_control%levs, 1, 1, 1.0_GFS_kind_phys, time_int, time_intfull, &
GFS_control%fhswr, GFS_control%fhlwr)
if (nint(GFS_control%fhzero) > 0) then
if (mod(isec,3600*nint(GFS_control%fhzero)) == 0) diag_time = Atmos%Time
else
if (mod(isec,nint(3600*GFS_control%fhzero)) == 0) diag_time = Atmos%Time
endif
call diag_send_complete_instant (Atmos%Time)
endif
if (nint(GFS_control%fhzero) > 0) then
if (mod(isec,3600*nint(GFS_control%fhzero)) == 0) diag_time = Atmos%Time
else
if (mod(isec,nint(3600*GFS_control%fhzero)) == 0) diag_time = Atmos%Time
endif
call diag_send_complete_instant (Atmos%Time)


!--- this may not be necessary once write_component is fully implemented
!!!call diag_send_complete_extra (Atmos%Time)
Expand Down
88 changes: 0 additions & 88 deletions ccpp/suites/suite_FV3_GFS_2017_coupled.xml

This file was deleted.

90 changes: 0 additions & 90 deletions ccpp/suites/suite_FV3_GFS_2017_couplednsst.xml

This file was deleted.

88 changes: 0 additions & 88 deletions ccpp/suites/suite_FV3_GFS_2017_satmedmf_coupled.xml

This file was deleted.

93 changes: 0 additions & 93 deletions ccpp/suites/suite_FV3_GFS_v15p2_coupled.xml

This file was deleted.

Loading

0 comments on commit 799b157

Please sign in to comment.