Skip to content

Commit

Permalink
Merge branch 'master' into EXP-efso_fv3_PR_src_enkf
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewEichmann-NOAA committed Jul 22, 2021
2 parents ea93dcd + 4606e2c commit 7115e08
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion scripts/exgdas_enkf_select_obs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ cd $DATA || exit 8
################################################################################
# ObsInput file from ensemble mean
rm -f obs_input*
$NLN $SELECT_OBS obs_input.tar
rm -f obsinput.tar
$NLN $SELECT_OBS obsinput.tar

# Whether to save or skip obs
if [ $RUN_SELECT = "YES" -a $USE_SELECT = "NO" ]; then
Expand Down
2 changes: 1 addition & 1 deletion src/gsi/setupcldtot.F90
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ subroutine init_netcdf_diag_
endif
end if

call nc_diag_init(diag_conv_file)
call nc_diag_init(diag_conv_file, append=append_diag)

if (.not. append_diag) then ! don't write headers on append - the module will break?
call nc_diag_header("date_time",ianldate )
Expand Down
2 changes: 1 addition & 1 deletion src/gsi/setuplwcp.f90
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ subroutine init_netcdf_diag_
endif
end if

call nc_diag_init(diag_conv_file)
call nc_diag_init(diag_conv_file, append=append_diag)

if (.not. append_diag) then ! don't write headers on append - the module will break?
call nc_diag_header("date_time",ianldate )
Expand Down
2 changes: 1 addition & 1 deletion src/gsi/setupq.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ subroutine init_netcdf_diag_
endif
end if

call nc_diag_init(diag_conv_file)
call nc_diag_init(diag_conv_file, append=append_diag)

if (.not. append_diag) then ! don't write headers on append - the module will break?
call nc_diag_header("date_time",ianldate )
Expand Down
2 changes: 1 addition & 1 deletion src/gsi/setupswcp.f90
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ subroutine init_netcdf_diag_
endif
end if

call nc_diag_init(diag_conv_file)
call nc_diag_init(diag_conv_file, append=append_diag)

if (.not. append_diag) then ! don't write headers on append - the module will break?
call nc_diag_header("date_time",ianldate )
Expand Down

0 comments on commit 7115e08

Please sign in to comment.