- Timestamp:
- May 16, 2018 8:14:20 AM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pmc_interface_mod.f90
r3020 r3021 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix: variable lcr was defined as INTENT(OUT) instead of INTENT(INOUT) 28 ! 29 ! 3020 2018-05-14 10:45:48Z hellstea 27 30 ! Bugfix in pmci_define_loglaw_correction_parameters 28 31 ! … … 2691 2694 LOGICAL :: more !< 2692 2695 2693 REAL(wp), DIMENSION(0:ncorr-1), INTENT( OUT) :: lcr!<2696 REAL(wp), DIMENSION(0:ncorr-1), INTENT(INOUT) :: lcr !< 2694 2697 REAL(wp), INTENT(IN) :: z0_l !< 2695 2698 -
palm/trunk/SOURCE/prognostic_equations.f90
r3014 r3021 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix in IF clause for nesting 28 ! 29 ! 3014 2018-05-09 08:42:38Z maronga 27 30 ! Fixed a bug in the IF condition to call pcm_tendency in case of 28 31 ! potential temperature … … 295 298 intermediate_timestep_count_max, large_scale_forcing, & 296 299 large_scale_subsidence, microphysics_morrison, & 297 microphysics_seifert, microphysics_sat_adjust, neutral, nudging,& 300 microphysics_seifert, microphysics_sat_adjust, nest_bound_s, & 301 neutral, nudging, & 298 302 ocean, outflow_l, outflow_s, passive_scalar, plant_canopy, & 299 303 prho_reference, prho_reference, & … … 597 601 ! 598 602 !-- Tendency terms for v-velocity component 599 IF ( .NOT. outflow_s.OR. j > nys ) THEN603 IF ( (.NOT. outflow_s .AND. .NOT. nest_bound_s ) .OR. j > nys ) THEN 600 604 601 605 tend(:,j,i) = 0.0_wp
Note: See TracChangeset
for help on using the changeset viewer.