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

Last change on this file was 4765, checked in by Giersch, 3 years ago

Tutorials updated for r4761

File size: 6.7 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
[4002]29!
30!-- boundary conditions
31!------------------------------------------------------------------------------
[4222]32    constant_flux_layer        = .TRUE., ! use a constant flux layer at
33                                         ! the bottom boundary
[4002]34
[4222]35    bc_pt_b                    = 'dirichlet', ! required when using LSM
[4002]36!
37!-- numerics
38!------------------------------------------------------------------------------
[4222]39    fft_method                 = 'temperton-algorithm', ! build-in fft method
[4002]40
[4397]41/
[4222]42
43!-------------------------------------------------------------------------------
44!-- RUNTIME PARAMETER NAMELIST
[4397]45!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/runtime_parameters
[4222]46!-------------------------------------------------------------------------------
[4002]47&runtime_parameters
48!
49!-- run steering
[4222]50!-------------------------------------------------------------------------------
51    end_time                   = 7200.0, ! simulation time of the 3D model
[4002]52
[4222]53    create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
54    dt_disturb                 = 150.0,  ! interval for random perturbations
55    disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
[4002]56!
[4222]57!-- data output
58!-------------------------------------------------------------------------------
59    netcdf_data_format         = 2, ! use NetCDF3
[4002]60
[4222]61    dt_run_control             = 60.0,   ! output interval for run control
62    dt_data_output             = 900.0,  ! output interval for general data
63    dt_data_output_av          = 1800.0, ! output interval for averaged data
64    dt_dots                    = 0.0,    ! output interval for time-series data
65    dt_dopr                    = 600.0,  ! output interval for profile data
66    dt_do3d                    = 60.0,   ! output interval for 3d data
67    dt_do2d_xy                 = 60.0,   ! output interval for 2d-xy data
[4765]68!
69!-- 2d and/or 3d data output
70!-------------------------------------------------------------------------------
71    data_output                = 'theta',
72                                 'w',
73                                 'u',
74                                 'v',
75                                 'us*_xy',
76                                 'ghf*_xy',
77                                 'shf*_xy',
78                                 'tsurf*_xy',
79                                 'theta_xy',
80                                 't_soil',
81!
82!-- profile output
83!-------------------------------------------------------------------------------
84    data_output_pr             = '#u',
85                                 '#v',
86                                 '#theta',
87                                 '#km',
88                                 '#kh',
89                                 '#l',
90                                 'w',
91                                 'e',
92                                 'e*',
93                                 'p',
94                                 'w"theta"',
95                                 'w*theta*',
96                                 'wtheta',
97                                 'w*e*',
98                                 'theta*2',
99                                 'u*2',
100                                 'v*2',
101                                 'w*2',
102                                 '#t_soil',
[4002]103
[4222]104    section_xy                 = 0, ! grid index for 2D XY cross sections
105
106    averaging_interval         = 1800.0, ! averaging interval general data
107    dt_averaging_input         =    6.0, ! averaging general data sampling rate
108
109    averaging_interval_pr      = 600.0, ! averaging interval profile data
110    dt_averaging_input_pr      =   6.0, ! averaging profile data sampling rate
111
[4397]112/
[4222]113
114!-------------------------------------------------------------------------------
115!-- LAND-SURFACE PARAMETER NAMELIST
[4397]116!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/land_surface_parameters
[4222]117!-------------------------------------------------------------------------------
[4002]118&land_surface_parameters
[4765]119!
120!-- define soil type and tempature
121!-------------------------------------------------------------------------------
[4222]122    soil_type                  = 3,  ! type to be used in soil model
[4765]123    soil_moisture              = 0.0,   0.0,   0.0,   0.0,   0.0,   0.0,   0.0,   0.0,
124    soil_temperature           = 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0, 293.0,
125    deep_soil_temperature      = 293.0,  ! temperature of deep soil
[4002]126
[4222]127    surface_type               = 'vegetation',  ! surface classification
128    vegetation_type            = 1, ! vegetation to be used in surface model
129
[4397]130/
[4222]131
132!-------------------------------------------------------------------------------
133!-- RADIATION PARAMETER NAMELIST
[4397]134!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radiation_parameters
[4222]135!-------------------------------------------------------------------------------
[4002]136&radiation_parameters
[4397]137    radiation_scheme           = 'constant', ! Radiation scheme to be used
138    net_radiation              = 800.0, !
[4222]139    dt_radiation               = 20.0, ! Time step of the radiation model
[4002]140
[4397]141/
[4222]142
143!-------------------------------------------------------------------------------
144!-- USER PARAMETER NAMELIST
[4397]145!   https://palm.muk.uni-hannover.de/trac/wiki/doc/app/user_parameters
[4222]146!-------------------------------------------------------------------------------
[4002]147&user_parameters
[4397]148    data_output_user           = 'v_h', ! user defined data output
[4002]149
[4397]150/
Note: See TracBrowser for help on using the repository browser.