From 80609a95dc465374c87ae0bb984f624bdf37a89d Mon Sep 17 00:00:00 2001 From: rhaesung Date: Mon, 9 Dec 2024 17:58:29 +0000 Subject: [PATCH] Fixing the incorrectly modified precision constant --- physics/CONV/progsigma_calc.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/physics/CONV/progsigma_calc.f90 b/physics/CONV/progsigma_calc.f90 index 49a925867..a7bd4b257 100644 --- a/physics/CONV/progsigma_calc.f90 +++ b/physics/CONV/progsigma_calc.f90 @@ -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))) &