Skip to content

Commit

Permalink
Update FIX* variable paths in ush python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
KateFriedman-NOAA committed Feb 21, 2024
1 parent 428df0b commit 0410605
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ush/calcanl_gfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def calcanl_gfs(DoIAU, l4DEnsVar, Write4Danl, ComOut, APrefix,
ComOut = os.getenv('COM_ATMOS_ANALYSIS', './')
APrefix = os.getenv('APREFIX', '')
NThreads = os.getenv('NTHREADS_CHGRES', 1)
FixDir = os.getenv('FIXam', './')
FixDir = os.path.join(os.getenv('FIXgfs', './'), 'am')
atmges_ens_mean = os.getenv('ATMGES_ENSMEAN', './atmges_ensmean')
RunDir = os.getenv('DATA', './')
ExecCMD = os.getenv('APRUN_CALCANL', '')
Expand Down
2 changes: 1 addition & 1 deletion ush/python/pygfs/task/land_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def prepare_IMS(self) -> None:
# create a temporary dict of all keys needed in this method
localconf = AttrDict()
keys = ['DATA', 'current_cycle', 'COM_OBS', 'COM_ATMOS_RESTART_PREV',
'OPREFIX', 'CASE', 'OCNRES', 'ntiles', 'FIXgdas']
'OPREFIX', 'CASE', 'OCNRES', 'ntiles', 'FIXgfs']
for key in keys:
localconf[key] = self.task_config[key]

Expand Down

0 comments on commit 0410605

Please sign in to comment.