Skip to content
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 ccpp-physics updated 58 files
+26 −177 CMakeLists.txt
+14 −0 CODEOWNERS
+0 −59 GFS_layer/GFS_abstraction_layer.F90
+0 −3,245 GFS_layer/GFS_diagnostics.F90
+0 −400 GFS_layer/GFS_driver.F90
+0 −42 GFS_layer/GFS_finalize_scm.F90
+0 −3,001 GFS_layer/GFS_physics_driver.F90
+0 −1,319 GFS_layer/GFS_radiation_driver.F90
+0 −105 GFS_layer/GFS_restart.F90
+0 −4,067 GFS_layer/GFS_typedefs.F90
+0 −266 IPD_layer/IPD_CCPP_driver.F90
+0 −160 IPD_layer/IPD_driver.F90
+0 −187 IPD_layer/IPD_driver_cap.F90
+0 −78 IPD_layer/IPD_typedefs.F90
+0 −166 IPD_layer/scheme.xml
+5 −3 input.nml
+0 −219 makefile
+13 −13 physics/GFS_DCNV_generic.f90
+1 −1 physics/GFS_MP_generic_post.f90
+18 −18 physics/GFS_MP_generic_pre.f90
+1 −1 physics/GFS_calpreciptype.f90
+37 −175 physics/GFS_debug.F90
+69 −48 physics/GFS_rrtmg_post.F90
+273 −102 physics/GFS_rrtmg_pre.F90
+768 −0 physics/GFS_rrtmg_setup.F90
+1 −1 physics/GFS_suite_interstitial.F90
+0 −359 physics/GFS_suite_interstitial.ipd.F90
+54 −18 physics/GFS_suite_setup_scm.F90
+2 −2 physics/GFS_zhao_carr_pre.f90
+377 −367 physics/cldwat2m_micro.F
+2 −3 physics/cnvc90.f
+159 −0 physics/gmtb_scm_sfc_flux_spec.f90
+3 −3 physics/gscond.f
+3 −3 physics/mfdeepcnv.f
+4 −4 physics/mfshalcnv.f
+5,998 −0 physics/module_mp_thompson_hrrr.F90
+612 −0 physics/module_mp_thompson_hrrr_radar.F90
+1,255 −1,366 physics/moninedmf.f
+557 −0 physics/mp_thompson_hrrr.F90
+10 −3 physics/physcons.f90
+1 −1 physics/physparam.f
+1 −1 physics/precpd.f
+0 −218 physics/rad_initialize.f
+1,226 −158 physics/radiation_clouds.f
+30 −4 physics/radiation_surface.f
+314 −285 physics/radlw_main.f
+6 −6 physics/radlw_param.f
+148 −145 physics/radsw_main.f
+9 −9 physics/radsw_param.f
+50 −49 physics/rascnvv2.f
+9 −8 physics/rrtmg_lw_post.F90
+43 −36 physics/rrtmg_sw_post.F90
+8 −4 physics/rrtmg_sw_pre.F90
+2,819 −0 physics/samfdeepcnv.f
+1 −1 physics/sfc_diff.f
+1 −1 physics/sfc_drv.f
+419 −0 physics/surface_perturbation.F90
+3 −3 physics/tridi.f
1 change: 1 addition & 0 deletions scm/src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
PROJECT(scm)
set(PROJECT "CCPP-SCM")
ENABLE_LANGUAGE(Fortran)

include(CMakeForceCompiler)
Expand Down
Loading