Specular reflectometry with polarized neutrons and a magnetic sample

This example shows how to perform a specular reflectometry simulation with polarized neutrons. We show this for a sample that contains only a single magnetic layer on top of a substrate. The magnetization and polarization are chosen to be (anti-)parallel, and hence, no spin-flip is observed. By rotation of either the magnetization or the polarization vector, one can generalize this example to observe also the spin-flip channels.

The construction of the sample is almost identical to the unpolarized cases, where the only difference is that the magnetization of a material can be specified:

m_layer_mat = ba.MaterialBySLD("Layer", 1e-4, 1e-8,
                               R3(0, 1e8, 0))

Here, we create a material with the usual specification of a name and the real and complex parts of the SLD. In addition, the last argument defines the magnetization vector. For this example, we chose a magnetization of magnitude $10^8 \text{A/m}$ along the positive $y$-axis.

In contrast to a normal unpolarized computation, the incoming beam polarization as well as the analyzer must be specified when creating the simulation. The polarization state of the incoming beam can be specified as follows:

polarization = R3(0, 1, 0)
simulation.setBeamPolarization(polarization)

Its polarization direction is specified as a regular Bloch vector on or inside the unit sphere. Magnitudes of the Bloch vector smaller than one denote non-perfect polarization.

The analyzer properties are similarly set:

analyzer = R3(0, 1, 0)
simulation.setAnalyzerProperties(analyzer, 1.0, 0.5)

The first argument specifies the direction of the analyzer, again by providing a Bloch vector with unit length. The second argument specifies the efficiency (magnitude of the Bloch vector). The third argument is the transmission of the analyzer, here $0.5$ corresponds to a perfect analyzer: half of an unpolarized incoming beam is not transmitted. Therefore, this example corresponds to a perfect analyzer that is configured to probe the up-up channel.

In this example, setting up the beam polarization and the analyzer is done in the run_simulation function. In order to simulate the two non-spin-flip channels (up-up and down-down), we have to perform the two calls

results_pp = run_simulation(R3(0,  1, 0),
                            R3(0,  1, 0))
results_mm = run_simulation(R3(0, -1, 0),
                            R3(0, -1, 0))

The resulting reflectivities are shown in this plot:

Reflectivity

As expected, we find the birefringent behavior and two different critical angles. Since the magnetization of the layer is parallel to the neutron polarization, no spin-flip is observed. It is a good exercise to verify this claim by a short computation.

Here is the complete example:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python3
"""
An example of computing reflectivity on a
magnetized sample.
"""

import bornagain as ba
from bornagain import angstrom, ba_plot as bp, deg, nm, R3

import matplotlib.pyplot as plt


def get_sample():
    """
    Defines sample and returns it
    """

    # Define materials
    material_Ambient = ba.MaterialBySLD("Ambient", 0, 0)
    magnetic_field = R3(0, 1e8, 0)
    material_Layer = ba.MaterialBySLD("Layer", 0.0001, 1e-08,
                                      magnetic_field)
    material_Substrate = ba.MaterialBySLD("Substrate", 7e-05, 2e-06)

    # Define layers
    layer_1 = ba.Layer(material_Ambient)
    layer_2 = ba.Layer(material_Layer, 10*nm)
    layer_3 = ba.Layer(material_Substrate)

    # Define sample
    sample = ba.MultiLayer()
    sample.addLayer(layer_1)
    sample.addLayer(layer_2)
    sample.addLayer(layer_3)

    return sample


def simulate(sample, polarizer_dir, analyzer_dir, title):
    n = bp.simargs['n']
    scan = ba.AlphaScan(n, 5*deg/n, 5*deg)
    scan.setWavelength(1.54*angstrom)
    scan.setPolarization(polarizer_dir)
    scan.setAnalyzer(analyzer_dir, 1, 0.5)

    simulation = ba.SpecularSimulation(scan, sample)

    result = simulation.simulate()
    result.setTitle(title)
    return result


if __name__ == '__main__':
    bp.parse_args(sim_n=500)

    sample = get_sample()
    results = [
        simulate(sample, R3(0, +1, 0), R3(0, +1, 0), "$++$"),
        simulate(sample, R3(0, -1, 0), R3(0, -1, 0), "$--$"),
    ]

    bp.plot_multicurve_specular(results)
Examples/specular/BasicPolarizedReflectometry.py