-
Notifications
You must be signed in to change notification settings - Fork 167
feat: aether cubed sphere model_mod #992
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
24 commits
Select commit
Hold shift + click to select a range
972ef5d
aether cubed sphere model_mod
jlaucar 01241ae
Removed legacy svn text from headers.
jlaucar bff79b5
Removed legacy svn revision and revdate and fixed the source string.
jlaucar 9de0f8c
Moved test_aether_grid to aether directory and removed it and supporting
jlaucar 875c67e
Minor changes to model_mod to use error handler, fix comment, fix
jlaucar 6bb9587
Used the parse_variables_clamp routine from default_model_mod to
jlaucar 0cca066
Converted to DART netcdf utilities as much as possible for model_to_d…
jlaucar 5b4e24d
Converted dart_to_model to use as many routines from the netcdf_utili…
jlaucar 2539d43
Made all variables that go in filter files R8 instead of R4.
jlaucar 5de7b9b
Added error checks for all nf90_ netcdf calls.
jlaucar a9dc591
Removed use of unneeded type for reading in the template file and cha…
jlaucar 35243ed
Simplified file_type definition to remove unneeded fields.
jlaucar 3894555
Removing publics that are not used remotely.
jlaucar ec86b80
Removing legacy regional namelist entries for obs_diag.
jlaucar 7feff8e
Removed redundant code for slant TEC. It now explicitly calls
jlaucar 185378b
Added slant TEC to table.
jlaucar 7e0e6cf
Added additional clarity about what the Aether folks need to do
jlaucar cf9e7b0
Removed use statement for netcdf library.
jlaucar 1e5aa6c
Removed old demo file that was used for Michigan tutorial.
jlaucar 54afcec
Made default namelist consistent that size of test ensemble is 10.
jlaucar 86114f5
chore: gitignore test_aether_grid
hkershaw-brown 95cd3ae
chore: remove unused routines from model_mod use statements
hkershaw-brown 194fca2
fix: tasks other than task 0 may have f10.7 so use ALL_MSG for error_…
hkershaw-brown 1f4774e
bump version and changelog for release
hkershaw-brown 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
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,46 @@ | ||
| ! DART software - Copyright UCAR. This open source software is provided | ||
| ! by UCAR, "as is", without charge, subject to all terms of use at | ||
| ! http://www.image.ucar.edu/DAReS/DART/DART_download | ||
|
|
||
| ! Converts aether restart block files to a DART filter input file | ||
|
|
||
| program aether_to_dart | ||
|
|
||
| use utilities_mod, only : initialize_utilities, finalize_utilities, & | ||
| find_namelist_in_file, check_namelist_read | ||
|
|
||
| use transform_state_mod, only : initialize_transform_state_mod, model_to_dart, & | ||
| get_ensemble_range_from_command_line | ||
|
|
||
| implicit none | ||
|
|
||
| character(len=256) :: aether_file_directory, dart_file_directory | ||
|
|
||
| namelist /aether_to_dart_nml / aether_file_directory, dart_file_directory | ||
|
|
||
| integer :: iunit, io | ||
| integer :: ens, start_ens, end_ens | ||
|
|
||
| !---------------------------------------------------------------- | ||
|
|
||
| call initialize_utilities(progname='aether_to_dart') | ||
|
|
||
| ! Read the namelist | ||
| call find_namelist_in_file('input.nml', 'aether_to_dart_nml', iunit) | ||
| read(iunit, nml = aether_to_dart_nml, iostat = io) | ||
| call check_namelist_read(iunit, io, 'aether_to_dart_nml') | ||
|
|
||
| call initialize_transform_state_mod() | ||
|
|
||
| ! Do the conversion for a range of ensemble members | ||
| call get_ensemble_range_from_command_line(start_ens, end_ens) | ||
|
|
||
| ! The DART SE team has pointed out concerns about having the loop in the program | ||
| ! Loop through the ensemble members and transform each | ||
| do ens = start_ens, end_ens | ||
| call model_to_dart(aether_file_directory, dart_file_directory, ens) | ||
| end do | ||
|
|
||
| call finalize_utilities('aether_to_dart') | ||
|
|
||
| end program aether_to_dart |
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,58 @@ | ||
| 6 | ||
| 0 | ||
| 0 | ||
| 0 | ||
| SAT_TEMPERATURE | ||
| 3 | ||
| 110000 | ||
| 90 | ||
| 45 | ||
| 0 0 | ||
| 1.2 | ||
| 0 | ||
| SAT_DENSITY_ION_O2P | ||
| 3 | ||
| 180000 | ||
| 90 | ||
| -45 | ||
| 0 0 | ||
| 1.3 | ||
| 0 | ||
| SAT_DENSITY_ION_N2P | ||
| 3 | ||
| 250000 | ||
| 270 | ||
| 30 | ||
| 0 0 | ||
| 1.4 | ||
| 0 | ||
| SAT_DENSITY_NEUTRAL_O2 | ||
| 3 | ||
| 350000 | ||
| 270 | ||
| -30 | ||
| 0 0 | ||
| 1.5 | ||
| 0 | ||
| GND_GPS_VTEC | ||
| -2 | ||
| 180 | ||
| 60 | ||
| 0 0 | ||
| 0.1 | ||
| 0 | ||
| SLANT_GPS_VTEC | ||
| 160 | ||
| 50 | ||
| 345678 | ||
| 170 | ||
| 45 | ||
| 111 | ||
| -2 | ||
| 180 | ||
| -10 | ||
| 0 0 | ||
| 0.25 | ||
| obs_seq.in | ||
|
|
||
|
|
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.