Skip to content

Commit dffe3df

Browse files
scrasmussenCopilot
andauthored
Removing some options from documentation (#866)
* Removing OUTPUT_CHAN_CONN option from documentation, making an easter egg since its use is very niche * Removing unsupported WRF_HYDRO_RAPID from documentation. Only printing WRF_HYDRO_RAPID and OUTPUT_CHAN_CONN variable values during the build process if they are turned on. * Update docs/userguide/model-code-config.rest Co-authored-by: Copilot <[email protected]>
1 parent 49a0369 commit dffe3df

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ if (HYDRO_D STREQUAL "1" )
146146
endif()
147147

148148
# set -DWRF_HYDRO_RAPID from env
149-
message("WRF_HYDRO_RAPID = " ${WRF_HYDRO_RAPID} )
150149
if (WRF_HYDRO_RAPID STREQUAL "1" )
150+
message("WRF_HYDRO_RAPID = " ${WRF_HYDRO_RAPID} )
151151
add_definitions(-DWRF_HYDRO_RAPID)
152152
endif()
153153

@@ -182,8 +182,8 @@ if (WRF_HYDRO_NUDGING STREQUAL "1" )
182182
endif()
183183

184184
#set -DOUTPUT_CHAN_CONN from env
185-
message("OUTPUT_CHAN_CONN = " ${OUTPUT_CHAN_CONN} )
186185
if (OUTPUT_CHAN_CONN STREQUAL "1" )
186+
message("OUTPUT_CHAN_CONN = " ${OUTPUT_CHAN_CONN} )
187187
add_definitions(-DOUTPUT_CHAN_CONN)
188188
# requires nudging io module
189189
set(WRF_HYDRO_NUDGING_IO "1")

docs/BUILD.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ available options are described in the following table.
7373
+------------------------------------+-------------------------------------------------------------------------------+
7474
| ``-DNWM_META=1`` | Output NWM Metadata |
7575
+------------------------------------+-------------------------------------------------------------------------------+
76-
| ``-DOUTPUT_CHAN_CONN=1`` | For gridded channel routing, write the channel connectivity to a netcdf file |
77-
+------------------------------------+-------------------------------------------------------------------------------+
7876
| ``-DPRECIP_DOUBLE=1`` | Double precipitation from hydro forcing |
7977
+------------------------------------+-------------------------------------------------------------------------------+
8078
| ``-DNCEP_WCOSS=1`` | Do not use unless working on the WCOSS machines |
@@ -85,8 +83,6 @@ available options are described in the following table.
8583
+====================================+===============================================================================+
8684
| ``-DWRF_HYDRO_NUOPC=1`` | Coupling with NUOPC, this option is not currently supported |
8785
+------------------------------------+-------------------------------------------------------------------------------+
88-
| ``-DWRF_HYDRO_RAPID=1`` | Coupling with the RAPID routing model, this option is not currently supported |
89-
+------------------------------------+-------------------------------------------------------------------------------+
9086

9187

9288
CMake Testcase

docs/userguide/model-code-config.rest

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -400,10 +400,8 @@ below along with a description of what each option does:
400400
401401
HYDRO_D = 0 *Set to 1 for enhanced diagnostic output*
402402
403-
WRF_HYDRO_RAPID = 0 *Currently unsupported, always set to 0*
404-
405403
SPATIAL_SOIL = 1 *Set to 1 to allow NoahMP LSM to use*
406-
*spatially distrubuted parameteter*
404+
*spatially distributed parameter*
407405
*vs. a table based on soil class and*
408406
*land use categories*
409407
@@ -416,9 +414,6 @@ below along with a description of what each option does:
416414
417415
WRF_HYDRO_NUDGING = 0 *Set to 1 if using streamflow nudging*
418416
419-
OUTPUT_CHAN_CONN = 0 *Set to 1 to output channel network*
420-
*diagnostic information*
421-
422417
PRECIP_DOUBLE = 0 *Set to 1 to double all incoming*
423418
*precipitation (for debug purposes only)*
424419

0 commit comments

Comments
 (0)