Changeset 3347 for palm/trunk/SOURCE/pres.f90
- Timestamp:
- Oct 15, 2018 2:21:08 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pres.f90
r3183 r3347 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfixes in offline nesting. 28 ! Add comment. 29 ! 30 ! 3341 2018-10-15 10:31:27Z suehring 27 31 ! Rename variables for boundary flags and nesting 28 32 ! … … 169 173 dt_3d, gathered_size, ibc_p_b, ibc_p_t, & 170 174 intermediate_timestep_count, intermediate_timestep_count_max, & 171 mg_switch_to_pe0_level, psolver, subdomain_size, & 175 mg_switch_to_pe0_level, nesting_offline, & 176 psolver, subdomain_size, & 172 177 topography, volume_flow, volume_flow_area, volume_flow_initial 173 178 … … 386 391 ENDIF 387 392 388 IF ( ibc_p_b == 1 .AND. ibc_p_t == 1 .AND. 393 IF ( ibc_p_b == 1 .AND. ibc_p_t == 1 .AND. .NOT. nesting_offline .AND. & 389 394 .NOT. child_domain_nvn .AND. intermediate_timestep_count /= 0 ) & 390 395 THEN … … 719 724 volume_flow_l(2) = 0.0_wp 720 725 ENDIF 721 726 ! 727 !-- Add pressure gradients to the velocity components. Note, the loops are 728 !-- running over the entire model domain, even though, in case of non-cyclic 729 !-- boundaries u- and v-component are not prognostic at i=0 and j=0, 730 !-- respectiveley. However, in case of Dirichlet boundary conditions for the 731 !-- velocities, zero-gradient conditions for the pressure are set, so that 732 !-- no modification is imposed at the boundaries. 722 733 !$OMP PARALLEL PRIVATE (i,j,k) 723 734 !$OMP DO
Note: See TracChangeset
for help on using the changeset viewer.