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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added functionality to run on tile space of stretched cube-sphere grids.
- Added python package for post-processing ObsFcstAna output.


### Changed

- Specify only ntasks_model for SLURM resource request.
Expand Down
8 changes: 8 additions & 0 deletions GEOSldas_App/ldas_setup
Original file line number Diff line number Diff line change
Expand Up @@ -1440,6 +1440,14 @@ class LDASsetup:
valn = 'landpert'+tmpl_+'_internal_checkpoint'
ldasrcInp[keyn]= valn

# add items for stretched grid
if '-SG' in self.rqdExeInp['BCS_RESOLUTION']:
pos_ = self.rqdExeInp['BCS_RESOLUTION'].find('-SG')
SG = self.rqdExeInp['BCS_RESOLUTION'][pos_+1:pos_+6] # get ID of stretched grid (e.g., SG002)
ldasrcInp['STRETCH_FACTOR'] = STRETCH_GRID[SG][0]
ldasrcInp['TARGET_LAT'] = STRETCH_GRID[SG][1]
ldasrcInp['TARGET_LON'] = STRETCH_GRID[SG][2]

# write LDAS.rc
fout =open(self.rundir+'/'+shortfile,'w')
# ldasrcInp['NUM_LDAS_ENSEMBLE']=ldasrcInp.pop('NUM_ENSEMBLE')
Expand Down