-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust configuration for reforecast (#3123)
This PR does the following for the GEFS reforecast: - [x] Archive ensemble spread in addition to ensemble mean - [x] Set `NST_SPINUP` to `0` for all 30 years - [x] Remove `arcdir` from `arch` task since it is only used in the `extractvars` task - [x] Change the repair job dependency to a forecast task dependency for each member instead of a file dependency - [x] Remove the experiment name (`PSLOT`) from the `ARCDIR` directory structure for the reforecast - [x] Adjust ensemble header information in forecast_predet so that any ensemble size can be used - [x] Remove wave post pnt dependency from archive task
- Loading branch information
1 parent
e020fce
commit 40f4536
Showing
7 changed files
with
26 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -557,7 +557,7 @@ FV3_predet(){ | |
export e1=3 | ||
fi | ||
export e2=${memnum} | ||
export e3=10 | ||
export e3=${NMEM_ENS} | ||
|
||
fi | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -117,9 +117,7 @@ def atmos_prod(self): | |
def repair_replay(self): | ||
|
||
deps = [] | ||
history_path = self._template_to_rocoto_cycstring(self._base["COM_ATMOS_MASTER_TMPL"], {'MEMDIR': 'mem#member#'}) | ||
data = f'{history_path}/{self.run}[email protected]' | ||
dep_dict = {'type': 'data', 'data': data} | ||
dep_dict = {'type': 'metatask', 'name': 'gefs_fcst_mem#member#'} | ||
deps.append(rocoto.add_dependency(dep_dict)) | ||
|
||
dependencies = rocoto.create_dependency(dep=deps) | ||
|
@@ -583,8 +581,6 @@ def arch(self): | |
if self.app_config.do_wave: | ||
dep_dict = {'type': 'metatask', 'name': 'gefs_wave_post_grid'} | ||
deps.append(rocoto.add_dependency(dep_dict)) | ||
dep_dict = {'type': 'metatask', 'name': 'gefs_wave_post_pnt'} | ||
deps.append(rocoto.add_dependency(dep_dict)) | ||
if self.app_config.do_wave_bnd: | ||
dep_dict = {'type': 'metatask', 'name': 'gefs_wave_post_bndpnt'} | ||
deps.append(rocoto.add_dependency(dep_dict)) | ||
|