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
|
#!/usr/bin/env python3
"""
MultiLayer with correlated roughness
"""
import bornagain as ba
from bornagain import deg, nm
def get_sample():
"""
Returns a sample with two layers on a substrate, with correlated roughnesses.
"""
# defining materials
m_vacuum = ba.HomogeneousMaterial("ambience", 0, 0)
m_part_a = ba.HomogeneousMaterial("PartA", 5e-6, 0)
m_part_b = ba.HomogeneousMaterial("PartB", 10e-6, 0)
m_substrate = ba.HomogeneousMaterial("substrate", 15e-6, 0)
# defining layers
l_ambience = ba.Layer(m_vacuum)
l_part_a = ba.Layer(m_part_a, 2.5*nm)
l_part_b = ba.Layer(m_part_b, 5*nm)
l_substrate = ba.Layer(m_substrate)
roughness = ba.LayerRoughness()
roughness.setSigma(1*nm)
roughness.setHurstParameter(0.3)
roughness.setLatteralCorrLength(5*nm)
my_sample = ba.MultiLayer()
# adding layers
my_sample.addLayer(l_ambience)
n_repetitions = 5
for i in range(n_repetitions):
my_sample.addLayerWithTopRoughness(l_part_a, roughness)
my_sample.addLayerWithTopRoughness(l_part_b, roughness)
my_sample.addLayerWithTopRoughness(l_substrate, roughness)
my_sample.setCrossCorrLength(10*nm)
return my_sample
def get_simulation(sample):
beam = ba.Beam(5e11, 0.1*nm, ba.Direction(0.2*deg, 0))
detector = ba.SphericalDetector(200, 1*deg, 0, 0.5*deg)
simulation = ba.GISASSimulation(beam, sample, detector)
return simulation
if __name__ == '__main__':
import ba_plot
sample = get_sample()
simulation = get_simulation(sample)
ba_plot.run_and_plot(simulation)
|