-
Notifications
You must be signed in to change notification settings - Fork 44
Re-enable EnKF-only for atmosphere #2051
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| obs_distribution_localizations: | ||
| obs_distribution: | ||
| name: {{ distribution_type }} | ||
| halo size: 1250e3 | ||
| obs_localizations: | ||
| - localization method: Horizontal Gaspari-Cohn | ||
| lengthscale: 1250e3 | ||
| max nobs: 10000 | ||
|
|
||
| override_obs_distribution_localizations: | ||
| override: false | ||
| atms_n20: | ||
| obs_distribution: | ||
| name: {{ distribution_type }} | ||
| halo size: 850e3 | ||
| obs_localizations: | ||
| - localization method: Horizontal Gaspari-Cohn | ||
| lengthscale: 850e3 | ||
| max nobs: 5000 |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Submodule jcb
updated
3 files
| +27 −3 | jcb_client_init.py | |
| +2 −1 | jcb_clients.yaml | |
| +45 −0 | src/jcb/renderer.py |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parm/atm/atm_det_config.yaml.j2copies fromDATAtojedi_increment.atm.i006.tile*. There is nocsg_prefix on the deterministic individual tile files.In contrast, the yaml above copies the ensemble jedi_increment tile from
DATAtocsg_jedi_increment.atm.i006.tile*. The ensemble DA files have acsg_prefix on the individual tile files.We should use the same convention for the deterministic and ensemble jedi_increment tile files.
Since the deterministic does not use the
csg_prefix, it seems we should drop thecsg_prefix for the ensmble jedi_increment tile files.What do you think @bhuang95 , @DavidNew-NOAA , and @CoryMartin-NOAA ?
This inconsistency is causing failures in select g-w CI cases.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd have to look, but is this the distinction between the increment on the tiles and the increment on a Gaussian grid? Or are they both on the tiles?
EDIT: Scratch that, I can't read :-) If we have tileN in the file name, there is no need for
csgin my opinionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed. Inclusion of
tile*in the filename clearly indicates that the file is a tiled file on the cube sphere grid.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RussTreadon-NOAA The
csg_prefix was added in the workflow somepoint probaby last December. But my impression is whether to add it or not does not affect other parts. It should be good to remove it. Thanks for the change and merging it.