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
93143650
Commit
93143650
authored
7 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Add python example for constant background
parent
9ec3a5ae
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/ex05_BeamAndDetector/ConstantBackground.py
+61
-0
61 additions, 0 deletions
...hon/simulation/ex05_BeamAndDetector/ConstantBackground.py
with
61 additions
and
0 deletions
Examples/python/simulation/ex05_BeamAndDetector/ConstantBackground.py
0 → 100644
+
61
−
0
View file @
93143650
"""
Cylinder form factor in DWBA with constant background
"""
import
bornagain
as
ba
from
bornagain
import
deg
,
angstrom
,
nm
def
get_sample
():
"""
Returns a sample with uncorrelated cylinders on a substrate.
"""
# defining materials
m_ambience
=
ba
.
HomogeneousMaterial
(
"
Air
"
,
0.0
,
0.0
)
m_substrate
=
ba
.
HomogeneousMaterial
(
"
Substrate
"
,
6e-6
,
2e-8
)
m_particle
=
ba
.
HomogeneousMaterial
(
"
Particle
"
,
6e-4
,
2e-8
)
# collection of particles
cylinder_ff
=
ba
.
FormFactorCylinder
(
5
*
nm
,
5
*
nm
)
cylinder
=
ba
.
Particle
(
m_particle
,
cylinder_ff
)
particle_layout
=
ba
.
ParticleLayout
()
particle_layout
.
addParticle
(
cylinder
,
1.0
)
# assembling the sample
air_layer
=
ba
.
Layer
(
m_ambience
)
air_layer
.
addLayout
(
particle_layout
)
substrate_layer
=
ba
.
Layer
(
m_substrate
)
multi_layer
=
ba
.
MultiLayer
()
multi_layer
.
addLayer
(
air_layer
)
multi_layer
.
addLayer
(
substrate_layer
)
return
multi_layer
def
get_simulation
():
"""
Returns a GISAXS simulation with a constant backround.
"""
simulation
=
ba
.
GISASSimulation
()
simulation
.
setDetectorParameters
(
100
,
0.0
*
deg
,
2.0
*
deg
,
100
,
0.0
*
deg
,
2.0
*
deg
)
simulation
.
setBeamParameters
(
1.0
*
angstrom
,
0.2
*
deg
,
0.0
*
deg
)
simulation
.
setBeamIntensity
(
1e6
)
bg
=
ba
.
ConstantBackground
(
1e3
)
simulation
.
setBackGround
(
bg
)
return
simulation
def
run_simulation
():
"""
Runs simulation and returns intensity map.
"""
simulation
=
get_simulation
()
simulation
.
setSample
(
get_sample
())
print
(
simulation
.
parametersToString
())
simulation
.
runSimulation
()
return
simulation
.
getIntensityData
()
if
__name__
==
'
__main__
'
:
result
=
run_simulation
()
ba
.
plot_intensity_data
(
result
)
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