From 67732d4686b6def2726e7a8a828db1f997d25cda Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Wed, 2 Feb 2022 13:53:05 -0600 Subject: [PATCH] Change cycled IC links INPUT to RESTART Changes the links created for cycled ICs from INPUT to RESTART. Refs: #536 --- ush/rocoto/setup_expt.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ush/rocoto/setup_expt.py b/ush/rocoto/setup_expt.py index ac35561728..7ff0b03fd6 100755 --- a/ush/rocoto/setup_expt.py +++ b/ush/rocoto/setup_expt.py @@ -57,14 +57,14 @@ def fill_COMROT_cycled(host, inputs): makedirs_if_missing(os.path.join(comrot, enkfdir)) for ii in range(1, inputs.nens + 1): makedirs_if_missing(os.path.join(comrot, enkfdir, f'mem{ii:03d}')) - os.symlink(os.path.join(inputs.icsdir, idatestr, f'C{inputs.resens}', f'mem{ii:03d}', 'INPUT'), - os.path.join(comrot, enkfdir, f'mem{ii:03d}', 'INPUT')) + os.symlink(os.path.join(inputs.icsdir, idatestr, f'C{inputs.resens}', f'mem{ii:03d}', 'RESTART'), + os.path.join(comrot, enkfdir, f'mem{ii:03d}', 'RESTART')) # Link deterministic initial conditions detdir = f'{inputs.cdump}.{idatestr[:8]}/{idatestr[8:]}' makedirs_if_missing(os.path.join(comrot, detdir)) - os.symlink(os.path.join(inputs.icsdir, idatestr, f'C{inputs.resdet}', 'control', 'INPUT'), - os.path.join(comrot, detdir, 'INPUT')) + os.symlink(os.path.join(inputs.icsdir, idatestr, f'C{inputs.resdet}', 'control', 'RESTART'), + os.path.join(comrot, detdir, 'RESTART')) # Link bias correction and radiance diagnostics files for fname in ['abias', 'abias_pc', 'abias_air', 'radstat']: