This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
outputs [2018/01/24 13:59] 185.62.108.185 created |
outputs [2018/01/24 21:02] (current) 89.103.122.186 |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ===== Outputs ===== | ===== Outputs ===== | ||
| + | |||
| + | There are various options what to output from the computation. First of all, by verbosity | ||
| + | level we can control what the software prints on the console. The calculation result, either | ||
| + | single value or whole angular scan is placed to a text file that is controlled by this directive: | ||
| + | |||
| + | <code> | ||
| + | OUTPUT_RESULT | ||
| + | result.txt | ||
| + | </code> | ||
| + | |||
| + | where in fact "result.txt" is a default filename, so the directive has meaning only if we want to change it. | ||
| + | |||
| + | We can also output the whole computational volume of the accumulated intensity, using the following command | ||
| + | |||
| + | <code> | ||
| + | OUTPUT | ||
| + | filename.vtk | ||
| + | </code> | ||
| + | |||
| + | Within this file we can strip the values that are in vacuum, to see better the field inside our structures. This can be done using command | ||
| + | |||
| + | <code> | ||
| + | STRIP_OUTPUT | ||
| + | 1 | ||
| + | </code> | ||
| + | |||
| + | To speedup the calculations we can switch on and off collection of sums within some material. | ||
| + | To switch it on for material number 3 we can set | ||
| + | |||
| + | <code> | ||
| + | COLLECT | ||
| + | 3 1 | ||
| + | </code> | ||
| + | |||
| + | To collect or not to collect all the sums we can use the following command: | ||
| + | |||
| + | <code> | ||
| + | COLLECT_ALL | ||
| + | 0/1 | ||
| + | </code> | ||
| + | |||