- Timestamp:
- Aug 17, 2017 10:49:36 AM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r2348 r2354 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix correlated to lsm_check_data_output_pr. 28 ! If-statement for following checks is essential, otherwise units for lsm output 29 ! are set to 'illegal' and palm will be aborted. 30 ! 31 ! 2348 2017-08-10 10:40:10Z kanani 27 32 ! New: Check for simultaneous use of geostrophic wind and u_profile/v_profile 28 33 ! … … 2903 2908 dopr_unit(i) ) 2904 2909 2905 CALL lsf_nudging_check_data_output_pr( data_output_pr(i), i, & 2910 IF ( unit == 'illegal' ) THEN 2911 CALL lsf_nudging_check_data_output_pr( data_output_pr(i), i, & 2906 2912 unit, dopr_unit(i) ) 2913 ENDIF 2907 2914 2908 2915 IF ( unit == 'illegal' ) THEN -
palm/trunk/SOURCE/land_surface_model_mod.f90
r2340 r2354 25 25 ! ----------------- 26 26 ! $Id$ 27 ! minor bugfixes 28 ! 29 ! 2340 2017-08-07 17:11:13Z maronga 27 30 ! Revised root_distribution tabel and implemented a pseudo-generic root fraction 28 31 ! calculation … … 1234 1237 ENDDO 1235 1238 ENDIF 1239 nzs = nzt_soil + 1 1240 1236 1241 1237 1242 IF ( vegetation_type == 0 ) THEN … … 1290 1295 1291 1296 ddz_soil_center = 1.0_wp / dz_soil_center 1292 ddz_soil = 1.0_wp / dz_soil 1297 ddz_soil(nzb_soil:nzt_soil) = 1.0_wp / dz_soil(nzb_soil:nzt_soil) 1298 1293 1299 1294 1300 … … 1431 1437 !-- for vegetation type surfaces, the thermal conductivity of the soil is 1432 1438 !-- needed 1439 1433 1440 IF ( surf%vegetation_surface(m) ) THEN 1434 1441
Note: See TracChangeset
for help on using the changeset viewer.