Skip to content

Commit

Permalink
Fixing the incorrectly modified precision constant
Browse files Browse the repository at this point in the history
  • Loading branch information
rhaesung committed Dec 9, 2024
1 parent 39e00e2 commit 80609a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion physics/CONV/progsigma_calc.f90
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ subroutine progsigma_calc (im,km,flag_init,flag_restart,flag_shallow,&
!sigmab
do i = 1,im
if(cnvflg(i))then
DEN=MIN(termC(i)+termB(i),1._kind_phys)
DEN=MIN(termC(i)+termB(i),1.e8_kind_phys)
cvg=termD(i)*delt
ZZ=MAX(0.0,SIGN(1.0,termA(i))) &
*MAX(0.0,SIGN(1.0,termB(i))) &
Expand Down

0 comments on commit 80609a9

Please sign in to comment.