This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
outputs [2018/01/24 16:58] 185.62.108.185 |
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> | <code> | ||
Line 6: | Line 19: | ||
</code> | </code> | ||
- | - sets file where the local intensity should be output (and if) | + | 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> | <code> | ||
- | OUTPUT_RESULT | + | STRIP_OUTPUT |
- | result.txt | + | 1 |
</code> | </code> | ||
- | - sets file where the sum result should be output (and if) | ||
+ | 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> | <code> | ||
COLLECT | COLLECT | ||
- | integer 0/1 | + | 3 1 |
</code> | </code> | ||
- | Collect (or not collect) sums of only some individual material number. | + | To collect or not to collect all the sums we can use the following command: |
<code> | <code> | ||
Line 27: | Line 41: | ||
</code> | </code> | ||
- | Collect all sums. | ||