Skip to content
Snippets Groups Projects
Commit d12425d2 authored by Ganeva, Marina's avatar Ganeva, Marina
Browse files

Merge branch 'ripple2example' into develop

parents 53608fef 2e9a7150
No related branches found
No related tags found
No related merge requests found
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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment