Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions doc/UsersGuide/source/BuildingAndRunning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,24 @@ For the ufs-weather-model S2SW app (atm/ice/ocean/wave):

export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp"

For the ufs-weather-model HAFS app (atm/ocean) in 32 bit:

.. code-block:: console

export CMAKE_FLAGS="-DAPP=HAFS -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf"

For the ufs-weather-model HAFSW app (atm/ocean/wave) in 32 bit:

.. code-block:: console

export CMAKE_FLAGS="-DAPP=HAFSW -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf"

For the ufs-weather-model HAFS-ALL app (data/atm/ocean/wave) in 32 bit:

.. code-block:: console

export CMAKE_FLAGS="-DAPP=HAFS-ALL -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf"

------------------
Building the model
------------------
Expand Down
12 changes: 10 additions & 2 deletions doc/UsersGuide/source/CodeOverview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ The ufs-weather-model repository supports the short- and medium-range UFS applic
- https://github.com/noaa-psd/stochastic_physics
* - Modular Ocean Model (MOM6)
- https://github.com/NOAA-EMC/MOM6
* - HYbrid Coordinate Ocean Model (HYCOM)
- https://github.com/NOAA-EMC/HYCOM-src
* - Los Alamos sea ice model (CICE6)
- https://github.com/NOAA-EMC/CICE
* - NOAA/NCEP WAVEWATCH III Model (WW3)
Expand Down Expand Up @@ -61,6 +63,8 @@ The umbrella repository for the UFS Weather Model is named ufs-weather-model. U
├── stochastic_physics https://github.com/noaa-psd/stochastic_physics
├── MOM6-interface
│ └── MOM6 https://github.com/NOAA-EMC/MOM6
├── HYCOM-interface
│ └── HYCOM https://github.com/NOAA-EMC/HYCOM-src
├── CICE-interface
│ └── CICE https://github.com/NOAA-EMC/CICE
├── WW3 https://github.com/NOAA-EMC/WW3
Expand Down Expand Up @@ -103,6 +107,10 @@ When the ufs-weather-model is cloned, the basic directory structure will be simi
│ └── MOM6
│ ├── src --------- MOM6 ocean model
│ └── config_source/drivers/nuopc_cap --------- NUOPC MOM6 cap
├── HYCOM-interface
│ └── HYCOM --------- HYCOM ocean model
│ └── NUOPC --------- NUOPC HYCOM cap
├── CICE-interface
├── CICE-interface
│ └── CICE --------- CICE6 sea ice model
│ ├── icepack --------- Sea ice column physics
Expand All @@ -112,8 +120,8 @@ When the ufs-weather-model is cloned, the basic directory structure will be simi
│ └── esmf --------- NUOPC WW3 cap
├── CDEPS-interface
│ └── CDEPS
── datm --------- CDEPS DATM
── datm --------- CDEPS DATM
└── docn --------- CDEPS DOCN
Comment thread
DeniseWorthen marked this conversation as resolved.
├── modulefiles -------- system module files for supported HPC systems
├── tests -------- regression test infrastructure
│ └── parm
Expand Down
Loading