Changes between Version 2 and Version 3 of doc/app/examples/lsf


Ignore:
Timestamp:
Nov 1, 2013 2:21:59 PM (11 years ago)
Author:
heinze
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/examples/lsf

    v2 v3  
    11=== Runs with nudging ===
    22
    3 Using nudging in a PALM simulation requires to provide nudging and large scale forcing data in external files. The file names should have the endings _nudge and _lsf respectively. They have to be placed in the INPUT directory on the host where the simulation will run. The layout of the data in the files is described in [../../iofiles#NUDGING_DATA NUDGING_DATA] and [../../iofiles#LSF_DATA LSF_DATA] respectively. In addtion, the the PALM configuration file .mrun.config has to be extended for the following two lines
     3Using nudging in a PALM simulation requires to provide nudging and large scale forcing data in external files. The file names should have the endings _nudge and _lsf respectively. They have to be placed in the INPUT directory on the host where the simulation will run. The layout of the data in the files is described in [../../iofiles#NUDGING_DATA NUDGING_DATA] and [../../iofiles#LSF_DATA LSF_DATA] respectively. In addition, the PALM configuration file .mrun.config has to be extended for the following two lines
    44{{{
    55...
     
    1212...
    1313}}}
     14
     15With the following parameter file nudge_CBL_p3d a simulation with nudging can be done. The nudging data comes from a COSMO simulation of the 5th May, 2013, 9-15UTC. During this time a convective boundary layer with shallow clouds form.
     16{{{
     17 &inipar nx = 191, ny = 191, nz = 64,
     18         dx = 50.0, dy = 50.0, dz = 50.0,
     19
     20         fft_method = 'fftw',
     21
     22         humidity = .T., cloud_physics= .T.,
     23
     24         nudging = .T.,
     25
     26         large_scale_forcing = .T.,
     27
     28         momentum_advec = 'ws-scheme',
     29         scalar_advec   = 'ws-scheme',
     30
     31         initializing_actions = 'set_constant_profiles',
     32
     33         bc_uv_b = 'dirichlet',
     34         bc_pt_b = 'neumann',
     35         bc_q_b  = 'neumann',
     36
     37         phi = 50.92,
     38
     39         pt_reference = 290.0,
     40         reference_state = 'single_value',
     41
     42         prandtl_layer = .T.,
     43         use_surface_fluxes = .T.,
     44         roughness_length = 0.01,
     45
     46         rayleigh_damping_factor = 0.05,
     47         rayleigh_damping_height = 2700.0,
     48         scalar_rayleigh_damping = .T., /
     49
     50
     51 &d3par  end_time = 21600.0,
     52
     53         termination_time_needed = 300.0,
     54
     55         npex = 64,
     56         npey = 1,
     57
     58         create_disturbances = .T.,
     59
     60         netcdf_data_format = 2,
     61
     62         dt_run_control = 30.0,
     63         dt_dots        = 30.0,
     64
     65         dt_dopr = 1800.0,
     66         averaging_interval_pr = 1800.0,
     67         dt_averaging_input_pr = 30.0,
     68
     69         data_output_pr = '#u','#v','w','#pt','ug','vg',
     70                          '#lpt','#q','#qv','ql',
     71                          'e','e*','p','#km','#kh','#l',
     72                          'w"u"','w*u*','wu', 'w"v"','w*v*','wv',
     73                          'w"pt"', 'w*pt*', 'wpt',
     74                          'w"vpt"', 'w*vpt*', 'wvpt',
     75                          'w"q"', 'w*q*', 'wq',
     76                          'w"qv"', 'w*qv*', 'wqv',
     77                          'w*e*', 'u*2', 'v*2', 'w*2', 'pt*2', 'q*2',
     78                          'w*3', 'Sw', 'w*2pt*', 'w*pt*2',
     79                          'w*u*u*:dz','w*p*:dz', 'w"e:dz', 'hyp',
     80
     81         data_output = 'u', 'v', 'w', 'pt', 'lpt', 'p', 'q', 'ql'
     82                       'u_xy', 'v_xy', 'w_xy', 'pt_xy', 'lpt_xy',
     83                       'p_xy', 'q_xy', 'ql_xy',
     84                       'u_xz', 'v_xz', 'w_xz', 'pt_xz', 'lpt_xz',
     85                       'p_xz', 'q_xz', 'ql_xz',
     86                       'shf*_xy', 'qsws*_xy', 'lwp*_xy',
     87
     88         nz_do3d = 32,
     89
     90         dt_do3d        = 3600.0,
     91         dt_do2d_xy     = 3600.0,
     92         dt_do2d_xz     = 3600.0,
     93         dt_data_output = 3600.0,
     94
     95         do2d_at_begin = .T., !->check perturbations
     96
     97         section_xy = 2, 4, 10, 15, 20, 25, 
     98         section_xz = 96,
     99
     100         data_output_2d_on_each_pe = .T.,  /
     101}}}
     102The external files [nudge_CBL_nudge] and [nudge_CBL_lsf] are attached.