Skip to content
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

mpas_atm refactor to use state structure module #780

Open
wants to merge 34 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
fdd2518
first pass through removing uneeded code
hkershaw-brown Oct 11, 2024
c8c9b0e
model_mod_check
hkershaw-brown Oct 11, 2024
563ed3c
get_state_meta_data - bitwise with main
hkershaw-brown Oct 11, 2024
10d63eb
model_interpolate error codes
hkershaw-brown Oct 11, 2024
4a82fb7
compute_scalar_with_barycentric with state stucture calls rather than…
hkershaw-brown Oct 28, 2024
3cccd4a
state variables bounds
hkershaw-brown Oct 28, 2024
9aa40b0
model_interpolate
hkershaw-brown Oct 28, 2024
0892248
get_close and convert_vert for obs and state
hkershaw-brown Oct 28, 2024
a788026
Merge branch 'main' into mpas-refactor
hkershaw-brown Oct 28, 2024
8d718c4
uncommented find_surrounding_edges
hkershaw-brown Oct 28, 2024
2fc8672
compute_pressure_at_loc
hkershaw-brown Oct 29, 2024
6db8018
is_edgedata_in_state_vector checks state vector for edge dimensions.
hkershaw-brown Oct 29, 2024
268f5af
chore: removed unused routine query_vert_localization_coord
hkershaw-brown Oct 29, 2024
14e6b4a
chore: remove unsused variables from get_state_meta_data
hkershaw-brown Oct 29, 2024
ab1d1aa
Removed more unused code
hkershaw-brown Oct 29, 2024
061acab
Merge branch 'main' into mpas-refactor
hkershaw-brown Nov 12, 2024
9be3b78
note on 2M, 10M qtys
hkershaw-brown Nov 12, 2024
ea7044f
feat: model_interpolate for qty_vertical_velocity
hkershaw-brown Nov 15, 2024
15c654c
fix: nc can be more than 3 for rbf calculations
hkershaw-brown Nov 15, 2024
f02f271
reject obs to far from surface
hkershaw-brown Dec 3, 2024
3716ed2
reject obs above a user specified pressure level
hkershaw-brown Dec 3, 2024
8a6d6dd
Things that cannot be negative
hkershaw-brown Dec 3, 2024
4f2df10
Merge branch 'main' into mpas-refactor
hkershaw-brown Dec 9, 2024
f8e40b3
chore: add LICENSCE for code from MPAS-Model
hkershaw-brown Dec 24, 2024
40eda41
remove out-of-date revision, revdate
hkershaw-brown Dec 26, 2024
78ba958
update_mpas_states - copying variables from one file to another
hkershaw-brown Dec 26, 2024
4404e17
chore: remove read_2d_from_nc_file
hkershaw-brown Dec 26, 2024
9954b92
skipping u for update_mpas_states
hkershaw-brown Dec 26, 2024
6f87301
feat: update wind components in update_mpas_states
hkershaw-brown Dec 27, 2024
70e60cb
removed used routines and variables, and soon to be unused routines
hkershaw-brown Dec 27, 2024
f5c4af8
partial update_bc. Does not compile.
hkershaw-brown Jan 6, 2025
7f5344c
removed lbc domain
hkershaw-brown Jan 7, 2025
75abd14
typos and indenting fixes
hkershaw-brown Jan 7, 2025
33499e6
Merge branch 'main' into mpas-refactor
hkershaw-brown Jan 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: nc can be more than 3 for rbf calculations
set ids array to length nc rather than 3
  • Loading branch information
hkershaw-brown committed Nov 15, 2024
commit 15c654c39af1a5e44a8ee0e77cf399138c051053
2 changes: 1 addition & 1 deletion models/mpas_atm/model_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -2789,7 +2789,7 @@ subroutine find_vert_level(state_handle, ens_size, loc, nc, ids, var_id, lower,
type(ensemble_type), intent(in) :: state_handle
type(location_type), intent(in) :: loc
integer, intent(in) :: ens_size
integer, intent(in) :: nc, ids(3)
integer, intent(in) :: nc, ids(nc)
integer, intent(in) :: var_id ! state variable id
integer, intent(out) :: lower(nc, ens_size), upper(nc, ens_size)
real(r8), intent(out) :: fract(nc, ens_size)
Expand Down