Changeset 2724 for palm/trunk/SOURCE
- Timestamp:
- Jan 5, 2018 12:12:38 PM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/land_surface_model_mod.f90
r2723 r2724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Added security check for insufficient soil_temperature values 28 ! 29 ! 2723 2018-01-05 09:27:03Z maronga 27 30 ! Bugfix for spinups (end_time was increased twice in case of LSM + USM runs) 28 31 ! … … 478 481 479 482 480 REAL(wp), DIMENSION(0:20) :: root_fraction = 9999999.9_wp, & !< (NAMELIST) distribution of root surface area to the individual soil layers481 soil_moisture = 0.0_wp, & !< NAMELIST soil moisture content (m3/m3)482 soil_temperature = 300.0_wp, & !< NAMELIST soil temperature (K) +1483 dz_soil = 9999999.9_wp, & !< (NAMELIST) soil layer depths (spacing)483 REAL(wp), DIMENSION(0:20) :: root_fraction = 9999999.9_wp, & !< (NAMELIST) distribution of root surface area to the individual soil layers 484 soil_moisture = 0.0_wp, & !< NAMELIST soil moisture content (m3/m3) 485 soil_temperature = 9999999.9_wp, & !< NAMELIST soil temperature (K) +1 486 dz_soil = 9999999.9_wp, & !< (NAMELIST) soil layer depths (spacing) 484 487 zs_layer = 9999999.9_wp !< soil layer depths (edge) 485 488 … … 1509 1512 nzs = nzt_soil + 1 1510 1513 1511 1514 ! 1515 !-- Check whether valid soil temperatures are prescribed 1516 IF ( ANY( soil_temperature(nzb_soil:nzt_soil+1) == 9999999.9_wp ) ) THEN 1517 WRITE( message_string, * ) 'number of soil layers (', nzs, ') does not',& 1518 ' match to the number of layers specified', & 1519 ' in soil_temperature (', COUNT( & 1520 soil_temperature /= 9999999.9_wp )-1, ')' 1521 CALL message( 'check_parameters', 'PA0471', 1, 2, 0, 6, 0 ) 1522 ENDIF 1523 1524 ! 1525 !-- Check whether the sum of all root fractions equals one 1512 1526 IF ( vegetation_type == 0 ) THEN 1513 1527 IF ( SUM( root_fraction(nzb_soil:nzt_soil) ) /= 1.0_wp ) THEN -
palm/trunk/SOURCE/radiation_model_mod.f90
r2723 r2724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Set default of average_radiation to .FALSE. 28 ! 29 ! 2723 2018-01-05 09:27:03Z maronga 27 30 ! Bugfix in calculation of rad_lw_out (clear-sky). First grid level was used 28 31 ! instead of the surface value … … 350 353 sw_radiation = .TRUE., & !< flag parameter indicating whether shortwave radiation shall be calculated 351 354 sun_direction = .FALSE., & !< flag parameter indicating whether solar direction shall be calculated 352 average_radiation = . TRUE.,& !< flag to set the calculation of radiation averaging for the domain355 average_radiation = .FALSE., & !< flag to set the calculation of radiation averaging for the domain 353 356 atm_surfaces = .FALSE., & !< flag parameter indicating wheather surfaces of atmospheric cells will be considered in calculating SVF 354 357 radiation_interactions = .TRUE., & !< flag to control if radiation interactions via sky-view factors shall be considered -
palm/trunk/SOURCE/time_integration_spinup.f90
r2723 r2724 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Use dt_spinup for all active components during spinup 28 ! 29 ! 2723 2018-01-05 09:27:03Z maronga 27 30 ! Bugfix: array rad_sw_in no longer exists and is thus removed from RUN_CONTROL 28 31 ! output. … … 99 102 100 103 USE radiation_model_mod, & 101 ONLY: dt_radiation, force_radiation_call, radiation,&104 ONLY: force_radiation_call, radiation, & 102 105 radiation_control, rad_sw_in, time_radiation, & 103 106 radiation_interaction, radiation_interactions … … 311 314 time_radiation = time_radiation + dt_3d 312 315 313 IF ( time_radiation >= dt_ radiation .OR. force_radiation_call )&316 IF ( time_radiation >= dt_3d .OR. force_radiation_call ) & 314 317 THEN 315 318 … … 317 320 318 321 IF ( .NOT. force_radiation_call ) THEN 319 time_radiation = time_radiation - dt_ radiation322 time_radiation = time_radiation - dt_3d 320 323 ENDIF 321 324
Note: See TracChangeset
for help on using the changeset viewer.