Changeset 3275 for palm/trunk/INSTALL


Ignore:
Timestamp:
Sep 24, 2018 4:40:45 PM (6 years ago)
Author:
knoop
Message:

improved formating of test_oceanml_p3d

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/INSTALL/test_oceanml_p3d

    r3045 r3275  
     1!-------------------------------------------------------------------------------
     2!-- INITIALIZATION PARAMETER NAMELIST
     3!   Documentation: https://palm.muk.uni-hannover.de/trac/wiki/doc/app/inipar
     4!-------------------------------------------------------------------------------
    15&initialization_parameters
    2         nx = 63, ny = 63, nz=64,
    3         dx = 1.25, dy = 1.25, dz = 1.25,
     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)
    412
    5         fft_method = 'temperton-algorithm',
     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
    620
    7         ocean = .T.,
     21    ocean                      = .TRUE., ! enable ocean modeling
     22    latitude                   = 55.6,
    823
    9         initializing_actions = 'set_constant_profiles',
     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
    1084 
    11         latitude = 55.6,
    12            
    13         momentum_advec = 'pw-scheme',
    14         scalar_advec = 'pw-scheme',
    1585
    16         ug_surface =0.0, vg_surface = 0.0,
    17         pt_surface                 = 300.0,
    18 
    19         use_top_fluxes= .T.,
    20         use_surface_fluxes = .F.,
    21         constant_flux_layer= .F.,
    22        
    23         top_momentumflux_u = -0.0001,
    24         top_momentumflux_v = 0.0,
    25        
    26         top_heatflux = 0.0,
    27         top_salinityflux = 0.0,
    28 
    29         bc_uv_b = 'neumann', bc_uv_t = 'neumann',
    30         bc_pt_b = 'neumann', bc_pt_t = 'neumann',
    31         bc_p_b  = 'neumann', bc_p_t  = 'neumann',
    32         bc_s_b  = 'initial_gradient', bc_s_t  = 'neumann',
    33         bc_sa_t = 'neumann', /
    34 
    35 &runtime_parameters
    36         end_time = 300.0,
    37         create_disturbances = .T.,
    38         dt_disturb = 60.0,
    39         disturbance_energy_limit = 1.0e-4,
    40         disturbance_amplitude = 0.25e-1,
    41         dt_run_control = 0.0,
    42 
    43         data_output_pr = 'e','e*', '#pt',  /
    44        
    45 
Note: See TracChangeset for help on using the changeset viewer.