-
Notifications
You must be signed in to change notification settings - Fork 169
cloud cover changes related to Thompson MP and added namelist options… #778
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
Changes from 5 commits
1b03ef9
17489fd
3646159
6040a04
e11d3e8
1784101
39cc6a6
4f7e026
2e9b652
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -116,7 +116,8 @@ subroutine mp_thompson_init(ncol, nlev, con_g, con_rd, con_eps, & | |
| end if | ||
|
|
||
| ! Call Thompson init | ||
| call thompson_init(is_aerosol_aware_in=is_aerosol_aware, mpicomm=mpicomm, & | ||
| call thompson_init(is_aerosol_aware_in=is_aerosol_aware, & | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ruiyu - I think you need to revert back these changes. They involve whitespace only and should not be a part of this PR as Dom suggested - unless I am mistaken on something. |
||
| mpicomm=mpicomm, & | ||
| mpirank=mpirank, mpiroot=mpiroot, threads=threads, & | ||
| errmsg=errmsg, errflg=errflg) | ||
| if (errflg /= 0) return | ||
|
|
@@ -303,7 +304,8 @@ subroutine mp_thompson_run(ncol, nlev, con_g, con_rd, & | |
| nwfa2d, nifa2d, & | ||
| tgrs, prsl, phii, omega, & | ||
| sedi_semi, sedi_semi_update, & | ||
| sedi_semi_decfl, dtp, dt_inner, & | ||
| sedi_semi_decfl, crt_sati, & | ||
| dtp, dt_inner, & | ||
| first_time_step, istep, nsteps, & | ||
| prcp, rain, graupel, ice, snow, sr, & | ||
| refl_10cm, reset_dBZ, do_radar_ref, & | ||
|
|
@@ -361,6 +363,7 @@ subroutine mp_thompson_run(ncol, nlev, con_g, con_rd, & | |
| logical, intent(in) :: sedi_semi | ||
| logical, intent(in) :: sedi_semi_update | ||
| logical, intent(in) :: sedi_semi_decfl | ||
| real, intent(in ) :: crt_sati | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. whitespace problem - look at neighboring lines
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. crt_sati namelist variable is removed from the code. |
||
| ! MPI and block information | ||
| integer, intent(in) :: blkno | ||
| integer, intent(in) :: mpicomm | ||
|
|
@@ -619,7 +622,8 @@ subroutine mp_thompson_run(ncol, nlev, con_g, con_rd, & | |
| nc=nc, nwfa=nwfa, nifa=nifa, nwfa2d=nwfa2d, nifa2d=nifa2d, & | ||
| tt=tgrs, p=prsl, w=w, dz=dz, dt_in=dtstep, dt_inner=dt_inner, & | ||
| sedi_semi=sedi_semi, sedi_semi_update=sedi_semi_update, & | ||
| sedi_semi_decfl=sedi_semi_decfl, & | ||
| sedi_semi_decfl=sedi_semi_decfl, & | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Another stray whitespace is on the end of this line. If you use Github, it can show you these mistakes so you can detect them and fix for quicker approval. |
||
| crt_sati=crt_sati, & | ||
| rainnc=rain_mp, rainncv=delta_rain_mp, & | ||
| snownc=snow_mp, snowncv=delta_snow_mp, & | ||
| icenc=ice_mp, icencv=delta_ice_mp, & | ||
|
|
@@ -660,6 +664,7 @@ subroutine mp_thompson_run(ncol, nlev, con_g, con_rd, & | |
| tt=tgrs, p=prsl, w=w, dz=dz, dt_in=dtstep, dt_inner=dt_inner, & | ||
| sedi_semi=sedi_semi, sedi_semi_update=sedi_semi_update, & | ||
| sedi_semi_decfl=sedi_semi_decfl, & | ||
| crt_sati=crt_sati, & | ||
| rainnc=rain_mp, rainncv=delta_rain_mp, & | ||
| snownc=snow_mp, snowncv=delta_snow_mp, & | ||
| icenc=ice_mp, icencv=delta_ice_mp, & | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra whitespace on the end of line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed. Thanks.