-
Notifications
You must be signed in to change notification settings - Fork 7
Add JEDI-based analysis calculation #28
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
Closed
Closed
Changes from 29 commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
2833e05
Initial commit
DavidNew-NOAA 77ed7ce
Redo YAML config for calcanl
DavidNew-NOAA dbc6ddd
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA 6ea2a97
Initial commit
DavidNew-NOAA 1f19dff
Update to reflect changes to FMS nonrestart
DavidNew-NOAA fb54e30
Add datetime templating flag for FMS increments
DavidNew-NOAA f3fbc9f
Use JCB template variables for 'fields to write' parameter
DavidNew-NOAA e82d179
Use fv3inc fields metadata for JEDI increment output
DavidNew-NOAA c0f1fef
Revert some stuff
DavidNew-NOAA 597c0f9
Update atmosphere_output_ensemble_increments_fms_nonrestart.yaml.j2
DavidNew-NOAA 641c795
read FMS non-restart increment
DavidNew-NOAA 2e52215
Merge branch 'feature/cubeinc' into feature/calcanl
DavidNew-NOAA e102bb0
Update fv3jedi_calcanl.yaml.j2
DavidNew-NOAA 3cbfa5c
Make hydrostatic_delz just delz
DavidNew-NOAA 3817d08
Add surface background file
DavidNew-NOAA a4367ad
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA df8b2e8
Update YAML for analysis calc
DavidNew-NOAA afa5b6c
Rename some stuff per Rahul's comment
DavidNew-NOAA c6dd00f
Final renaming
DavidNew-NOAA 5628736
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA ba1379a
Add cubed_sphere_grid_ to prefixes
DavidNew-NOAA 607b74c
Revert some stuff
DavidNew-NOAA 85ccdb4
Add "cubed_sphere_grid_" prefix where appropriate
DavidNew-NOAA 4b2827e
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA ef5775a
Remove ges.sfc background file
DavidNew-NOAA aa3b110
Finish update to list of analysis variables
DavidNew-NOAA dd6f3ad
Merge branch 'develop' into feature/calcanl
danholdaway 55fa040
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA 5e48cf0
Merge branch 'develop' into feature/calcanl
danholdaway 96d9e87
add atmosphere_ prefix to analysis_variables
DavidNew-NOAA bbbd9c8
Merge branch 'feature/calcanl' of https://github.com/noaa-emc/jcb-gda…
DavidNew-NOAA 6218562
Update atmosphere test template
DavidNew-NOAA de9264a
Update test/client_integration/gdas-atmosphere-templates.yaml
DavidNew-NOAA 9dfa810
Slight asthetic change
DavidNew-NOAA 68c7105
Merge branch 'develop' into feature/calcanl
DavidNew-NOAA 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
background geometry: | ||
fms initialization: | ||
namelist filename: ./fv3jedi/fmsmpp.nml | ||
field table filename: ./fv3jedi/field_table | ||
akbk: ./fv3jedi/akbk.nc4 | ||
layout: | ||
- {{ atmosphere_layout_x }} | ||
- {{ atmosphere_layout_y }} | ||
npx: {{ atmosphere_npx_ges }} | ||
npy: {{ atmosphere_npy_ges }} | ||
npz: {{ atmosphere_npz_ges }} | ||
field metadata override: ./fv3jedi/fv3jedi_fieldmetadata_history.yaml | ||
increment geometry: | ||
fms initialization: | ||
namelist filename: ./fv3jedi/fmsmpp.nml | ||
field table filename: ./fv3jedi/field_table | ||
akbk: ./fv3jedi/akbk.nc4 | ||
layout: | ||
- {{ atmosphere_layout_x }} | ||
- {{ atmosphere_layout_y }} | ||
npx: {{ atmosphere_npx_ges }} | ||
npy: {{ atmosphere_npy_ges }} | ||
npz: {{ atmosphere_npz_ges }} | ||
field metadata override: ./fv3jedi/fv3jedi_fieldmetadata_fv3inc.yaml | ||
full resolution analysis geometry: | ||
fms initialization: | ||
namelist filename: ./fv3jedi/fmsmpp.nml | ||
field table filename: ./fv3jedi/field_table | ||
akbk: ./fv3jedi/akbk.nc4 | ||
layout: | ||
- {{ atmosphere_layout_x }} | ||
- {{ atmosphere_layout_y }} | ||
npx: {{ atmosphere_npx_ges }} | ||
npy: {{ atmosphere_npy_ges }} | ||
npz: {{ atmosphere_npz_ges }} | ||
field metadata override: ./fv3jedi/fv3jedi_fieldmetadata_restart.yaml | ||
ensemble resolution analysis geometry: | ||
fms initialization: | ||
namelist filename: ./fv3jedi/fmsmpp.nml | ||
field table filename: ./fv3jedi/field_table | ||
akbk: ./fv3jedi/akbk.nc4 | ||
layout: | ||
- {{ atmosphere_layout_x }} | ||
- {{ atmosphere_layout_y }} | ||
npx: {{ atmosphere_npx_anl }} | ||
npy: {{ atmosphere_npy_anl }} | ||
npz: {{ atmosphere_npz_anl }} | ||
field metadata override: ./fv3jedi/fv3jedi_fieldmetadata_restart.yaml | ||
additions from template: | ||
pattern: '%hr%' | ||
forecast hours: ['06'] | ||
template: | ||
background: | ||
datetime: "{{ atmosphere_background_time_iso }}" | ||
filetype: cube sphere history | ||
datapath: ./analcalc_%hr% | ||
filename: ges.%hr%.nc | ||
provider: ufs | ||
state variables: [liq_wat,delz,delp,w,graupel,surface_geopotential_height, | ||
ice_wat,ice_nc,rain_nc,o3mr,rainwat,snowwat,sphum,t,ua,va] | ||
increment: | ||
filetype: fms restart | ||
is restart: false | ||
filename_nonrestart: ./analcalc_%hr%/siginc.%hr%.nc | ||
added variables: [ua,va,t,sphum,ice_wat,liq_wat,o3mr,delp,delz] | ||
full resolution analysis: | ||
filetype: auxgrid | ||
gridtype: gaussian | ||
filename: ./analcalc_%hr%/anl.%hr%. | ||
ensemble resolution analysis: | ||
filetype: auxgrid | ||
gridtype: gaussian | ||
filename: ./analcalc_%hr%/anl.ensres.%hr%. |
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
4 changes: 2 additions & 2 deletions
4
model/atmosphere/atmosphere_final_increment_cubed_sphere.yaml.j2
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
18 changes: 18 additions & 0 deletions
18
model/atmosphere/atmosphere_final_increment_fms_nonrestart.yaml.j2
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,18 @@ | ||
output: | ||
state component: | ||
filetype: fms restart | ||
is restart: false | ||
filename_nonrestart: ./anl/cubed_sphere_grid_atminc.%yyyy%mm%dd.%hh%MM%ssz.nc4 | ||
fields to write: {{analysis_variables}} | ||
danholdaway marked this conversation as resolved.
Show resolved
Hide resolved
|
||
geometry: | ||
fms initialization: | ||
namelist filename: "{{atmosphere_fv3jedi_files_path}}/fmsmpp.nml" | ||
field table filename: "{{atmosphere_fv3jedi_files_path}}/field_table" | ||
akbk: "{{atmosphere_fv3jedi_files_path}}/akbk.nc4" | ||
layout: | ||
- {{atmosphere_layout_x}} | ||
- {{atmosphere_layout_y}} | ||
npx: {{atmosphere_npx_ges}} | ||
npy: {{atmosphere_npy_ges}} | ||
npz: {{atmosphere_npz_ges}} | ||
field metadata override: "{{atmosphere_fv3jedi_files_path}}/fv3jedi_fieldmetadata_fv3inc.yaml" |
2 changes: 1 addition & 1 deletion
2
model/atmosphere/atmosphere_output_ensemble_increments_cubed_sphere.yaml.j2
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,3 +1,3 @@ | ||
filetype: cube sphere history | ||
provider: ufs | ||
filename: ./anl/mem%{member}%/atminc.%yyyy%mm%dd.%hh%MM%ssz.nc4 | ||
filename: ./anl/mem%{member}%/cubed_sphere_grid_atminc.%yyyy%mm%dd.%hh%MM%ssz.nc4 |
3 changes: 3 additions & 0 deletions
3
model/atmosphere/atmosphere_output_ensemble_increments_fms_nonrestart.yaml.j2
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,3 @@ | ||
filetype: fms restart | ||
is restart: false | ||
filename_nonrestart: ./anl/mem%{member}%/cubed_sphere_grid_atminc.%yyyy%mm%dd.%hh%MM%ssz.nc4 |
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.