-
Notifications
You must be signed in to change notification settings - Fork 42
Enable EnKF-only for atmosphere #2010
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
Open
bhuang95
wants to merge
21
commits into
NOAA-EMC:develop
Choose a base branch
from
bhuang95:feature/enkf_only_dev
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
61100eb
Use atmosphere obs directory for lgetkf
bhuang95 5345992
Initial pass of GSI and JEDI, but forecast failed with NaN
bhuang95 9f22d92
Add atm_letkf_app
bhuang95 15ed146
Fix conflicts when merging develop
bhuang95 f241807
Changes for EE name standards
bhuang95 30baa19
GSI and JEDI test passed after EE name change. csg in JEDI file names…
bhuang95 299f38f
add fetch and prepatmopeanlbc tasks and need to test them
bhuang95 f3131ae
Pass GSI and JEDI test
bhuang95 dc3b930
Cleanup but gsi eobs fauled due to recent create_gsi_info.sh change
bhuang95 50088cb
Merge branch 'develop' into feature/enkf_only_dev
bhuang95 8cb610e
Update submodules
bhuang95 c0651a3
1st clean/ready version that pass JEDI and GSI test
bhuang95 3cc019d
Address David's comments and need to update to recent NOAA EMC develop
bhuang95 c3b2bab
define letkf obs_distribution_localizations in jcb
bhuang95 2e104c7
remove temporary files
bhuang95 e3cc5c9
Issue #4339: Enable EnKF-only for atmosphere (1st try)
bhuang95 882c00f
Merge develop and fix code norm failure
bhuang95 18d173f
Merge branch 'develop' into feature/enkf_only_dev
bhuang95 14387b0
Update sorc/jcb to develop and parm/jcb-gdas
bhuang95 78ab701
Update parm/jcb-gdas
bhuang95 bfb20db
use parm/jcb-gdas develop
bhuang95 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-gdas
updated
23 files
Submodule ioda
updated
8 files
| +42 −25 | src/ObsSpace.cc | |
| +3 −2 | src/ObsSpace.h | |
| +0 −2 | src/reader/ObsReader.cpp | |
| +8 −12 | src/reader/distribute/distributeObs.cpp | |
| +10 −6 | src/reader/filter/filterObs.cpp | |
| +3 −24 | test/CMakeLists.txt | |
| +0 −105 | test/testinput/iodatest_obsspace_index_recnum_osdf.yaml | |
| +0 −6 | test/testinput/iodatest_reader_filter.yaml |
Submodule oops
updated
21 files
| +7 −1 | qg/model/qg_obsvec_mod.F90 | |
| +1 −2 | qg/test/testinput/4dvar_drpcg_lmp.yaml | |
| +1 −1 | qg/test/testinput/letkf_crossvalid.yaml | |
| +0 −2 | src/CMakeLists.txt | |
| +0 −28 | src/oops/base/FieldSet4D.cc | |
| +0 −10 | src/oops/base/FieldSet4D.h | |
| +27 −71 | src/oops/generic/HtlmCalculator.h | |
| +13 −34 | src/oops/generic/HybridLinearModelCoeffs.h | |
| +3 −4 | src/oops/runs/Run.cc | |
| +2 −0 | src/oops/runs/Run.h | |
| +7 −12 | src/oops/runs/Variational.h | |
| +6 −3 | src/oops/util/FieldSetSubCommunicators.cc | |
| +1 −1 | src/oops/util/LibOOPS.cc | |
| +1 −1 | src/oops/util/LibOOPS.h | |
| +2 −2 | src/oops/util/TestReference.cc | |
| +2 −2 | src/oops/util/TestReference.h | |
| +0 −1 | src/oops/util/Timer.cc | |
| +9 −59 | src/oops/util/TimerHelper.cc | |
| +1 −11 | src/oops/util/TimerHelper.h | |
| +0 −69 | src/oops/util/TimerTree.cc | |
| +0 −35 | src/oops/util/TimerTree.h |
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.
Uh oh!
There was an error while loading. Please reload this page.