Skip to content

Commit

Permalink
Set 1 mb upper bound for searching EQ level in CAPE computation from …
Browse files Browse the repository at this point in the history
…Hui-ya. (NOAA-EMC#149)
  • Loading branch information
WenMeng-NOAA committed Jul 20, 2020
1 parent a25f6ab commit 41ed232
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sorc/ncep_post.fd/CALCAPE.f
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,8 @@ SUBROUTINE CALCAPE(ITYPE,DPBND,P1D,T1D,Q1D,L1D,CAPE, &
DO J=JSTA,JEND
DO I=1,IM
IF(KLRES(I,J) > 0) THEN
IF(TPAR(I,J,L) > T(I,J,L)) IEQL(I,J) = L
IF(TPAR(I,J,L) > T(I,J,L) .AND. &
PMID(I,J,L)>100.) IEQL(I,J) = L
ENDIF
ENDDO
ENDDO
Expand Down

0 comments on commit 41ed232

Please sign in to comment.