Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions physics/Radiation/radiation_clouds.f
Original file line number Diff line number Diff line change
Expand Up @@ -2088,7 +2088,7 @@ subroutine progcld_thompson_wsm6 &
integer :: i, k, id, nf

! --- constant values
real (kind=kind_phys), parameter :: xrc3 = 100.
real (kind=kind_phys), parameter :: xrc3 = 2000.
real (kind=kind_phys), parameter :: snow2ice = 0.25
real (kind=kind_phys), parameter :: coef_t = 0.025
!
Expand Down Expand Up @@ -3878,7 +3878,8 @@ subroutine cloud_fraction_mass_flx_2 &
onemrh= max( 1.e-10, 1.0-rhly(i,k) )
clwm = clwmin / max( 0.01, plyr(i,k)*0.001 )

tem1 = min(max((onemrh*qstl(i,k))**0.49,0.0001),1.0) !jhan
!tem1 = min(max((onemrh*qstl(i,k))**0.49,0.0001),1.0) !jhan
tem1 = min(max(sqrt(sqrt(onemrh*qstl(i,k))),0.0001),1.0)
if (lmfdeep2) then
tem1 = xrc3 / tem1
else
Expand Down