Ignore:
Timestamp:
Jul 17, 2019 3:14:26 PM (5 years ago)
Author:
gronemeier
Message:

timestep.f90:

  • consider 2*Km within diffusion criterion as Km is considered twice within the diffusion of e,
  • in RANS mode, instead of considering each wind component individually use the wind speed of 3d wind vector in CFL criterion
  • do not limit the increase of dt based on its previous value in RANS mode

other:

  • remove dt_old
File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/vertical_nesting_mod.f90

    r3802 r4101  
    2626! -----------------
    2727! $Id$
     28! remove old_dt
     29!
     30! 3802 2019-03-17 13:33:42Z raasch
    2831! unused subroutines commented out
    2932!
     
    39433946#if defined( __parallel )
    39443947         USE control_parameters,                                                    &
    3945              ONLY:  coupling_mode, dt_3d, old_dt
     3948             ONLY:  coupling_mode, dt_3d
    39463949     
    39473950         USE interfaces
     
    39773980!-- Identical timestep for coarse and fine grids
    39783981          dt_3d = MIN( dtc, dtf )
    3979           !> @fixme setting old_dt might be obsolete at this point
    3980           !>   Due to changes in timestep routine, setting of old_dt might be
    3981           !>   not necessary any more at this point. However, could not be
    3982           !>   tested so far.
    3983           !>   2018-05-18, gronemeier
    3984           old_dt = dt_3d
    39853982#endif
    39863983       END SUBROUTINE vnest_timestep_sync
Note: See TracChangeset for help on using the changeset viewer.