source: palm/trunk/TESTS/cases/example_cbl_restart/INPUT/example_cbl_restart_p3dr @ 4001

Last change on this file since 4001 was 3421, checked in by gronemeier, 5 years ago

new surface-data output; renamed output variables (pt to theta, rho_air to rho, rho_ocean to rho_sea_water)

File size: 4.3 KB
Line 
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                         = 39, ! Number of gridboxes in x-direction (nx+1)
10    ny                         = 39, ! Number of gridboxes in y-direction (ny+1)
11    nz                         = 40, ! Number of gridboxes in z-direction (nz)
12
13    dx                         = 50.0, ! Size of single gridbox in x-direction
14    dy                         = 50.0, ! Size of single gridbox in y-direction
15    dz                         = 50.0, ! Size of single gridbox in z-direction
16
17    dz_stretch_level           = 1225.0, ! Height (in m) where stretching starts
18    dz_stretch_factor          = 1.08,   ! dz(k+1) = dz(k) * dz_stretch_factor
19!
20!-- initialization
21!-------------------------------------------------------------------------------
22    initializing_actions       = 'read_restart_data', ! initial conditions
23
24    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
25    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
26
27    pt_surface                 = 300.0, ! initial surface potential temp
28
29    pt_vertical_gradient       =    0.0,
30                                    1.0, ! piecewise temp gradients
31    pt_vertical_gradient_level =    0.0,
32                                  800.0, ! height level of temp gradients
33
34
35!
36!-- boundary conditions
37!-------------------------------------------------------------------------------
38    surface_heatflux           = 0.1, ! sensible heat flux at the bottom surface
39    bc_pt_b                    = 'neumann', ! required with surface_heatflux
40!
41!-- numerics
42!-------------------------------------------------------------------------------
43    fft_method                 = 'temperton-algorithm',   ! build-in fft method
44
45/ ! end of initialization parameter namelist
46
47!-------------------------------------------------------------------------------
48!-- RUNTIME PARAMETER NAMELIST
49!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
50!-------------------------------------------------------------------------------
51&runtime_parameters
52!
53!-- run steering
54!-------------------------------------------------------------------------------
55    end_time                   = 2700.0, ! simulation time of the 3D model
56
57    create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
58    dt_disturb                 = 150.0,  ! interval for random perturbations
59    disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
60
61    data_output_2d_on_each_pe  = .FALSE., ! don't do 2D output on each MPI rank
62
63!
64!-- data output
65!-------------------------------------------------------------------------------
66    netcdf_data_format         = 2, ! use NetCDF3
67
68    dt_run_control             = 0.0,    ! output interval for run control
69    dt_data_output             = 900.0,  ! output interval for general data
70    dt_data_output_av          = 1800.0, ! output interval for averaged data
71    dt_dopr                    = 900.0,  ! output interval for profile data
72
73    data_output                = 'w_xy',
74                                 'w_xz',
75                                 'w_xz_av',
76                                 'theta_xy',
77                                 'theta_xz',
78
79    data_output_pr             = 'wtheta',
80                                 'w"theta"',
81                                 'w*theta*',
82                                 'w*2',
83                                 '#theta',
84                                 'theta*2',
85
86    section_xy                 = 2,
87                                 10, ! grid index for 2D XY cross sections
88    section_xz                 = 20, ! grid index for 2D XZ cross sections
89
90    averaging_interval         = 900.0, ! averaging interval general data
91    dt_averaging_input         = 10.0,  ! averaging general data sampling rate
92
93    averaging_interval_pr      = 600.0, ! averaging interval profile data
94    dt_averaging_input_pr      = 10.0,  ! averaging profile data sampling rate
95
96/ ! end of runtime parameter namelist
97 
Note: See TracBrowser for help on using the repository browser.