Skip to content

Commit

Permalink
Add 1S to the wind lenght and remove a space.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaruidong2017 committed Aug 15, 2023
1 parent 5dd9539 commit d38d227
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ush/python/pygfs/task/land_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, config):
'npz_ges': self.config.LEVS - 1,
'npz': self.config.LEVS - 1,
'LAND_WINDOW_BEGIN': _window_begin,
'LAND_WINDOW_LENGTH': f"PT{self.config['assim_freq']}H",
'LAND_WINDOW_LENGTH': f"PT{self.config['assim_freq']}H1S",
'OPREFIX': f"{self.runtime_config.RUN}.t{self.runtime_config.cyc:02d}z.",
'APREFIX': f"{self.runtime_config.RUN}.t{self.runtime_config.cyc:02d}z.",
'jedi_yaml': _letkfoi_yaml
Expand Down Expand Up @@ -324,10 +324,10 @@ def execute(self) -> None:
def finalize(self) -> None:
"""Performs closing actions of the Land analysis task
This method:
- tarring up output diag files and place in COM/
- copying the generated YAML file from initialize to the COM/
- copying the analysis files to the COM/
- copying the increment files to the COM/
- tar and gzip the output diag files and place in COM/
- copy the generated YAML file from initialize to the COM/
- copy the analysis files to the COM/
- copy the increment files to the COM/
Parameters
----------
Expand All @@ -339,7 +339,7 @@ def finalize(self) -> None:
statfile = os.path.join(self.task_config.COM_LAND_ANALYSIS, f"{self.task_config.APREFIX}landstat.tgz")
self.tgz_diags(statfile, self.task_config.DATA)

logger.info("Copy full YAML to COM")
logger.info("Copy full YAML to COM")
src = os.path.join(self.task_config['DATA'], f"{self.task_config['CDUMP']}.t{self.runtime_config['cyc']:02d}z.letkfoi.yaml")
dest = os.path.join(self.task_config.COM_LAND_ANALYSIS, f"{self.task_config['CDUMP']}.t{self.runtime_config['cyc']:02d}z.letkfoi.yaml")
yaml_copy = {
Expand Down

0 comments on commit d38d227

Please sign in to comment.