-
Notifications
You must be signed in to change notification settings - Fork 51
Update parm/aero files for UPP processing aerosol analysis in GRIB2 format #1964
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 3 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
43371bc
add upp-related staging and config file
1278597
update config files for UPP processing aerosol analysis
5ff0312
Merge branch 'develop' into feature/aeroanl_upp
ypwang19 305d135
add sea salt increments to correct bin
0528be2
clean up
3ceab3b
clean up
0bf441c
specify resolution in output names
dc8ebef
minor fix
7a82bac
update to stage aerosol analysis-related files, match aerosol variabl…
2e2de45
do not need upp configure file in GDASApp
71e2161
Merge branch 'develop' into feature/aeroanl_upp
ypwang19 dc41acf
Merge branch 'develop' into feature/aeroanl_upp
ypwang19 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,59 @@ | ||
| upp: | ||
| rundir: '{{ DATA }}/upp' | ||
| exe_src: '{{ EXECgfs }}/upp.x' | ||
| mpi_cmd: '{{ APRUN_AEROANLFINAL }}' | ||
| jcb_base_yaml: '{{ PARMgfs }}/gdas/aero/jcb-base.yaml.j2' | ||
| config: | ||
| grib_version: "grib2" | ||
| ioform: "netcdfpara" | ||
| po: [1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01] | ||
| rdaod: False | ||
| nasa_on: True | ||
| fix_data: | ||
| mkdir: | ||
| - "{{ DATA }}/upp" | ||
| copy: | ||
| - ["{{ PARMgfs }}/post/gcafs/postxconfig-NT-gcafs.txt", "{{ DATA }}/upp/postxconfig-NT.txt"] | ||
| - ["{{ PARMgfs }}/post/params_grib2_tbl_new", "{{ DATA }}/upp/params_grib2_tbl_new"] | ||
| - ["{{ PARMgfs }}/post/nam_micro_lookup.dat", "{{ DATA }}/upp/eta_micro_lookup.dat"] | ||
| - ["{{ EXECgfs }}/upp.x", "{{ DATA }}/upp/"] | ||
| - ["{{ PARMgfs }}/post/itag.jinja", "{{ DATA }}/upp/"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_DUST_nasa.dat", "{{ DATA }}/upp/optics_luts_DUST_nasa.dat"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_NITR_nasa.dat", "{{ DATA }}/upp/optics_luts_NITR_nasa.dat"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_SALT_nasa.dat", "{{ DATA }}/upp/optics_luts_SALT_nasa.dat"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_SOOT_nasa.dat", "{{ DATA }}/upp/optics_luts_SOOT_nasa.dat"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_SUSO_nasa.dat", "{{ DATA }}/upp/optics_luts_SUSO_nasa.dat"] | ||
| - ["{{ PARMgfs }}/post/optics_luts_WASO_nasa.dat", "{{ DATA }}/upp/optics_luts_WASO_nasa.dat"] | ||
|
|
||
| analysis: | ||
| config: | ||
| nasa_on: True | ||
| data_in: | ||
| none: | ||
|
|
||
| atmincvars: [ | ||
| ['ugrd', 'u_inc'], | ||
| ['vgrd', 'v_inc'], | ||
| ['dpres', 'delp_inc'], | ||
| ['delz', 'delz_inc'], | ||
| ['tmp', 'T_inc'], | ||
| ['spfh', 'sphum_inc'], | ||
| ['rwmr', 'liq_wat_inc'], | ||
| ['o3mr', 'o3mr_inc'], | ||
| ['icmr', 'icmr_inc']] | ||
|
|
||
| aeroincvars: [ | ||
| ['dust1', 'mass_fraction_of_dust001_in_air'], | ||
| ['dust2', 'mass_fraction_of_dust002_in_air'], | ||
| ['dust3', 'mass_fraction_of_dust003_in_air'], | ||
| ['dust4', 'mass_fraction_of_dust004_in_air'], | ||
| ['dust5', 'mass_fraction_of_dust005_in_air'], | ||
| ['seas1', 'mass_fraction_of_sea_salt001_in_air'], | ||
| ['seas2', 'mass_fraction_of_sea_salt002_in_air'], | ||
| ['seas3', 'mass_fraction_of_sea_salt003_in_air'], | ||
| ['seas4', 'mass_fraction_of_sea_salt004_in_air'], | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are these consistent with the bin size selections we plan to go with?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, these are not. I will update them. |
||
| ['so4', 'mass_fraction_of_sulfate_in_air'], | ||
| ['oc1', 'mass_fraction_of_hydrophobic_organic_carbon_in_air'], | ||
| ['oc2', 'mass_fraction_of_hydrophilic_organic_carbon_in_air'], | ||
| ['bc1', 'mass_fraction_of_hydrophobic_black_carbon_in_air'], | ||
| ['bc2', 'mass_fraction_of_hydrophilic_black_carbon_in_air']] | ||
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.
We might need to specify the resolution in the output file names?
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.
How about
gcdas.tXXz.analysis.aero.0p25.grib2? I assume 0p25 corresponds to C384.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.
Yeah that sounds good.