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
d12425d2
Commit
d12425d2
authored
11 years ago
by
Ganeva, Marina
Browse files
Options
Downloads
Plain Diff
Merge branch 'ripple2example' into develop
parents
53608fef
2e9a7150
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/ex009_TriangularRipple/TriangularRipple.py
+74
-0
74 additions, 0 deletions
...hon/simulation/ex009_TriangularRipple/TriangularRipple.py
with
74 additions
and
0 deletions
Examples/python/simulation/ex009_TriangularRipple/TriangularRipple.py
0 → 100644
+
74
−
0
View file @
d12425d2
import
numpy
import
matplotlib
import
pylab
from
math
import
degrees
from
libBornAgainCore
import
*
def
plot_with_pylab
(
data
):
result
=
data
.
getArray
()
+
1
# for log scale
axis_phi
=
data
.
getAxis
(
0
)
axis_alpha
=
data
.
getAxis
(
1
)
pylab
.
imshow
(
numpy
.
rot90
(
result
,
1
),
norm
=
matplotlib
.
colors
.
LogNorm
(),
extent
=
[
degrees
(
axis_phi
.
getMin
()),
degrees
(
axis_phi
.
getMax
()),
degrees
(
axis_alpha
.
getMin
()),
degrees
(
axis_alpha
.
getMax
())])
pylab
.
xlabel
(
r
'
$\phi_f$
'
,
fontsize
=
20
)
pylab
.
ylabel
(
r
'
$\alpha_f$
'
,
fontsize
=
20
)
pylab
.
show
()
def
get_sample
():
"""
Build and return the sample representing the layers with correlated roughness.
"""
# defining materials
m_ambience
=
MaterialManager
.
getHomogeneousMaterial
(
"
Air
"
,
0.0
,
0.0
)
m_substrate
=
MaterialManager
.
getHomogeneousMaterial
(
"
Substrate
"
,
6e-6
,
2e-8
)
m_particle
=
MaterialManager
.
getHomogeneousMaterial
(
"
Particle
"
,
6e-4
,
2e-8
)
# collection of particles
ripple2_ff
=
FormFactorRipple2
(
20
*
nanometer
,
4
*
nanometer
,
100
*
nanometer
,
-
3.0
*
nanometer
)
ripple
=
Particle
(
m_particle
,
ripple2_ff
)
particle_decoration
=
ParticleDecoration
()
particle_decoration
.
addParticle
(
ripple
,
0.0
,
1.0
)
interference
=
InterferenceFunction1DParaCrystal
(
20
*
nanometer
,
4
*
nanometer
,
1e7
*
nanometer
)
particle_decoration
.
addInterferenceFunction
(
interference
)
# air layer with particles and substrate form multi layer
air_layer
=
Layer
(
m_ambience
)
air_layer
.
setDecoration
(
particle_decoration
)
substrate_layer
=
Layer
(
m_substrate
,
0
)
multi_layer
=
MultiLayer
()
multi_layer
.
addLayer
(
air_layer
)
multi_layer
.
addLayer
(
substrate_layer
)
return
multi_layer
def
get_simulation
():
"""
characterizing the input beam and output detector
"""
simulation
=
Simulation
()
simulation
.
setDetectorParameters
(
400
,
-
1.5
*
degree
,
1.5
*
degree
,
400
,
0.0
*
degree
,
2.5
*
degree
,
True
)
simulation
.
setBeamParameters
(
1.6
*
angstrom
,
0.3
*
degree
,
0.0
*
degree
)
return
simulation
def
run_simulation
():
sample
=
get_sample
()
simulation
=
get_simulation
()
simulation
.
setSample
(
sample
)
simulation
.
runSimulation
()
result
=
simulation
.
getIntensityData
()
return
result
if
__name__
==
'
__main__
'
:
data
=
run_simulation
()
plot_with_pylab
(
data
)
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