1.2. Technical Overview
This chapter provides information on SRW App prerequistes, code repositories, and directory structure.
1.2.1. Prerequisites for Using the SRW Application
1.2.1.1. Background Knowledge Prerequisites
The instructions in this documentation assume that users have certain background knowledge:
Familiarity with LINUX/UNIX systems
Command line basics
System configuration knowledge (e.g., compilers, environment variables, paths, etc.)
Numerical Weather Prediction (e.g., concepts of parameterizations: physical, microphysical, convective)
Meteorology (in particular, meteorology at the scales being predicted: 25km, 13km, and 3km resolutions)
Additional background knowledge in the following areas could be helpful:
High-Performance Computing (HPC) Systems (for those running the SRW App on an HPC system)
Programming (particularly Python and bash scripting) for those interested in contributing to the SRW App code
Creating an SSH Tunnel to access HPC systems from the command line
Containerization
Workflow Managers/Rocoto
1.2.1.2. Software/Operating System Requirements
The UFS SRW Application has been designed so that any sufficiently up-to-date machine with a UNIX-based operating system should be capable of running the application. SRW App Level 1 & 2 systems already have these prerequisites installed. However, users working on other systems must ensure that the following requirements are installed on their system:
Minimum Platform Requirements:
POSIX-compliant UNIX-style operating system
>82 GB disk space
53 GB input data for a standard collection of global data, or “fix” file data (topography, climatology, observational data) for a short 12-hour test forecast on the CONUS 25km domain. See data download instructions in Section 3.2.3.
8 GB for full HPC-Stack installation
3 GB for
ufs-srweather-app
installation1 GB for boundary conditions for a short 12-hour test forecast on the CONUS 25km domain. See data download instructions in Section 3.2.3.
17 GB for a 12-hour test forecast on the CONUS 25km domain, with model output saved hourly.
Fortran compiler released since 2018
gfortran v9+ or ifort v18+ are the only ones tested, but others may work.
C and C++ compilers compatible with the Fortran compiler
gcc v9+, ifort v18+, and clang v9+ (macOS, native Apple clang, LLVM clang, GNU) have been tested
Python v3.6+, including prerequisite packages
jinja2
,pyyaml
, andf90nml
Python packages
scipy
,matplotlib
,pygrib
,cartopy
, andpillow
are required for users who would like to use the provided graphics scripts.
Perl 5
git v2.12+
Lmod
wget
Only required for retrieving data using
retrieve_data.py
. If data is prestaged, wget is not required. If data is retrieved using other means, curl may be used as an alternative.
The following software is also required to run the SRW Application, but the HPC-Stack (which contains the software libraries necessary for building and running the SRW App) can be configured to build these requirements:
CMake v3.20+
MPI (MPICH, OpenMPI, or other implementation)
Only MPICH or OpenMPI can be built with HPC-Stack. Other implementations must be installed separately by the user (if desired).
For MacOS systems, some additional software packages are needed. When possible, it is recommended that users install and/or upgrade this software (along with software listed above) using the Homebrew package manager for MacOS. See HPC-Stack Documentation: Chapter 3 for further guidance on installing these prerequisites on MacOS.
bash v4.x
GNU compiler suite v11 or higher with gfortran
cmake
make
coreutils
gsed
Optional but recommended prerequisites for all systems:
Conda for installing/managing Python packages
Bash v4+
Rocoto Workflow Management System (1.3.1)
Python packages
scipy
,matplotlib
,pygrib
,cartopy
, andpillow
for graphics
1.2.2. Code Repositories and Directory Structure
1.2.2.1. Hierarchical Repository Structure
The umbrella repository for the SRW Application is named ufs-srweather-app
and is available on GitHub at https://github.com/ufs-community/ufs-srweather-app. The SRW Application uses the manage_externals
tool and a configuration file called Externals.cfg
, to pull in the appropriate versions of the external repositories associated with the SRW App (see Table 1.2).
Repository Description |
Authoritative repository URL |
---|---|
Umbrella repository for the UFS Short-Range Weather (SRW) Application |
|
Repository for the UFS Weather Model |
|
Repository for UFS Utilities, including pre-processing, chgres_cube, and more |
|
Repository for the Unified Post Processor (UPP) |
|
Repository for Air Quality Modeling (AQM) Utilities |
|
Repository for NEXUS |
|
Repository for the Unified Workflow (UW) Toolkit |
The UFS Weather Model contains a number of sub-repositories, which are documented here.
Note
The prerequisite libraries (including NCEP Libraries and external libraries) are not included in the UFS SRW Application repository. The HPC-Stack repository assembles these prerequisite libraries. The HPC-Stack has already been built on preconfigured (Level 1) platforms. However, it must be built on other systems. See the HPC-Stack Documentation for details on installing the HPC-Stack.
1.2.2.2. Directory Structure
The ufs-srweather-app
umbrella repository is an NCO-compliant repository. Its structure follows the standards laid out in NCEP Central Operations (NCO) WCOSS Implementation Standards. This structure is implemented using the local_path
settings contained within the Externals.cfg
file. After manage_externals/checkout_externals
is run (see Section 2.3.3), the specific GitHub repositories described in Table 1.2 are cloned into the target subdirectories shown below. Directories that will be created as part of the build process appear in parentheses and will not be visible until after the build is complete. Some directories have been removed for brevity.
ufs-srweather-app
├── (build)
├── docs
│ └── UsersGuide
├── etc
├── (exec)
├── (include)
├── jobs
├── (lib)
├── manage_externals
├── modulefiles
│ ├── build_<platform>_<compiler>.lua
│ └── wflow_<platform>.lua
├── parm
│ ├── wflow
│ └── FV3LAM_wflow.xml
├── (share)
├── scripts
├── sorc
│ ├── CMakeLists.txt
│ ├── (UPP)
│ │ ├── parm
│ │ └── sorc
│ │ └── ncep_post.fd
│ ├── (UFS_UTILS)
│ │ ├── sorc
│ │ │ ├── chgres_cube.fd
│ │ │ ├── fre-nctools.fd
│ │ │ ├── grid_tools.fd
│ │ │ ├── orog_mask_tools.fd
│ │ │ └── sfc_climo_gen.fd
│ │ └── ush
│ └── (ufs-weather-model)
│ └── FV3
│ ├── atmos_cubed_sphere
│ └── ccpp
├── tests/WE2E
├── ush
│ ├── bash_utils
│ ├── machine
│ ├── Python
│ ├── python_utils
│ ├── test_data
│ └── wrappers
└── versions
1.2.2.2.1. SRW App SubDirectories
Table 1.3 describes the contents of the most important SRW App subdirectories. Table 2.2 provides a more comprehensive explanation of the ufs-srweather-app
files and subdirectories. Users can reference the NCO Implementation Standards (p. 19) for additional details on repository structure in NCO-compliant repositories.
Directory Name |
Description |
---|---|
docs |
Repository documentation |
jobs |
J-job scripts launched by Rocoto |
modulefiles |
Files used to load modules needed for building and running the workflow |
parm |
Parameter files used to configure the model, physics, workflow, and various SRW App components |
scripts |
Scripts launched by the J-jobs |
sorc |
External source code used to build the SRW App |
tests |
Tests for baseline experiment configurations |
ush |
Utility scripts used by the workflow |
1.2.2.3. Experiment Directory Structure
When the user generates an experiment using the generate_FV3LAM_wflow.py
script (Step 2.4.3.3), a user-defined experiment directory ($EXPTDIR
) is created based on information specified in the config.yaml
file. Table 1.4 shows the contents of the experiment directory before running the experiment workflow.
File Name |
Description |
---|---|
config.yaml |
User-specified configuration file, see Section 2.4.3.2.2 |
data_table |
Cycle-independent input file (empty) |
field_table |
Tracers in the forecast model |
FV3LAM_wflow.xml |
Rocoto XML file to run the workflow |
input.nml |
Namelist for the UFS Weather Model |
launch_FV3LAM_wflow.sh |
Symlink to the |
log.generate_FV3LAM_wflow |
Log of the output from the experiment generation script
( |
nems.configure |
|
suite_{CCPP}.xml |
|
var_defns.sh |
Shell script defining the experiment parameters. It contains all of the primary parameters specified in the default and user-specified configuration files plus many secondary parameters that are derived from the primary ones by the experiment generation script. This file is sourced by various other scripts in order to make all the experiment variables available to these scripts. |
YYYYMMDDHH |
Cycle directory (empty) |
In addition, running the SRW App in community mode creates the fix_am
and fix_lam
directories (see Table 1.5) in $EXPTDIR
. The fix_lam
directory is initially empty but will contain some fix (time-independent) files after the grid, orography, and/or surface climatology generation tasks run.
Directory Name |
Description |
---|---|
fix_am |
Directory containing the global fix (time-independent) data files. The experiment generation script symlinks these files from a machine-dependent system directory. |
fix_lam |
Directory containing the regional fix (time-independent) data files that describe the regional grid, orography, and various surface climatology fields, as well as symlinks to pre-generated files. |
Once the Rocoto workflow is launched, several files and directories are generated. A log file named log.launch_FV3LAM_wflow
will be created (unless it already exists) in $EXPTDIR
. The first several workflow tasks (i.e., make_grid
, make_orog
, make_sfc_climo
, get_extrn_ics
, and get_extrn_lbcs
) are preprocessing tasks, and these tasks also result in the creation of new files and subdirectories, described in Table 1.6.
Directory/File Name |
Description |
---|---|
YYYYMMDDHH |
This is a “cycle directory” that is updated when the first
cycle-specific workflow tasks ( |
grid |
Directory generated by the |
log |
Contains log files generated by the overall workflow and by its various tasks. View the files in this directory to determine why a task may have failed. |
orog |
Directory generated by the |
sfc_climo |
Directory generated by the |
FV3LAM_wflow.db FV3LAM_wflow_lock.db |
Database files that are generated when Rocoto is called (by the launch script) to launch the workflow |
log.launch_FV3LAM_wflow |
The |
The output files for an experiment are described in Section 3.2.2. The workflow tasks are described in Section 2.4.3.4.