Changeset 4109 for palm/trunk/SOURCE/salsa_mod.f90
- Timestamp:
- Jul 22, 2019 5:00:34 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/salsa_mod.f90
r4102 r4109 21 21 ! Current revisions: 22 22 ! ----------------- 23 ! 23 ! Pass integer flag array as well as boundary flags to WS scalar advection 24 ! routine 24 25 ! 25 26 ! Former revisions: … … 7739 7740 7740 7741 USE indices, & 7741 ONLY: wall_flags_07742 ONLY: advc_flags_s, wall_flags_0 7742 7743 7743 7744 USE pegrid, & … … 7782 7783 IF ( timestep_scheme(1:5) == 'runge' ) THEN 7783 7784 IF ( ws_scheme_sca ) THEN 7784 CALL advec_s_ws( i, j, rs, id, flux_s, diss_s, flux_l, diss_l, i_omp_start, tn, & 7785 CALL advec_s_ws( advc_flags_s, i, j, rs, id, flux_s, diss_s, flux_l, diss_l, & 7786 i_omp_start, tn, & 7787 bc_dirichlet_l .OR. bc_radiation_l, & 7788 bc_dirichlet_n .OR. bc_radiation_n, & 7789 bc_dirichlet_r .OR. bc_radiation_r, & 7790 bc_dirichlet_s .OR. bc_radiation_s, & 7785 7791 monotonic_limiter_z ) 7786 7792 ELSE … … 7883 7889 ONLY: diffusion_s 7884 7890 USE indices, & 7885 ONLY: wall_flags_07891 ONLY: advc_flags_s, wall_flags_0 7886 7892 USE surface_mod, & 7887 7893 ONLY : surf_def_h, surf_def_v, surf_lsm_h, surf_lsm_v, surf_usm_h, surf_usm_v … … 7914 7920 IF ( timestep_scheme(1:5) == 'runge' ) THEN 7915 7921 IF ( ws_scheme_sca ) THEN 7916 CALL advec_s_ws( rs, id ) 7922 CALL advec_s_ws( advc_flags_s, rs, id, & 7923 bc_dirichlet_l .OR. bc_radiation_l, & 7924 bc_dirichlet_n .OR. bc_radiation_n, & 7925 bc_dirichlet_r .OR. bc_radiation_r, & 7926 bc_dirichlet_s .OR. bc_radiation_s ) 7917 7927 ELSE 7918 7928 CALL advec_s_pw( rs )
Note: See TracChangeset
for help on using the changeset viewer.