Changeset 1587 for palm/trunk
- Timestamp:
- May 4, 2015 2:19:01 PM (10 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r1586 r1587 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Added check for set of albedos when using RRTMG 23 23 ! 24 24 ! Former revisions: … … 1167 1167 CALL message( 'check_parameters', 'PA0410', 1, 2, 0, 6, 0 ) 1168 1168 ENDIF 1169 IF ( albedo_type == 0 .AND. radiation_scheme == 'rrtmg' .AND. & 1170 ( albedo_lw_dif == 9999999.9_wp .OR. albedo_lw_dir == 9999999.9_wp& 1171 .OR. albedo_sw_dif == 9999999.9_wp .OR. albedo_sw_dir == 9999999.9_wp& 1172 ) ) THEN 1173 message_string = 'radiation_scheme = "rrtmg" in combination' // & 1174 'with albedo_type = 0 requires setting of ' // & 1175 'albedo_lw_dif /= 9999999.9' // & 1176 'albedo_lw_dir /= 9999999.9' // & 1177 'albedo_sw_dif /= 9999999.9 and' // & 1178 'albedo_sw_dir /= 9999999.9' 1179 CALL message( 'check_parameters', 'PA0411', 1, 2, 0, 6, 0 ) 1180 ENDIF 1181 1169 1182 ENDIF 1170 1183 -
palm/trunk/SOURCE/radiation_model.f90
r1586 r1587 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Added albedo class for snow 23 23 ! 24 24 ! Former revisions: … … 123 123 'desert, rocky', & ! 12 124 124 'tundra', & ! 13 125 'land ice',& ! 14125 'land ice', & ! 14 126 126 'sea ice', & ! 15 127 127 'snow' & ! 16 … … 178 178 !-- Land surface albedos for solar zenith angle of 60° after Briegleb (1992) 179 179 !-- (shortwave, longwave, broadband): sw, lw, bb, 180 REAL(wp), DIMENSION(0:2,1:1 5), PARAMETER :: albedo_pars = RESHAPE( (/&180 REAL(wp), DIMENSION(0:2,1:16), PARAMETER :: albedo_pars = RESHAPE( (/& 181 181 0.06_wp, 0.06_wp, 0.06_wp, & ! 1 182 182 0.09_wp, 0.28_wp, 0.19_wp, & ! 2 … … 193 193 0.10_wp, 0.27_wp, 0.19_wp, & ! 13 194 194 0.90_wp, 0.65_wp, 0.77_wp, & ! 14 195 0.95_wp, 0.70_wp, 0.82_wp & ! 15 196 /), (/ 3, 15 /) ) 195 0.90_wp, 0.65_wp, 0.77_wp, & ! 15 196 0.95_wp, 0.70_wp, 0.82_wp & ! 16 197 /), (/ 3, 16 /) ) 197 198 198 199 REAL(wp), DIMENSION(:,:,:), ALLOCATABLE, TARGET :: &
Note: See TracChangeset
for help on using the changeset viewer.