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

Merge 'regional_boundary_update' from upstream #40

Merged
merged 6 commits into from
Sep 30, 2020
14 changes: 13 additions & 1 deletion model/fv_regional_bc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -4409,6 +4409,12 @@ subroutine regional_boundary_update(array &
j1=jsd
j2=jed
!
! CHJ --- s ---
if(trim(bc_vbl_name)=='vc'.or.trim(bc_vbl_name)=='u')then
j2=jed+1
endif
! CHJ --- e ---

i1=isd
i2=is-1
!
Expand Down Expand Up @@ -4453,7 +4459,13 @@ subroutine regional_boundary_update(array &
!
j1=jsd
j2=jed
!

! CHJ --- s ---
if(trim(bc_vbl_name)=='vc'.or.trim(bc_vbl_name)=='u')then
j2=jed+1
endif
! CHJ --- e ---

i1=ie+1
i2=ied
if(trim(bc_vbl_name)=='uc'.or.trim(bc_vbl_name)=='v')then
Expand Down