Skip to content

Commit 2ed783a

Browse files
authored
Update standard names for tropopause_find (#329)
Tag name (required for release branches): Originator(s): @jimmielin Description (include the issue title, and the keyword ['closes', 'fixes', 'resolves'] followed by the issue number): Fixes #308 by updating tropopause_find standard names. Describe any changes made to build system: N/A Describe any changes made to the namelist: N/A List any changes to the defaults for the input datasets (e.g. boundary datasets): 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>`) Updates standard names for tropopause_find M src/physics/utils/tropopause_climo_read.F90 M src/physics/utils/tropopause_climo_read.meta If there are new failures (compared to the `test/existing-test-failures.txt` file), have them OK'd by the gatekeeper, note them here, and add them to the file. If there are baseline differences, include the test and the reason for the diff. What is the nature of the change? Roundoff? derecho/intel/aux_sima: derecho/gnu/aux_sima: If this changes climate describe any run(s) done to evaluate the new climate in enough detail that it(they) could be reproduced: CAM-SIMA date used for the baseline comparison tests if different than latest:
1 parent 37fdbfb commit 2ed783a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[submodule "ncar-physics"]
2121
path = src/physics/ncar_ccpp
2222
url = https://github.com/ESCOMP/atmospheric_physics
23-
fxtag = e7a599f4bb1533f7cdcd8723b1f864e11578e96c
23+
fxtag = 491e56247815ef23bfd8dba65d1e3c3b78ba164a
2424
fxrequired = AlwaysRequired
2525
fxDONOTUSEurl = https://github.com/ESCOMP/atmospheric_physics
2626
[submodule "ccs_config"]

src/physics/utils/tropopause_climo_read.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ subroutine tropopause_climo_read_file()
233233
!--------------------------------------------------------
234234
! Mark variables as initialized so they are not read from initial conditions
235235
!--------------------------------------------------------
236-
call mark_as_initialized('tropopause_air_pressure_from_climatology_dataset')
237-
call mark_as_initialized('tropopause_calendar_days_from_climatology')
236+
call mark_as_initialized('tropopause_air_pressure_from_tropopause_climatology_dataset')
237+
call mark_as_initialized('tropopause_calendar_days_from_tropopause_climatology')
238238

239239
end subroutine tropopause_climo_read_file
240240
end module tropopause_climo_read

src/physics/utils/tropopause_climo_read.meta

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
name = tropopause_climo_read
77
type = module
88
[ tropp_slices ]
9-
standard_name = number_of_months_in_year
9+
standard_name = number_of_time_slices_in_tropopause_climatology_dataset
1010
units = 1
1111
type = integer
1212
dimensions = ()
1313
[ tropp_p_loc ]
14-
standard_name = tropopause_air_pressure_from_climatology_dataset
14+
standard_name = tropopause_air_pressure_from_tropopause_climatology_dataset
1515
units = Pa
1616
type = real | kind = kind_phys
17-
dimensions = (horizontal_dimension, number_of_months_in_year)
17+
dimensions = (horizontal_dimension, number_of_time_slices_in_tropopause_climatology_dataset)
1818
[ tropp_days ]
19-
standard_name = tropopause_calendar_days_from_climatology
19+
standard_name = tropopause_calendar_days_from_tropopause_climatology
2020
long_name = Climatological tropopause calendar day indices from file
2121
units = 1
2222
type = real | kind = kind_phys
23-
dimensions = (number_of_months_in_year)
23+
dimensions = (number_of_time_slices_in_tropopause_climatology_dataset)

0 commit comments

Comments
 (0)