@@ -76,11 +76,14 @@ project directory.
76
76
3. Git clone WRF-Hydro, WRF, and WPS into project directory created in step 2
77
77
4. Copy the uncompressed WPS geographic data into the WPS directory.
78
78
5. Copy the uncompressed coupled example case into the project directory.
79
- 6. Your project directory structure should now look like the following:
79
+ 6. Your project directory structure will look like the following:
80
80
81
81
.. code-block :: console
82
82
83
83
project_directory/
84
+ ├──run/
85
+ │ ├──WPS/
86
+ │ └──WRF/
84
87
├──wrf_hydro_nwm_public*/
85
88
│ └──src/
86
89
├──WRF*/
@@ -219,8 +222,8 @@ WRF-Hydro will run).
219
222
220
223
.. code-block :: console
221
224
222
- cp ../../WPS*/geogrid.exe .
223
- cp ../../WPS*/GEOGRID.TBL .
225
+ cp ../../WPS*/install/bin/ geogrid.exe .
226
+ cp ../../WPS*/geogrid/ GEOGRID.TBL .
224
227
cp ../../example_case_coupled/namelist.wps .
225
228
226
229
Edit the paths within this namelist as appropriate for your system
@@ -252,7 +255,7 @@ steps.
252
255
253
256
.. code-block :: console
254
257
255
- cp ../../WPS*/ungrib.exe .
258
+ cp ../../WPS*/install/bin/ ungrib.exe .
256
259
cp ../../WPS*/link_grib.csh .
257
260
258
261
@@ -262,7 +265,7 @@ steps.
262
265
263
266
cp ../../WPS*/ungrib/Variable_Tables/Vtable.NAM Vtable
264
267
265
- 3. Make sure grib2 library is available
268
+ 3. If the grib-util module is not loaded, make sure grib2 library is available
266
269
267
270
.. code-block :: console
268
271
@@ -294,7 +297,7 @@ utility.
294
297
295
298
.. code-block :: console
296
299
297
- cp ../../WPS/metgrid.exe .
300
+ cp ../../WPS/install/bin/ metgrid.exe .
298
301
cp ../../WPS/metgrid/METGRID.TBL .
299
302
300
303
2. Next run the metgrid utility
@@ -321,14 +324,18 @@ First we will create a run directory and copy over or link the required files.
321
324
322
325
.. code-block :: console
323
326
324
- cp -RL WRF*/run WRF
327
+ cd project_directory
328
+ mkdir run
329
+ cp -RL WRF*/run run/WRF
330
+ cd run/WRF
325
331
326
332
327
- 2. Copy over parameter tables for WRF-Hydro from the template directory
333
+ 2. Copy over parameter tables for WRF-Hydro
328
334
329
335
.. code-block :: console
330
336
331
337
cp ../../WRF/hydro/src/template/HYDRO/*TBL .
338
+ cp ../../WRF/hydro/Land_models/NoahMP/run/*.TBL .
332
339
333
340
3. Copy over the namelists for real / wrf (namelist.input) and the hydro components
334
341
(hydro.namelist) from the example case
@@ -337,8 +344,8 @@ First we will create a run directory and copy over or link the required files.
337
344
338
345
cp ../../example_case_coupled/namelist.input .
339
346
cp ../../example_case_coupled/hydro.namelist .
340
- cp -r path/to/example_case_coupled/DOMAIN/ .
341
-
347
+ cp ../../WRF/hydro/template/NoahMP/namelist.hrldas .
348
+ cp -r ../../example_case_coupled/DOMAIN/ .
342
349
343
350
344
351
4. Link the geogrid and metgrid files we just generated from the WPS utilities
@@ -349,24 +356,32 @@ First we will create a run directory and copy over or link the required files.
349
356
ln -sf ../WPS/geo_em* .
350
357
351
358
359
+ 4. Copy executable files
360
+
361
+ .. code-block :: console
362
+
363
+ cp ../../WRF/install/bin/real .
364
+ cp ../../WRF/install/bin/wrf .
365
+
366
+
352
367
**Running the real utility **
353
368
354
369
The WRF real utility creates the wrfinput* and wrfbdy* initial and boundary
355
370
condition files to be used as input for the coupled simulation.
356
371
357
- 1. Execute real.exe using the proper syntax for your system (example below)
372
+ 1. Execute real using the proper syntax for your system (example below)
358
373
and pipe the output to a log file.
359
374
360
375
.. code-block :: console
361
376
362
- mpirun -np 2 ./real.exe >& real.log
377
+ mpirun -np 2 ./real >& real.log
363
378
364
379
2. Next review the rsl.out.* and rsl.error.* files for possible errors and
365
380
check to make sure the wrfinput* and wrfbdy* files have been created.
366
381
367
382
**Running the coupled model **
368
383
369
- Now we will run the coupled model (all included in the wrf.exe binary) using
384
+ Now we will run the coupled model (all included in the wrf binary) using
370
385
the wrfinput* and wrfbdy* files as initial and boundary conditions and the
371
386
model physics and other options selected in the namelist.input and
372
387
hydro.namelist files.
@@ -376,7 +391,7 @@ hydro.namelist files.
376
391
377
392
.. code-block :: console
378
393
379
- mpirun -np 2 ./wrf.exe >& wrf.log
394
+ mpirun -np 2 ./wrf >& wrf.log
380
395
381
396
2. If your simulation ran successfully, there should now be a large number of
382
397
output files. Descriptions of the output files can be found in the
0 commit comments