Skip to content

Commit 72632b9

Browse files
authored
CCPP framework only allows standard names as dimension indices (ESCOMP#264)
Originator(s): peverwhee Description (include issue title and the keyword ['closes', 'fixes', 'resolves'] and issue number): With the new CCPP-framework updates, we can no longer use integer dimension indices (like 1:horizontal_loop_extent). This PR removes a couple of those. List all namelist files that were added or changed: N/A List all files eliminated and why: N/A List all files added and what they do: N/A List all existing files that have been modified, and describe the changes: (Helpful git command: `git diff --name-status development...<your_branch_name>`) M schemes/sima_diagnostics/zm_diagnostics.meta M schemes/sima_diagnostics/zm_evap_tendency_diagnostics.meta - remove "1:" in metadata dimensions List all automated tests that failed, as well as an explanation for why they weren't fixed: N/A Is this an answer-changing PR? If so, is it a new physics package, algorithm change, tuning change, etc? No. If yes to the above question, describe how this code was validated with the new/modified features:
1 parent 4971625 commit 72632b9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

schemes/sima_diagnostics/zm_diagnostics.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
standard_name = lwe_precipitation_rate_at_surface_due_to_deep_convection
5858
units = m s-1
5959
type = real | kind = kind_phys
60-
dimensions = (1:horizontal_loop_extent)
60+
dimensions = (horizontal_loop_extent)
6161
intent = in
6262
[ cape ]
6363
standard_name = zhang_mcfarlane_convective_available_potential_energy

schemes/sima_diagnostics/zm_evap_tendency_diagnostics.meta

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
standard_name = tendency_of_dry_air_enthalpy_at_constant_pressure
6464
units = J kg-1 s-1
6565
type = real | kind = kind_phys
66-
dimensions = (1:horizontal_loop_extent,1:vertical_layer_dimension)
66+
dimensions = (horizontal_loop_extent,vertical_layer_dimension)
6767
intent = in
6868
[ errmsg ]
6969
standard_name = ccpp_error_message

0 commit comments

Comments
 (0)