Changes between Version 26 and Version 27 of doc/app/maskedoutput


Ignore:
Timestamp:
Sep 16, 2010 12:49:31 PM (15 years ago)
Author:
weinreis
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/app/maskedoutput

    v26 v27  
    6767Output is done at t = [../d3dpar#dt_data_output dt_data_output] since [../d3par#dt_domask dt_domask] is not assigned.
    6868==== Output of two different masks ====
    69 '''Mask 1:''' xy cross section from x=500m to x=1000m and from y=1000m to 2000m at every second gridpoint in z-direction of instantaneous and time averaged data of the wind components\\
     69'''Mask 1:''' xy cross section from x=500m to x=1000m and from y=1000m to 2000m at heights 0m, 50m, 100m, 500m, 1000m and 1200m of instantaneous and time averaged data of the wind components\\
    7070'''Mask 2:''' every second gridpoint in all directions of the potential temperature\\
     71{{{
     72&inipar
     73
     74    nx = 39, ny = 39, nz = 40,
     75    dx = 50.0, dy = 50.0, dz = 50.0,
     76    .../
     77
     78&d3par
     79
     80    ...
     81    data_output_masks (1,:) = 'u','v','w','u_av','v_av','w_av',
     82    data_output_masks (2,:) = 'pt'
     83   
     84    mask_x_loop (1,:) = 500.,1000.,50. ,
     85    mask_y_loop (1,:) = 1000.,2000.,50. ,
     86    mask_z (1,:) = 0.,50.,100.,500.,1000.,1200.,
     87
     88    mask_x_loop (2,:) = 0.,2000.,100.,
     89    mask_y_loop (2,:) = 0.,2000.,100.,
     90    mask_z_loop (2,:) = 0.,2000.,100.,/
     91}}}