Skip to content

Commit

Permalink
forgot these constants
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallic2 committed Aug 14, 2023
1 parent 69f67a2 commit cf2c385
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test_fms/exchange/test_xgrid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -459,14 +459,14 @@ program xgrid_test
xt = 0; yt = 0;
do j = jsc_atm, jec_atm
do i = isc_atm, iec_atm
xt(i,j) = tmpx(2*i, 2*j)*real(DEG_TO_RAD, r8_kind)
yt(i,j) = tmpy(2*i, 2*j)*real(DEG_TO_RAD, r8_kind)
xt(i,j) = tmpx(2*i, 2*j)*DEG_TO_RAD
yt(i,j) = tmpy(2*i, 2*j)*DEG_TO_RAD
end do
end do
do j = jsc_atm, jed_atm
do i = isc_atm, ied_atm
xc(i,j) = tmpx(2*i-1, 2*j-1)*real(DEG_TO_RAD, r8_kind)
yc(i,j) = tmpy(2*i-1, 2*j-1)*real(DEG_TO_RAD, r8_kind)
xc(i,j) = tmpx(2*i-1, 2*j-1)*DEG_TO_RAD
yc(i,j) = tmpy(2*i-1, 2*j-1)*DEG_TO_RAD
end do
end do
call mpp_update_domains(xt, atm_domain)
Expand Down

0 comments on commit cf2c385

Please sign in to comment.