| 175 | \\\\ |
| 176 | === [=#E3]3. Output of four different masks with user-defined quantities === |
| 177 | '''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.\\ |
| 178 | '''Mask 2:''' Output of the potential temperature at position x = 0m, y = 500m, z = 200m, 300m and 400m.\\ |
| 179 | '''Mask 3:''' xz cross section at y = 400m, 450m, 600m. Output of time averaged data of the three wind components and the user-defined quantity ''u2''.\\ |
| 180 | '''Mask 4:''' xy cross section at z = 100m, 250m, 500m. Output of the user-defined quantity ''u2''.\\ |
| 181 | {{{ |
| 182 | &inipar |
| 183 | |
| 184 | nx = 39, ny = 39, nz = 40, |
| 185 | dx = 50.0, dy = 50.0, dz = 50.0, |
| 186 | .../ |
| 187 | |
| 188 | &d3par |
| 189 | |
| 190 | ... |
| 191 | data_output_masks (1,:) = 'w', |
| 192 | data_output_masks (2,:) = 'pt', |
| 193 | data_output_masks (3,:) = 'u_av','v_av','w_av', |
| 194 | |
| 195 | mask_y (1,:) = 50., 200., 500., 1000., |
| 196 | mask_z_loop (1,:) = 0.,2000.,250., |
| 197 | |
| 198 | mask_x (2,:) = 0., |
| 199 | mask_y (2,:) = 500., |
| 200 | mask_z_loop (2,:) = 200.,400.,100., |
| 201 | |
| 202 | mask_y (3,:) = 400., 450., 600., |
| 203 | |
| 204 | mask_z (4,:) = 100., 250., 500., |
| 205 | |
| 206 | dt_domask = 1800., |
| 207 | skip_time_domask = 0.,3600.,3600.,/ |
| 208 | |
| 209 | &userpar |
| 210 | |
| 211 | data_output_masks_user (3,:) = 'u2', |
| 212 | data_output_masks_user (4,:) = 'u2', |
| 213 | }}} |
| 214 | Output starts from the beginning for '''mask 1''' and after 1h simulation time (see [../d3par#skip_time_domask skip_time_domask]) for '''mask 2, 3''' and '''4'''. It is done every 30 minutes for '''mask 1''' and at time intervals of [../d3par#dt_data_output dt_data_output] for '''mask 2, 3''' and '''4''' (see [../d3par#dt_domask dt_domask]). |