Note
Go to the end to download the full example code.
InfiniteCylinder Scatterer Bohren-Huffman figure 8.7#
Importing the dependencies: numpy, matplotlib, PyMieSim
import numpy
import matplotlib.pyplot as plt
from PyMieSim.units import ureg
from PyMieSim.directories import validation_data_path
from PyMieSim.experiment.scatterer_set import InfiniteCylinderSet
from PyMieSim.experiment.source_set import GaussianSet
from PyMieSim.experiment.polarization_set import PolarizationSet
from PyMieSim.experiment import Setup
theoretical = numpy.genfromtxt(
f"{validation_data_path}/bohren_huffman/figure_87.csv", delimiter=","
)
diameter = numpy.geomspace(10, 6000, 800) * ureg.nanometer
volume = numpy.pi * (diameter.to_base_units().magnitude / 2) ** 2
source = GaussianSet(
wavelength=[632.8] * ureg.nanometer,
polarization=PolarizationSet(angles=[0, 90] * ureg.degree),
optical_power=[1e-3] * ureg.watt,
numerical_aperture=[0.2],
)
scatterer = InfiniteCylinderSet(
diameter=diameter,
material=[1.55],
medium=[1],
)
experiment = Setup(
scatterer_set=scatterer,
source_set=source,
)
values = experiment.get("Csca", as_numpy=True)
data = values / volume * 1e-4 / 100
plt.figure(figsize=(8, 4))
plt.plot(diameter, data[0], "b--", linewidth=3, label="PyMieSim")
plt.plot(diameter, data[1], "r-", linewidth=3, label="PyMieSim")
plt.plot(diameter, theoretical[0], "k--", linewidth=1, label="BH 8.8")
plt.plot(diameter, theoretical[1], "k--", linewidth=1, label="BH 8.8")
plt.xlabel(r"Diameter [$\mu$m]")
plt.ylabel("Scattering cross section [cylinder]")
plt.grid(True)
plt.legend()
plt.tight_layout()
plt.show()

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