Skip to content

Commit

Permalink
marine hyb option
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumevernieres committed Dec 2, 2024
1 parent 3bba19e commit 3585495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions workflow/applications/gfs_cycled.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def _get_run_options(self, conf: Configuration) -> Dict[str, Any]:
run_options[run]['nens'] = base.get('NMEM_ENS', 0)
if run_options[run]['do_hybvar']:
run_options[run]['lobsdiag_forenkf'] = base.get('lobsdiag_forenkf', False)
run_options[run]['do_hybvar_ocn'] = base.get('DOHYBVAR_OCN', False)

run_options[run]['do_fit2obs'] = base.get('DO_FIT2OBS', True)
run_options[run]['do_jediatmvar'] = base.get('DO_JEDIATMVAR', False)
Expand Down
2 changes: 1 addition & 1 deletion workflow/rocoto/gfs_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ def ocnanalecen(self):
def marineanlchkpt(self):

deps = []
if self.options['do_hybvar']:
if self.options['do_hybvar_ocn']:
dep_dict = {'type': 'task', 'name': f'{self.run}_ocnanalecen'}
else:
dep_dict = {'type': 'task', 'name': f'{self.run}_marineanlvar'}
Expand Down

0 comments on commit 3585495

Please sign in to comment.