diff --git a/src/core_atmosphere/physics/physics_wrf/module_bl_ysu.F b/src/core_atmosphere/physics/physics_wrf/module_bl_ysu.F index 1defb3375d..15fe6ddc27 100644 --- a/src/core_atmosphere/physics/physics_wrf/module_bl_ysu.F +++ b/src/core_atmosphere/physics/physics_wrf/module_bl_ysu.F @@ -219,7 +219,7 @@ subroutine ysu(u3d,v3d,th3d,t3d,qv3d,qc3d,qi3d,p3d,p3di,pi3d, & #endif ! - qv2d(:,:) = 0.0 + qv2d(its:ite,:) = 0.0 do j = jts,jte if(present(mut))then ! For ARW we will replace p and p8w with dry hydrostatic pressure @@ -627,10 +627,10 @@ subroutine ysu2d(j,ux,vx,tx,qx,p2d,p2di,pi2d, & ! !-----initialize vertical tendencies and ! - utnp(:,:) = 0. - vtnp(:,:) = 0. - ttnp(:,:) = 0. - qtnp(:,:) = 0. + utnp(its:ite,:) = 0. + vtnp(its:ite,:) = 0. + ttnp(its:ite,:) = 0. + qtnp(its:ite,:) = 0. ! do i = its,ite wspd1(i) = sqrt(ux(i,1)*ux(i,1)+vx(i,1)*vx(i,1))+1.e-9