Note
Go to the end to download the full example code.
Cylinder Scatterer Bohren-Huffman figure 8.10#
Importing the dependencies: numpy, matplotlib, PyMieSim
import numpy
import matplotlib.pyplot as plt
from PyMieSim.directories import validation_data_path
from PyMieSim.single.source import Gaussian
from PyMieSim.single.scatterer import Cylinder
from PyMieSim.units import degree, watt, AU, RIU, nanometer
from MPSPlots.styles import mps
theoretical = numpy.genfromtxt(f"{validation_data_path}/bohren_huffman/figure_810.csv", delimiter=',')
x = theoretical[:, 0]
y = theoretical[:, 1]
source = Gaussian(
wavelength=470 * nanometer,
polarization=90 * degree,
optical_power=1e-3 * watt,
NA=0.1 * AU,
)
scatterer = Cylinder(
diameter=3000 * nanometer,
source=source,
property=(1.0 + 0.07j) * RIU,
medium_property=1.0 * RIU
)
S1S2 = scatterer.get_s1s2(sampling=800)
data = (numpy.abs(S1S2.S1)**2 + numpy.abs(S1S2.S2)**2) * (0.5 / (numpy.pi * source.wavenumber.to_base_units()))**(1 / 4)
with plt.style.context(mps):
figure, ax = plt.subplots(1, 1)
ax.plot(S1S2.phi, data, 'C1-', linewidth=3, label='PyMieSim')
ax.plot(x, y, 'k--', linewidth=1, label='B&H [8.10]')
ax.set(
xlabel='scatterertering angle [degree]',
ylabel='Phase function',
yscale='log',
)
ax.legend()
plt.show()
# -

Total running time of the script: (0 minutes 0.338 seconds)