This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
source_regimes [2019/02/03 15:41] pklapetek |
source_regimes [2019/03/13 21:21] (current) pklapetek |
||
---|---|---|---|
Line 21: | Line 21: | ||
An alternative source method is to cast rays from whole computational boundary at once, already assuming that it was totally reflected outside of it - so casting both rays propagating towards sample and mirrored rays. This is done in source method = 1. | An alternative source method is to cast rays from whole computational boundary at once, already assuming that it was totally reflected outside of it - so casting both rays propagating towards sample and mirrored rays. This is done in source method = 1. | ||
- | Finally, we can use only the top boundary for casting the rays and let them to periodically repeat. This is the source method 2. In this case we artificially create the periodic boundary near to the computational domain boundary, on basis of the source wavelength. All the rays incoming to this boundary are transversed back to the start of the computational domain. Obviously, this case is suitable only for periodic samples. On the other hand, for such samples it is the only method that can reproduce the realistic behavior of the incoming rays. | + | We can also use only the top boundary for casting the rays and let them to periodically repeat. This is the source method 2. In this case we artificially create the periodic boundary near to the computational domain boundary, on basis of the source wavelength. All the rays incoming to this boundary are transversed back to the start of the computational domain. Obviously, this case is suitable only for periodic samples. On the other hand, for such samples it is the only method that can reproduce the realistic behavior of the incoming rays. |
+ | |||
+ | Finally, source method 3 means casting rays only from top, but not doing any periodical repetition. This is usefull namely for debugging the method 2 or when we don't want to have something periodic in our computational domain. | ||
The different source methods are illustrated on the figure below: | The different source methods are illustrated on the figure below: | ||
Line 83: | Line 85: | ||
where only a single material with given index is evaluated without really creating any mesh (only from | where only a single material with given index is evaluated without really creating any mesh (only from | ||
vector data entries). This is used mostly for some debugging purposes. | vector data entries). This is used mostly for some debugging purposes. | ||
+ | |||
+ | |||
+ | An alternative to all the raytracing is use of the matrix method. This is implemented in z (so the computational volume is sliced in z automatically) and can be called as | ||
+ | |||
+ | <code> | ||
+ | MATRIXBASED | ||
+ | 1 | ||
+ | </code> | ||