├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build_and_push_docker_latest.yml │ ├── ci_build_scm_ubuntu.yml │ ├── ci_build_scm_ubuntu_nvidia.yml │ ├── ci_create_scm_rts_artifacts.yml │ ├── ci_run_scm_DEPHY.yml │ ├── ci_run_scm_rts.yml │ ├── ci_run_scm_ufs_replay.yml │ ├── ci_scm_ccpp_prebuild.yml │ └── ci_test_docker.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── .readthedocs.yaml ├── CITATION.cff ├── CODEOWNERS ├── LICENSE ├── README.md ├── ccpp ├── config │ └── ccpp_prebuild_config.py ├── physics_namelists │ ├── input_GFS_v15p2.nml │ ├── input_GFS_v15p2_ACM.nml │ ├── input_GFS_v15p2_FA.nml │ ├── input_GFS_v15p2_MYJ.nml │ ├── input_GFS_v15p2_RRTMGP.nml │ ├── input_GFS_v15p2_YSU.nml │ ├── input_GFS_v15p2_noahmp.nml │ ├── input_GFS_v15p2_ntiedtke.nml │ ├── input_GFS_v15p2_saYSU.nml │ ├── input_GFS_v16.nml │ ├── input_GFS_v16_RRTMGP.nml │ ├── input_GFS_v16_RRTMGP_ps.nml │ ├── input_GFS_v16_gfdlmpv3.nml │ ├── input_GFS_v16_gfdlmpv3_ps.nml │ ├── input_GFS_v16_ps.nml │ ├── input_GFS_v16_ugwpv1.nml │ ├── input_GFS_v17_hr1.nml │ ├── input_GFS_v17_hr1_c3.nml │ ├── input_GFS_v17_p8.nml │ ├── input_GFS_v17_p8_ps.nml │ ├── input_GFS_v17_p8_ugwpv1.nml │ ├── input_GFS_v17_p8_ugwpv1_ps.nml │ ├── input_GFS_v17_p8_ugwpv1_tempo.nml │ ├── input_GFS_v17_p8_ugwpv1_tempo_ps.nml │ ├── input_GSD_v1.nml │ ├── input_GSD_v1nssl.nml │ ├── input_GSD_v1nssl_nohail.nml │ ├── input_GSD_v1nssl_nohailnoccn.nml │ ├── input_HAFS_v0_hwrf.nml │ ├── input_HAFS_v0_hwrf_thompson.nml │ ├── input_HRRR.nml │ ├── input_HRRR_gf.nml │ ├── input_RAP.nml │ ├── input_RRFS_v1alpha.nml │ ├── input_RRFS_v1beta.nml │ ├── input_RRFS_v1nssl.nml │ ├── input_RRFS_v1nssl_nohailnoccn.nml │ ├── input_WoFS_v0.nml │ └── input_csawmg.nml └── suites │ ├── suite.xsd │ ├── suite_HAFS_v0_hwrf.xml │ ├── suite_HAFS_v0_hwrf_ps.xml │ ├── suite_HAFS_v0_hwrf_thompson.xml │ ├── suite_HAFS_v0_hwrf_thompson_ps.xml │ ├── suite_SCM_GFS_v15p2.xml │ ├── suite_SCM_GFS_v15p2_ACM_ps.xml │ ├── suite_SCM_GFS_v15p2_FA.xml │ ├── suite_SCM_GFS_v15p2_MYJ.xml │ ├── suite_SCM_GFS_v15p2_RRTMGP.xml │ ├── suite_SCM_GFS_v15p2_RRTMGP_ps.xml │ ├── suite_SCM_GFS_v15p2_YSU_ps.xml │ ├── suite_SCM_GFS_v15p2_no_nsst.xml │ ├── suite_SCM_GFS_v15p2_no_nsst_ps.xml │ ├── suite_SCM_GFS_v15p2_noahmp.xml │ ├── suite_SCM_GFS_v15p2_ntiedtke.xml │ ├── suite_SCM_GFS_v15p2_ntiedtke_ps.xml │ ├── suite_SCM_GFS_v15p2_ps.xml │ ├── suite_SCM_GFS_v15p2_saYSU_ps.xml │ ├── suite_SCM_GFS_v16.xml │ ├── suite_SCM_GFS_v16_RRTMGP.xml │ ├── suite_SCM_GFS_v16_RRTMGP_ps.xml │ ├── suite_SCM_GFS_v16_debug.xml │ ├── suite_SCM_GFS_v16_debug_ps.xml │ ├── suite_SCM_GFS_v16_gfdlmpv3.xml │ ├── suite_SCM_GFS_v16_gfdlmpv3_ps.xml │ ├── suite_SCM_GFS_v16_no_nsst.xml │ ├── suite_SCM_GFS_v16_no_nsst_ps.xml │ ├── suite_SCM_GFS_v16_ps.xml │ ├── suite_SCM_GFS_v16_ugwpv1.xml │ ├── suite_SCM_GFS_v17_p8.xml │ ├── suite_SCM_GFS_v17_p8_c3.xml │ ├── suite_SCM_GFS_v17_p8_c3_ps.xml │ ├── suite_SCM_GFS_v17_p8_ps.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1_no_nsst.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1_no_nsst_ps.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1_ps.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1_tempo.xml │ ├── suite_SCM_GFS_v17_p8_ugwpv1_tempo_ps.xml │ ├── suite_SCM_GSD_v1.xml │ ├── suite_SCM_GSD_v1_ps.xml │ ├── suite_SCM_GSD_v1nssl.xml │ ├── suite_SCM_GSD_v1nssl_ps.xml │ ├── suite_SCM_HRRR.xml │ ├── suite_SCM_HRRR_gf.xml │ ├── suite_SCM_HRRR_gf_ps.xml │ ├── suite_SCM_HRRR_ps.xml │ ├── suite_SCM_RAP.xml │ ├── suite_SCM_RAP_ps.xml │ ├── suite_SCM_RRFS_v1alpha.xml │ ├── suite_SCM_RRFS_v1alpha_ps.xml │ ├── suite_SCM_RRFS_v1beta.xml │ ├── suite_SCM_RRFS_v1beta_no_nsst.xml │ ├── suite_SCM_RRFS_v1beta_no_nsst_ps.xml │ ├── suite_SCM_RRFS_v1beta_ps.xml │ ├── suite_SCM_RRFS_v1nssl.xml │ ├── suite_SCM_WoFS_v0.xml │ ├── suite_SCM_WoFS_v0_ps.xml │ ├── suite_SCM_csawmg.xml │ └── suite_SCM_csawmg_ps.xml ├── contrib ├── get_aerosol_climo.sh ├── get_all_static_data.sh ├── get_mg_inccn_data.sh ├── get_rrtmgp_data.sh ├── get_tempo_data.sh └── get_thompson_tables.sh ├── docker └── Dockerfile ├── environment-scm_analysis.yml ├── environment-suite-sim.yml ├── environment-ufscasegen.yml ├── environment.yml ├── scm ├── LICENSE.txt ├── data │ └── vert_coord_data │ │ ├── global_hyblev.l28.txt │ │ ├── global_hyblev.l42.txt │ │ ├── global_hyblev.l60.txt │ │ ├── global_hyblev.l64.txt │ │ └── global_hyblev.l91.txt ├── doc │ ├── Makefile │ ├── README.md │ └── TechGuide │ │ ├── acknow.rst │ │ ├── arm_case_header.txt │ │ ├── chap_cases.rst │ │ ├── chap_ccpp.rst │ │ ├── chap_function.rst │ │ ├── chap_hsd.rst │ │ ├── chap_intro.rst │ │ ├── chap_quick.rst │ │ ├── chap_repo.rst │ │ ├── conf.py │ │ ├── css_nml.txt │ │ ├── css_nml_ex1.txt │ │ ├── css_nml_ex2.txt │ │ ├── dephy_case_header.txt │ │ ├── images │ │ ├── CSS_tendency_schematic.png │ │ ├── SDF_changes_for_CSS_ex1.png │ │ ├── SDF_changes_for_CSS_ex2.png │ │ └── dtc_logo.png │ │ ├── index.rst │ │ ├── preface.rst │ │ └── requirements.txt ├── etc │ ├── case_config │ │ ├── AMMA_REF.nml │ │ ├── ARMCU_E3SM.nml │ │ ├── ARMCU_MESONH.nml │ │ ├── ARMCU_REF.nml │ │ ├── AYOTTE_00SC.nml │ │ ├── BOMEX_REF.nml │ │ ├── COMBLE.nml │ │ ├── DYNAMO_NSA3a.nml │ │ ├── DYNAMO_NSA3a_D1.nml │ │ ├── GABLS1_REF.nml │ │ ├── IHOP_REF.nml │ │ ├── LASSO_2016051812.nml │ │ ├── LASSO_2016051812_MSDA.nml │ │ ├── LASSO_2016051812_VARA.nml │ │ ├── LASSO_20180514_s02.nml │ │ ├── LASSO_20180522_s02.nml │ │ ├── LASSO_20180606_s02.nml │ │ ├── LASSO_20180618_s02.nml │ │ ├── LASSO_20180619_s02.nml │ │ ├── LASSO_20180705_s02.nml │ │ ├── LASSO_20180707_s02.nml │ │ ├── LASSO_20180709_s02.nml │ │ ├── LASSO_20180712_s02.nml │ │ ├── LASSO_20180731_s02.nml │ │ ├── LASSO_20180911_s02.nml │ │ ├── LASSO_20180914_s02.nml │ │ ├── LASSO_20180916_s02.nml │ │ ├── LASSO_20180917_s02.nml │ │ ├── LASSO_20180918_s02.nml │ │ ├── LASSO_20181002_s02.nml │ │ ├── MAGIC_LEG04A.nml │ │ ├── MOSAiC-AMPS.nml │ │ ├── MOSAiC-SS.nml │ │ ├── MPACE_REF.nml │ │ ├── RICO_MESONH.nml │ │ ├── SANDU_FAST.nml │ │ ├── SANDU_REF.nml │ │ ├── SANDU_SLOW.nml │ │ ├── SCMS_REF.nml │ │ ├── arm_sgp_summer_1997_A.nml │ │ ├── arm_sgp_summer_1997_B.nml │ │ ├── arm_sgp_summer_1997_C.nml │ │ ├── arm_sgp_summer_1997_R.nml │ │ ├── arm_sgp_summer_1997_S.nml │ │ ├── arm_sgp_summer_1997_T.nml │ │ ├── arm_sgp_summer_1997_U.nml │ │ ├── arm_sgp_summer_1997_X.nml │ │ ├── astex.nml │ │ ├── atomic_Feb02T21Feb04T05.nml │ │ ├── atomic_Feb08T12Feb09T20.nml │ │ ├── atomic_Feb09T12Feb10T20.nml │ │ ├── atomic_Jan16T22Jan18T06.nml │ │ ├── atomic_Jan18T21Jan20T05.nml │ │ ├── atomic_Jan22T21Jan24T05.nml │ │ ├── atomic_Jan30T23Feb01T07.nml │ │ ├── bomex.nml │ │ ├── default.nml │ │ ├── fv3_model_point_noah.nml │ │ ├── gabls3.nml │ │ ├── gabls3_noahmp.nml │ │ ├── gabls3_ruc.nml │ │ └── twpice.nml │ ├── modules │ │ ├── derecho_gnu.lua │ │ ├── derecho_intel.lua │ │ ├── hera_gnu.lua │ │ ├── hera_gnu_spack_stack_1.9.1.lua │ │ ├── hera_intel.lua │ │ ├── hera_intel_spack_stack_1.9.1.lua │ │ ├── jet_intel.lua │ │ ├── linux_gnu.lua │ │ ├── macos_clang.lua │ │ ├── orion_intel.lua │ │ ├── ursa_gnu_spack_stack_1.9.1.lua │ │ └── ursa_intel_spack_stack_1.9.1.lua │ ├── scm_ens.py │ ├── scm_qsub_example.py │ ├── scm_slurm_example.py │ ├── scripts │ │ ├── GABLS3_LSM.ncl │ │ ├── GABLS3_LSM_NoahMP.ncl │ │ ├── GABLS3_LSM_RUC.ncl │ │ ├── MOSAiC_AMPS_forcing_file_generator.py │ │ ├── MOSAiC_SS_forcing_file_generator.py │ │ ├── UFS_LSM_param.py │ │ ├── UFS_case_gen.py │ │ ├── UFS_forcing_ensemble_generator.py │ │ ├── arm_sgp_summer_1997_iop_forcing_file_generator.py │ │ ├── astex_forcing_file_generator.py │ │ ├── bomex_forcing_file_generator.ncl │ │ ├── ccpp_suite_sim │ │ │ ├── create_1D_CSSdata.py │ │ │ ├── create_2D_CSSdata.py │ │ │ ├── plt_scmout_2d.py │ │ │ └── plt_scmout_3d.py │ │ ├── configspec.ini │ │ ├── configspec_ens.ini │ │ ├── create_lonlat4replay.py │ │ ├── dephy_converter.py │ │ ├── forcing_file_common.py │ │ ├── fv3_remap.py │ │ ├── lasso1_forcing_file_generator_gjf.py │ │ ├── lasso1_forcing_file_generator_gjf_msda.py │ │ ├── lasso1_forcing_file_generator_gjf_vara.py │ │ ├── mod_forcing.py │ │ ├── plot_configs │ │ │ ├── MOSAiC-AMPS.ini │ │ │ ├── MOSAiC-SS.ini │ │ │ ├── all_vars_armcu.ini │ │ │ ├── all_vars_dynamo.ini │ │ │ ├── all_vars_test.ini │ │ │ ├── all_vars_test_arm_sgp_summer_1997_A.ini │ │ │ ├── all_vars_test_twpice.ini │ │ │ ├── arm_sgp_summer_1997_A_all_suites.ini │ │ │ ├── arm_sgp_summer_1997_A_hurr.ini │ │ │ ├── bomex.ini │ │ │ ├── ccpp_test_astex.ini │ │ │ ├── ccpp_test_physics_test.ini │ │ │ ├── example.ini │ │ │ ├── gabls3_test.ini │ │ │ ├── gf_test_ens.ini │ │ │ ├── lasso_2016051812.ini │ │ │ ├── lasso_2016051812_force_compare.ini │ │ │ ├── lasso_2016051812_physics_test.ini │ │ │ ├── lasso_short_course.ini │ │ │ ├── noahmp_test.ini │ │ │ ├── supported_suites.ini │ │ │ ├── test_ens.ini │ │ │ ├── twpice_RRTMG_vs_P.ini │ │ │ ├── twpice_all_suites.ini │ │ │ ├── twpice_hurr.ini │ │ │ └── twpice_short_course.ini │ │ ├── precision_analysis.py │ │ ├── scm_analysis.py │ │ ├── scm_analysis_ens.py │ │ ├── scm_plotting_routines.py │ │ ├── scm_read_obs.py │ │ ├── standard_atmos_generator.py │ │ ├── twpice_ensemble_forcing_file_generator.py │ │ └── twpice_forcing_file_generator.py │ └── tracer_config │ │ ├── tracers_GFS_v15p2.txt │ │ ├── tracers_GFS_v16.txt │ │ ├── tracers_GFS_v17_HR3.txt │ │ ├── tracers_GFS_v17_hr1.txt │ │ ├── tracers_GFS_v17_p8.txt │ │ ├── tracers_GFS_v17_p8_ugwpv1.txt │ │ ├── tracers_HAFS_v0_hwrf.txt │ │ ├── tracers_HAFS_v0_hwrf_thompson.txt │ │ ├── tracers_HRRR.txt │ │ ├── tracers_HRRR_gf.txt │ │ ├── tracers_RAP.txt │ │ ├── tracers_RRFS_v1alpha.txt │ │ ├── tracers_RRFS_v1beta.txt │ │ ├── tracers_RRFS_v1nssl.txt │ │ ├── tracers_RRFS_v1nssl_nohail_noccn.txt │ │ ├── tracers_WoFS_v0.txt │ │ ├── tracers_csawmg.txt │ │ ├── tracers_gfdlmp.txt │ │ ├── tracers_gsd.txt │ │ ├── tracers_gsd_nssl.txt │ │ ├── tracers_gsd_nssl_nohail.txt │ │ └── tracers_gsd_nssl_nohail_noccn.txt └── src │ ├── CCPP_typedefs.F90 │ ├── CCPP_typedefs.meta │ ├── CMakeLists.txt │ ├── GFS_typedefs.F90 │ ├── GFS_typedefs.meta │ ├── LASSO_multi_run.py │ ├── example_multi_run.py │ ├── fv_eta.h │ ├── rrtmgp_multi_run.py │ ├── run_scm.py │ ├── scm.F90 │ ├── scm_forcing.F90 │ ├── scm_input.F90 │ ├── scm_kinds.F90 │ ├── scm_kinds.meta │ ├── scm_output.F90 │ ├── scm_physical_constants.F90 │ ├── scm_physical_constants.meta │ ├── scm_setup.F90 │ ├── scm_time_integration.F90 │ ├── scm_type_defs.F90 │ ├── scm_type_defs.meta │ ├── scm_utils.F90 │ ├── scm_vgrid.F90 │ ├── short_course_runs.py │ ├── suite_info.py │ ├── supported_cases.py │ └── supported_suites.py └── test ├── README.md ├── ci_util.py ├── cmp_rt2bl.py ├── cmp_scmout.py ├── plot_scm_out.py ├── rt.sh ├── rt_test_cases.py ├── rt_test_cases_nvidia.py ├── rt_test_cases_sp.py └── summarize.sh /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_push_docker_latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/build_and_push_docker_latest.yml -------------------------------------------------------------------------------- /.github/workflows/ci_build_scm_ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_build_scm_ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/ci_build_scm_ubuntu_nvidia.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_build_scm_ubuntu_nvidia.yml -------------------------------------------------------------------------------- /.github/workflows/ci_create_scm_rts_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_create_scm_rts_artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/ci_run_scm_DEPHY.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_run_scm_DEPHY.yml -------------------------------------------------------------------------------- /.github/workflows/ci_run_scm_rts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_run_scm_rts.yml -------------------------------------------------------------------------------- /.github/workflows/ci_run_scm_ufs_replay.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_run_scm_ufs_replay.yml -------------------------------------------------------------------------------- /.github/workflows/ci_scm_ccpp_prebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_scm_ccpp_prebuild.yml -------------------------------------------------------------------------------- /.github/workflows/ci_test_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.github/workflows/ci_test_docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/README.md -------------------------------------------------------------------------------- /ccpp/config/ccpp_prebuild_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/config/ccpp_prebuild_config.py -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_ACM.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_ACM.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_FA.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_FA.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_MYJ.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_MYJ.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_RRTMGP.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_RRTMGP.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_YSU.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_YSU.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_noahmp.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_noahmp.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_ntiedtke.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_ntiedtke.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v15p2_saYSU.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v15p2_saYSU.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_RRTMGP.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_RRTMGP.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_RRTMGP_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_RRTMGP_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_gfdlmpv3.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_gfdlmpv3.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_gfdlmpv3_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_gfdlmpv3_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v16_ugwpv1.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v16_ugwpv1.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_hr1.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_hr1.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_hr1_c3.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_hr1_c3.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_tempo.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_tempo.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_tempo_ps.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GFS_v17_p8_ugwpv1_tempo_ps.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GSD_v1.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GSD_v1.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GSD_v1nssl.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GSD_v1nssl.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GSD_v1nssl_nohail.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GSD_v1nssl_nohail.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_GSD_v1nssl_nohailnoccn.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_GSD_v1nssl_nohailnoccn.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_HAFS_v0_hwrf.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_HAFS_v0_hwrf.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_HAFS_v0_hwrf_thompson.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_HAFS_v0_hwrf_thompson.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_HRRR.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_HRRR.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_HRRR_gf.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_HRRR_gf.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_RAP.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_RAP.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_RRFS_v1alpha.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_RRFS_v1alpha.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_RRFS_v1beta.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_RRFS_v1beta.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_RRFS_v1nssl.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_RRFS_v1nssl.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_RRFS_v1nssl_nohailnoccn.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_RRFS_v1nssl_nohailnoccn.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_WoFS_v0.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_WoFS_v0.nml -------------------------------------------------------------------------------- /ccpp/physics_namelists/input_csawmg.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/physics_namelists/input_csawmg.nml -------------------------------------------------------------------------------- /ccpp/suites/suite.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite.xsd -------------------------------------------------------------------------------- /ccpp/suites/suite_HAFS_v0_hwrf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_HAFS_v0_hwrf.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_HAFS_v0_hwrf_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_HAFS_v0_hwrf_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_HAFS_v0_hwrf_thompson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_HAFS_v0_hwrf_thompson.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_HAFS_v0_hwrf_thompson_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_HAFS_v0_hwrf_thompson_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_ACM_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_ACM_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_FA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_FA.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_MYJ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_MYJ.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_RRTMGP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_RRTMGP.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_RRTMGP_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_RRTMGP_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_YSU_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_YSU_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_no_nsst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_no_nsst.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_no_nsst_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_no_nsst_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_noahmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_noahmp.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_ntiedtke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_ntiedtke.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_ntiedtke_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_ntiedtke_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v15p2_saYSU_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v15p2_saYSU_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_RRTMGP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_RRTMGP.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_RRTMGP_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_RRTMGP_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_debug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_debug.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_debug_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_debug_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_gfdlmpv3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_gfdlmpv3.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_gfdlmpv3_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_gfdlmpv3_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_no_nsst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_no_nsst.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_no_nsst_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_no_nsst_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v16_ugwpv1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v16_ugwpv1.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_c3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_c3.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_c3_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_c3_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_no_nsst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_no_nsst.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_no_nsst_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_no_nsst_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_tempo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_tempo.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_tempo_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GFS_v17_p8_ugwpv1_tempo_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GSD_v1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GSD_v1.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GSD_v1_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GSD_v1_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GSD_v1nssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GSD_v1nssl.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_GSD_v1nssl_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_GSD_v1nssl_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_HRRR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_HRRR.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_HRRR_gf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_HRRR_gf.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_HRRR_gf_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_HRRR_gf_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_HRRR_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_HRRR_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RAP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RAP.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RAP_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RAP_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1alpha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1alpha.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1alpha_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1alpha_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1beta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1beta.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1beta_no_nsst.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1beta_no_nsst.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1beta_no_nsst_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1beta_no_nsst_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1beta_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1beta_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_RRFS_v1nssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_RRFS_v1nssl.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_WoFS_v0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_WoFS_v0.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_WoFS_v0_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_WoFS_v0_ps.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_csawmg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_csawmg.xml -------------------------------------------------------------------------------- /ccpp/suites/suite_SCM_csawmg_ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/ccpp/suites/suite_SCM_csawmg_ps.xml -------------------------------------------------------------------------------- /contrib/get_aerosol_climo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_aerosol_climo.sh -------------------------------------------------------------------------------- /contrib/get_all_static_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_all_static_data.sh -------------------------------------------------------------------------------- /contrib/get_mg_inccn_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_mg_inccn_data.sh -------------------------------------------------------------------------------- /contrib/get_rrtmgp_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_rrtmgp_data.sh -------------------------------------------------------------------------------- /contrib/get_tempo_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_tempo_data.sh -------------------------------------------------------------------------------- /contrib/get_thompson_tables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/contrib/get_thompson_tables.sh -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /environment-scm_analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/environment-scm_analysis.yml -------------------------------------------------------------------------------- /environment-suite-sim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/environment-suite-sim.yml -------------------------------------------------------------------------------- /environment-ufscasegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/environment-ufscasegen.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/environment.yml -------------------------------------------------------------------------------- /scm/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/LICENSE.txt -------------------------------------------------------------------------------- /scm/data/vert_coord_data/global_hyblev.l28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/data/vert_coord_data/global_hyblev.l28.txt -------------------------------------------------------------------------------- /scm/data/vert_coord_data/global_hyblev.l42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/data/vert_coord_data/global_hyblev.l42.txt -------------------------------------------------------------------------------- /scm/data/vert_coord_data/global_hyblev.l60.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/data/vert_coord_data/global_hyblev.l60.txt -------------------------------------------------------------------------------- /scm/data/vert_coord_data/global_hyblev.l64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/data/vert_coord_data/global_hyblev.l64.txt -------------------------------------------------------------------------------- /scm/data/vert_coord_data/global_hyblev.l91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/data/vert_coord_data/global_hyblev.l91.txt -------------------------------------------------------------------------------- /scm/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/Makefile -------------------------------------------------------------------------------- /scm/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/README.md -------------------------------------------------------------------------------- /scm/doc/TechGuide/acknow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/acknow.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/arm_case_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/arm_case_header.txt -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_cases.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_cases.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_ccpp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_ccpp.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_function.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_hsd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_hsd.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_intro.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_quick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_quick.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/chap_repo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/chap_repo.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/conf.py -------------------------------------------------------------------------------- /scm/doc/TechGuide/css_nml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/css_nml.txt -------------------------------------------------------------------------------- /scm/doc/TechGuide/css_nml_ex1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/css_nml_ex1.txt -------------------------------------------------------------------------------- /scm/doc/TechGuide/css_nml_ex2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/css_nml_ex2.txt -------------------------------------------------------------------------------- /scm/doc/TechGuide/dephy_case_header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/dephy_case_header.txt -------------------------------------------------------------------------------- /scm/doc/TechGuide/images/CSS_tendency_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/images/CSS_tendency_schematic.png -------------------------------------------------------------------------------- /scm/doc/TechGuide/images/SDF_changes_for_CSS_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/images/SDF_changes_for_CSS_ex1.png -------------------------------------------------------------------------------- /scm/doc/TechGuide/images/SDF_changes_for_CSS_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/images/SDF_changes_for_CSS_ex2.png -------------------------------------------------------------------------------- /scm/doc/TechGuide/images/dtc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/images/dtc_logo.png -------------------------------------------------------------------------------- /scm/doc/TechGuide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/index.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/preface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/doc/TechGuide/preface.rst -------------------------------------------------------------------------------- /scm/doc/TechGuide/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinxcontrib-bibtex 2 | -------------------------------------------------------------------------------- /scm/etc/case_config/AMMA_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/AMMA_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/ARMCU_E3SM.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/ARMCU_E3SM.nml -------------------------------------------------------------------------------- /scm/etc/case_config/ARMCU_MESONH.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/ARMCU_MESONH.nml -------------------------------------------------------------------------------- /scm/etc/case_config/ARMCU_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/ARMCU_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/AYOTTE_00SC.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/AYOTTE_00SC.nml -------------------------------------------------------------------------------- /scm/etc/case_config/BOMEX_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/BOMEX_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/COMBLE.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/COMBLE.nml -------------------------------------------------------------------------------- /scm/etc/case_config/DYNAMO_NSA3a.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/DYNAMO_NSA3a.nml -------------------------------------------------------------------------------- /scm/etc/case_config/DYNAMO_NSA3a_D1.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/DYNAMO_NSA3a_D1.nml -------------------------------------------------------------------------------- /scm/etc/case_config/GABLS1_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/GABLS1_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/IHOP_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/IHOP_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_2016051812.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_2016051812.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_2016051812_MSDA.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_2016051812_MSDA.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_2016051812_VARA.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_2016051812_VARA.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180514_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180514_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180522_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180522_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180606_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180606_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180618_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180618_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180619_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180619_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180705_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180705_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180707_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180707_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180709_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180709_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180712_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180712_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180731_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180731_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180911_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180911_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180914_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180914_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180916_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180916_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180917_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180917_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20180918_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20180918_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/LASSO_20181002_s02.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/LASSO_20181002_s02.nml -------------------------------------------------------------------------------- /scm/etc/case_config/MAGIC_LEG04A.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/MAGIC_LEG04A.nml -------------------------------------------------------------------------------- /scm/etc/case_config/MOSAiC-AMPS.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/MOSAiC-AMPS.nml -------------------------------------------------------------------------------- /scm/etc/case_config/MOSAiC-SS.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/MOSAiC-SS.nml -------------------------------------------------------------------------------- /scm/etc/case_config/MPACE_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/MPACE_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/RICO_MESONH.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/RICO_MESONH.nml -------------------------------------------------------------------------------- /scm/etc/case_config/SANDU_FAST.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/SANDU_FAST.nml -------------------------------------------------------------------------------- /scm/etc/case_config/SANDU_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/SANDU_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/SANDU_SLOW.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/SANDU_SLOW.nml -------------------------------------------------------------------------------- /scm/etc/case_config/SCMS_REF.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/SCMS_REF.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_A.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_A.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_B.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_B.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_C.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_C.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_R.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_R.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_S.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_S.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_T.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_T.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_U.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_U.nml -------------------------------------------------------------------------------- /scm/etc/case_config/arm_sgp_summer_1997_X.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/arm_sgp_summer_1997_X.nml -------------------------------------------------------------------------------- /scm/etc/case_config/astex.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/astex.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Feb02T21Feb04T05.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Feb02T21Feb04T05.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Feb08T12Feb09T20.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Feb08T12Feb09T20.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Feb09T12Feb10T20.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Feb09T12Feb10T20.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Jan16T22Jan18T06.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Jan16T22Jan18T06.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Jan18T21Jan20T05.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Jan18T21Jan20T05.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Jan22T21Jan24T05.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Jan22T21Jan24T05.nml -------------------------------------------------------------------------------- /scm/etc/case_config/atomic_Jan30T23Feb01T07.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/atomic_Jan30T23Feb01T07.nml -------------------------------------------------------------------------------- /scm/etc/case_config/bomex.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/bomex.nml -------------------------------------------------------------------------------- /scm/etc/case_config/default.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/default.nml -------------------------------------------------------------------------------- /scm/etc/case_config/fv3_model_point_noah.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/fv3_model_point_noah.nml -------------------------------------------------------------------------------- /scm/etc/case_config/gabls3.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/gabls3.nml -------------------------------------------------------------------------------- /scm/etc/case_config/gabls3_noahmp.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/gabls3_noahmp.nml -------------------------------------------------------------------------------- /scm/etc/case_config/gabls3_ruc.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/gabls3_ruc.nml -------------------------------------------------------------------------------- /scm/etc/case_config/twpice.nml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/case_config/twpice.nml -------------------------------------------------------------------------------- /scm/etc/modules/derecho_gnu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/derecho_gnu.lua -------------------------------------------------------------------------------- /scm/etc/modules/derecho_intel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/derecho_intel.lua -------------------------------------------------------------------------------- /scm/etc/modules/hera_gnu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/hera_gnu.lua -------------------------------------------------------------------------------- /scm/etc/modules/hera_gnu_spack_stack_1.9.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/hera_gnu_spack_stack_1.9.1.lua -------------------------------------------------------------------------------- /scm/etc/modules/hera_intel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/hera_intel.lua -------------------------------------------------------------------------------- /scm/etc/modules/hera_intel_spack_stack_1.9.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/hera_intel_spack_stack_1.9.1.lua -------------------------------------------------------------------------------- /scm/etc/modules/jet_intel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/jet_intel.lua -------------------------------------------------------------------------------- /scm/etc/modules/linux_gnu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/linux_gnu.lua -------------------------------------------------------------------------------- /scm/etc/modules/macos_clang.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/macos_clang.lua -------------------------------------------------------------------------------- /scm/etc/modules/orion_intel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/orion_intel.lua -------------------------------------------------------------------------------- /scm/etc/modules/ursa_gnu_spack_stack_1.9.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/ursa_gnu_spack_stack_1.9.1.lua -------------------------------------------------------------------------------- /scm/etc/modules/ursa_intel_spack_stack_1.9.1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/modules/ursa_intel_spack_stack_1.9.1.lua -------------------------------------------------------------------------------- /scm/etc/scm_ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scm_ens.py -------------------------------------------------------------------------------- /scm/etc/scm_qsub_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scm_qsub_example.py -------------------------------------------------------------------------------- /scm/etc/scm_slurm_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scm_slurm_example.py -------------------------------------------------------------------------------- /scm/etc/scripts/GABLS3_LSM.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/GABLS3_LSM.ncl -------------------------------------------------------------------------------- /scm/etc/scripts/GABLS3_LSM_NoahMP.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/GABLS3_LSM_NoahMP.ncl -------------------------------------------------------------------------------- /scm/etc/scripts/GABLS3_LSM_RUC.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/GABLS3_LSM_RUC.ncl -------------------------------------------------------------------------------- /scm/etc/scripts/MOSAiC_AMPS_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/MOSAiC_AMPS_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/MOSAiC_SS_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/MOSAiC_SS_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/UFS_LSM_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/UFS_LSM_param.py -------------------------------------------------------------------------------- /scm/etc/scripts/UFS_case_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/UFS_case_gen.py -------------------------------------------------------------------------------- /scm/etc/scripts/UFS_forcing_ensemble_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/UFS_forcing_ensemble_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/arm_sgp_summer_1997_iop_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/arm_sgp_summer_1997_iop_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/astex_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/astex_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/bomex_forcing_file_generator.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/bomex_forcing_file_generator.ncl -------------------------------------------------------------------------------- /scm/etc/scripts/ccpp_suite_sim/create_1D_CSSdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/ccpp_suite_sim/create_1D_CSSdata.py -------------------------------------------------------------------------------- /scm/etc/scripts/ccpp_suite_sim/create_2D_CSSdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/ccpp_suite_sim/create_2D_CSSdata.py -------------------------------------------------------------------------------- /scm/etc/scripts/ccpp_suite_sim/plt_scmout_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/ccpp_suite_sim/plt_scmout_2d.py -------------------------------------------------------------------------------- /scm/etc/scripts/ccpp_suite_sim/plt_scmout_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/ccpp_suite_sim/plt_scmout_3d.py -------------------------------------------------------------------------------- /scm/etc/scripts/configspec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/configspec.ini -------------------------------------------------------------------------------- /scm/etc/scripts/configspec_ens.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/configspec_ens.ini -------------------------------------------------------------------------------- /scm/etc/scripts/create_lonlat4replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/create_lonlat4replay.py -------------------------------------------------------------------------------- /scm/etc/scripts/dephy_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/dephy_converter.py -------------------------------------------------------------------------------- /scm/etc/scripts/forcing_file_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/forcing_file_common.py -------------------------------------------------------------------------------- /scm/etc/scripts/fv3_remap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/fv3_remap.py -------------------------------------------------------------------------------- /scm/etc/scripts/lasso1_forcing_file_generator_gjf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/lasso1_forcing_file_generator_gjf.py -------------------------------------------------------------------------------- /scm/etc/scripts/lasso1_forcing_file_generator_gjf_msda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/lasso1_forcing_file_generator_gjf_msda.py -------------------------------------------------------------------------------- /scm/etc/scripts/lasso1_forcing_file_generator_gjf_vara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/lasso1_forcing_file_generator_gjf_vara.py -------------------------------------------------------------------------------- /scm/etc/scripts/mod_forcing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/mod_forcing.py -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/MOSAiC-AMPS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/MOSAiC-AMPS.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/MOSAiC-SS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/MOSAiC-SS.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/all_vars_armcu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/all_vars_armcu.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/all_vars_dynamo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/all_vars_dynamo.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/all_vars_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/all_vars_test.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/all_vars_test_arm_sgp_summer_1997_A.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/all_vars_test_arm_sgp_summer_1997_A.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/all_vars_test_twpice.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/all_vars_test_twpice.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/arm_sgp_summer_1997_A_all_suites.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/arm_sgp_summer_1997_A_all_suites.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/arm_sgp_summer_1997_A_hurr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/arm_sgp_summer_1997_A_hurr.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/bomex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/bomex.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/ccpp_test_astex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/ccpp_test_astex.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/ccpp_test_physics_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/ccpp_test_physics_test.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/example.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/gabls3_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/gabls3_test.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/gf_test_ens.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/gf_test_ens.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/lasso_2016051812.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/lasso_2016051812.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/lasso_2016051812_force_compare.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/lasso_2016051812_force_compare.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/lasso_2016051812_physics_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/lasso_2016051812_physics_test.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/lasso_short_course.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/lasso_short_course.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/noahmp_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/noahmp_test.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/supported_suites.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/supported_suites.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/test_ens.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/test_ens.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/twpice_RRTMG_vs_P.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/twpice_RRTMG_vs_P.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/twpice_all_suites.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/twpice_all_suites.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/twpice_hurr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/twpice_hurr.ini -------------------------------------------------------------------------------- /scm/etc/scripts/plot_configs/twpice_short_course.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/plot_configs/twpice_short_course.ini -------------------------------------------------------------------------------- /scm/etc/scripts/precision_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/precision_analysis.py -------------------------------------------------------------------------------- /scm/etc/scripts/scm_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/scm_analysis.py -------------------------------------------------------------------------------- /scm/etc/scripts/scm_analysis_ens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/scm_analysis_ens.py -------------------------------------------------------------------------------- /scm/etc/scripts/scm_plotting_routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/scm_plotting_routines.py -------------------------------------------------------------------------------- /scm/etc/scripts/scm_read_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/scm_read_obs.py -------------------------------------------------------------------------------- /scm/etc/scripts/standard_atmos_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/standard_atmos_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/twpice_ensemble_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/twpice_ensemble_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/scripts/twpice_forcing_file_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/scripts/twpice_forcing_file_generator.py -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v15p2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v15p2.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v16.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v17_HR3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v17_HR3.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v17_hr1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v17_hr1.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v17_p8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v17_p8.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_GFS_v17_p8_ugwpv1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_GFS_v17_p8_ugwpv1.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_HAFS_v0_hwrf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_HAFS_v0_hwrf.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_HAFS_v0_hwrf_thompson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_HAFS_v0_hwrf_thompson.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_HRRR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_HRRR.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_HRRR_gf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_HRRR_gf.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_RAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_RAP.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_RRFS_v1alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_RRFS_v1alpha.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_RRFS_v1beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_RRFS_v1beta.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_RRFS_v1nssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_RRFS_v1nssl.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_RRFS_v1nssl_nohail_noccn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_RRFS_v1nssl_nohail_noccn.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_WoFS_v0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_WoFS_v0.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_csawmg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_csawmg.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_gfdlmp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_gfdlmp.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_gsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_gsd.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_gsd_nssl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_gsd_nssl.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_gsd_nssl_nohail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_gsd_nssl_nohail.txt -------------------------------------------------------------------------------- /scm/etc/tracer_config/tracers_gsd_nssl_nohail_noccn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/etc/tracer_config/tracers_gsd_nssl_nohail_noccn.txt -------------------------------------------------------------------------------- /scm/src/CCPP_typedefs.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/CCPP_typedefs.F90 -------------------------------------------------------------------------------- /scm/src/CCPP_typedefs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/CCPP_typedefs.meta -------------------------------------------------------------------------------- /scm/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/CMakeLists.txt -------------------------------------------------------------------------------- /scm/src/GFS_typedefs.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/GFS_typedefs.F90 -------------------------------------------------------------------------------- /scm/src/GFS_typedefs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/GFS_typedefs.meta -------------------------------------------------------------------------------- /scm/src/LASSO_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/LASSO_multi_run.py -------------------------------------------------------------------------------- /scm/src/example_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/example_multi_run.py -------------------------------------------------------------------------------- /scm/src/fv_eta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/fv_eta.h -------------------------------------------------------------------------------- /scm/src/rrtmgp_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/rrtmgp_multi_run.py -------------------------------------------------------------------------------- /scm/src/run_scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/run_scm.py -------------------------------------------------------------------------------- /scm/src/scm.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm.F90 -------------------------------------------------------------------------------- /scm/src/scm_forcing.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_forcing.F90 -------------------------------------------------------------------------------- /scm/src/scm_input.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_input.F90 -------------------------------------------------------------------------------- /scm/src/scm_kinds.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_kinds.F90 -------------------------------------------------------------------------------- /scm/src/scm_kinds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_kinds.meta -------------------------------------------------------------------------------- /scm/src/scm_output.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_output.F90 -------------------------------------------------------------------------------- /scm/src/scm_physical_constants.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_physical_constants.F90 -------------------------------------------------------------------------------- /scm/src/scm_physical_constants.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_physical_constants.meta -------------------------------------------------------------------------------- /scm/src/scm_setup.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_setup.F90 -------------------------------------------------------------------------------- /scm/src/scm_time_integration.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_time_integration.F90 -------------------------------------------------------------------------------- /scm/src/scm_type_defs.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_type_defs.F90 -------------------------------------------------------------------------------- /scm/src/scm_type_defs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_type_defs.meta -------------------------------------------------------------------------------- /scm/src/scm_utils.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_utils.F90 -------------------------------------------------------------------------------- /scm/src/scm_vgrid.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/scm_vgrid.F90 -------------------------------------------------------------------------------- /scm/src/short_course_runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/short_course_runs.py -------------------------------------------------------------------------------- /scm/src/suite_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/suite_info.py -------------------------------------------------------------------------------- /scm/src/supported_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/supported_cases.py -------------------------------------------------------------------------------- /scm/src/supported_suites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/scm/src/supported_suites.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/README.md -------------------------------------------------------------------------------- /test/ci_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/ci_util.py -------------------------------------------------------------------------------- /test/cmp_rt2bl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/cmp_rt2bl.py -------------------------------------------------------------------------------- /test/cmp_scmout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/cmp_scmout.py -------------------------------------------------------------------------------- /test/plot_scm_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/plot_scm_out.py -------------------------------------------------------------------------------- /test/rt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/rt.sh -------------------------------------------------------------------------------- /test/rt_test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/rt_test_cases.py -------------------------------------------------------------------------------- /test/rt_test_cases_nvidia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/rt_test_cases_nvidia.py -------------------------------------------------------------------------------- /test/rt_test_cases_sp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/rt_test_cases_sp.py -------------------------------------------------------------------------------- /test/summarize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/ccpp-scm/HEAD/test/summarize.sh --------------------------------------------------------------------------------