Changes between Version 30 and Version 31 of doc/app/maskedoutput
- Timestamp:
- Sep 16, 2010 1:17:38 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
doc/app/maskedoutput
v30 v31 49 49 The following examples are given for the [../examples/cbl example_cbl run] with a model domain of 2000m x 2000m x 2000m and a resolution of 50.0m. 50 50 ==== Output of one mask ==== 51 '''Mask 1:''' 3d volume data with an extension of 500m x 200m x 2000m from x =0m to x=500m, from y=800m to y=1000m and from the bottom to the top of the model domain. Output of instantaneous data of the three wind components.51 '''Mask 1:''' 3d volume data with an extension of 500m x 200m x 2000m from x = 0m to x = 500m, from y = 800m to y = 1000m and from the bottom to the top of the model domain. Output of instantaneous data of the three wind components. 52 52 {{{ 53 53 &inipar … … 68 68 Output is done at t = [../d3dpar#dt_data_output dt_data_output] since [../d3par#dt_domask dt_domask] is not assigned. 69 69 ==== Output of two different masks ==== 70 '''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. Output of instantaneous and time averaged data of the three wind components.\\70 '''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. Output of instantaneous and time averaged data of the three wind components.\\ 71 71 '''Mask 2:''' Every second gridpoint in all directions. Output of the potential temperature.\\ 72 72 {{{ … … 96 96 Output starts after 1h simulation time (see [../d3par#skip_time_domask skip_time_domask]) and is done every 10 minutes (see [../d3par#dt_domask dt_domask]). 97 97 ==== 0utput of three different masks ==== 98 '''Mask 1:'''1d data along x-direction at y = 50m, 200m, 500m and 1000m and every second grid point in z-dircetion. Output of instantaneous data of the w-velocity component. 99 '''Mask 2:'''Output of the potential temperature at position x=0m, y=500m, z=200m, 300m and 400m. 100 '''Mask 3:''' 98 '''Mask 1:'''1d data along x-direction at y = 50m, 200m, 500m and 1000m and every fifth grid point in z-dircetion. Output of instantaneous data of the w-velocity component. 99 '''Mask 2:'''Output of the potential temperature at position x = 0m, y = 500m, z = 200m, 300m and 400m. 100 '''Mask 3:'''xz cross section at y = 400m, 450m, 600m. Output of time averaged data of the three wind components. 101 {{{ 102 &inipar 103 104 nx = 39, ny = 39, nz = 40, 105 dx = 50.0, dy = 50.0, dz = 50.0, 106 .../ 107 108 &d3par 109 110 ... 111 data_output_masks (1,:) = 'w', 112 data_output_masks (2,:) = 'pt', 113 data_output_masks (3,:) = 'u_av','v_av','w_av', 114 115 mask_y (1,:) = 50., 200., 500., 1000., 116 mask_z_loop (1,:) = 0.,2000.,250., 117 118 mask_x (2,:) = 0., 119 mask_y (2,:) = 500., 120 mask_z_loop (2,:) = 200.,400.,100., 121 122 mask_y (3,:) = 400., 450., 600., 123 124 dt_domask = 1800., 125 skip_time_domask = 3600.,/ 126 }}} 127 Output starts after 1h simulation time (see [../d3par#skip_time_domask skip_time_domask]) and is done every 30 minutes (see [../d3par#dt_domask dt_domask]).