@@ -9,6 +9,7 @@ module tropopause_climo_read
9
9
10
10
use ccpp_kinds, only: kind_phys
11
11
use runtime_obj, only: unset_str
12
+ use shr_kind_mod, only: shr_kind_cl
12
13
13
14
implicit none
14
15
private
@@ -28,7 +29,7 @@ module tropopause_climo_read
28
29
real (kind_phys), public , allocatable :: tropp_days(:)
29
30
30
31
! Private module data
31
- character (len= 256 ) :: tropopause_climo_file = unset_str
32
+ character (len= shr_kind_cl) :: tropopause_climo_file = unset_str
32
33
33
34
contains
34
35
! Read namelist variable tropopause_climo_file.
@@ -119,7 +120,7 @@ subroutine tropopause_climo_read_file()
119
120
real (kind_phys), allocatable :: lon(:)
120
121
real (kind_phys) :: to_lats(pcols), to_lons(pcols)
121
122
real (kind_phys), parameter :: d2r= pi/ 180._kind_phys , zero= 0._kind_phys , twopi= pi* 2._kind_phys
122
- character (len= 256 ) :: locfn
123
+ character (len= shr_kind_cl ) :: locfn
123
124
character (len= shr_kind_cm) :: errmsg
124
125
125
126
errmsg = ' '
@@ -237,4 +238,4 @@ subroutine tropopause_climo_read_file()
237
238
call mark_as_initialized(' filename_of_tropopause_climatology' )
238
239
239
240
end subroutine tropopause_climo_read_file
240
- end module tropopause_climo_read
241
+ end module tropopause_climo_read
0 commit comments