-
Notifications
You must be signed in to change notification settings - Fork 50
Completes LETKF task, adds WCDA CI test #1287
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
35 commits
Select commit
Hold shift + click to select a range
8032f4b
debugging for ens WCDA
AndrewEichmann-NOAA 9e283e2
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 3156f05
model_data 2 model
AndrewEichmann-NOAA 818984d
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA bca25b5
adding ensemble WCDA run to ctests
AndrewEichmann-NOAA 4b1932a
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 129d601
adding letkf ctest, making ita llwork
AndrewEichmann-NOAA cfcfd17
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 533d8ea
tweaks
AndrewEichmann-NOAA fe9462e
wrapping up
AndrewEichmann-NOAA f768e79
restore adt yaml
AndrewEichmann-NOAA aa60925
retry with adts
AndrewEichmann-NOAA 45c76c9
the great deawkwarding
AndrewEichmann-NOAA dc23cfd
re-adding test
AndrewEichmann-NOAA 7e54d9c
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 5394e24
merge debugging
AndrewEichmann-NOAA ef98951
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 11492a7
fixed cmakelists
AndrewEichmann-NOAA cf3a26d
Data to letkf_output
AndrewEichmann-NOAA 8d7309f
Update parm/soca/letkf/letkf.yaml.j2
AndrewEichmann-NOAA 4364f12
renaming output
AndrewEichmann-NOAA 0a4703e
Update parm/soca/letkf/letkf_stage.yaml.j2
AndrewEichmann-NOAA 5ddc7b6
remove distribution from obs configs
AndrewEichmann-NOAA ae2bc0f
Merge branch 'feature/ens-WCDA-ctest' of github.com:NOAA-EMC/GDASApp …
AndrewEichmann-NOAA 76e9e39
review tweaks
AndrewEichmann-NOAA 0cd6ff7
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA c29c5e2
run to gdump_ens
AndrewEichmann-NOAA 3aeeb3f
task name update
AndrewEichmann-NOAA a65ecf3
incorporating g-w review and task name changes
AndrewEichmann-NOAA 0fcc9db
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA ac141e5
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA 0e6448c
Merge branch 'develop' into feature/ens-WCDA-ctest
guillaumevernieres 82f53ad
Merge branch 'develop' into feature/ens-WCDA-ctest
AndrewEichmann-NOAA cc4e92d
turning off post-letkf ctests
AndrewEichmann-NOAA 860661e
Merge branch 'develop' into feature/ens-WCDA-ctest
guillaumevernieres 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
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,20 @@ | ||
| {% set PDY = current_cycle | to_YMD %} | ||
| {% set cyc = current_cycle | strftime("%H") %} | ||
| {% set timestr = WINDOW_BEGIN | to_isotime %} | ||
| ###################################### | ||
| # save letkf analysis to comout | ||
| ###################################### | ||
|
|
||
| copy: | ||
| {% for mem in range(1, NMEM_ENS + 1) %} | ||
| {% set tmpl_dict = {'${ROTDIR}':ROTDIR, | ||
| '${RUN}': GDUMP_ENS, | ||
| '${YMD}':PDY, | ||
| '${HH}':cyc, | ||
| '${MEMDIR}':"mem" + '%03d' % mem} %} | ||
| {% set COMOUT_OCEAN_LETKF_MEM = COM_OCEAN_LETKF_TMPL | replace_tmpl(tmpl_dict) %} | ||
| {% set COMOUT_ICE_LETKF_MEM = COM_ICE_LETKF_TMPL | replace_tmpl(tmpl_dict) %} | ||
|
|
||
| - ["{{ DATA }}/letkf_output/ocn.letkf.ens.{{ mem }}.{{ timestr }}.PT3H.nc", "{{ COMOUT_OCEAN_LETKF_MEM }}/{{ GDUMP_ENS }}.ocean.t{{ cyc }}z.analysis.nc"] | ||
| - ["{{ DATA }}/letkf_output/ice.letkf.ens.{{ mem }}.{{ timestr }}.PT3H.nc", "{{ COMOUT_ICE_LETKF_MEM }}/{{ GDUMP_ENS }}.ice.t{{ cyc }}z.analysis.nc"] | ||
| {% endfor %} |
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 |
|---|---|---|
| @@ -1,11 +1,30 @@ | ||
| ###################################### | ||
| # create working directories | ||
| {% set PDY = current_cycle | to_YMD %} | ||
| {% set cyc = current_cycle | strftime("%H") %} | ||
| {% set gcyc = previous_cycle | strftime("%H") %} | ||
| ###################################### | ||
| mkdir: | ||
| - "{{ DATA }}/Data" | ||
| - "{{ DATA }}/letkf_output" | ||
| - "{{ DATA }}/obs" | ||
| copy: | ||
| - "{{ DATA }}/diags" | ||
| - "{{ COMOUT_OCEAN_LETKF }}" | ||
| - "{{ COMOUT_ICE_LETKF }}" | ||
| ###################################### | ||
| # make comout directories | ||
| ###################################### | ||
| # copy mom input template | ||
| {% for mem in range(1, NMEM_ENS + 1) %} | ||
| {% set tmpl_dict = {'${ROTDIR}':ROTDIR, | ||
| '${RUN}':GDUMP_ENS, | ||
| '${YMD}':PDY, | ||
| '${HH}':cyc, | ||
| '${MEMDIR}':"mem" + '%03d' % mem} %} | ||
| - "{{ COM_OCEAN_LETKF_TMPL | replace_tmpl(tmpl_dict) }}" | ||
| - "{{ COM_ICE_LETKF_TMPL | replace_tmpl(tmpl_dict) }}" | ||
| {% endfor %} | ||
| ###################################### | ||
| # copy mom input template and det bkg | ||
| ###################################### | ||
| copy: | ||
| - ["{{ PARMgfs }}/gdas/soca/fms/input.nml", "{{ DATA }}/mom_input.nml.tmpl"] | ||
| - ["{{ PARMgfs }}/gdas/soca/fields_metadata.yaml", "{{ DATA }}/fields_metadata.yaml"] | ||
| - ["{{ COMIN_OCEAN_HISTORY_PREV }}/gdas.ocean.t{{ gcyc }}z.inst.f009.nc", "{{ DATA }}/INPUT/MOM.res.nc"] | ||
| - ["{{ COMIN_ICE_HISTORY_PREV }}/gdas.ice.t{{ gcyc }}z.inst.f009.nc", "{{ DATA }}/INPUT/cice.res.nc"] | ||
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| # TODO(AFE): make resolution dependent | ||
| mkdir: | ||
| - "{{ DATA }}/INPUT" | ||
| ###################################### | ||
|
|
||
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
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.
Uh oh!
There was an error while loading. Please reload this page.