Skip to content

Commit

Permalink
Merge branch 'develop' into feature/gw-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidNew-NOAA committed Nov 27, 2024
2 parents 1f0e3ec + 94f2029 commit 103de9d
Show file tree
Hide file tree
Showing 23 changed files with 548 additions and 316 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.
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 103de9d

Please sign in to comment.