source: palm/trunk/TUTORIALS/cases/example_neutral/INPUT/example_neutral_p3d @ 4224

Last change on this file since 4224 was 4224, checked in by Giersch, 5 years ago

Three Tutorial cases updated for newest version

File size: 4.0 KB
RevLine 
[4224]1!-------------------------------------------------------------------------------
2!-- INITIALIZATION PARAMETER NAMELIST
3!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar
4!-------------------------------------------------------------------------------
5&initialization_parameters
6!
7!-- grid parameters
8!-------------------------------------------------------------------------------
9    nx                         = 49, ! Number of gridboxes in x-direction (nx+1)
10    ny                         = 49, ! Number of gridboxes in y-direction (ny+1)
11    nz                         = 100,! Number of gridboxes in z-direction (nz)
[4002]12
[4224]13    dx                         = 20.0, ! Size of single gridbox in x-direction
14    dy                         = 20.0, ! Size of single gridbox in y-direction
15    dz                         = 20.0, ! Size of single gridbox in z-direction
16!
17!-- initialization
18!-------------------------------------------------------------------------------
19    initializing_actions       = 'set_constant_profiles' , ! initial conditions
[4002]20
[4224]21    ug_surface                 = 5.0 , ! u-comp of geostrophic wind at surface
22    vg_surface                 = 0.0 , ! v-comp of geostrophic wind at surface
[4002]23
[4224]24    pt_surface                 = 300.0,     ! initial surface potential temp
25    pt_vertical_gradient       = 0.0,       ! piecewise temp gradients
26    pt_vertical_gradient_level = 0.0, ! height level of temp gradients
27!
28!-- boundary conditions
29!-------------------------------------------------------------------------------
30    bc_uv_b                    =  'dirichlet' ,
31    bc_uv_t                    =   'neumann',
[4002]32
[4224]33    bc_p_b                     = 'neumann',
34    bc_p_t                     = 'dirichlet',
[4002]35
[4224]36    constant_flux_layer        = .T. ,
37   
38    roughness_length           = 0.1 ,
39!
40!-- numerics
41!-------------------------------------------------------------------------------
42    fft_method                 = 'temperton-algorithm',   ! build-in fft method     
[4002]43
[4224]44    rayleigh_damping_height    = 1250.0,
45    rayleigh_damping_factor    = 0.01,
46     
47    galilei_transformation     = .T. ,
48   
49/ ! end of initialization parameter namelist
[4002]50
[4224]51!-------------------------------------------------------------------------------
52!-- RUNTIME PARAMETER NAMELIST
53!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
54!-------------------------------------------------------------------------------
55&runtime_parameters 
56!
57!-- run steering
58!-------------------------------------------------------------------------------
59    end_time                   = 172800.0, ! simulation time of the 3D model
[4002]60
[4224]61    create_disturbances        = .T.,      ! randomly perturbate horiz. velocity
62    dt_disturb                 = 150.0,             ! interval for random perturbations
63    disturbance_energy_limit   = 0.01,! upper limit for perturbation energy
64!
65!-- data output
66!-------------------------------------------------------------------------------
67    netcdf_data_format         = 2, ! use NetCDF3
68    dt_run_control             = 60.0,
[4002]69
[4224]70    dt_dopr                    = 10800.0,
71         
72    averaging_interval_pr      = 10800.0,
73    dt_averaging_input_pr      = 50.0,
74    data_output_pr             = '#u', '#v', 'w', '#theta',
75                                 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv',
76                                 'w*2', 'theta*2',
77                       
78/! end of runtime parameter namelist
[4002]79
[4224]80!-------------------------------------------------------------------------------
81!-- SPECTRA PARAMETER NAMELIST
82!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/sppar
83!-------------------------------------------------------------------------------         
84&spectra_parameters
[4002]85 
[4224]86    data_output_sp            =  'u', 'v', 'w',
87    dt_dosp                   = 10800.0,
88    comp_spectra_level        =  2, 5, 10, 15, 20,
89    spectra_direction         =  'x' , 'y' , 'x',
90    averaging_interval_sp     = 10800.0,
[4002]91         
[4224]92/! end of spectra parameter namelist
[4002]93 
Note: See TracBrowser for help on using the repository browser.