Changeset 2696 for palm/trunk/SOURCE/pmc_interface_mod.f90
- Timestamp:
- Dec 14, 2017 5:12:51 PM (7 years ago)
- Location:
- palm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk
-
palm/trunk/SOURCE
-
palm/trunk/SOURCE/pmc_interface_mod.f90
- Property svn:mergeinfo changed
/palm/branches/palm4u/SOURCE/pmc_interface_mod.f90 (added) merged: 2637,2643,2664,2691
r2669 r2696 1 MODULE pmc_interface 2 1 !> @file pmc_interface_mod.f90 3 2 !------------------------------------------------------------------------------! 4 ! This file is part of PALM.3 ! This file is part of the PALM model system. 5 4 ! 6 5 ! PALM is free software: you can redistribute it and/or modify it under the … … 26 25 ! ----------------- 27 26 ! $Id$ 27 ! - Bugfix in init_tke_factor (MS) 28 ! 29 ! 2669 2017-12-06 16:03:27Z raasch 28 30 ! file extension for nested domains changed to "_N##", 29 31 ! created flag file in order to enable combine_plot_fields to process nest data … … 194 196 ! @todo Data transfer of qc and nc is prepared but not activated 195 197 !-------------------------------------------------------------------------------! 198 MODULE pmc_interface 196 199 197 200 #if defined( __nopointer ) … … 2685 2688 2686 2689 DO k = k_wall + 1, nzt 2687 2690 2688 2691 kc = kco(k) + 1 2689 2692 glsf = ( dx * dy * dzu(k) )**p13 … … 3066 3069 w(k,j,i) = MERGE( w(k,j,i), 0.0_wp, & 3067 3070 BTEST( wall_flags_0(k,j,i), 3 ) ) 3068 e(k,j,i) = MERGE( e(k,j,i), 0.0_wp, &3069 BTEST( wall_flags_0(k,j,i), 0 ) )3071 ! e(k,j,i) = MERGE( e(k,j,i), 0.0_wp, & 3072 ! BTEST( wall_flags_0(k,j,i), 0 ) ) 3070 3073 u_p(k,j,i) = MERGE( u_p(k,j,i), 0.0_wp, & 3071 3074 BTEST( wall_flags_0(k,j,i), 1 ) ) … … 3074 3077 w_p(k,j,i) = MERGE( w_p(k,j,i), 0.0_wp, & 3075 3078 BTEST( wall_flags_0(k,j,i), 3 ) ) 3076 e_p(k,j,i) = MERGE( e_p(k,j,i), 0.0_wp, &3077 BTEST( wall_flags_0(k,j,i), 0 ) )3079 ! e_p(k,j,i) = MERGE( e_p(k,j,i), 0.0_wp, & 3080 ! BTEST( wall_flags_0(k,j,i), 0 ) ) 3078 3081 ENDDO 3079 3082 ENDDO … … 4492 4495 ENDIF 4493 4496 ! 4494 !-- Store the boundary values also into the other redundant ghost node layers 4497 !-- Store the boundary values also into the other redundant ghost node layers. 4498 !-- Please note, in case of only one ghost node layer, e.g. for the PW 4499 !-- scheme, the following loops will not be entered. 4495 4500 IF ( edge == 'l' ) THEN 4496 4501 DO ibgp = -nbgp, ib … … 4713 4718 ENDIF 4714 4719 ! 4715 !-- Store the boundary values also into the other redundant ghost node layers 4720 !-- Store the boundary values also into the other redundant ghost node layers. 4721 !-- Please note, in case of only one ghost node layer, e.g. for the PW 4722 !-- scheme, the following loops will not be entered. 4716 4723 IF ( edge == 's' ) THEN 4717 4724 DO jbgp = -nbgp, jb - Property svn:mergeinfo changed
Note: See TracChangeset
for help on using the changeset viewer.