Skip to content

Commit

Permalink
Reverting some unneeded changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
EricJames-NOAA committed Aug 29, 2024
1 parent 4a12228 commit 92b6345
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions sorc/ncep_post.fd/INITPOST_MPAS.F
Original file line number Diff line number Diff line change
Expand Up @@ -285,11 +285,7 @@ SUBROUTINE INITPOST_MPAS
! fill up UH which is U at P-points including 2 row halo
do j = jsta_2l, jend_2u
do i = 1, im
if(dum3d(i,j,l)<spval) then
UH (I,J,L) = (dum3d(I,J,L)+dum3d(I+1,J,L))*0.5
else
UH (I,J,L) = spval
endif
end do
end do
end do
Expand All @@ -306,11 +302,7 @@ SUBROUTINE INITPOST_MPAS
! fill up VH which is V at P-points including 2 row halo
do j = jsta_2l, jend_2u
do i = 1, im
if(dum3d(i,j,l)<spval) then
VH(I,J,L) = (dum3d(I,J,L)+dum3d(I,J+1,L))*0.5
else
VH(I,J,L) = spval
endif
end do
end do
end do
Expand Down
2 changes: 1 addition & 1 deletion sorc/ncep_post.fd/MDLFLD.f
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ SUBROUTINE MDLFLD
DO L=1,LM
LL=LM-L+1
IF(T(I,J,LL)<spval)THEN
! IF(T(I,J,LL) < 1.0E-3)print*,'ZERO T'
IF(T(I,J,LL) < 1.0E-3)print*,'ZERO T'
IF(T(I,J,LL) > 1.0E-3) &
RHOD=PMID(I,J,LL)/ &
(RD*T(I,J,LL)*(Q(I,J,LL)*D608+1.0)) ! DENSITY
Expand Down

0 comments on commit 92b6345

Please sign in to comment.