Ignore:
Timestamp:
Nov 2, 2020 10:31:45 AM (3 years ago)
Author:
Giersch
Message:

Tutorials updated for r4761

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/TUTORIALS/cases/example_neutral/INPUT/example_neutral_p3d

    r4409 r4765  
    1717!-- initialization
    1818!-------------------------------------------------------------------------------
    19     initializing_actions       = 'set_constant_profiles' , ! initial conditions
     19    initializing_actions       = 'set_constant_profiles',
    2020
    21     ug_surface                 = 5.0 , ! u-comp of geostrophic wind at surface
    22     vg_surface                 = 0.0 , ! v-comp of geostrophic wind at surface
     21    ug_surface                 = 5.0,
     22    vg_surface                 = 0.0,
    2323
    24     pt_surface                 = 300.0, ! initial surface potential temp
    25     pt_vertical_gradient       = 0.0,   ! piecewise temp gradients
    26     pt_vertical_gradient_level = 0.0,   ! height level of temp gradients
     24    pt_surface                 = 300.0,    
     25    pt_vertical_gradient       = 0.0, ! Piecewise temp gradients
     26    pt_vertical_gradient_level = 0.0, ! Height level of temp gradients
    2727!
    2828!-- boundary conditions
     
    3131    bc_uv_t                    = 'dirichlet',
    3232
    33     bc_p_b                     = 'neumann',
    34     bc_p_t                     = 'dirichlet',
     33    bc_pt_b                    = 'dirichlet',        ! Bottom boundary condition of pt
     34    bc_pt_t                    = 'initial_gradient', ! Top boundary condition of pt
     35
     36    bc_p_b                     = 'neumann',   ! Bottom boundary condition of p.
     37    bc_p_t                     = 'dirichlet', ! Top boundary condition of p.
    3538
    3639    constant_flux_layer        = .TRUE.,
    3740   
    38     roughness_length           = 0.1 ,
     41    roughness_length           = 0.1,
    3942!
    4043!-- numerics
    4144!-------------------------------------------------------------------------------
    42     fft_method                 = 'temperton-algorithm',   ! build-in fft method     
     45    fft_method                 = 'temperton-algorithm', ! Build-in fft method     
    4346
    44     rayleigh_damping_height    = 1250.0,
    45     rayleigh_damping_factor    = 0.01,
     47    rayleigh_damping_height    = 1250.0, ! Height above which the Rayleigh damping starts
     48    rayleigh_damping_factor    = 0.01,   ! Factor for Rayleigh damping.
    4649
    4750!
    4851!-- mode
    4952!-------------------------------------------------------------------------------
    50     neutral                    = .TRUE., ! switch off calculation of temperature equation
    51     galilei_transformation     = .TRUE., ! application of a Galilei-transformation
     53    neutral                    = .TRUE., ! Switch off calculation of temp equation
     54    galilei_transformation     = .TRUE.,      
    5255   
    53 / ! end of initialization parameter namelist
     56/ ! End of initialization parameter namelist
    5457
    5558!-------------------------------------------------------------------------------
     
    6164!-- run steering
    6265!-------------------------------------------------------------------------------
    63     end_time                   = 172800.0, ! simulation time of the 3D model
     66    end_time                   = 172800.0, ! Simulation time of the 3D model
    6467
    65     create_disturbances        = .TRUE., ! randomly perturbate horiz. velocity
    66     dt_disturb                 = 150.0,  ! interval for random perturbations
    67     disturbance_energy_limit   = 0.01,   ! upper limit for perturbation energy
     68    create_disturbances        = .TRUE., ! Randomly perturbate horiz. velocity
     69    dt_disturb                 = 150.0,  ! Interval for random perturbations
     70    disturbance_energy_limit   = 0.01,   ! Upper limit for perturbation energy
    6871!
    6972!-- data output
    7073!-------------------------------------------------------------------------------
    71     netcdf_data_format         = 2, ! use NetCDF3
     74    netcdf_data_format         = 2, ! Data format for netCDF files
    7275   
    73     dt_run_control             = 60.0,
     76    dt_run_control             = 60.0, ! Temporal interval of run control output
    7477
    75     dt_dopr                    = 10800.0,
    76          
    77     averaging_interval_pr      = 10800.0,
    78     dt_averaging_input_pr      = 50.0,
    79     data_output_pr             = '#u', '#v', 'w', '#theta', 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv', 'w*2', 'theta*2',
     78    dt_dopr                    = 10800.0, ! Temporal interval for vertical profile output         
     79    averaging_interval_pr      = 10800.0, ! Averaging interval for vertical profile output
     80    dt_averaging_input_pr      = 50.0,    ! Temporal interval of data that is used for temporal averaging of vertical profiles and/or spectra
     81
     82    data_output_pr             = '#u', '#v', 'w', '#theta',
     83                                 'w"u"', 'w*u*', 'wu', 'w"v"', 'w*v*', 'wv',
     84                                 'w*2', 'theta*2', ! Quantities for vertical profile output
    8085                       
    81 /! end of runtime parameter namelist
     86/ ! End of runtime parameter namelist
    8287
    8388!-------------------------------------------------------------------------------
     
    8792&spectra_parameters
    8893 
    89     data_output_sp            =  'u', 'v', 'w',
    90     dt_dosp                   = 10800.0,
    91     comp_spectra_level        =  2, 5, 10, 15, 20,
    92     spectra_direction         =  'x' , 'y' , 'x',
    93     averaging_interval_sp     = 10800.0,
     94    dt_dosp                   = 10800.0, ! Temporal interval for spectra output
     95    averaging_interval_sp     = 10800.0, ! Averaging interval for vertical profile output
     96
     97    comp_spectra_level        =  2, 5, 10, 15, 20, ! Vertical level for horizontal spectra output
     98    spectra_direction         =  'x' , 'y' , 'x',  ! Direction(s) along which spectra are calculated
     99
     100    data_output_sp            =  'u', 'v', 'w',  ! Quantities for spectra output
    94101         
    95 /! end of spectra parameter namelist
     102/ ! End of spectra parameter namelist
    96103 
Note: See TracChangeset for help on using the changeset viewer.