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

Updates for ccpp-physics ufs-dev PR#14 #352

Merged
merged 3 commits into from
Nov 17, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion ccpp/physics
Submodule physics updated 53 files
+1 −1 physics/GFS_MP_generic_post.F90
+4 −4 physics/GFS_radiation_surface.F90
+7 −0 physics/GFS_radiation_surface.meta
+4 −3 physics/GFS_rrtmg_pre.F90
+1 −1 physics/GFS_rrtmg_setup.F90
+33 −30 physics/bl_mynn_common.f90
+555 −0 physics/docs/ccppsrw_doxyfile
+47 −37 physics/docs/library.bib
+3 −6 physics/docs/pdftxt/GFS_v16_suite.txt
+1 −2 physics/docs/pdftxt/HRRR_suite.txt
+24 −15 physics/docs/pdftxt/MYNN_EDMF.txt
+1 −1 physics/docs/pdftxt/RAP_suite.txt
+339 −0 physics/docs/pdftxt/RE210/FV3_GFS_v16_input.nml
+300 −0 physics/docs/pdftxt/RE210/FV3_HRRR_input.nml
+295 −0 physics/docs/pdftxt/RE210/FV3_RRFS_v1beta_input.nml
+301 −0 physics/docs/pdftxt/RE210/FV3_WoFS_v0_input.nml
+154 −0 physics/docs/pdftxt/RE210/SCM_GFS_v17_p8_input.nml
+135 −0 physics/docs/pdftxt/RE210/SCM_RAP_input.nml
+94 −0 physics/docs/pdftxt/RE210/suite_FV3_GFS_v16.xml
+80 −0 physics/docs/pdftxt/RE210/suite_FV3_HRRR.xml
+84 −0 physics/docs/pdftxt/RE210/suite_FV3_RRFS_v1beta.xml
+80 −0 physics/docs/pdftxt/RE210/suite_FV3_WoFS_v0.xml
+90 −0 physics/docs/pdftxt/RE210/suite_SCM_GFS_v17_p8.xml
+85 −0 physics/docs/pdftxt/RE210/suite_SCM_RAP.xml
+0 −1 physics/docs/pdftxt/RE6/FV3_GFS_v16_input.nml
+0 −1 physics/docs/pdftxt/RE6/FV3_HRRR_input.nml
+0 −1 physics/docs/pdftxt/RE6/FV3_RRFS_v1beta_input.nml
+0 −1 physics/docs/pdftxt/RE6/FV3_WoFS_v0_input.nml
+8 −12 physics/docs/pdftxt/RRFS_SGSCLOUD.txt
+3 −4 physics/docs/pdftxt/RRFS_v1beta_suite.txt
+88 −0 physics/docs/pdftxt/SRW_all_shemes_list.txt
+15 −0 physics/docs/pdftxt/SRW_mainpage.txt
+2 −3 physics/docs/pdftxt/WoFS_v0_suite.txt
+18 −4 physics/docs/pdftxt/suite_input.nml.txt
+1 −1 physics/mfpbltq.f
+2 −1 physics/mfscuq.f
+27 −22 physics/module_bl_mynn.F90
+1 −1 physics/module_mp_nssl_2mom.F90
+5 −2 physics/module_sf_noahmp_glacier.f90
+1,229 −1,199 physics/module_sf_noahmplsm.f90
+2 −2 physics/mynnedmf_wrapper.F90
+0 −2 physics/noahmpdrv.F90
+5 −13 physics/progsigma_calc.f90
+3 −3 physics/radiation_aerosols.f
+49 −59 physics/radiation_clouds.f
+2 −1 physics/radiation_gases.f
+73 −52 physics/radiation_surface.f
+0 −15 physics/radiation_surface.meta
+1 −10 physics/radlw_main.F90
+0 −11 physics/radsw_main.F90
+3 −3 physics/samfdeepcnv.f
+4 −4 physics/samfshalcnv.f
+5 −7 physics/tridi.f
2 changes: 2 additions & 0 deletions scm/src/CCPP_typedefs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ module CCPP_typedefs
integer :: nday !<
integer :: nf_aelw !<
integer :: nf_aesw !<
integer :: nf_albd !<
integer :: nn !<
integer :: nsamftrac !<
integer :: nscav !<
Expand Down Expand Up @@ -916,6 +917,7 @@ subroutine gfs_interstitial_create (Interstitial, IM, Model)
Interstitial%nbdsw = NBDSW
Interstitial%nf_aelw = NF_AELW
Interstitial%nf_aesw = NF_AESW
Interstitial%nf_albd = NF_ALBD
Interstitial%nspc1 = NSPC1
if (Model%oz_phys .or. Model%oz_phys_2015) then
Interstitial%oz_coeffp5 = oz_coeff+5
Expand Down
6 changes: 6 additions & 0 deletions scm/src/CCPP_typedefs.meta
Original file line number Diff line number Diff line change
Expand Up @@ -1460,6 +1460,12 @@
units = count
dimensions = ()
type = integer
[nf_albd]
standard_name = number_of_components_for_surface_albedo
long_name = number of IR/VIS/UV compinents for surface albedo
units = count
dimensions = ()
type = integer
[nn]
standard_name = number_of_tracers_for_convective_transport
long_name = number of tracers for convective transport
Expand Down