Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
d51d9314
Commit
d51d9314
authored
4 years ago
by
Beerwerth, Randolf
Browse files
Options
Downloads
Patches
Plain Diff
Add Python example RoughnessModel
parent
a9e53fd8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Examples/python/simulation/ex06_Reflectometry/RoughnessModel.py
+86
-0
86 additions, 0 deletions
...es/python/simulation/ex06_Reflectometry/RoughnessModel.py
with
86 additions
and
0 deletions
Examples/python/simulation/ex06_Reflectometry/RoughnessModel.py
0 → 100644
+
86
−
0
View file @
d51d9314
"""
Example of simulating a rough sample with a
tanh and Nevot-Croce roughness model using BornAgain.
"""
from
matplotlib
import
pyplot
as
plt
import
bornagain
as
ba
from
bornagain
import
deg
,
angstrom
,
nm
def
get_sample
(
roughness_model
):
"""
Defines sample and returns it
"""
# creating materials
m_ambient
=
ba
.
MaterialBySLD
(
"
Ambient
"
,
0.0
,
0.0
)
m_ti
=
ba
.
MaterialBySLD
(
"
Ti
"
,
-
1.9493e-06
,
0.0
)
m_ni
=
ba
.
MaterialBySLD
(
"
Ni
"
,
9.4245e-06
,
0.0
)
m_substrate
=
ba
.
MaterialBySLD
(
"
SiSubstrate
"
,
2.0704e-06
,
0.0
)
# creating layers
ambient_layer
=
ba
.
Layer
(
m_ambient
)
ti_layer
=
ba
.
Layer
(
m_ti
,
30
*
angstrom
)
ni_layer
=
ba
.
Layer
(
m_ni
,
70
*
angstrom
)
substrate_layer
=
ba
.
Layer
(
m_substrate
)
# defining roughness
roughness
=
ba
.
LayerRoughness
()
roughness
.
setSigma
(
1.0
*
nm
)
# creating multilayer
multi_layer
=
ba
.
MultiLayer
()
multi_layer
.
addLayer
(
ambient_layer
)
for
i
in
range
(
10
):
multi_layer
.
addLayerWithTopRoughness
(
ti_layer
,
roughness
)
multi_layer
.
addLayerWithTopRoughness
(
ni_layer
,
roughness
)
multi_layer
.
addLayerWithTopRoughness
(
substrate_layer
,
roughness
)
multi_layer
.
setRoughnessModel
(
roughness_model
)
return
multi_layer
def
get_simulation
(
scan_size
=
500
):
"""
Defines and returns a specular simulation.
"""
simulation
=
ba
.
SpecularSimulation
()
scan
=
ba
.
AngularSpecScan
(
1.54
*
angstrom
,
scan_size
,
0.0
*
deg
,
2.0
*
deg
)
simulation
.
setScan
(
scan
)
return
simulation
def
run_simulation
(
roughness_model
=
ba
.
RoughnessModel
.
TANH
):
"""
Runs simulation and returns its result.
"""
sample
=
get_sample
(
roughness_model
)
simulation
=
get_simulation
()
simulation
.
setSample
(
sample
)
simulation
.
runSimulation
()
return
simulation
.
result
()
def
plot
(
result_tanh
,
result_nevot_croce
):
plt
.
semilogy
(
result_nevot_croce
.
axis
(),
result_nevot_croce
.
array
(),
label
=
"
Névot-Croce
"
)
plt
.
semilogy
(
result_tanh
.
axis
(),
result_tanh
.
array
(),
label
=
"
Tanh
"
)
plt
.
xlabel
(
r
'
$\alpha_i \; (deg)$
'
,
fontsize
=
12
)
plt
.
ylabel
(
r
'
Intensity
'
,
fontsize
=
12
)
plt
.
legend
()
plt
.
show
()
if
__name__
==
'
__main__
'
:
result_tanh
=
run_simulation
(
roughness_model
=
ba
.
RoughnessModel
.
TANH
)
result_nevot_croce
=
run_simulation
(
roughness_model
=
ba
.
RoughnessModel
.
NEVOT_CROCE
)
plot
(
result_tanh
,
result_nevot_croce
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment