How to compile and conduct a basic WRF on Derecho¶
About this page
This documentation provides information on how to download and compile WRF and WPS on NSF NCAR Derecho. Also, an example of a PBS script is provided to help new users get an idea of how to submit batch jobs efficiently on the system, including setting resource requests, loading modules, and launching the WRF executable.
Obtaining WRF and WPS code¶
The WRF and WPS codes can be downloaded from the WRF webpage. Please refer to the download instructions for more information. If you do not plan to modify the WRF and WPS code, you can use (latest version recommended) the pre-compiled versions of the code available on Derecho at:
Copy the version you want to run to your working directory:cp -r /glade/work/wrfhelp/derecho_pre_compiled_code/wrfv4.7.1 WRF
cp -r /glade/work/wrfhelp/derecho_pre_compiled_code/wpsv4.6.0_jb WPS
To clone the latest version (currently v4.7.1), use the following command:
This will create a local copy of the repository that you can edit and manage using Git.After downloading the WRF model, the next step is to download and extract the WRF Preprocessing System (WPS).
Use the following command to extract the downloaded archive:
You will get a directory called WPS-4.6.0.Next, the needed libraries are loaded to compile WRF and WPS.
On Derecho, this is done by loading pre-loaded modules. Please refer to Modules for more information.
The final command, module list, will display all currently loaded modules in your environment. A typical setup may look like:Currently Loaded Modules:
1) ncarenv/24.12 (S) 3) intel/2024.2.1 5) libfabric/1.15.2.0 7) hdf5/1.12.3 9) cmake/3.26.6
2) craype/2.7.31 4) ncarcompilers/1.0.0 6) cray-mpich/8.1.29 8) netcdf/4.9.2
Where:
S: Module is Sticky, requires --force to unload or purge
Configuring the Build¶
Once the environment is set up, you can configure the code for compilation. It is strongly recommended to use the CMake-based configuration option provided with recent versions of WRF, as it simplifies and standardizes the build process.
Configuring WRF with CMake¶
Once your environment is set up and the WRF code is downloaded and extracted, navigate into the WRF source directory and initiate the configuration process using the CMake-based configuration script:
You will be prompted to select a compiler configuration. For this setup, select option 1 to compile WRF using the Intel oneAPI LLVM compilers (ifx/icx):Using default build directory : _build
Using default install directory : /glade/derecho/scratch/biswas/CSG/WRF4.7.1/install
0 Linux gfortran / gcc / mpif90 / mpicc GNU (gfortran/gcc)
1 Linux ifx / icx / mpif90 / mpicc INTEL (ifx/icx) : oneAPI LLVM
!! - Compiler not found, some configurations will not work and will be hidden
Select configuration [0-1] Default [0] (note !!) : 1
Select option for WRF_CORE from WRF_CORE_OPTIONS [0-4]
0 : ARW
1 : CONVERT
2 : DA
3 : DA_4D_VAR
4 : PLUS
Default [0] : 0
Select option for WRF_NESTING from WRF_NESTING_OPTIONS [0-3]
0 : NONE
1 : BASIC
2 : MOVES
3 : VORTEX
Default [1] : 1
Select option for WRF_CASE from WRF_CASE_OPTIONS [0-14]
0 : EM_REAL
1 : EM_FIRE
...
...
14 : NONE
Default [0] : 0
[DM] Use MPI? Default [Y] [Y/n] : Y
[SM] Use OpenMP? Default [N] [y/N] : N
Configure additional options? Default [N] [y/N] : N
Compiling WRF with Older Intel Compilers (ftn/icc) on Derecho¶
This section outlines how to compile WRF using the classic Intel compiler suite (ftn/icc) on Derecho’s Cray XC system. This method is useful if you prefer using Intel's traditional compilers rather than the newer oneAPI LLVM-based compilers.
Start by purging any previously loaded modules and loading the appropriate environment for Intel 2023 compilers:
The module list command will display all currently loaded modules, which should look similar to the following:Currently Loaded Modules:
1) ncarenv/23.06 (S) 2) craype/2.7.20 3) intel/2023.0.0 4) ncarcompilers/1.0.0 5) cray-mpich/8.1.25 6) hdf5/1.12.2 7) netcdf/4.9.2
You will then be prompted to choose a compilation option. For INTEL (ftn/icc), select:
Refer to WRF Users Guide for more info. Next, select the desired nesting option. For most applications, "basic nesting" (option 1) is sufficient: 48. (serial) 49. (smpar) 50. (dmpar) 51. (dm+sm) INTEL (ftn/icc): Cray XC
52. (serial) 53. (smpar) 54. (dmpar) 55. (dm+sm) PGI (pgf90/pgcc)
...
76. (serial) 77. (smpar) 78. (dmpar) 79. (dm+sm) INTEL (ifx/icx) : oneAPI LLVM
80. (serial) 81. (smpar) 82. (dmpar) 83. (dm+sm) FUJITSU (frtpx/fccpx): FX10/FX100 SPARC64 IXfx/Xlfx
Enter selection [1-83] : 50
------------------------------------------------------------------------
Compile for nesting? (1=basic, 2=preset moves, 3=vortex following) [default 1]: 1
Configuration successful!
To compile WRF, use the ./compile command with the desired case option. In this tutorial, we compile the em_real case (Eulerian Mass grid for real-data simulations), which is the most commonly used option:
Note: It is strongly recommended to redirect the output of the compile process to a log file (e.g., compile.log) for easier debugging in case of errors. The redirection syntax may differ based on the shell used; the example above is for bash.After the compilation is finished, if successful, you will see the following lines at the end of the compile.log file.
==========================================================================
build started: Wed 23 Apr 2025 10:04:19 AM MDT
build completed: Wed 23 Apr 2025 10:39:40 AM MDT
---> Executables successfully built <---
-rwxr-xr-x 1 biswas ncar 51935024 Apr 23 10:39 main/ndown.exe
-rwxr-xr-x 1 biswas ncar 47030584 Apr 23 10:39 main/real.exe
-rwxr-xr-x 1 biswas ncar 45936248 Apr 23 10:39 main/tc.exe
-rwxr-xr-x 1 biswas ncar 59119872 Apr 23 10:38 main/wrf.exe
==========================================================================
Compiling the WRF Preprocessing System (WPS)¶
Once WRF is successfully compiled, the next step is to compile the WRF Preprocessing System (WPS), which is required to process input data for WRF.
Navigate to the WPS source directory. If you are following the standard folder structure, this can be done with:
WPS needs to know where your compiled WRF code resides. Set the WRF_DIR environment variable to point to your WRF installation directory: WPS requires the JasPer library to handle GRIB2 input files (a common format for meteorological datasets). Set the following environment variables to point to the appropriate library and include paths:export JASPERINC=/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/include
export JASPERLIB=/glade/u/home/wrfhelp/UNGRIB_LIBRARIES/lib
Will use NETCDF in dir: /glade/u/apps/derecho/23.09/spack/opt/spack/netcdf/4.9.2/oneapi/2023.2.1/yzvj
Using WRF I/O library in WRF build identified by $WRF_DIR: /glade/derecho/scratch/biswas/CSG/WRF
Found Jasper environment variables for GRIB2 support...
$JASPERLIB = /glade/u/home/wrfhelp/UNGRIB_LIBRARIES/lib
$JASPERINC = /glade/u/home/wrfhelp/UNGRIB_LIBRARIES/include
------------------------------------------------------------------------
Please select from among the following supported platforms.
1. Linux x86_64, gfortran (serial)
...
20. Linux x86_64, Intel oneAPI compilers (dmpar_NO_GRIB2)
21. Linux x86_64, Intel Classic compilers (serial)
22. Linux x86_64, Intel Classic compilers (serial_NO_GRIB2)
23. Linux x86_64, Intel Classic compilers (dmpar)
24. Linux x86_64, Intel Classic compilers (dmpar_NO_GRIB2)
...
44. Cray XC CLE/Linux x86_64, Intel Classic compilers (dmpar_NO_GRIB2)
Enter selection [1-44] : 21
------------------------------------------------------------------------
Configuration successful. To build the WPS, type: compile
------------------------------------------------------------------------
Submitting jobs¶
WPS jobs can be run in an interactive mode. However, WRF jobs are more memory-intensive and should be submitted using a PBS batch script. To know more about PBS batch jobs, please refer to the PBS batch jobs scripts.
Below is a sample job to run WRF using 1 node and utilizing 128 processors.
#!/bin/bash -l
#PBS -N wrf_run
#PBS -A XXXXXXXX
#PBS -q main
#PBS -l walltime=1:00:00
#PBS -m abe
#PBS -j oe
#PBS -l select=1:ncpus=128:mpiprocs=128
# Load modules to match compile-time environment
module --force purge
module load ncarenv/24.12
module reset
# cray-mpich mpiexec option
mpiexec -n 128 -ppn 128 ./wrf.exe
qsub command followed by the name of your PBS batch script file. To know more about starting and managing jobs, please refer to the documentation. Running Long Simulations with Restart Capability¶
For simulations that exceed the wall-clock time limits of Derecho or for operational workflows that require regular checkpoints, WRF supports restart capability, allowing you to break up long simulations into multiple shorter runs without losing progress.
Please refer to the Restart documentation to know how to set it up: - WRF Users Guide - WRF Online tutorial.
Debugging a Failed WRF Run¶
For detailed instructions and troubleshooting tips, refer to the WRF Forum Post on Debugging. This post includes additional strategies for locating and understanding runtime errors.
If your WRF run fails, it's important to identify the exact point of failure to efficiently resolve the issue.
Enable Debugging with Traceback:
By default, traceback support is disabled in the configure.wrf file. To enable it:
-
Open your configure.wrf file in a text editor.
-
Locate the line that defines FCDEBUG. It may be commented out.
-
Uncomment and modify it to the following:
Analyze the Log Files:
- After a failed run, check the rsl.out.* and rsl.error.* files in your run directory. These files contain the output from each processor and often indicate where and why the model stopped.
By enabling traceback and inspecting the relevant logs, you can often pinpoint the issue—whether it's a segmentation fault, array bounds error, or missing input—and proceed with targeted fixes.