Changeset 1831 for palm/trunk/SOURCE
- Timestamp:
- Apr 7, 2016 1:15:51 PM (9 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_ptseries.f90
r1818 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! curvature_solution_effects moved to particle_attributes 22 22 ! 23 23 ! Former revisions: … … 70 70 71 71 72 USE cloud_parameters, &73 ONLY: curvature_solution_effects74 75 72 USE control_parameters, & 76 73 ONLY: dopts_time_count, time_since_reference_point … … 93 90 94 91 USE particle_attributes, & 95 ONLY: grid_particles, number_of_particles, number_of_particle_groups,&96 particles, prt_count92 ONLY: curvature_solution_effects, grid_particles, number_of_particles,& 93 number_of_particle_groups, particles, prt_count 97 94 98 95 USE pegrid -
palm/trunk/SOURCE/diffusion_e.f90
r1818 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! turbulence renamed collision_turbulence 22 22 ! 23 23 ! Former revisions: … … 116 116 117 117 USE control_parameters, & 118 ONLY: atmos_ocean_sign, g, turbulence,use_single_reference_value, &118 ONLY: atmos_ocean_sign, g, use_single_reference_value, & 119 119 wall_adjustment, wall_adjustment_factor 120 120 121 USE cloud_parameters, & 122 ONLY: collision_turbulence 123 121 124 USE grid_variables, & 122 125 ONLY: ddx2, ddy2 … … 215 218 !-- velocities 216 219 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 217 turbulence ) THEN220 collision_turbulence ) THEN 218 221 DO j = nys, nyn 219 222 DO k = nzb_s_inner(j,i)+1, nzt … … 287 290 !-- velocities 288 291 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 289 turbulence ) THEN292 collision_turbulence ) THEN 290 293 DO j = nys, nyn 291 294 DO k = nzb_s_inner(j,i)+1, nzt … … 301 304 ! 302 305 !-- Boundary condition for dissipation 303 IF ( use_sgs_for_particles .OR. wang_kernel .OR. turbulence ) THEN 306 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 307 collision_turbulence ) THEN 304 308 DO i = nxl, nxr 305 309 DO j = nys, nyn … … 323 327 324 328 USE control_parameters, & 325 ONLY: atmos_ocean_sign, g, turbulence, use_single_reference_value,&329 ONLY: atmos_ocean_sign, g, use_single_reference_value, & 326 330 wall_adjustment, wall_adjustment_factor 327 331 332 USE cloud_parameters, & 333 ONLY: collision_turbulence 334 328 335 USE grid_variables, & 329 336 ONLY: ddx2, ddy2 … … 416 423 !-- velocities 417 424 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 418 turbulence ) THEN425 collision_turbulence ) THEN 419 426 diss(k,j,i) = dissipation 420 427 ENDIF … … 483 490 !-- particle velocities 484 491 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 485 turbulence ) THEN492 collision_turbulence ) THEN 486 493 diss(k,j,i) = dissipation 487 494 ENDIF … … 498 505 ! 499 506 !-- Boundary condition for dissipation 500 IF ( use_sgs_for_particles .OR. wang_kernel .OR. turbulence ) THEN 507 IF ( use_sgs_for_particles .OR. wang_kernel .OR. & 508 collision_turbulence ) THEN 501 509 !$acc kernels present( diss, nzb_s_inner ) 502 510 DO i = i_left, i_right … … 522 530 523 531 USE control_parameters, & 524 ONLY: atmos_ocean_sign, g, turbulence, use_single_reference_value,&532 ONLY: atmos_ocean_sign, g, use_single_reference_value, & 525 533 wall_adjustment, wall_adjustment_factor 526 534 535 USE cloud_parameters, & 536 ONLY: collision_turbulence 537 527 538 USE grid_variables, & 528 539 ONLY: ddx2, ddy2 … … 607 618 ! 608 619 !-- Store dissipation if needed for calculating the sgs particle velocities 609 IF ( use_sgs_for_particles .OR. wang_kernel .OR. turbulence ) THEN620 IF ( use_sgs_for_particles .OR. wang_kernel .OR. collision_turbulence ) THEN 610 621 DO k = nzb_s_inner(j,i)+1, nzt 611 622 diss(k,j,i) = dissipation(k) -
palm/trunk/SOURCE/header.f90
r1827 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 22 ! 21 ! turbulence renamed collision_turbulence, 22 ! drizzle renamed cloud_water_sedimentation 23 ! 23 24 ! Former revisions: 24 25 ! ----------------- … … 251 252 252 253 USE cloud_parameters, & 253 ONLY: cp, curvature_solution_effects, c_sedimentation, & 254 limiter_sedimentation, l_v, nc_const, r_d, ventilation_effect 254 ONLY: cloud_water_sedimentation, collision_turbulence, cp, & 255 c_sedimentation, limiter_sedimentation, l_v, nc_const, & 256 r_d, ventilation_effect 255 257 256 258 USE cpulog, & … … 280 282 USE particle_attributes, & 281 283 ONLY: bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, collision_kernel, & 284 curvature_solution_effects, & 282 285 density_ratio, dissipation_classes, dt_min_part, dt_prel, & 283 286 dt_write_particle_data, end_time_prel, & … … 1689 1692 WRITE ( io, 133 ) 1690 1693 ELSEIF ( microphysics_seifert ) THEN 1691 IF ( drizzle) WRITE ( io, 506 )1694 IF ( cloud_water_sedimentation ) WRITE ( io, 506 ) 1692 1695 WRITE ( io, 505 ) 1693 IF ( turbulence ) WRITE ( io, 507 )1696 IF ( collision_turbulence ) WRITE ( io, 507 ) 1694 1697 IF ( ventilation_effect ) WRITE ( io, 508 ) 1695 1698 IF ( limiter_sedimentation ) WRITE ( io, 509 ) … … 2253 2256 504 FORMAT (' --> Scalar advection via Wicker-Skamarock-Scheme 5th order') 2254 2257 505 FORMAT (' Precipitation parameterization via Seifert-Beheng-Scheme') 2255 506 FORMAT (' Drizzleparameterization via Stokes law')2258 506 FORMAT (' Cloud water sedimentation parameterization via Stokes law') 2256 2259 507 FORMAT (' Turbulence effects on precipitation process') 2257 2260 508 FORMAT (' Ventilation effects on evaporation of rain drops') -
palm/trunk/SOURCE/init_3d_model.f90
r1827 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 22 ! 21 ! turbulence renamed collision_turbulence 22 ! 23 23 ! Former revisions: 24 24 ! ----------------- … … 258 258 259 259 USE cloud_parameters, & 260 ONLY: nc_const, precipitation_amount, precipitation_rate, prr 260 ONLY: collision_turbulence, nc_const, precipitation_amount, & 261 precipitation_rate, prr 261 262 262 263 USE constants, & … … 569 570 !-- 3D-array for storing the dissipation, needed for calculating the sgs 570 571 !-- particle velocities 571 IF ( use_sgs_for_particles .OR. wang_kernel .OR. turbulence .OR.&572 num_acc_per_node > 0 ) THEN572 IF ( use_sgs_for_particles .OR. wang_kernel .OR. collision_turbulence & 573 .OR. num_acc_per_node > 0 ) THEN 573 574 ALLOCATE( diss(nzb:nzt+1,nysg:nyng,nxlg:nxrg) ) 574 575 ENDIF -
palm/trunk/SOURCE/lpm_droplet_condensation.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! curvature_solution_effects moved to particle_attributes 22 22 ! 23 23 ! Former revisions: … … 90 90 91 91 USE cloud_parameters, & 92 ONLY: bfactor, curvature_solution_effects, eps_ros, l_d_rv, l_v, & 93 rho_l, r_v 92 ONLY: bfactor, eps_ros, l_d_rv, l_v, rho_l, r_v 94 93 95 94 USE constants, & … … 111 110 112 111 USE particle_attributes, & 113 ONLY: block_offset, grid_particles, hall_kernel, number_of_particles, & 114 particles, radius_classes, use_kernel_tables, wang_kernel 112 ONLY: block_offset, curvature_solution_effects, grid_particles, & 113 hall_kernel, number_of_particles, particles, radius_classes, & 114 use_kernel_tables, wang_kernel 115 115 116 116 -
palm/trunk/SOURCE/lpm_init.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! curvature_solution_effects moved to particle_attributes 22 22 ! 23 23 ! Former revisions: … … 109 109 ONLY: de_dx, de_dy, de_dz, zu, zw, z0 110 110 111 USE cloud_parameters, &112 ONLY: curvature_solution_effects113 114 111 USE control_parameters, & 115 112 ONLY: cloud_droplets, constant_flux_layer, current_timestep_number, & … … 134 131 ONLY: alloc_factor, bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, & 135 132 block_offset, block_offset_def, collision_kernel, & 133 curvature_solution_effects, & 136 134 density_ratio, grid_particles, & 137 135 initial_weighting_factor, ibc_par_b, ibc_par_lr, ibc_par_ns, & -
palm/trunk/SOURCE/microphysics.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! turbulence renamed collision_turbulence, 22 ! drizzle renamed cloud_water_sedimentation. cloud_water_sedimentation also 23 ! avaialble for microphysics_kessler. 22 24 ! 23 25 ! Former revisions: … … 163 165 164 166 USE cloud_parameters, & 165 ONLY: c p, hyrho, prr, pt_d_t, r_d, t_d_pt167 ONLY: cloud_water_sedimentation, cp, hyrho, prr, pt_d_t, r_d, t_d_pt 166 168 167 169 USE control_parameters, & 168 ONLY: call_microphysics_at_all_substeps, d rizzle, dt_3d, dt_micro,&170 ONLY: call_microphysics_at_all_substeps, dt_3d, dt_micro, & 169 171 g, intermediate_timestep_count, large_scale_forcing, & 170 172 lsf_surf, microphysics_kessler, microphysics_seifert, & … … 223 225 224 226 CALL autoconversion_kessler 227 IF ( cloud_water_sedimentation ) CALL sedimentation_cloud 225 228 226 229 ELSEIF ( microphysics_seifert ) THEN … … 232 235 CALL evaporation_rain 233 236 CALL sedimentation_rain 234 235 IF ( drizzle ) CALL sedimentation_cloud 237 IF ( cloud_water_sedimentation ) CALL sedimentation_cloud 236 238 237 239 ENDIF … … 306 308 USE cloud_parameters, & 307 309 ONLY: a_1, a_2, a_3, b_1, b_2, b_3, beta_cc, c_1, c_2, c_3, & 308 c_const, dpirho_l, eps_sb, hyrho, k_cc, kin_vis_air,&309 nc_const, x0310 c_const, collision_turbulence, dpirho_l, eps_sb, hyrho, & 311 k_cc, kin_vis_air, nc_const, x0 310 312 311 313 USE control_parameters, & 312 ONLY: dt_micro, rho_surface , turbulence314 ONLY: dt_micro, rho_surface 313 315 314 316 USE cpulog, & … … 371 373 !-- Parameterized turbulence effects on autoconversion (Seifert, 372 374 !-- Nuijens and Stevens, 2010) 373 IF ( turbulence ) THEN375 IF ( collision_turbulence ) THEN 374 376 ! 375 377 !-- Weight averaged radius of cloud droplets: … … 495 497 496 498 USE cloud_parameters, & 497 ONLY: eps_sb, hyrho, k_cr0499 ONLY: collision_turbulence, eps_sb, hyrho, k_cr0 498 500 499 501 USE control_parameters, & 500 ONLY: dt_micro, rho_surface , turbulence502 ONLY: dt_micro, rho_surface 501 503 502 504 USE cpulog, & … … 537 539 !-- Nuijens and Stevens, 2010). The factor of 1.0E4 is needed to 538 540 !-- convert the dissipation rate (diss) from m2 s-3 to cm2 s-3. 539 IF ( turbulence ) THEN541 IF ( collision_turbulence ) THEN 540 542 k_cr = k_cr0 * ( 1.0_wp + 0.05_wp * & 541 543 MIN( 600.0_wp, & … … 1165 1167 1166 1168 USE cloud_parameters, & 1167 ONLY: cp, hyrho, nc_const, prr, pt_d_t, r_d, t_d_pt 1169 ONLY: cloud_water_sedimentation, cp, hyrho, nc_const, prr, pt_d_t, & 1170 r_d, t_d_pt 1168 1171 1169 1172 USE control_parameters, & 1170 ONLY: call_microphysics_at_all_substeps, d rizzle, dt_3d, dt_micro,&1173 ONLY: call_microphysics_at_all_substeps, dt_3d, dt_micro, & 1171 1174 g, intermediate_timestep_count, large_scale_forcing, & 1172 1175 lsf_surf, microphysics_seifert, microphysics_kessler, & … … 1236 1239 1237 1240 CALL autoconversion_kessler( i,j ) 1241 IF ( cloud_water_sedimentation ) CALL sedimentation_cloud( i,j ) 1238 1242 1239 1243 ELSEIF ( microphysics_seifert ) THEN … … 1245 1249 CALL evaporation_rain( i,j ) 1246 1250 CALL sedimentation_rain( i,j ) 1247 1248 IF ( drizzle ) CALL sedimentation_cloud( i,j ) 1251 IF ( cloud_water_sedimentation ) CALL sedimentation_cloud( i,j ) 1249 1252 1250 1253 ENDIF … … 1326 1329 USE cloud_parameters, & 1327 1330 ONLY: a_1, a_2, a_3, b_1, b_2, b_3, beta_cc, c_1, c_2, c_3, & 1328 c_const, dpirho_l, eps_sb, hyrho, kin_vis_air, k_cc, x0 1331 c_const, collision_turbulence, dpirho_l, eps_sb, hyrho, & 1332 kin_vis_air, k_cc, x0 1329 1333 1330 1334 USE control_parameters, & 1331 ONLY: dt_micro, rho_surface , turbulence1335 ONLY: dt_micro, rho_surface 1332 1336 1333 1337 USE grid_variables, & … … 1382 1386 !-- Parameterized turbulence effects on autoconversion (Seifert, 1383 1387 !-- Nuijens and Stevens, 2010) 1384 IF ( turbulence ) THEN1388 IF ( collision_turbulence ) THEN 1385 1389 ! 1386 1390 !-- Weight averaged radius of cloud droplets: … … 1495 1499 1496 1500 USE cloud_parameters, & 1497 ONLY: eps_sb, hyrho, k_cr01501 ONLY: collision_turbulence, eps_sb, hyrho, k_cr0 1498 1502 1499 1503 USE control_parameters, & 1500 ONLY: dt_micro, rho_surface , turbulence1504 ONLY: dt_micro, rho_surface 1501 1505 1502 1506 USE indices, & … … 1529 1533 !-- Nuijens and Stevens, 2010). The factor of 1.0E4 is needed to 1530 1534 !-- convert the dissipation rate (diss) from m2 s-3 to cm2 s-3. 1531 IF ( turbulence ) THEN1535 IF ( collision_turbulence ) THEN 1532 1536 k_cr = k_cr0 * ( 1.0_wp + 0.05_wp * & 1533 1537 MIN( 600.0_wp, & -
palm/trunk/SOURCE/mod_particle_attributes.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! palm_kernel removed, curvature_solution_effects added 22 22 ! 23 23 ! Former revisions: … … 81 81 82 82 LOGICAL :: all_or_nothing = .FALSE., average_impact = .FALSE., & 83 hall_kernel = .FALSE., palm_kernel = .FALSE., & 84 particle_advection = .FALSE., random_start_position = .FALSE., & 83 curvature_solution_effects = .FALSE., & 84 hall_kernel = .FALSE., particle_advection = .FALSE., & 85 random_start_position = .FALSE., & 85 86 read_particles_from_restartfile = .TRUE., & 86 87 seed_follows_topography = .FALSE., & -
palm/trunk/SOURCE/modules.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! curvature_solution_effects removed 22 ! turbulence renamed collision_turbulence, drizzle renamed cloud_water_sedimentation 22 23 ! 23 24 ! Former revisions: … … 479 480 USE kinds 480 481 481 LOGICAL :: curvature_solution_effects = .FALSE., & 482 limiter_sedimentation = .TRUE., & 483 ventilation_effect = .FALSE. 482 LOGICAL :: cloud_water_sedimentation = .FALSE., & !< cloud water sedimentation in bulk cloud physics 483 limiter_sedimentation = .TRUE., & !< sedimentation limiter in bulk cloud physics 484 collision_turbulence = .FALSE., & !< turbulence effects in bulk cloud physics 485 ventilation_effect = .TRUE. !< ventilation effect in bulk cloud physics 484 486 485 487 … … 727 729 do_sum = .FALSE., & 728 730 dp_external = .FALSE., dp_smooth = .FALSE., & 729 d rizzle = .TRUE., dt_fixed = .FALSE., &731 dt_fixed = .FALSE., & 730 732 dt_3d_reached, dt_3d_reached_l, exchange_mg = .FALSE., & 731 733 first_call_lpm = .TRUE., & … … 759 761 stop_dt = .FALSE., synchronous_exchange = .FALSE., & 760 762 terminate_run = .FALSE., transpose_compute_overlap = .FALSE., & 761 turbulen ce = .FALSE., turbulent_inflow = .FALSE., &763 turbulent_inflow = .FALSE., & 762 764 use_cmax = .TRUE., use_initial_profile_as_reference = .FALSE., & 763 765 use_prescribed_profile_data = .FALSE., & -
palm/trunk/SOURCE/package_parin.f90
r1827 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! curvature_solution_effects added 22 22 ! 23 23 ! Former revisions: … … 145 145 USE particle_attributes, & 146 146 ONLY: alloc_factor, bc_par_b, bc_par_lr, bc_par_ns, bc_par_t, & 147 collision_algorithm, collision_kernel, density_ratio, & 147 collision_algorithm, collision_kernel, & 148 curvature_solution_effects, density_ratio, & 148 149 dissipation_classes, dt_min_part, dt_prel, & 149 150 dt_write_particle_data, & … … 184 185 NAMELIST /particles_par/ alloc_factor, bc_par_b, bc_par_lr, & 185 186 bc_par_ns, bc_par_t, collision_algorithm, & 186 collision_kernel, 187 collision_kernel, curvature_solution_effects,& 187 188 density_ratio, dissipation_classes, dt_dopts,& 188 189 dt_min_part, dt_prel, & -
palm/trunk/SOURCE/parin.f90
r1827 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! turbulence renamed collision_turbulence, drizzle renamed 22 ! cloud_water_sedimentation 23 ! curvature_solution_effects removed 22 24 ! 23 25 ! Former revisions: … … 199 201 200 202 USE cloud_parameters, & 201 ONLY: c_sedimentation, curvature_solution_effects, & 202 limiter_sedimentation, nc_const, ventilation_effect 203 ONLY: c_sedimentation, cloud_water_sedimentation, & 204 collision_turbulence, limiter_sedimentation, nc_const, & 205 ventilation_effect 203 206 204 207 USE control_parameters … … 261 264 canyon_wall_south, c_sedimentation, cfl_factor, cloud_droplets, & 262 265 cloud_physics, cloud_scheme, cloud_top_radiation, & 263 collective_wait, conserve_volume_flow, & 266 cloud_water_sedimentation, & 267 collective_wait, collision_turbulence, conserve_volume_flow, & 264 268 conserve_volume_flow_mode, constant_flux_layer, & 265 269 coupling_start_time, & 266 c urvature_solution_effects, cycle_mg, damp_level_1d,&270 cycle_mg, damp_level_1d, & 267 271 dissipation_1d, & 268 272 dp_external, dp_level_b, dp_smooth, dpdxy, & 269 d rizzle, dt, dt_pr_1d, dt_run_control_1d, dx, dy, dz, dz_max, &273 dt, dt_pr_1d, dt_run_control_1d, dx, dy, dz, dz_max, & 270 274 dz_stretch_factor, dz_stretch_level, end_time_1d, & 271 275 ensemble_member_nr, & … … 300 304 topography, topography_grid_convention, top_heatflux, & 301 305 top_momentumflux_u, top_momentumflux_v, top_salinityflux, & 302 transpose_compute_overlap, turbulen ce, turbulent_inflow,&306 transpose_compute_overlap, turbulent_inflow, & 303 307 use_subsidence_tendencies, ug_surface, ug_vertical_gradient, & 304 308 ug_vertical_gradient_level, use_surface_fluxes, use_cmax, & -
palm/trunk/SOURCE/read_var_list.f90
r1818 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! turbulence renamed collision_turbulence, drizzle renamed cloud_water_sedimentation 22 22 ! 23 23 ! Former revisions: … … 165 165 166 166 USE cloud_parameters, & 167 ONLY: c_sedimentation, curvature_solution_effects, & 168 limiter_sedimentation, nc_const, ventilation_effect 167 ONLY: c_sedimentation, collision_turbulence, & 168 cloud_water_sedimentation, limiter_sedimentation, & 169 nc_const, ventilation_effect 169 170 170 171 USE control_parameters … … 183 184 184 185 USE particle_attributes, & 185 ONLY: time_sort_particles186 ONLY: curvature_solution_effects, time_sort_particles 186 187 187 188 USE pegrid … … 206 207 !-- Make version number check first 207 208 READ ( 13 ) version_on_file 208 binary_version = '4. 0'209 binary_version = '4.1' 209 210 IF ( TRIM( version_on_file ) /= TRIM( binary_version ) ) THEN 210 211 WRITE( message_string, * ) 'version mismatch concerning control ', & … … 401 402 CASE ( 'dpdxy' ) 402 403 READ ( 13 ) dpdxy 403 CASE ( ' drizzle' )404 READ ( 13 ) drizzle404 CASE ( 'cloud_water_sedimentation' ) 405 READ ( 13 ) cloud_water_sedimentation 405 406 CASE ( 'dt_pr_1d' ) 406 407 READ ( 13 ) dt_pr_1d … … 661 662 CASE ( 'tsc' ) 662 663 READ ( 13 ) tsc 663 CASE ( ' turbulence' )664 READ ( 13 ) turbulence664 CASE ( 'collision_turbulence' ) 665 READ ( 13 ) collision_turbulence 665 666 CASE ( 'turbulent_inflow' ) 666 667 READ ( 13 ) turbulent_inflow -
palm/trunk/SOURCE/time_integration.f90
r1823 r1831 19 19 ! Current revisions: 20 20 ! ------------------ 21 ! 21 ! turbulence renamed collision_turbulence 22 22 ! 23 23 ! Former revisions: … … 233 233 time_dots, time_do_av, time_do_sla, time_disturb, time_dvrp, & 234 234 time_run_control, time_since_reference_point, & 235 turbulence, &236 235 turbulent_inflow, use_initial_profile_as_reference, & 237 236 use_single_reference_value, u_gtrans, v_gtrans, ws_scheme_mom, & 238 237 ws_scheme_sca 238 239 USE cloud_parameters, & 240 ONLY: collision_turbulence 239 241 240 242 USE cpulog, & … … 501 503 CALL exchange_horiz( ql_vp, nbgp ) 502 504 ENDIF 503 IF ( wang_kernel .OR. turbulence .OR. use_sgs_for_particles )&504 THEN505 IF ( wang_kernel .OR. collision_turbulence .OR. & 506 use_sgs_for_particles ) THEN 505 507 CALL exchange_horiz( diss, nbgp ) 506 508 ENDIF … … 568 570 CALL exchange_horiz( ql_vp, nbgp ) 569 571 ENDIF 570 IF ( wang_kernel .OR. turbulence .OR. use_sgs_for_particles )&571 THEN572 IF ( wang_kernel .OR. collision_turbulence .OR. & 573 use_sgs_for_particles ) THEN 572 574 CALL exchange_horiz( diss, nbgp ) 573 575 ENDIF … … 657 659 CALL exchange_horiz( ql_vp, nbgp ) 658 660 ENDIF 659 IF ( wang_kernel .OR. turbulence .OR. use_sgs_for_particles )&660 THEN661 IF ( wang_kernel .OR. collision_turbulence .OR. & 662 use_sgs_for_particles ) THEN 661 663 CALL exchange_horiz( diss, nbgp ) 662 664 ENDIF -
palm/trunk/SOURCE/write_var_list.f90
r1818 r1831 19 19 ! Current revisions: 20 20 ! ----------------- 21 ! 21 ! turbulence renamed collision_turbulence, drizzle renamed cloud_water_sedimentation 22 22 ! 23 23 ! Former revisions: … … 144 144 145 145 USE cloud_parameters, & 146 ONLY: c_sedimentation, curvature_solution_effects, & 147 limiter_sedimentation, nc_const, ventilation_effect 146 ONLY: c_sedimentation, cloud_water_sedimentation, & 147 collision_turbulence, limiter_sedimentation, nc_const, & 148 ventilation_effect 148 149 149 150 USE control_parameters … … 162 163 163 164 USE particle_attributes, & 164 ONLY: time_sort_particles165 ONLY: curvature_solution_effects, time_sort_particles 165 166 166 167 USE pegrid … … 179 180 180 181 181 binary_version = '4. 0'182 binary_version = '4.1' 182 183 183 184 WRITE ( 14 ) binary_version … … 314 315 WRITE ( 14 ) 'dpdxy ' 315 316 WRITE ( 14 ) dpdxy 316 WRITE ( 14 ) ' drizzle'317 WRITE ( 14 ) drizzle317 WRITE ( 14 ) 'cloud_water_sedimentation ' 318 WRITE ( 14 ) cloud_water_sedimentation 318 319 WRITE ( 14 ) 'dt_pr_1d ' 319 320 WRITE ( 14 ) dt_pr_1d … … 568 569 WRITE ( 14 ) 'tsc ' 569 570 WRITE ( 14 ) tsc 570 WRITE ( 14 ) ' turbulence'571 WRITE ( 14 ) turbulence571 WRITE ( 14 ) 'collision_turbulence ' 572 WRITE ( 14 ) collision_turbulence 572 573 WRITE ( 14 ) 'turbulent_inflow ' 573 574 WRITE ( 14 ) turbulent_inflow
Note: See TracChangeset
for help on using the changeset viewer.