Skip to content
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

Convert GFS DDTs from blocked data structures to contiguous arrays: Part Deux #932

Open
wants to merge 15 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions atmos_model.F90
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ module atmos_model_mod
! GFS containers
!----------------
type(GFS_externaldiag_type), target :: GFS_Diag(DIAG_SIZE)
type(GFS_restart_type) :: GFS_restart_var
type(GFS_restart_type) , allocatable, target :: GFS_restart_var(:)

!--------------
! IAU container
Expand Down Expand Up @@ -1023,7 +1023,7 @@ subroutine update_atmos_model_state (Atmos, rc)
call atmosphere_nggps_diag(Atmos%Time)
call fv3atm_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)
GFS_control%fhswr, GFS_control%fhlwr, GFS_control)
endif

!--- find current fhzero
Expand Down Expand Up @@ -1153,7 +1153,7 @@ subroutine atmos_model_restart(Atmos, timestamp)

if (quilting_restart) then
call fv_sfc_restart_output(GFS_sfcprop, Atm_block, GFS_control)
call fv_phy_restart_output(GFS_restart_var, Atm_block)
call fv_phy_restart_output(GFS_restart_var, Atm_block, GFS_Control)
call fv_dyn_restart_output(Atm(mygrid), timestamp)
else
call atmosphere_restart(timestamp)
Expand Down
Loading