Changeset 4168 for palm/trunk/SOURCE/pmc_interface_mod.f90
- Timestamp:
- Aug 16, 2019 1:50:17 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pmc_interface_mod.f90
r4029 r4168 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Replace function get_topography_top_index by topo_top_ind 28 ! 29 ! 4029 2019-06-14 14:04:35Z raasch 27 30 ! nest_chemistry switch removed 28 31 ! … … 478 481 USE indices, & 479 482 ONLY: nbgp, nx, nxl, nxlg, nxlu, nxr, nxrg, ny, nyn, nyng, nys, nysg, & 480 nysv, nz, nzb, nzt, wall_flags_0483 nysv, nz, nzb, nzt, topo_top_ind, wall_flags_0 481 484 482 485 USE bulk_cloud_model_mod, & … … 528 531 529 532 USE surface_mod, & 530 ONLY: get_topography_top_index_ji,surf_def_h, surf_lsm_h, surf_usm_h533 ONLY: surf_def_h, surf_lsm_h, surf_usm_h 531 534 532 535 IMPLICIT NONE … … 2379 2382 DO j = nys, nyn 2380 2383 sub_sum = 0.0_wp 2381 k_wall = get_topography_top_index_ji( j, i, 'u')2384 k_wall = topo_top_ind(j,i,1) 2382 2385 DO k = k_wall + 1, nzt 2383 2386 sub_sum = sub_sum + dzw(k) … … 2401 2404 DO j = nys, nyn 2402 2405 sub_sum = 0.0_wp 2403 k_wall = get_topography_top_index_ji( j, i, 'u')2406 k_wall = topo_top_ind(j,i,1) 2404 2407 DO k = k_wall + 1, nzt 2405 2408 sub_sum = sub_sum + dzw(k) … … 2423 2426 DO i = nxl, nxr 2424 2427 sub_sum = 0.0_wp 2425 k_wall = get_topography_top_index_ji( j, i, 'v')2428 k_wall = topo_top_ind(j,i,2) 2426 2429 DO k = k_wall + 1, nzt 2427 2430 sub_sum = sub_sum + dzw(k) … … 2445 2448 DO i = nxl, nxr 2446 2449 sub_sum = 0.0_wp 2447 k_wall = get_topography_top_index_ji( j, i, 'v')2450 k_wall = topo_top_ind(j,i,2) 2448 2451 DO k = k_wall + 1, nzt 2449 2452 sub_sum = sub_sum + dzw(k)
Note: See TracChangeset
for help on using the changeset viewer.