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
|
#!/usr/bin/env python3
"""
Basic example of specular reflectometry simulation.
The sample consists of 20 alternating Ti and Ni layers.
"""
import bornagain as ba
from bornagain import ba_plot as bp, deg, angstrom, nm
def get_sample():
# Materials
vacuum = ba.Vacuum()
ti_color = (0.05, 0.62, 0.55)
ti_mat = ba.SLDMaterial("Ti", ti_color, -1.9493e-06, 0)
ni_color = (0.93, 0.48, 0.14)
ni_mat = ba.SLDMaterial("Ni", ni_color, 9.4245e-06, 0)
si_color = (0.30, 0.62, 0.86)
si_mat = ba.SLDMaterial("Si", si_color, 2.0704e-06, 0)
# Layers
top_layer = ba.Layer(vacuum)
ti_layer = ba.Layer(ti_mat, 30*angstrom)
ni_layer = ba.Layer(ni_mat, 70*angstrom)
substrate = ba.Layer(si_mat)
# Periodic stack
n_repetitions = 10
stack = ba.LayerStack(n_repetitions)
stack.addLayer(ti_layer)
stack.addLayer(ni_layer)
# Sample
sample = ba.Sample()
sample.addLayer(top_layer)
sample.addStack(stack)
sample.addLayer(substrate)
return sample
def get_simulation(sample):
n = 500
scan = ba.AlphaScan(n, 2*deg/n, 2*deg)
scan.setWavelength(1.54*angstrom)
return ba.SpecularSimulation(scan, sample)
if __name__ == '__main__':
sample = get_sample()
ba.showSample3D(sample, sample_size=120*nm, seed=0)
simulation = get_simulation(sample)
result = simulation.simulate()
bp.plot_datafield(result)
bp.plt.show()
|