source: palm/trunk/EXAMPLES/agents/corners/INPUT/corners_p3d @ 4273

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

EXAMPLES folder revised: Examples of the agent model, biometeorology module, and mountain setup revised so that these setups run with the newest version, template for describing examples translated into english, all other examples (building, topo_file, street_canyon, constant_flux_layer) deleted

File size: 1.8 KB
Line 
1&initialization_parameters
2   !-- grid setup
3      nx = 19,
4      ny = 19,
5      nz = 30,
6
7      dx = 1.0,
8      dy = 1.0,
9      dz = 1.0,
10
11   !-- pressure solver
12      fft_method = 'temperton-algorithm',
13    loop_optimization    = 'cache',
14
15   !-- initialization
16      initializing_actions = 'set_constant_profiles',  ! constant vertical profiles are used,
17      pt_surface = 300.,                               ! based on given "*_surface" values
18      ug_surface = 1.0,
19      vg_surface = 0.0,
20
21   !-- boundary conditions
22      bc_uv_t = 'neumann',                    ! free-slip boundary condition
23      bc_pt_b = 'dirichlet',                  ! surface temperature is calculated by e-balance solver in USM 
24      bc_pt_t = 'neumann',     
25      roughness_length = 0.01,                 ! applies to all surfaces
26
27   !-- topography   
28      topography = 'read_from_file',                ! file: generic_canyon_topo
29     
30      /                                       ! end of inipar-namelist
31
32
33 &runtime_parameters 
34   !-- simulation time
35      end_time                = 150.0,
36
37   !-- others
38      create_disturbances = .T.,
39
40      netcdf_data_format = 5,
41      dt_dots            = 9999999.,
42                   
43      /                                        ! end of canopy_par-namelist
44
45
46 &agent_parameters
47    dim_size_agtnum_manual = 50,
48    dt_arel                = 12.,
49    dt_write_agent_data    = .05,
50    number_of_agent_groups = 4,
51    adx                    =   .9,   .9,   4.,   4.,
52    ady                    =   4.,   4.,   .9,   .9,
53    asl                    =   8.,   8.,  1.5,  18.,
54    asr                    =  12.,  12.,   2., 18.5,
55    ass                    =  1.5,  18.,   8.,   8.,
56    asn                    =   2., 18.5,  12.,  12.,
57    at_x                   =  10.,  10.,  16.,   4.,
58    at_y                   =  16.,   4.,  10.,  10.,
59
60    /
Note: See TracBrowser for help on using the repository browser.