source: palm/trunk/TUTORIALS/cases/lsm_short/INPUT/lsm_short_p3d @ 4671

Last change on this file since 4671 was 4409, checked in by Giersch, 4 years ago

Tutorials updated, all tested with revision 4402

File size: 5.6 KB
RevLine 
[4222]1!-------------------------------------------------------------------------------
2!-- INITIALIZATION PARAMETER NAMELIST
[4397]3!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/initialization_parameters
[4222]4!-------------------------------------------------------------------------------
[4002]5&initialization_parameters
6!
7!-- grid parameters
[4222]8!-------------------------------------------------------------------------------
9    nx                         = 39, ! Number of gridboxes in x-direction (nx+1)
10    ny                         = 39, ! Number of gridboxes in y-direction (ny+1)
11    nz                         = 80, ! Number of gridboxes in z-direction (nz)
[4002]12
[4222]13    dx                         = 50.0, ! Size of single gridbox in x-direction
14    dy                         = 50.0, ! Size of single gridbox in y-direction
15    dz                         = 25.0, ! Size of single gridbox in z-direction
[4002]16!
17!-- initialization
18!------------------------------------------------------------------------------
[4222]19    initializing_actions       = 'set_constant_profiles', ! initial conditions
[4002]20
[4222]21    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
22    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
[4002]23
[4222]24    pt_surface                 = 293.0, ! initial surface potential temp
[4002]25
[4409]26    pt_vertical_gradient       = 0.0, 2.0, ! piecewise temp gradients
27    pt_vertical_gradient_level = 0.0, 800.0, ! height level of temp gradients
[4222]28
[4397]29    origin_date_time           = '2019-08-20 11:00:00 +00'
[4002]30!
31!-- boundary conditions
32!------------------------------------------------------------------------------
[4222]33    constant_flux_layer        = .TRUE., ! use a constant flux layer at
34                                         ! the bottom boundary
[4002]35
[4222]36    bc_pt_b                    = 'dirichlet', ! required when using LSM
[4002]37!
38!-- numerics
39!------------------------------------------------------------------------------
[4222]40    fft_method                 = 'temperton-algorithm', ! build-in fft method
[4002]41
[4397]42/
[4222]43
44!-------------------------------------------------------------------------------
45!-- RUNTIME PARAMETER NAMELIST
[4397]46!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/runtime_parameters
[4222]47!-------------------------------------------------------------------------------
[4002]48&runtime_parameters
49!
50!-- run steering
[4222]51!-------------------------------------------------------------------------------
52    end_time                   = 7200.0, ! simulation time of the 3D model
[4002]53
[4222]54    create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
55    dt_disturb                 = 150.0,  ! interval for random perturbations
56    disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
[4002]57!
[4222]58!-- data output
59!-------------------------------------------------------------------------------
60    netcdf_data_format         = 2, ! use NetCDF3
[4002]61
[4222]62    dt_run_control             = 60.0,   ! output interval for run control
63    dt_data_output             = 900.0,  ! output interval for general data
64    dt_data_output_av          = 1800.0, ! output interval for averaged data
65    dt_dots                    = 0.0,    ! output interval for time-series data
66    dt_dopr                    = 600.0,  ! output interval for profile data
67    dt_do3d                    = 60.0,   ! output interval for 3d data
68    dt_do2d_xy                 = 60.0,   ! output interval for 2d-xy data
[4002]69
[4409]70    data_output                = 'theta', 'w', 'u', 'v', 'us*_xy', 'ghf*_xy', 'shf*_xy', 'tsurf*_xy', 't_soil',    ! 2d and/or 3d output
[4002]71
[4409]72    data_output_pr             = '#u', '#v', '#theta', '#km', '#kh', '#l', 'w', 'e', 'e*', 'p', 'w"theta"', 'w*theta*', 'wtheta', 'w*e*', 'theta*2','u*2', 'v*2', 'w*2', '#t_soil',   ! Profile output
[4002]73
[4222]74    section_xy                 = 0, ! grid index for 2D XY cross sections
75
76    averaging_interval         = 1800.0, ! averaging interval general data
77    dt_averaging_input         =    6.0, ! averaging general data sampling rate
78
79    averaging_interval_pr      = 600.0, ! averaging interval profile data
80    dt_averaging_input_pr      =   6.0, ! averaging profile data sampling rate
81
[4397]82/
[4222]83
84!-------------------------------------------------------------------------------
85!-- LAND-SURFACE PARAMETER NAMELIST
[4397]86!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/land_surface_parameters
[4222]87!-------------------------------------------------------------------------------
[4002]88&land_surface_parameters
[4222]89    soil_type                  = 3,  ! type to be used in soil model
[4409]90    soil_moisture              = 0.0,   0.0,   0.0,   0.0, 0.0,   0.0,   0.0,   0.0,
91    soil_temperature           = 293,   293,   293,   293, 293,   293,   293,   293, ! every soil level
[4222]92    deep_soil_temperature      = 293,  ! temperature of deep soil
[4002]93
[4222]94    surface_type               = 'vegetation',  ! surface classification
95    vegetation_type            = 1, ! vegetation to be used in surface model
96
[4397]97/
[4222]98
99!-------------------------------------------------------------------------------
100!-- RADIATION PARAMETER NAMELIST
[4397]101!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radiation_parameters
[4222]102!-------------------------------------------------------------------------------
[4002]103&radiation_parameters
[4397]104    radiation_scheme           = 'constant', ! Radiation scheme to be used
105    net_radiation              = 800.0, !
[4222]106    dt_radiation               = 20.0, ! Time step of the radiation model
[4002]107
[4397]108/
[4222]109
110!-------------------------------------------------------------------------------
111!-- USER PARAMETER NAMELIST
[4397]112!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/user_parameters
[4222]113!-------------------------------------------------------------------------------
[4002]114&user_parameters
[4397]115    data_output_user           = 'v_h', ! user defined data output
[4002]116
[4397]117/
Note: See TracBrowser for help on using the repository browser.