Changeset 4168 for palm/trunk/SOURCE/multi_agent_system_mod.f90
- Timestamp:
- Aug 16, 2019 1:50:17 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/multi_agent_system_mod.f90
r3987 r4168 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Replace function get_topography_top_index by topo_top_ind 28 ! 29 ! 3987 2019-05-22 09:52:13Z kanani 27 30 ! Introduce alternative switch for debug output during timestepping 28 31 ! … … 131 134 USE indices, & 132 135 ONLY: nx, nxl, nxlg, nxr, nxrg, ny, nyn, nyng, nys, nysg, nzb, & 136 topo_top_ind, & 133 137 wall_flags_0 134 138 … … 374 378 SUBROUTINE multi_agent_system 375 379 376 USE biometeorology_mod, & 377 ONLY: bio_calc_ipt, bio_calculate_mrt_grid, bio_get_thermal_index_input_ij 380 USE biometeorology_mod, & 381 ONLY: bio_calc_ipt, & 382 bio_calculate_mrt_grid, & 383 bio_get_thermal_index_input_ij 378 384 379 385 … … 3018 3024 ONLY: coupling_char, initializing_actions, io_blocks, io_group 3019 3025 3020 USE surface_mod, &3021 ONLY: get_topography_top_index, get_topography_top_index_ji3022 3023 3026 USE arrays_3d, & 3024 3027 ONLY: zu, zw … … 3077 3080 DO il = nxlg, nxrg 3078 3081 DO jl = nysg, nyng 3079 top_top_s(jl,il) = get_topography_top_index_ji(jl,il,'s') + 13080 top_top_w(jl,il) = get_topography_top_index_ji(jl,il,'w')3082 top_top_s(jl,il) = topo_top_ind(jl,il,0) + 1 3083 top_top_w(jl,il) = topo_top_ind(jl,il,3) 3081 3084 ENDDO 3082 3085 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.