Difference between revisions of "WRF/WPS"
Albensoeder (talk | contribs) |
|||
(10 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
The software WRF (''Weather Research and Forecasting Model'') is a numerical mesoscale weather prediction system. | The software WRF (''Weather Research and Forecasting Model'') is a numerical mesoscale weather prediction system. | ||
== Available modules == | == Available real modules == | ||
On FLOW WRF/WPS is available as module. So far the WRF for em_real in single (SP) and double (DP) precision is available. The available modules can be listed by | On FLOW WRF/WPS is available as module. So far the WRF for em_real in single (SP) and double (DP) precision is available. The available modules can be listed by | ||
Line 10: | Line 10: | ||
setup_wps_dir.sh [DIRECTORY_NAME] | setup_wps_dir.sh [DIRECTORY_NAME] | ||
and | and (for em_real) | ||
setup_wrf_dir.sh [DIRECTORY_NAME] | setup_wrf_dir.sh [DIRECTORY_NAME] | ||
Line 16: | Line 16: | ||
which set up a directory for the preprocessing with WPS and for the simulation with WRF, respectively. The scripts create a new directory ''wps'' and ''wrf'' and copy the needed files into the directory. Optionally an other ''DIRECTORY_NAME'' can be specified. | which set up a directory for the preprocessing with WPS and for the simulation with WRF, respectively. The scripts create a new directory ''wps'' and ''wrf'' and copy the needed files into the directory. Optionally an other ''DIRECTORY_NAME'' can be specified. | ||
== | == Available ideal modules == | ||
Since WRF 3.5 there are the ideal cases | |||
em_b_wave | |||
em_heldsuarez | |||
em_les | |||
em_quarter_ss | |||
em_scm_xy | |||
em_tropical_cyclone | |||
installed. Note that WPS is not needed for these cases and therefore not included in the modules. | |||
== Private installation == | |||
Please ask for an actual installation script Stefan Harfst. | |||
== SGE script == | == SGE script == | ||
Line 43: | Line 41: | ||
# --- Which shell to use --- | # --- Which shell to use --- | ||
#$ -S /bin/bash | #$ -S /bin/bash | ||
# | |||
# --- Name of the job --- | # --- Name of the job --- | ||
#$ -N MY_WRF_JOB | #$ -N MY_WRF_JOB | ||
# | |||
# --- Change to directory where job was submitted from --- | # --- Change to directory where job was submitted from --- | ||
#$ -cwd | #$ -cwd | ||
# | |||
# --- merge stdout and stderr --- | # --- merge stdout and stderr --- | ||
#$ -j y | #$ -j y | ||
# | |||
# ==== Resource requirements of the job ==== | # ==== Resource requirements of the job ==== | ||
# --- maximum walltime of the job (hh:mm:ss) | # | ||
# --- maximum walltime of the job (hh:mm:ss) --- | |||
# PLEASE MODIFY TO YOUR NEEDS! | |||
#$ -l h_rt=18:00:00 | #$ -l h_rt=18:00:00 | ||
# | |||
# --- memory per job slot (= core) --- | # --- memory per job slot (= core) --- | ||
#$ -l h_vmem=1800M | #$ -l h_vmem=1800M | ||
# --- disk space | # | ||
# --- disk space --- | |||
# OPTIONALLY, PLEASE MODIFY TO YOUR NEEDS! | |||
##$ -l h_fsize=100G | ##$ -l h_fsize=100G | ||
# --- which parallel environment to use, and number of slots (should be multiple of 12) | # | ||
#$ -pe | # --- which parallel environment to use, and number of slots (should be multiple of 12) --- | ||
# PLEASE MODIFY TO YOUR NEEDS! | |||
#$ -pe impi 24 | |||
# | |||
# load module, here WRF 3.4.1 in single precision | # load module, here WRF 3.4.1 in single precision | ||
Line 63: | Line 73: | ||
# Start real.exe in parallel (OPIONALLY, ONLY IF NEEDED) | # Start real.exe in parallel (OPIONALLY, ONLY IF NEEDED) | ||
#mpirun | #mpirun real.exe | ||
# Start wrf.exe in parallel | # Start wrf.exe in parallel | ||
mpirun | mpirun wrf.exe | ||
The job script has to be submitted from your WRF data directiory. | The job script has to be submitted from your WRF data directiory. |
Latest revision as of 09:22, 30 May 2016
The software WRF (Weather Research and Forecasting Model) is a numerical mesoscale weather prediction system.
Available real modules
On FLOW WRF/WPS is available as module. So far the WRF for em_real in single (SP) and double (DP) precision is available. The available modules can be listed by
module avail wrf
The modules are extended by two helper scripts
setup_wps_dir.sh [DIRECTORY_NAME]
and (for em_real)
setup_wrf_dir.sh [DIRECTORY_NAME]
which set up a directory for the preprocessing with WPS and for the simulation with WRF, respectively. The scripts create a new directory wps and wrf and copy the needed files into the directory. Optionally an other DIRECTORY_NAME can be specified.
Available ideal modules
Since WRF 3.5 there are the ideal cases
em_b_wave em_heldsuarez em_les em_quarter_ss em_scm_xy em_tropical_cyclone
installed. Note that WPS is not needed for these cases and therefore not included in the modules.
Private installation
Please ask for an actual installation script Stefan Harfst.
SGE script
A basic script to submit WRF to SGE is shown below:
#!/bin/bash # # ==== SGE options ==== # # --- Which shell to use --- #$ -S /bin/bash # # --- Name of the job --- #$ -N MY_WRF_JOB # # --- Change to directory where job was submitted from --- #$ -cwd # # --- merge stdout and stderr --- #$ -j y # # ==== Resource requirements of the job ==== # # --- maximum walltime of the job (hh:mm:ss) --- # PLEASE MODIFY TO YOUR NEEDS! #$ -l h_rt=18:00:00 # # --- memory per job slot (= core) --- #$ -l h_vmem=1800M # # --- disk space --- # OPTIONALLY, PLEASE MODIFY TO YOUR NEEDS! ##$ -l h_fsize=100G # # --- which parallel environment to use, and number of slots (should be multiple of 12) --- # PLEASE MODIFY TO YOUR NEEDS! #$ -pe impi 24 # # load module, here WRF 3.4.1 in single precision module load wrf/3.4.1/em_real/SP # Start real.exe in parallel (OPIONALLY, ONLY IF NEEDED) #mpirun real.exe # Start wrf.exe in parallel mpirun wrf.exe
The job script has to be submitted from your WRF data directiory.
Scaling
Here a short example (January test case, see WRF tutorial) of the scaling and wall clock times for different compiler and single (SP) and double precision (DP):
#Cores | GNU compiler 4.7.1 [s] | Intel compiler 13.0.1 [s] | Intel vs. GNU | |||
---|---|---|---|---|---|---|
single precision | double precision | single precision | double precision | single precision | double precision | |
1 | 351 | 292 | 127 | 212 | 2,73 | 1.37 |
2 | 181 | 151 | 62 | 109 | 2.92 | 1.39 |
4 | 98 | 88 | 37 | 62 | 2.65 | 1.42 |
8 | 56 | 51 | 22 | 39 | 2.55 | 1.31 |
A short visualisation of the times is given below
Known issues
- The Intel compiler release 12.0.0 produces an bug in the binary ungrib.exe in the WPS-Suite. Due to this bug waves can occurs in the the preprocessed data.
- The default installation rules of WRF with single precision floating point operations leads to strong deviations in the result of WRF when changing the compiler or the WRF release. Thus WRF should be compiled with double precision floating points.