Ignore:
Timestamp:
Sep 9, 2019 12:55:23 PM (5 years ago)
Author:
gronemeier
Message:

update tutorials flow_around_cube and lsm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/TUTORIALS/cases/flow_around_cube_precursor/INPUT/flow_around_cube_precursor_p3d

    r4098 r4222  
     1!-------------------------------------------------------------------------------
     2!-- INITIALIZATION PARAMETER NAMELIST
     3!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar
     4!-------------------------------------------------------------------------------
    15&initialization_parameters
    2    !-- grid setup
    3       nx = 39,
    4       ny = 39,
    5       nz = 40,
     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)
    612
    7       dx = 2.0,
    8       dy = 2.0,
    9       dz = 2.0,
     13    dx                         = 2.0, ! Size of single gridbox in x-direction
     14    dy                         = 2.0, ! Size of single gridbox in y-direction
     15    dz                         = 2.0, ! Size of single gridbox in z-direction
     16!
     17!-- initialization
     18!-------------------------------------------------------------------------------
     19    initializing_actions       = 'set_1d-model_profiles', ! initial conditions
    1020
    11    !-- pressure solver
    12       fft_method = 'temperton-algorithm',     ! fast, but restrictions apply
     21    end_time_1d                =  86400.0, ! integration time of 1D model
     22    dt_run_control_1d          =   3600.0, ! interval of run-control output
     23                                           ! of 1D model
    1324
    14    !-- init-action
    15       initializing_actions = 'set_1d-model_profiles',
     25    ug_surface                 = 1.0, ! u-comp of geostrophic wind at surface
     26    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
    1627
    17    !-- advection schemes
    18       momentum_advec = 'ws-scheme',           ! default advection scheme
    19       scalar_advec   = 'ws-scheme',
     28    neutral                    = .T., ! strictly neutral flow
     29!
     30!-- mode
     31!-------------------------------------------------------------------------------
     32    dp_external                = .T.,         ! use horizontal pressure gradient
     33    dpdxy                      = -0.00003, 0.0, ! set pressure gradient along x
     34!
     35!-- physics
     36!-------------------------------------------------------------------------------
     37    omega                      = 0.0, ! no Coriolis force
     38!
     39!-- boundary conditions
     40!-------------------------------------------------------------------------------
     41    bc_uv_t                    = 'neumann', ! free-slip boundary condition
    2042
    21    !-- wind speed setup
    22       ug_surface = 1.0,
    23       vg_surface = 0.0,
     43!
     44!-- numerics
     45!-------------------------------------------------------------------------------
     46    fft_method                 = 'temperton-algorithm', ! build-in fft method
    2447
    25    !-- temperature setup
    26       neutral = .T.,                          ! strictly neutral flow
     48/ ! end of initialization parameter namelist
    2749
    28    !-- boundary conditions
    29       bc_uv_t = 'neumann',                    ! free-slip boundary condition
     50!-------------------------------------------------------------------------------
     51!-- RUNTIME PARAMETER NAMELIST
     52!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
     53!-------------------------------------------------------------------------------
     54&runtime_parameters
     55!
     56!-- run steering
     57!-------------------------------------------------------------------------------
     58    end_time                   = 3600.0, ! simulation time of the 3D model
     59    create_disturbances        = .T.,    ! randomly perturbate horiz. velocity
     60!
     61!-- data output
     62!-------------------------------------------------------------------------------
     63    dt_run_control             =   60.0, ! output interval for run control
     64    dt_data_output             = 1800.0, ! output interval for general data
     65    dt_dots                    =   60.0, ! output interval for time-series data
     66    dt_dopr                    = 1800.0, ! output interval for profile data
    3067
    31       roughness_length = 0.1,                 ! applies to all surfaces locally
     68    data_output                = 'u', 'u_av',
     69                                 'v', 'v_av',
     70                                 'w', 'w_av',  ! 2d and/
     71                                               ! or 3d
     72                                               ! output
    3273
    33    !-- special methods
    34       dp_external = .T.,                      ! use horizontal pressure gradient
    35       dpdxy = -0.00003, 0.0,                  ! for forcing
     74    data_output_pr             = '#u', 'u*2', 'wu', 'w*u*', 'w"u"',
     75                                 '#v', 'v*2', 'wv', 'w*v*', 'w"v"',
     76                                 'w', 'w*2',
     77                                 'e', 'e*',
     78                                 '#km',
     79                                 '#l',      ! Profile
     80                                            ! output
    3681
    37    !-- special setups
    38       omega = 0.0,                            ! no Coriolis force
     82    averaging_interval         = 1800.0, ! averaging interval general data
     83    dt_averaging_input         =    6.0, ! averaging general data sampling rate
    3984
    40       !1d-model setup
    41       mixing_length_1d  = 'blackadar',        ! default
    42       dissipation_1d    = 'detering',         ! default
    43       end_time_1d       =  86400.0,           ! default
    44       dt_run_control_1d =   3600.0,
    45    /
     85    averaging_interval_pr      =    0.0, ! averaging interval profile data
     86    dt_averaging_input_pr      =    0.0, ! averaging profile data sampling rate
    4687
    47 
    48 &runtime_parameters
    49    !-- simulation time
    50       end_time                = 3600.0,
    51       termination_time_needed =  900.0,
    52 
    53    !-- others
    54       create_disturbances = .T.,
    55 
    56    !-- global output settings
    57       skip_time_data_output =    0.0,
    58       dt_data_output        = 1800.0,
    59 
    60       averaging_interval    = 1800.0,
    61       dt_averaging_input    =    6.0,
    62 
    63    !-- time series / run control
    64       dt_run_control        =  60.0,
    65       dt_dots               =  60.0,
    66 
    67    !-- profiles
    68       skip_time_dopr        =    0.0,
    69       dt_dopr               = 1800.0,
    70       averaging_interval_pr =    0.0,
    71       dt_averaging_input_pr =    0.0,
    72 
    73       data_output_pr = '#u', 'u*2', 'wu', 'w*u*', 'w"u"',
    74                        '#v', 'v*2', 'wv', 'w*v*', 'w"v"',
    75                        'w', 'w*2',
    76                        'e', 'e*',
    77                        '#km',
    78                        '#l',
    79 
    80    !-- output variables
    81       data_output = 'u', 'u_av',
    82                     'v', 'v_av',
    83                     'w', 'w_av',
    84    /
     88/ ! end of runtime parameter namelist
Note: See TracChangeset for help on using the changeset viewer.