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

dev/emc: initialize cld_amt to zero for regional runs (cherry-picked from ufs-release/public-v2) #49

Merged
Merged
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
2 changes: 1 addition & 1 deletion model/fv_regional_bc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3701,7 +3701,7 @@ subroutine remap_scalar_nggps_regional_bc(Atm &
! If the source is from old GFS or operational GSM then the tracers will be fixed in the boundaries
! and may not provide a very good result
!
! if (cld_amt .gt. 0) BC_side%q_BC(:,:,:,cld_amt) = 0.
if (cld_amt .gt. 0) BC_side%q_BC(:,:,:,cld_amt) = 0.
if (trim(data_source) /= 'FV3GFS GAUSSIAN NEMSIO FILE') then
if ( Atm%flagstruct%nwat .eq. 6 ) then
do k=1,npz
Expand Down