Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to parametric values in prognostic convection for GFSv17 #18

Merged
merged 13 commits into from
Dec 5, 2022
Merged
Changes from 2 commits
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
6 changes: 4 additions & 2 deletions physics/progsigma_calc.f90
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ subroutine progsigma_calc (im,km,flag_init,flag_restart, &
rmulacvg=10.
epsilon=1.E-11
km1=km-1
betadcu = 2.0
betascu = 3.6
betadcu = 1.5
betascu = 5.2
invdelt = 1./delt

!Initialization 2D
Expand Down Expand Up @@ -217,12 +217,14 @@ subroutine progsigma_calc (im,km,flag_init,flag_restart, &
do i= 1, im
if(cnvflg(i)) then
sigmab(i)=sigmab(i)/betascu
sigmab(i)=MAX(0.01,sigmab(i))
lisa-bengtsson marked this conversation as resolved.
Show resolved Hide resolved
endif
enddo
else
do i= 1, im
if(cnvflg(i)) then
sigmab(i)=sigmab(i)/betadcu
sigmab(i)=MAX(0.01,sigmab(i))
endif
enddo
endif
Expand Down