Changeset 4079 for palm/trunk/SOURCE/chemistry_model_mod.f90
- Timestamp:
- Jul 9, 2019 6:04:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/chemistry_model_mod.f90
r4069 r4079 27 27 ! ----------------- 28 28 ! $Id$ 29 ! Application of monotonic flux limiter for the vertical scalar advection 30 ! up to the topography top (only for the cache-optimized version at the 31 ! moment). 32 ! 33 ! 4069 2019-07-01 14:05:51Z Giersch 29 34 ! Masked output running index mid has been introduced as a local variable to 30 35 ! avoid runtime error (Loop variable has been modified) in time_integration … … 354 359 dt_3d, humidity, initializing_actions, message_string, & 355 360 omega, tsc, intermediate_timestep_count, intermediate_timestep_count_max, & 356 max_pr_user, timestep_scheme, use_prescribed_profile_data, ws_scheme_sca, air_chemistry 361 max_pr_user, & 362 monotonic_limiter_z, & 363 timestep_scheme, use_prescribed_profile_data, ws_scheme_sca, air_chemistry 357 364 358 365 USE arrays_3d, & … … 2750 2757 CALL advec_s_ws( i, j, chem_species(ilsp)%conc, 'kc', chem_species(ilsp)%flux_s_cs, & 2751 2758 chem_species(ilsp)%diss_s_cs, chem_species(ilsp)%flux_l_cs, & 2752 chem_species(ilsp)%diss_l_cs, i_omp_start, tn )2759 chem_species(ilsp)%diss_l_cs, i_omp_start, tn, monotonic_limiter_z ) 2753 2760 ELSE 2754 2761 CALL advec_s_pw( i, j, chem_species(ilsp)%conc ) … … 2782 2789 BTEST( wall_flags_0(k,j,i), 0 ) & 2783 2790 ) 2784 2785 IF ( chem_species(ilsp)%conc_p(k,j,i) < 0.0_wp ) THEN2786 chem_species(ilsp)%conc_p(k,j,i) = 0.1_wp * chem_species(ilsp)%conc(k,j,i) !FKS62787 ENDIF2788 2791 ENDDO 2789 2792 ! … … 3315 3318 r_aero_surf = surf_lsm_h%r_a(m) 3316 3319 solar_rad = surf_lsm_h%rad_sw_dir(m) + surf_lsm_h%rad_sw_dif(m) 3320 3317 3321 lai = surf_lsm_h%lai(m) 3318 3322 sai = lai + 1
Note: See TracChangeset
for help on using the changeset viewer.