Changeset 531 for palm/trunk/SOURCE
- Timestamp:
- Apr 21, 2010 6:47:21 AM (15 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/check_parameters.f90
r525 r531 4 4 ! Current revisions: 5 5 ! ----------------- 6 ! 6 ! Bugfix: unit of hyp changed to dbar 7 7 ! 8 8 ! Former revisions: … … 2205 2205 CASE ( 'hyp' ) 2206 2206 dopr_index(i) = 72 2207 dopr_unit(i) = ' kPa'2207 dopr_unit(i) = 'dbar' 2208 2208 hom(:,2,72,:) = SPREAD( zu, 2, statistic_regions+1 ) 2209 2209 -
palm/trunk/SOURCE/flow_statistics.f90
r392 r531 880 880 hom(:,1,39,sr) = sums(:,38) / ( sums(:,32) + 1E-20 )**1.5 ! Sw 881 881 hom(:,1,40,sr) = sums(:,40) ! p 882 hom(:,1,45,sr) = sums(:,45) ! w" q"882 hom(:,1,45,sr) = sums(:,45) ! w"vpt" 883 883 hom(:,1,46,sr) = sums(:,46) ! w*vpt* 884 884 hom(:,1,47,sr) = sums(:,45) + sums(:,46) ! wvpt … … 907 907 hom(:,1,70,sr) = sums(:,70) ! q*2 908 908 hom(:,1,71,sr) = sums(:,71) ! prho 909 hom(:,1,72,sr) = hyp * 1E-4 ! hyp in kPa909 hom(:,1,72,sr) = hyp * 1E-4 ! hyp in dbar 910 910 911 911 hom(:,1,pr_palm-1,sr) = sums(:,pr_palm-1) -
palm/trunk/SOURCE/modules.f90
r520 r531 5 5 ! Current revisions: 6 6 ! ----------------- 7 ! 7 ! character length of dopr_unit enlarged 8 8 ! 9 9 ! Former revisions: … … 1019 1019 ( 'unknown', i9 = 1, dots_max-23 ) /) 1020 1020 1021 CHARACTER (LEN= 7), DIMENSION(300) :: dopr_unit = 'unknown'1021 CHARACTER (LEN=9), DIMENSION(300) :: dopr_unit = 'unknown' 1022 1022 1023 1023 CHARACTER (LEN=7), DIMENSION(0:1,100) :: do2d_unit, do3d_unit -
palm/trunk/SOURCE/prognostic_equations.f90
r484 r531 4 4 ! Current revisions: 5 5 ! ----------------- 6 ! 6 ! add call of subsidence in the equation for humidity / passive scalar 7 7 ! 8 8 ! Former revisions: … … 658 658 !-- Sink or source of scalar concentration due to canopy elements 659 659 IF ( plant_canopy ) CALL plant_canopy_model( i, j, 5 ) 660 661 ! 662 !-- If required compute influence of large-scale subsidence/ascent 663 IF ( large_scale_subsidence ) THEN 664 CALL subsidence ( i, j, tend, q, q_init ) 665 ENDIF 660 666 661 667 CALL user_actions( i, j, 'q-tendency' ) … … 1110 1116 ENDIF 1111 1117 1112 1113 1118 CALL user_actions( i, j, 'pt-tendency' ) 1114 1119 … … 1223 1228 !-- Sink or source of scalar concentration due to canopy elements 1224 1229 IF ( plant_canopy ) CALL plant_canopy_model( i, j, 5 ) 1230 1231 1232 !-- If required compute influence of large-scale subsidence/ascent 1233 IF ( large_scale_subsidence ) THEN 1234 CALL subsidence ( i, j, tend, q, q_init ) 1235 ENDIF 1225 1236 1226 1237 … … 1907 1918 IF ( plant_canopy ) CALL plant_canopy_model( 5 ) 1908 1919 1920 ! 1921 !-- If required compute influence of large-scale subsidence/ascent 1922 IF ( large_scale_subsidence ) THEN 1923 CALL subsidence ( tend, q, q_init ) 1924 ENDIF 1925 1909 1926 CALL user_actions( 'q-tendency' ) 1910 1927
Note: See TracChangeset
for help on using the changeset viewer.