Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions scripts/exglobal_marine_analysis_checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,5 @@
# Prepare the SOCA increment for MOM6 IAU
MarineAnl.checkpoint_mom6_iau('socaincr2mom6.yaml')

# Insert the seaice analysis into the CICE6 restarts in 2 sequential stages
MarineAnl.checkpoint_cice6('soca_2cice_arctic.yaml')
MarineAnl.checkpoint_cice6('soca_2cice_antarctic.yaml')
# Insert the seaice analysis into the CICE6 restart
MarineAnl.checkpoint_cice6('soca_2cice_global.yaml')
2 changes: 1 addition & 1 deletion sorc/gdas.cd
2 changes: 1 addition & 1 deletion ush/python/pygfs/task/marine_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def _prep_checkpoint(self: Task) -> None:

# render the SOCA to CICE YAML file for the Arctic and Antarctic
logger.info("render the SOCA to CICE YAML file for the Arctic and Antarctic")
varchgyamls = ['soca_2cice_arctic.yaml', 'soca_2cice_antarctic.yaml']
varchgyamls = ['soca_2cice_global.yaml']
Comment thread
RussTreadon-NOAA marked this conversation as resolved.
for varchgyaml in varchgyamls:
soca2cice_config = parse_j2yaml(path=os.path.join(self.task_config.MARINE_JCB_GDAS_ALGO, f'{varchgyaml}.j2'),
data=soca2cice_param)
Expand Down