Skip to content
Snippets Groups Projects
Commit 5cf59abe authored by Beerwerth, Randolf's avatar Beerwerth, Randolf
Browse files

update BasicPolarizedReflectometry example

parent 50c434fe
No related branches found
No related tags found
No related merge requests found
...@@ -6,6 +6,7 @@ magnetized sample. ...@@ -6,6 +6,7 @@ magnetized sample.
import bornagain as ba import bornagain as ba
from bornagain import deg, angstrom from bornagain import deg, angstrom
import matplotlib.pyplot as plt
def get_sample(): def get_sample():
""" """
...@@ -43,8 +44,8 @@ def get_simulation(scan_size=500): ...@@ -43,8 +44,8 @@ def get_simulation(scan_size=500):
return simulation return simulation
def run_simulation(polarization=ba.kvector_t(0.0, 1.0, 0.0), def run_simulation(polarization=ba.kvector_t(0, 1, 0),
analyzer=ba.kvector_t(0.0, 1.0, 0.0)): analyzer=ba.kvector_t(0, 1, 0)):
""" """
Runs simulation and returns its result. Runs simulation and returns its result.
""" """
...@@ -60,20 +61,28 @@ def run_simulation(polarization=ba.kvector_t(0.0, 1.0, 0.0), ...@@ -60,20 +61,28 @@ def run_simulation(polarization=ba.kvector_t(0.0, 1.0, 0.0),
return simulation.result() return simulation.result()
def plot(pp, mm): def plot(data, labels):
from matplotlib import pyplot as plt
plt.figure()
ba.plot_simulation_result(pp, postpone_show=True) for d, l in zip(data, labels):
plt.semilogy(mm.axis(), mm.array()) plt.semilogy( d.axis(),
plt.legend(['Up-Up', 'Down-Down'], d.array(),
loc='upper right') label=l, linewidth=1)
plt.legend( loc='upper right' )
plt.gca().yaxis.set_ticks_position('both')
plt.gca().xaxis.set_ticks_position('both')
plt.xlabel(r"$\alpha_i$ [deg]")
plt.ylabel("Reflectivity")
plt.tight_layout()
plt.show() plt.show()
if __name__ == '__main__': if __name__ == '__main__':
results_pp = run_simulation(ba.kvector_t(0.0, 1.0, 0.0), results_pp = run_simulation(ba.kvector_t(0, 1, 0),
ba.kvector_t(0.0, 1.0, 0.0)) ba.kvector_t(0, 1, 0))
results_mm = run_simulation(ba.kvector_t(0.0, -1.0, 0.0), results_mm = run_simulation(ba.kvector_t(0, -1, 0),
ba.kvector_t(0.0, -1.0, 0.0)) ba.kvector_t(0, -1, 0))
plot(results_pp, results_mm) plot([results_pp, results_mm], ["$++$", "$--$"])
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