Ignore:
Timestamp:
Jul 30, 2018 5:07:14 PM (6 years ago)
Author:
suehring
Message:

Mask topography while imposing inflow perturbations at the boundaries; do not impose perturbations at top boundary as well as ghost points; Remove print statement; Read zsoil dimension lenght only if soil variables are provided in dynamic driver

File:
1 edited

Legend:

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

    r3183 r3186  
    2525! -----------------
    2626! $Id$
     27! Read zsoil dimension lenght only if soil variables are provided
     28!
     29! 3183 2018-07-27 14:25:55Z suehring
    2730! Adjust input of dynamic driver according to revised Inifor version.
    2831! Replace simulated_time by time_since_reference_point.
     
    21222125       CALL get_dimension_length( id_dynamic, init_3d%nzu, 'z'     )
    21232126       CALL get_dimension_length( id_dynamic, init_3d%nzw, 'zw'    )
    2124        CALL get_dimension_length( id_dynamic, init_3d%nzs, 'zsoil' )
     2127       IF ( check_existence( var_names, 'zsoil' ) )                            &
     2128          CALL get_dimension_length( id_dynamic, init_3d%nzs, 'zsoil' )
    21252129!
    21262130!--    Read also the horizontal dimensions. These are used just used fo
Note: See TracChangeset for help on using the changeset viewer.