Skip to content

Commit

Permalink
Add S2SWA as valid app option
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Mar 20, 2024
1 parent e5dd245 commit 6aedab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def input_args(*argv):
Method to collect user arguments for `setup_expt.py`
"""

ufs_apps = ['ATM', 'ATMA', 'ATMW', 'S2S', 'S2SA', 'S2SW']
ufs_apps = ['ATM', 'ATMA', 'ATMW', 'S2S', 'S2SA', 'S2SW', 'S2SWA']

def _common_args(parser):
parser.add_argument('--pslot', help='parallel experiment name',
Expand Down Expand Up @@ -433,7 +433,7 @@ def _gfs_or_gefs_ensemble_args(parser):

def _gfs_or_gefs_forecast_args(parser):
parser.add_argument('--app', help='UFS application', type=str,
choices=ufs_apps + ['S2SWA'], required=False, default='ATM')
choices=ufs_apps, required=False, default='ATM')
parser.add_argument('--gfs_cyc', help='Number of forecasts per day', type=int,
choices=[1, 2, 4], default=1, required=False)
return parser
Expand Down

0 comments on commit 6aedab2

Please sign in to comment.