From 63521c5b05bcb34080060ea406c5e95fdfc1a9eb Mon Sep 17 00:00:00 2001 From: "Chan-hoo.Jeon" Date: Wed, 23 Sep 2020 11:29:07 +0000 Subject: [PATCH 1/3] Modify the halo extents of u and vt in the regional_boundary_update call that caused a reproducibility issue. --- model/fv_regional_bc.F90 | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/model/fv_regional_bc.F90 b/model/fv_regional_bc.F90 index 98285b7a3..e3b633256 100644 --- a/model/fv_regional_bc.F90 +++ b/model/fv_regional_bc.F90 @@ -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 ! @@ -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 From 673243e78116c0af8b9a896727dcf593da9e54dc Mon Sep 17 00:00:00 2001 From: bensonr <6594772+bensonr@users.noreply.github.com> Date: Fri, 25 Sep 2020 09:33:36 -0400 Subject: [PATCH 2/3] Modify the halo extents of u and vt in the regional_boundary_update call that caused a reproducibility issue. (#55) Co-authored-by: Chan-hoo.Jeon --- model/fv_regional_bc.F90 | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/model/fv_regional_bc.F90 b/model/fv_regional_bc.F90 index 98285b7a3..e3b633256 100644 --- a/model/fv_regional_bc.F90 +++ b/model/fv_regional_bc.F90 @@ -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 ! @@ -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 From cb1760a5ec4bc8ad65eec793b047e516ad044f6b Mon Sep 17 00:00:00 2001 From: bensonr <6594772+bensonr@users.noreply.github.com> Date: Mon, 28 Sep 2020 11:19:47 -0400 Subject: [PATCH 3/3] Revert "merge ufs-release/public-v2 -> dev/emc"