Skip to content

Commit

Permalink
Merge pull request NOAA-EMC#54 from chan-hoo/feature/regional_bc_update
Browse files Browse the repository at this point in the history
Modify the halo extents of u and vt in the regional_boundary_update call
  • Loading branch information
bensonr committed Sep 24, 2020
2 parents 4e34f2d + 63521c5 commit 27cc6ab
Showing 1 changed file with 13 additions and 1 deletion.
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

0 comments on commit 27cc6ab

Please sign in to comment.