Changeset 3355
- Timestamp:
- Oct 16, 2018 2:03:34 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/Makefile
r3347 r3355 488 488 buoyancy.f90 \ 489 489 calc_mean_profile.f90 \ 490 calc_radiation.f90 \491 490 check_for_restart.f90 \ 492 491 check_open.f90 \ … … 765 764 mod_kinds.o \ 766 765 modules.o 767 calc_radiation.o: \768 basic_constants_and_equations_mod.o \769 mod_kinds.o \770 modules.o771 766 check_for_restart.o: \ 772 767 mod_kinds.o \ … … 1451 1446 bulk_cloud_model_mod.o \ 1452 1447 buoyancy.o \ 1453 calc_radiation.o \1454 1448 chemistry_model_mod.o \ 1455 1449 chem_modules.o \ -
palm/trunk/SOURCE/header.f90
r3347 r3355 238 238 ! 1551 2015-03-03 14:18:16Z maronga 239 239 ! Added informal output for land surface model and radiation model. Removed typo. 240 !241 ! 1496 2014-12-02 17:25:50Z maronga242 ! Renamed: "radiation -> "cloud_top_radiation"243 240 ! 244 241 ! 1484 2014-10-21 10:53:05Z kanani … … 1940 1937 WRITE ( io, 431 ) 1941 1938 ENDIF 1942 IF ( cloud_top_radiation ) WRITE ( io, 132 )1943 1939 IF ( humidity .AND. cloud_droplets ) THEN 1944 1940 WRITE ( io, 433 ) … … 2115 2111 131 FORMAT (' --> No pt-equation solved. Neutral stratification with pt = ', & 2116 2112 F6.2, ' K assumed') 2117 132 FORMAT (' Parameterization of long-wave radiation processes via'/ &2118 ' effective emissivity scheme')2119 2113 134 FORMAT (' --> Additional prognostic equation for a passive scalar') 2120 2114 135 FORMAT (' --> Solve perturbation pressure via ',A,' method (', & -
palm/trunk/SOURCE/modules.f90
r3337 r3355 415 415 ! Increased pr_palm to 120. Increased length of dots_unit and dots_label to 13 416 416 ! digits. Increased length of domask, do2d, and do3d to 20 digits. 417 !418 ! 1496 2014-12-02 17:25:50Z maronga419 ! Renamed "radiation" -> "cloud_top_radiation"420 417 ! 421 418 ! 1484 2014-10-21 10:53:05Z kanani … … 1300 1297 LOGICAL :: child_domain = .FALSE. !< flag indicating that model is nested in a parent domain 1301 1298 LOGICAL :: cloud_droplets = .FALSE. !< namelist parameter 1302 LOGICAL :: cloud_top_radiation = .FALSE. !< namelist parameter1303 1299 LOGICAL :: complex_terrain = .FALSE. !< namelist parameter 1304 1300 LOGICAL :: conserve_volume_flow = .FALSE. !< namelist parameter -
palm/trunk/SOURCE/parin.f90
r3347 r3355 298 298 ! 1560 2015-03-06 10:48:54Z keck 299 299 ! +recycling_yshift 300 !301 ! 1496 2014-12-02 17:25:50Z maronga302 ! Renamed: "radiation -> "cloud_top_radiation"303 300 ! 304 301 ! 1484 2014-10-21 10:53:05Z kanani … … 554 551 canyon_width_x, canyon_width_y, canyon_wall_left, & 555 552 canyon_wall_south, cfl_factor, cloud_droplets, & 556 cloud_top_radiation, &557 553 collective_wait, complex_terrain, & 558 554 conserve_volume_flow, & … … 627 623 canyon_width_x, canyon_width_y, canyon_wall_left, & 628 624 canyon_wall_south, cfl_factor, cloud_droplets, & 629 cloud_top_radiation, &630 625 collective_wait, complex_terrain, & 631 626 conserve_volume_flow, & -
palm/trunk/SOURCE/prognostic_equations.f90
r3337 r3355 156 156 ! advec_s_bc_mod addded, since advec_s_bc is now a module 157 157 ! 158 ! 1496 2014-12-02 17:25:50Z maronga159 ! Renamed "radiation" -> "cloud_top_radiation"160 !161 158 ! 1484 2014-10-21 10:53:05Z kanani 162 159 ! Changes due to new module structure of the plant canopy model: … … 341 338 ONLY: buoyancy 342 339 343 USE calc_radiation_mod, &344 ONLY: calc_radiation345 346 340 USE chemistry_model_mod, & 347 341 ONLY: chem_integrate, chem_species, chem_prognostic_equations, & … … 358 352 359 353 USE control_parameters, & 360 ONLY: air_chemistry, & 361 cloud_top_radiation, constant_diffusion, & 354 ONLY: air_chemistry, constant_diffusion, & 362 355 dp_external, dp_level_ind_b, dp_smooth_factor, dpdxy, dt_3d, & 363 356 humidity, intermediate_timestep_count, & 364 357 intermediate_timestep_count_max, large_scale_forcing, & 365 large_scale_subsidence, & 366 neutral, nudging, & 358 large_scale_subsidence, neutral, nudging, & 367 359 ocean_mode, passive_scalar, plant_canopy, pt_reference, & 368 360 scalar_advec, scalar_advec, simulated_time, sloping_surface, & … … 827 819 surf_usm_v(0)%shf, surf_usm_v(1)%shf, & 828 820 surf_usm_v(2)%shf, surf_usm_v(3)%shf ) 829 !830 !-- If required compute heating/cooling due to long wave radiation831 !-- processes832 IF ( cloud_top_radiation ) THEN833 CALL calc_radiation( i, j )834 ENDIF835 821 836 822 ! … … 1706 1692 surf_usm_v(0)%shf, surf_usm_v(1)%shf, & 1707 1693 surf_usm_v(2)%shf, surf_usm_v(3)%shf ) 1708 !1709 !-- If required compute heating/cooling due to long wave radiation processes1710 IF ( cloud_top_radiation ) THEN1711 CALL calc_radiation1712 ENDIF1713 1694 1714 1695 ! -
palm/trunk/SOURCE/read_restart_data_mod.f90
r3298 r3355 362 362 CASE ( 'cloud_droplets' ) 363 363 READ ( 13 ) cloud_droplets 364 CASE ( 'cloud_top_radiation' )365 READ ( 13 ) cloud_top_radiation366 364 CASE ( 'collective_wait' ) 367 365 READ ( 13 ) collective_wait -
palm/trunk/SOURCE/write_restart_data_mod.f90
r3294 r3355 289 289 WRITE ( 14 ) cloud_droplets 290 290 291 CALL wrd_write_string( 'cloud_top_radiation' )292 WRITE ( 14 ) cloud_top_radiation293 294 291 CALL wrd_write_string( 'collective_wait' ) 295 292 WRITE ( 14 ) collective_wait
Note: See TracChangeset
for help on using the changeset viewer.