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/lsm_short/INPUT/lsm_short_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
    26!
    37!-- grid parameters
    4 !------------------------------------------------------------------------------
    5    nx                         = 39,
    6    ny                         = 39,
    7    nz                         = 80,
     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                         = 80, ! Number of gridboxes in z-direction (nz)
    812
    9    dx                         = 50.0,
    10    dy                         = 50.0,
    11    dz                         = 25.0,
    12 
     13    dx                         = 50.0, ! Size of single gridbox in x-direction
     14    dy                         = 50.0, ! Size of single gridbox in y-direction
     15    dz                         = 25.0, ! Size of single gridbox in z-direction
    1316!
    1417!-- initialization
    1518!------------------------------------------------------------------------------
    16    initializing_actions       = 'set_constant_profiles',
     19    initializing_actions       = 'set_constant_profiles', ! initial conditions
    1720
    18    ug_surface                 = 0.0, ! free convection
    19    vg_surface                 = 0.0,
     21    ug_surface                 = 0.0, ! u-comp of geostrophic wind at surface
     22    vg_surface                 = 0.0, ! v-comp of geostrophic wind at surface
    2023
    21    pt_surface                 = 293.0,
    22    pt_vertical_gradient       =    0.0,  2.0,
    23    pt_vertical_gradient_level = 0.0,  800,
     24    pt_surface                 = 293.0, ! initial surface potential temp
    2425
    25    day_of_year_init           = 232, ! Aug 20
    26    time_utc_init              = 39600.0, ! 11:00 UTC
    27    
     26    pt_vertical_gradient       = 0.0,
     27                                 2.0, ! piecewise temp gradients
     28    pt_vertical_gradient_level = 0.0,
     29                                 800.0, ! height level of temp gradients
     30
     31    day_of_year_init           = 232,     ! Aug 20
     32    time_utc_init              = 39600.0, ! 11:00 UTC
    2833!
    2934!-- boundary conditions
    3035!------------------------------------------------------------------------------
    31    constant_flux_layer        = .TRUE.,
     36    constant_flux_layer        = .TRUE., ! use a constant flux layer at
     37                                         ! the bottom boundary
    3238
    33 
    34    bc_pt_b                    = 'dirichlet', ! required when using LSM
     39    bc_pt_b                    = 'dirichlet', ! required when using LSM
    3540!
    3641!-- numerics
    3742!------------------------------------------------------------------------------
    38    fft_method                 = 'temperton-algorithm', ! 'fftw' if available
    39 /
     43    fft_method                 = 'temperton-algorithm', ! build-in fft method
    4044
     45/ ! end of initialization parameter namelist
     46
     47!-------------------------------------------------------------------------------
     48!-- RUNTIME PARAMETER NAMELIST
     49!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/d3par
     50!-------------------------------------------------------------------------------
    4151&runtime_parameters
    4252!
    4353!-- run steering
    44 !------------------------------------------------------------------------------
    45    end_time                   = 7200.0, ! 2 h
     54!-------------------------------------------------------------------------------
     55    end_time                   = 7200.0, ! simulation time of the 3D model
    4656
    47    create_disturbances        = .T.,
    48    dt_disturb                 = 150.0,
    49    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
    5060!
    51 !-- general output settings
    52 !------------------------------------------------------------------------------
    53    netcdf_data_format         = 2, ! NetCDF3
    54    dt_dots                    = 0.0,
    55    dt_run_control             = 60.0,
    56 !
    57 !-- profile output settings
    58 !------------------------------------------------------------------------------
    59    dt_dopr                    = 600.0,
    60    averaging_interval_pr      = 600.0,
     61!-- data output
     62!-------------------------------------------------------------------------------
     63    netcdf_data_format         = 2, ! use NetCDF3
    6164
    62    data_output_pr             = '#u', '#v', '#theta',
    63                                 '#km', '#kh', '#l',
    64                                 'w', 'e', 'e*', 'p',
    65                                 'w"theta"', 'w*theta*', 'wtheta', 'w*e*',
    66                                 'theta*2','u*2', 'v*2', 'w*2',
    67                                 '#t_soil',
    68 !
    69 !-- 2D and 3D output settings
    70 !------------------------------------------------------------------------------
    71    dt_do3d                    = 60.0,
    72    dt_do2d_xy                 = 60.0,
     65    dt_run_control             = 60.0,   ! output interval for run control
     66    dt_data_output             = 900.0,  ! output interval for general data
     67    dt_data_output_av          = 1800.0, ! output interval for averaged data
     68    dt_dots                    = 0.0,    ! output interval for time-series data
     69    dt_dopr                    = 600.0,  ! output interval for profile data
     70    dt_do3d                    = 60.0,   ! output interval for 3d data
     71    dt_do2d_xy                 = 60.0,   ! output interval for 2d-xy data
    7372
    74    section_xy                 = 0, ! surface variables only
     73    data_output                = 'theta', 'w', 'u', 'v',
     74                                 'us*_xy',
     75                                 'ghf*_xy', 'shf*_xy',
     76                                 'tsurf*_xy',
     77                                 't_soil',    ! 2d and/
     78                                              ! or 3d
     79                                              ! output
    7580
    76    data_output                = 'theta', 'w', 'u', 'v',
    77                                 'us*_xy',
    78                                 'ghf*_xy', 'shf*_xy',
    79                                 'tsurf*_xy',
    80                                 't_soil',
    81 /
     81    data_output_pr             = '#u', '#v', '#theta',
     82                                 '#km', '#kh', '#l',
     83                                 'w', 'e', 'e*', 'p',
     84                                 'w"theta"', 'w*theta*', 'wtheta', 'w*e*',
     85                                 'theta*2','u*2', 'v*2', 'w*2',
     86                                 '#t_soil',                        ! Profile
     87                                                                   ! output
    8288
     89    section_xy                 = 0, ! grid index for 2D XY cross sections
     90
     91    averaging_interval         = 1800.0, ! averaging interval general data
     92    dt_averaging_input         =    6.0, ! averaging general data sampling rate
     93
     94    averaging_interval_pr      = 600.0, ! averaging interval profile data
     95    dt_averaging_input_pr      =   6.0, ! averaging profile data sampling rate
     96
     97/ ! end of runtime parameter namelist
     98
     99!-------------------------------------------------------------------------------
     100!-- LAND-SURFACE PARAMETER NAMELIST
     101!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/lsmpar
     102!-------------------------------------------------------------------------------
    83103&land_surface_parameters
    84 !
    85 !-- soil setup
    86 !------------------------------------------------------------------------------
    87    soil_type                  = 3,
    88    soil_moisture              = 0.0,   0.0,   0.0,   0.0,
    89                                 0.0,   0.0,   0.0,   0.0,
    90    soil_temperature           = 293,   293,   293,   293,
    91                                 293,   293,   293,   293, 
    92    deep_soil_temperature      = 293,
    93 !
    94 !-- boundary conditions
    95 !------------------------------------------------------------------------------
    96    surface_type               = 'vegetation',
    97    vegetation_type            = 1,
    98 /
     104    soil_type                  = 3,  ! type to be used in soil model
     105    soil_moisture              = 0.0,   0.0,   0.0,   0.0, ! moisture at every
     106                                 0.0,   0.0,   0.0,   0.0, ! soil level
     107    soil_temperature           = 293,   293,   293,   293, ! temperature at
     108                                 293,   293,   293,   293, ! every soil level
     109    deep_soil_temperature      = 293,  ! temperature of deep soil
    99110
     111    surface_type               = 'vegetation',  ! surface classification
     112    vegetation_type            = 1, ! vegetation to be used in surface model
     113
     114/ ! end of land-surface parameter namelist
     115
     116!-------------------------------------------------------------------------------
     117!-- RADIATION PARAMETER NAMELIST
     118!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/radpar
     119!-------------------------------------------------------------------------------
    100120&radiation_parameters
    101 !
    102 !-- general setup
    103 !------------------------------------------------------------------------------
    104    radiation_scheme           = 'clear-sky',
    105    dt_radiation               = 20.0,
    106 /
     121    radiation_scheme           = 'clear-sky', ! Radiation scheme to be used
     122    dt_radiation               = 20.0, ! Time step of the radiation model
    107123
     124/ ! end of radiation parameter namelist
     125
     126!-------------------------------------------------------------------------------
     127!-- USER PARAMETER NAMELIST
     128!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/userpar
     129!-------------------------------------------------------------------------------
    108130&user_parameters
    109 !
    110 !-- User-defined setup
    111 !------------------------------------------------------------------------------
     131    data_output_user           = 'v_h', 'v_h_xy', ! user defined data output
    112132
    113   data_output_user           = 'v_h', 'v_h_xy',
    114  
    115 /
     133/ ! end of user parameter namelist
Note: See TracChangeset for help on using the changeset viewer.