Ignore:
Timestamp:
Oct 26, 2015 4:17:44 PM (9 years ago)
Author:
maronga
Message:

various bugfixes and modifications of the atmosphere-land-surface-radiation interaction. Completely re-written routine to calculate surface fluxes (surface_layer_fluxes.f90) that replaces prandtl_fluxes. Minor formatting corrections and renamings

File:
1 edited

Legend:

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

    r1686 r1691  
    1414! PALM. If not, see <http://www.gnu.org/licenses/>.
    1515!
    16 ! Copyright 1997-2014 Leibniz Universitaet Hannover
     16! Copyright 1997-2015 Leibniz Universitaet Hannover
    1717!--------------------------------------------------------------------------------!
    1818!
    1919! Current revisions:
    2020! ------------------
    21 !
     21! Renamed prandtl_layer to constant_flux_layer.
    2222!
    2323! Former revisions:
     
    8383
    8484    USE control_parameters,                                                    &
    85         ONLY:  atmos_ocean_sign, cloud_droplets, dt_3d, dt_3d_reached_l, dz,   &
    86                g, kappa, molecular_viscosity, prandtl_layer, topography,      &
     85        ONLY:  atmos_ocean_sign, cloud_droplets, constant_flux_layer, dt_3d,   &
     86               dt_3d_reached_l, dz, g, kappa, molecular_viscosity, topography, &
    8787               u_gtrans, v_gtrans, simulated_time
    8888
     
    224224!--       First, check if particle is located below first vertical grid level
    225225!--       (Prandtl-layer height)
    226           IF ( prandtl_layer  .AND.  particles(n)%z < z_p )  THEN
     226          IF ( constant_flux_layer  .AND.  particles(n)%z < z_p )  THEN
    227227!
    228228!--          Resolved-scale horizontal particle velocity is zero below z0.
     
    294294       DO  n = start_index(nb), end_index(nb)
    295295
    296           IF ( prandtl_layer  .AND.  particles(n)%z < z_p )  THEN
     296          IF ( constant_flux_layer  .AND.  particles(n)%z < z_p )  THEN
    297297
    298298             IF ( particles(n)%z < z0_av_global )  THEN
Note: See TracChangeset for help on using the changeset viewer.