Affected Releases:
CESM1.2.z
CESM1.1.z
CESM1.0.z
(Bugzilla 2020) - In src/dynamics/se/interp_mod.F90 subroutine write_interpolated_vector at about line 450 we have:
dest(i,j,1,k,1) = fldu(i+(j-1)*np,k,ie)
dest(i,j,1,k,1) = fldv(i+(j-1)*np,k,ie)
This should be:
dest(i,j,1,k,1) = fldu(i+(j-1)*np,k,ie)
dest(i,j,2,k,1) = fldv(i+(j-1)*np,k,ie)
the error results in interpolated vector fields as written from the dyn_decomp to
have undefined values in dest(:,:,2,:,1)
CESM1.2.z
CESM1.1.z
CESM1.0.z
(Bugzilla 2020) - In src/dynamics/se/interp_mod.F90 subroutine write_interpolated_vector at about line 450 we have:
dest(i,j,1,k,1) = fldu(i+(j-1)*np,k,ie)
dest(i,j,1,k,1) = fldv(i+(j-1)*np,k,ie)
This should be:
dest(i,j,1,k,1) = fldu(i+(j-1)*np,k,ie)
dest(i,j,2,k,1) = fldv(i+(j-1)*np,k,ie)
the error results in interpolated vector fields as written from the dyn_decomp to
have undefined values in dest(:,:,2,:,1)