-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[develop] Updating ConfigWorkflow.rst file to reflect changes to Config defaults #1157
Open
jdkublnick
wants to merge
3
commits into
ufs-community:develop
Choose a base branch
from
jdkublnick:text/us-404
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -14,8 +14,8 @@ The following is a list of the parameters in the ``config_defaults.yaml`` file. | |||||
|
||||||
.. _user: | ||||||
|
||||||
USER Configuration Parameters | ||||||
================================= | ||||||
USER-Related Configuration Parameters | ||||||
====================================== | ||||||
|
||||||
If non-default parameters are selected for the variables in this section, they should be added to the ``user:`` section of the ``config.yaml`` file. | ||||||
|
||||||
|
@@ -360,6 +360,9 @@ Set File Name Parameters | |||||
``AQM_RC_TMPL_FN``: (Default: "aqm.rc") | ||||||
Template file name of resource file for NOAA Air Quality Model (AQM). | ||||||
|
||||||
``FIRE_NML_FN_``: (Default: "namelist.fire") | ||||||
Name of namelist file for UFS_FIRE capability. | ||||||
|
||||||
Set File Path Parameters | ||||||
---------------------------- | ||||||
|
||||||
|
@@ -390,6 +393,8 @@ Set File Path Parameters | |||||
``AQM_RC_TMPL_FP``: (Default: ``'{{ [user.PARMdir, AQM_RC_TMPL_FN]|path_join }}'``) | ||||||
Path to the ``AQM_RC_TMPL_FN`` file. | ||||||
|
||||||
``FIRE_NML_BASE_FP``: (Default: ``'{{ [user.PARMdir, FIRE_NML_FN]|path_join }}'``) | ||||||
Path to the ``FIRE_NML_BASE_FP`` file. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
*Experiment Directory* Files and Paths | ||||||
------------------------------------------ | ||||||
|
@@ -411,6 +416,9 @@ This section contains files and paths to files that are staged in the experiment | |||||
``FV3_NML_STOCH_FP``: (Default: ``'{{ [EXPTDIR, [FV3_NML_FN, "_stoch"]|join ]|path_join }}'``) | ||||||
Path to a namelist file that includes stochastic physics namelist parameters. | ||||||
|
||||||
``FIRE_NML_FP``: (Default: ``'{{ [EXPTDIR, FIRE_NML_FN]|path_join }}'``) | ||||||
Path to the ``FIRE_NML_FP`` in the experiment directory. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
``FCST_MODEL``: (Default: "ufs-weather-model") | ||||||
Name of forecast model. Valid values: ``"ufs-weather-model"`` | ``"fv3gfs_aqm"`` | ||||||
|
||||||
|
@@ -1134,7 +1142,7 @@ Write-Component (Quilting) Parameters | |||||
``PRINT_ESMF``: (Default: false) | ||||||
Flag that determines whether to output extra (debugging) information from :term:`ESMF` routines. Note that the write component uses ESMF library routines to interpolate from the native forecast model grid to the user-specified output grid (which is defined in the model configuration file ``model_configure`` in the forecast run directory). Valid values: ``True`` | ``False`` | ||||||
|
||||||
``PE_MEMBER01``: (Default: ``'{{ OMP_NUM_THREADS_RUN_FCST * (LAYOUT_Y * LAYOUT_X + WRTCMP_write_groups * WRTCMP_write_tasks_per_group) if QUILTING else OMP_NUM_THREADS_RUN_FCST * (LAYOUT_Y * LAYOUT_X)}}'``) | ||||||
``PE_MEMBER01``: (Default: ``'{{ OMP_NUM_THREADS_RUN_FCST * (LAYOUT_Y * LAYOUT_X + WRTCMP_write_groups * WRTCMP_write_tasks_per_group) + fire.FIRE_NUM_TASKS if QUILTING else OMP_NUM_THREADS_RUN_FCST * (LAYOUT_Y * LAYOUT_X) + fire.FIRE_NUM_TASKS}}'``) | ||||||
The number of MPI processes required by the forecast. When QUILTING is true, it is calculated as: | ||||||
|
||||||
.. math:: | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.