source: palm/trunk/INSTALL/test_oceanml_p3d @ 3275

Last change on this file since 3275 was 3275, checked in by knoop, 6 years ago

improved formating of test_oceanml_p3d

File size: 3.6 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                         = 63, ! Number of gridboxes in x-direction (nx+1)
10    ny                         = 63, ! Number of gridboxes in y-direction (ny+1)
11    nz                         = 64, ! Number of gridboxes in z-direction (nz)
12
13    dx                         = 1.25, ! Size of single gridbox in x-direction
14    dy                         = 1.25, ! Size of single gridbox in y-direction
15    dz                         = 1.25, ! Size of single gridbox in z-direction
16!
17!-- initialization
18!-------------------------------------------------------------------------------
19    initializing_actions       = 'set_constant_profiles', ! initial conditions
20
21    ocean                      = .TRUE., ! enable ocean modeling
22    latitude                   = 55.6,
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!-- boundary conditions
30!-------------------------------------------------------------------------------
31    bc_uv_b                    = 'neumann',
32    bc_uv_t                    = 'neumann',
33    bc_pt_b                    = 'neumann',
34    bc_pt_t                    = 'neumann',
35    bc_p_b                     = 'neumann',
36    bc_p_t                     = 'neumann',
37    bc_s_b                     = 'initial_gradient',
38    bc_s_t                     = 'neumann',
39    bc_sa_t                    = 'neumann',
40
41    use_top_fluxes             = .T.,
42    use_surface_fluxes         = .F.,
43    constant_flux_layer        = .F.,
44
45    top_momentumflux_u         = -0.0001,
46    top_momentumflux_v         = 0.0,
47
48    top_heatflux               = 0.0,
49    top_salinityflux           = 0.0,
50!
51!-- numerics
52!-------------------------------------------------------------------------------
53    fft_method                 = 'temperton-algorithm',   ! build-in fft method
54
55    momentum_advec             = 'pw-scheme', ! use Piacsek and Williams scheme
56    scalar_advec               = 'pw-scheme', ! use Piacsek and Williams scheme
57
58/ ! end of initialization parameter namelist
59
60!-------------------------------------------------------------------------------
61!-- RUNTIME PARAMETER NAMELIST
62!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
63!-------------------------------------------------------------------------------
64&runtime_parameters
65!
66!-- run steering
67!-------------------------------------------------------------------------------
68    end_time                   = 300.0, ! simulation time of the 3D model
69
70    create_disturbances        = .TRUE.,  ! randomly perturbate horiz. velocity
71    dt_disturb                 = 60.0,    ! interval for random perturbations
72    disturbance_energy_limit   = 1.0e-4,  ! upper limit for perturbation energy
73    disturbance_amplitude      = 0.25e-1, ! maximum perturbation amplitude
74!
75!-- data output
76!-------------------------------------------------------------------------------
77    netcdf_data_format         = 5, ! use NetCDF3
78
79    dt_run_control             = 0.0,    ! output interval for run control
80
81    data_output_pr             = 'e','e*', '#pt',
82
83/ ! end of runtime parameter namelist
84 
85
Note: See TracBrowser for help on using the repository browser.