Changeset 3562


Ignore:
Timestamp:
Nov 23, 2018 12:06:35 PM (5 years ago)
Author:
suehring
Message:

variables documented

Location:
palm/trunk/SOURCE
Files:
3 edited

Legend:

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

    r3467 r3562  
    2525! -----------------
    2626! $Id$
     27! variables documented
     28!
     29! 3467 2018-10-30 19:05:21Z suehring
    2730! Implementation of a new aerosol module salsa.
    2831!
     
    263266    INTEGER(iwp) ::  m  !< running index surface elements
    264267
    265     REAL(wp)    ::  c_max !<
    266     REAL(wp)    ::  denom !<
     268    REAL(wp)    ::  c_max !< maximum phase velocity allowed by CFL criterion, used for outflow boundary condition
     269    REAL(wp)    ::  denom !< horizontal gradient of velocity component normal to the outflow boundary
    267270
    268271
  • palm/trunk/SOURCE/lpm_advec.f90

    r3274 r3562  
    2525! -----------------
    2626! $Id$
     27! variables documented
     28!
     29! 3274 2018-09-24 15:42:55Z knoop
    2730! Modularization of all bulk cloud physics code components
    2831!
     
    243246    REAL(wp) ::  diss_int_u         !< x/y-interpolated dissipation at particle position at upper vertical level
    244247    REAL(wp) ::  dt_particle_m      !< previous particle time step
    245     REAL(wp) ::  dz_temp            !<
     248    REAL(wp) ::  dz_temp            !< dummy for the vertical grid spacing
    246249    REAL(wp) ::  e_int_l            !< x/y-interpolated TKE at particle position at lower vertical level
    247250    REAL(wp) ::  e_int_u            !< x/y-interpolated TKE at particle position at upper vertical level
    248251    REAL(wp) ::  e_mean_int         !< horizontal mean TKE at particle height
    249     REAL(wp) ::  exp_arg            !<
    250     REAL(wp) ::  exp_term           !<
     252    REAL(wp) ::  exp_arg            !< argument in the exponent - particle radius
     253    REAL(wp) ::  exp_term           !< exponent term
    251254    REAL(wp) ::  gg                 !< dummy argument for horizontal particle interpolation
    252255    REAL(wp) ::  height_p           !< dummy argument for logarithmic interpolation
    253256    REAL(wp) ::  log_z_z0_int       !< logarithmus used for surface_layer interpolation
    254     REAL(wp) ::  random_gauss       !<
     257    REAL(wp) ::  random_gauss       !< Gaussian-distributed random number used for SGS particle advection
    255258    REAL(wp) ::  RL                 !< Lagrangian autocorrelation coefficient
    256259    REAL(wp) ::  rg1                !< Gaussian distributed random number
     
    265268    REAL(wp) ::  v_int_u            !< x/y-interpolated v-component at particle position at upper vertical level
    266269    REAL(wp) ::  vsws_int           !< surface momentum flux (u component) at particle grid box
    267     REAL(wp) ::  vv_int             !<
     270    REAL(wp) ::  vv_int             !< dummy to compute interpolated mean SGS TKE, used to scale SGS advection
    268271    REAL(wp) ::  w_int_l            !< x/y-interpolated w-component at particle position at lower vertical level
    269272    REAL(wp) ::  w_int_u            !< x/y-interpolated w-component at particle position at upper vertical level
     
    281284
    282285    REAL(wp), DIMENSION(number_of_particles) ::  term_1_2       !< flag to communicate whether a particle is near topography or not
    283     REAL(wp), DIMENSION(number_of_particles) ::  dens_ratio     !<
     286    REAL(wp), DIMENSION(number_of_particles) ::  dens_ratio     !< ratio between the density of the fluid and the density of the particles
    284287    REAL(wp), DIMENSION(number_of_particles) ::  de_dx_int      !< horizontal TKE gradient along x at particle position
    285288    REAL(wp), DIMENSION(number_of_particles) ::  de_dy_int      !< horizontal TKE gradient along y at particle position
     
    291294    REAL(wp), DIMENSION(number_of_particles) ::  fs_int         !< weighting factor for subgrid-scale particle speed
    292295    REAL(wp), DIMENSION(number_of_particles) ::  lagr_timescale !< Lagrangian timescale
    293     REAL(wp), DIMENSION(number_of_particles) ::  rvar1_temp     !<
    294     REAL(wp), DIMENSION(number_of_particles) ::  rvar2_temp     !<
    295     REAL(wp), DIMENSION(number_of_particles) ::  rvar3_temp     !<
     296    REAL(wp), DIMENSION(number_of_particles) ::  rvar1_temp     !< SGS particle velocity - u-component
     297    REAL(wp), DIMENSION(number_of_particles) ::  rvar2_temp     !< SGS particle velocity - v-component
     298    REAL(wp), DIMENSION(number_of_particles) ::  rvar3_temp     !< SGS particle velocity - w-component
    296299    REAL(wp), DIMENSION(number_of_particles) ::  u_int          !< u-component of particle speed
    297300    REAL(wp), DIMENSION(number_of_particles) ::  v_int          !< v-component of particle speed
  • palm/trunk/SOURCE/lpm_boundary_conds.f90

    r3241 r3562  
    2525! -----------------
    2626! $Id$
     27! variables documented
     28!
     29! 3241 2018-09-12 15:02:00Z raasch
    2730! unused variables removed
    2831!
     
    146149    IMPLICIT NONE
    147150
    148     CHARACTER (LEN=*) ::  location     !<
     151    CHARACTER (LEN=*) ::  location !< general mode: boundary conditions at bottom/top of the model domain
     152                                   !< or at vertical surfaces (buildings, terrain steps)
    149153   
    150     INTEGER(iwp), INTENT(IN) ::  i !<
    151     INTEGER(iwp), INTENT(IN) ::  j !<
    152     INTEGER(iwp), INTENT(IN) ::  k !<
     154    INTEGER(iwp), INTENT(IN) ::  i !< grid index of particle box along x
     155    INTEGER(iwp), INTENT(IN) ::  j !< grid index of particle box along y
     156    INTEGER(iwp), INTENT(IN) ::  k !< grid index of particle box along z
    153157   
    154158    INTEGER(iwp) ::  inc            !< dummy for sorting algorithmus
Note: See TracChangeset for help on using the changeset viewer.