Skip to content

Commit

Permalink
Merge pull request #153 from AnningCheng-NOAA/mr2_peq
Browse files Browse the repository at this point in the history
a MERRA2 bug fixed from RRFS
  • Loading branch information
grantfirl authored Jan 16, 2024
2 parents 53062d6 + 18616d4 commit a492add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion physics/MP/Morrison_Gettelman/aerinterp.F90
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ SUBROUTINE aerinterpol( me,master,nthrds,npts,IDATE,FHOUR,iflip, jindx1,jindx2,
ENDDO
else
DO k=1, levsaer-1 !! from sfc to toa
IF(prsl(j,L) < aerpres(j,k) .and. prsl(j,L)>aerpres(j,k+1)) then
IF(prsl(j,L) <= aerpres(j,k) .and. prsl(j,L)>aerpres(j,k+1)) then
i1 = k
i2 = min(k+1,levsaer)
exit
Expand Down

0 comments on commit a492add

Please sign in to comment.