Skip to content

Commit

Permalink
Merge branch 'develop' into feature/marineenvar
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumevernieres committed Dec 2, 2024
2 parents cdb7f6d + 6b2d84e commit 263f0f8
Show file tree
Hide file tree
Showing 26 changed files with 556 additions and 317 deletions.
Binary file removed docs/source/_static/noaacsp_cluster_1.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_cluster_2.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_cluster_3.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_cluster_4.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_cluster_5.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_cluster_6.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_instance_1.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_instance_2.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_instance_3.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_instance_4.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_login.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_using_1.png
Binary file not shown.
Binary file removed docs/source/_static/noaacsp_using_2.png
Binary file not shown.
4 changes: 3 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
# The full version, including alpha/beta/rc tags
release = '0.1'

numfig = True

# -- General configuration ---------------------------------------------------

Expand All @@ -42,7 +43,7 @@
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.napoleon',
'sphinxcontrib.bibtex'
'sphinxcontrib.bibtex',
]

bibtex_bibfiles = ['references.bib']
Expand Down Expand Up @@ -120,3 +121,4 @@ def setup(app):

# Output file base name for HTML help builder.
htmlhelp_basename = 'Global-Workflow'

1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,6 @@ Table of Contents
hpc.rst
output.rst
run.rst
wave.rst
noaa_csp.rst
errors_faq.rst
458 changes: 339 additions & 119 deletions docs/source/noaa_csp.rst

Large diffs are not rendered by default.

Empty file added docs/source/references.bib
Empty file.
3 changes: 2 additions & 1 deletion docs/source/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ The following command examples include variables for reference but users should

cd workflow
./setup_expt.py gfs forecast-only --idate $IDATE --edate $EDATE [--app $APP] [--start $START] [--interval $INTERVAL_GFS] [--resdetatmos $RESDETATMOS] [--resdetocean $RESDETOCEAN]
[--pslot $PSLOT] [--configdir $CONFIGDIR] [--comroot $COMROOT] [--expdir $EXPDIR]
[--pslot $PSLOT] [--configdir $CONFIGDIR] [--comroot $COMROOT] [--expdir $EXPDIR] [--account $ACCOUNT]

where:

Expand All @@ -61,6 +61,7 @@ where:
* ``$INTERVAL_GFS`` is the forecast interval in hours [default: 6]
* ``$COMROOT`` is the path to your experiment output directory. Your ``ROTDIR`` (rotating com directory) will be created using ``COMROOT`` and ``PSLOT``. [default: $HOME (but do not use default due to limited space in home directories normally, provide a path to a larger scratch space)]
* ``$EXPDIR`` is the path to your experiment directory where your configs will be placed and where you will find your workflow monitoring files (i.e. rocoto database and xml file). DO NOT include PSLOT folder at end of path, it will be built for you. [default: $HOME]
* ``$ACCOUNT`` is the HPC (i.e. slurm or PBS) account to use for the experiment. [default: $HPC_ACCOUNT; if $HPC_ACCOUNT is not set, then the default in the host file (workflow/hosts/<machine>.yaml) will be used]

Examples:

Expand Down
4 changes: 4 additions & 0 deletions parm/config/gefs/config.base
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@ export FHOUT_WAV=3
export FHMAX_HF_WAV=120
export FHOUT_HF_WAV=1
export FHMAX_WAV=${FHMAX_GFS}
export FHMAX_WAV_GFS=${FHMAX_GFS}
export FHMAX_HF_GFS=$(( FHMAX_HF_GFS > FHMAX_GFS ? FHMAX_GFS : FHMAX_HF_GFS ))
export FHMAX_WAV_GFS=$(( FHMAX_WAV_GFS > FHMAX_GFS ? FHMAX_GFS : FHMAX_WAV_GFS ))
export FHMAX_HF_WAV=$(( FHMAX_HF_WAV > FHMAX_WAV_GFS ? FHMAX_WAV_GFS : FHMAX_HF_WAV ))
export ILPOST=1 # gempak output frequency up to F120

export FHMIN_ENKF=${FHMIN_GFS}
Expand Down
4 changes: 4 additions & 0 deletions parm/config/gfs/config.base
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,10 @@ export FHMAX_HF_WAV=120
export FHOUT_HF_WAV=1
export FHMAX_WAV=${FHMAX:-9}
export FHMAX_WAV_GFS=${FHMAX_GFS}
export FHMAX_HF_GFS=$(( FHMAX_HF_GFS > FHMAX_GFS ? FHMAX_GFS : FHMAX_HF_GFS ))
export FHMAX_WAV=$(( FHMAX_WAV > FHMAX ? FHMAX : FHMAX_WAV ))
export FHMAX_WAV_GFS=$(( FHMAX_WAV_GFS > FHMAX_GFS ? FHMAX_GFS : FHMAX_WAV_GFS ))
export FHMAX_HF_WAV=$(( FHMAX_HF_WAV > FHMAX_WAV_GFS ? FHMAX_WAV_GFS : FHMAX_HF_WAV ))

# TODO: Change gempak to use standard out variables (#2348)
export ILPOST=${FHOUT_HF_GFS} # gempak output frequency up to F120
Expand Down
Loading

0 comments on commit 263f0f8

Please sign in to comment.