Changeset 4808 for palm/trunk/UTIL/inifor/src/inifor_transform.f90
- Timestamp:
- Dec 3, 2020 1:08:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/inifor/src/inifor_transform.f90
r4756 r4808 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Add offending height values to model-top error message 29 ! 30 ! 31 ! 4756 2020-10-26 10:05:58Z eckhard 28 32 ! Fixed an error in surface pressure extrapolation where the cosmo grid was 29 33 ! misinterpreted as palm grid … … 1105 1109 palm_grid%w_verti(i,j,k,1:2) = - 2.0_wp 1106 1110 1107 message = "PALM-4U grid extends above COSMO-DE model top." 1111 message = & 1112 "PALM-4U grid extends above COSMO model top. " // & 1113 "Height of COSMO model top: " // & 1114 TRIM( real_to_str( column_top, format = '(F11.3)') ) // & 1115 " m, height of current PALM point: " // & 1116 TRIM( real_to_str( current_height , format = '(F11.3)') ) // & 1117 " m, height of PALM model top: " // & 1118 TRIM( real_to_str( MAXVAL(palm_grid%z) + palm_grid%z0, '(F11.3)') ) // " m." 1108 1119 CALL inifor_abort('find_vertical_neighbours_and_weights', message) 1109 1120 … … 1246 1257 avg_grid%w(l,k_palm,1:2) = - 2.0_wp 1247 1258 1248 message = "PALM-4U grid extends above COSMO-DE model top." 1259 message = & 1260 "PALM-4U grid extends above COSMO model top. " // & 1261 "Height of COSMO model top: " // & 1262 TRIM( real_to_str( column_top, format = '(F11.3)') ) // & 1263 " m, height of current PALM point: " // & 1264 TRIM( real_to_str( current_height , format = '(F11.3)') ) // & 1265 " m, height of PALM model top: " // & 1266 TRIM( real_to_str( MAXVAL(avg_grid%z) + avg_grid%z0, '(F11.3)') ) // " m." 1249 1267 CALL inifor_abort('find_vertical_neighbours_and_weights_average', message) 1250 1268
Note: See TracChangeset
for help on using the changeset viewer.