source: palm/trunk/EXAMPLES/constant_flux_layer/example_constant_flux_layer_p3d @ 252

Last change on this file since 252 was 252, checked in by letzel, 15 years ago
  • trunk/EXAMPLES: one new example added, documentation added to existing examples
File size: 2.3 KB
Line 
1 &inipar nx = 39, ny = 39, nz = 45,
2         dx = 2.0, dy = 2.0, dz = 2.0,
3
4         fft_method = 'temperton-algorithm',   ! fast, but restrictions apply
5
6         omega = 0.0,                          ! no Coriolis force
7         dp_external = .T.,                    ! external pressure gradient
8         dp_level_b = 80.0,                    ! ...acting above 80 m height
9         dp_smooth = .T.,                      ! ...vertically smoothed
10         dpdxy = -0.003, 0.0,                  ! ...in x-, y-direction
11
12         initializing_actions = 'set_constant_profiles',
13         ug_surface = 0.0, vg_surface = 0.0,
14         ug_vertical_gradient       = 2.5,     ! linear vertical ug gradient
15         ug_vertical_gradient_level = 0.0,     ! starting from the ground
16         roughness_length = 0.1,               ! applies to all surfaces locally
17
18         bc_pt_b = 'neumann',
19         bc_uv_t = 'neumann',                  ! open channel boundary condition
20
21         topography = 'single_building',
22         building_height   = 40.0,
23         building_length_x = 40.0,
24         building_length_y = 40.0,
25
26         surface_heatflux = 0.0,               ! strictly neutral simulation
27         wall_heatflux = 0.0, 0.0, 0.0, 0.0, 0.0,  /
28
29 &d3par  end_time                  =  14400.0,
30         termination_time_needed   =    900.0,
31
32         create_disturbances = .T.,
33
34         netcdf_64bit = .F., netcdf_64bit_3d = .F.,
35
36         dt_run_control            =      6.0,
37         dt_dots                   =      6.0,
38
39         skip_time_dopr            =      0.0,
40         dt_dopr                   =   7200.0,
41         averaging_interval_pr     =   7200.0,
42         dt_averaging_input_pr     =      6.0,
43
44         skip_time_data_output     =      0.0,
45         dt_data_output            =   7200.0,
46
47         averaging_interval        =   7200.0,
48         dt_averaging_input        =      6.0,
49
50         data_output_pr = '#u', 'w"u"', 'w*u*', 'wu', 'u*2',
51                          '#v', 'w"v"', 'w*v*', 'wv', 'v*2',
52                          'w', 'w*2', 'e', 'e*', '#km', '#l',
53
54         data_output = 'u',       'v',       'w',
55                       'u_av',    'v_av',    'w_av',  /
56
57 &userpar
58         topography_grid_convention = 'cell_edge',  /
59                ! this is the default for topography = 'single_building'
Note: See TracBrowser for help on using the repository browser.