Changeset 3298 for palm/trunk/SOURCE/surface_mod.f90
- Timestamp:
- Oct 2, 2018 12:21:11 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE
- Property svn:mergeinfo changed
-
palm/trunk/SOURCE/surface_mod.f90
r3294 r3298 26 26 ! ----------------- 27 27 ! $Id$ 28 ! - Minor formatting/clean-up (kanani) 29 ! - Removed initialization of cssws with surface_csflux values. Only the value 0 30 ! is now passed to all the chemical species of the selected mechanism. 31 ! The real inizialization is conducted in init_3d_model_mod.f90 (Russo) 32 ! - Added calls and variables for inizialization of chemistry emission 33 ! fluxes (Russo) 34 ! - Setting of cssws to zero moved (forkel) 35 ! - Set cssws to zero before setting values (forkel) 36 ! - Distinguish flux conversion factors for gases and PM (forkel) 37 ! - Some questions/todo's on conversion factors (forkel) 38 ! 39 ! 3294 2018-10-01 02:37:10Z raasch 28 40 ! changes concerning modularization of ocean option 29 41 ! … … 2071 2083 2072 2084 TYPE( surf_type ) :: surf !< respective surface type 2085 2073 2086 ! 2074 2087 !-- Store indices of respective surface element … … 2173 2186 2174 2187 DO lsp = 1, nvar 2175 IF ( air_chemistry ) surf%css(lsp,num_h) = 0.0_wp 2188 IF ( air_chemistry ) surf%css(lsp,num_h) = 0.0_wp 2189 ! 2190 !-- Ensure that fluxes of compounds which are not specified in 2191 !-- namelist are all zero --> kanani: revise 2192 IF ( air_chemistry ) surf%cssws(lsp,num_h) = 0.0_wp 2176 2193 ENDDO 2177 2194 ! … … 2220 2237 ELSE 2221 2238 surf%qsws(num_h) = wall_humidityflux(5) * & 2222 heatflux_input_conversion(k)2239 waterflux_input_conversion(k) 2223 2240 ENDIF 2224 2241 ENDIF … … 2227 2244 IF ( upward_facing ) THEN 2228 2245 IF ( constant_scalarflux ) THEN 2229 surf%ssws(num_h) = surface_scalarflux * rho_air_zw(k-1)2246 surf%ssws(num_h) = surface_scalarflux * rho_air_zw(k-1) 2230 2247 2231 2248 IF ( k-1 /= 0 ) & … … 3386 3403 nxr_on_file, nynf, nync, nyn_on_file, nysf, & 3387 3404 nysc, nys_on_file, found ) 3405 3388 3406 3389 3407 IMPLICIT NONE
Note: See TracChangeset
for help on using the changeset viewer.