Changeset 2059
- Timestamp:
- Nov 10, 2016 2:20:40 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_1d_model.f90
r2001 r2059 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Corrected min/max values of Rif. 23 23 ! 24 24 ! Former revisions: … … 242 242 intermediate_timestep_count_max, f, g, ibc_e_b, kappa, & 243 243 mixing_length_1d, & 244 simulated_time_chr, timestep_scheme, tsc , zeta_max, zeta_min244 simulated_time_chr, timestep_scheme, tsc 245 245 246 246 USE indices, & … … 572 572 !-- range. It is exceeded excessively for very small velocities 573 573 !-- (u,v --> 0). 574 WHERE ( rif1d < zeta_min ) rif1d = zeta_min575 WHERE ( rif1d > zeta_max ) rif1d = zeta_max574 WHERE ( rif1d < -5.0_wp ) rif1d = -5.0_wp 575 WHERE ( rif1d > 1.0_wp ) rif1d = 1.0_wp 576 576 577 577 !
Note: See TracChangeset
for help on using the changeset viewer.