Transmitted modulus

Modulus of the amplitude of the partial wave field propagating in transmission direction, as function of depth and incident angle αi.

Same sample as in the basic example depthprobe1, a thin film on a substrate.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/usr/bin/env python3
"""
Thin-film sample as in basic depth-probe example.
Computes modulus of amplitude of transmitted field
as function of of incident angle alpha and depth z.
"""

import bornagain as ba
import Depthprobe1 as dp1

if __name__ == '__main__':
    flags = ba.ZDirection_Transmitted | ba.WaveProperty_Modulus
    dp1.run_example(flags)
auto/Examples/varia/TransmittedModulus.py