Changeset 2488


Ignore:
Timestamp:
Sep 21, 2017 12:48:12 PM (7 years ago)
Author:
knoop
Message:

p3d style changes imposed onto example_cbl testcase

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/INSTALL/example_cbl_p3d

    r966 r2488  
    1  &inipar nx = 39, ny = 39, nz = 40,
    2          dx = 50.0, dy = 50.0, dz = 50.0,
    3          dz_stretch_level = 1200.0,
     1!-------------------------------------------------------------------------------
     2!-- INITIALIZATION PARAMETER NAMELIST
     3!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar
     4!-------------------------------------------------------------------------------
     5&inipar
     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)
    412
    5          fft_method = 'temperton-algorithm',
     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
    616
    7          initializing_actions = 'set_constant_profiles',
    8          ug_surface = 0.0, vg_surface = 0.0,
    9          pt_vertical_gradient       = 0.0, 1.0,
    10          pt_vertical_gradient_level = 0.0, 800.0,
     17    dz_stretch_level           = 1200.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       = 'set_constant_profiles', ! 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, ! piecewise temp gradients
     30                                    1.0,
     31    pt_vertical_gradient_level =    0.0, ! height level of temp gradients
     32                                  800.0,
    1133
    1234
    13          surface_heatflux = 0.1, bc_pt_b = 'neumann',  /
     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
    1444
     45/ ! end of initialization parameter namelist
    1546
    16  &d3par  end_time = 3600.0,
     47!-------------------------------------------------------------------------------
     48!-- RUNTIME PARAMETER NAMELIST
     49!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
     50!-------------------------------------------------------------------------------
     51&d3par
     52!
     53!-- run steering
     54!-------------------------------------------------------------------------------
     55    end_time                   = 3600.0, ! simulation time of the 3D model
    1756
    18          create_disturbances = .T.,
    19          dt_disturb = 150.0, disturbance_energy_limit = 0.01,
     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
    2060
    21          dt_run_control = 0.0,
     61    data_output_2d_on_each_pe  = .FALSE., ! don't do 2D output on each MPI rank
    2262
    23          data_output = 'w_xy', 'w_xz', 'w_xz_av', 'pt_xy', 'pt_xz',
     63!
     64!-- data output
     65!-------------------------------------------------------------------------------
     66    netcdf_data_format         = 2, ! use NetCDF3
    2467
    25          dt_data_output = 900.0,
    26          dt_data_output_av = 1800.0,
    27          averaging_interval = 900.0,
    28          dt_averaging_input = 10.0,
     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
    2972
    30          section_xy = 2, 10, section_xz = 20,
     73    data_output                = 'w_xy', 'w_xz', 'w_xz_av',
     74                                 'pt_xy', 'pt_xz',
    3175
    32          data_output_2d_on_each_pe = .F.,
     76    data_output_pr             = 'wpt', 'w"pt"', 'w*pt*',
     77                                 'w*2',
     78                                 '#pt', 'pt*2',
    3379
    34          dt_dopr = 900.0,
    35          averaging_interval_pr = 600.0, dt_averaging_input_pr = 10.0,
    36          data_output_pr = '#pt', 'w"pt"', 'w*pt*', 'wpt', 'w*2', 'pt*2', /
     80    section_xy                 = 2,  ! grid index for 2D XY cross sections
     81                                 10,
     82    section_xz                 = 20, ! grid index for 2D XZ cross sections
    3783
     84    averaging_interval         = 900.0, ! averaging interval general data
     85    dt_averaging_input         = 10.0,  ! averaging general data sampling rate
     86
     87    averaging_interval_pr      = 600.0, ! averaging interval profile data
     88    dt_averaging_input_pr      = 10.0,  ! averaging profile data sampling rate
     89
     90/ ! end of runtime parameter namelist
     91 
Note: See TracChangeset for help on using the changeset viewer.