Note
Go to the end to download the full example code.
InfiniteCylinder: Qabs vs Diameter#
This example demonstrates how to compute and visualize the scattering efficiency (Qsca) as a function of diameter for cylindrical scatterers using PyMieSim.

+-----------------------+-----------------------+
| Sellmeier Materials | Tabulated Materials |
+=======================+=======================+
| fused_silica | calcium |
+-----------------------+-----------------------+
| water | gold |
+-----------------------+-----------------------+
| BAK1 | copper |
+-----------------------+-----------------------+
| soda_lime_glass | silicon |
+-----------------------+-----------------------+
| lithium_niobate | aluminium |
+-----------------------+-----------------------+
| argon | iron |
+-----------------------+-----------------------+
| flint | polyetylene |
+-----------------------+-----------------------+
| BAF10 | sodium |
+-----------------------+-----------------------+
| germanium | silver |
+-----------------------+-----------------------+
| air | nickel |
+-----------------------+-----------------------+
| crown | zinc |
+-----------------------+-----------------------+
| SF5 | |
+-----------------------+-----------------------+
| polystyren | |
+-----------------------+-----------------------+
| BK7 | |
+-----------------------+-----------------------+
| acetone | |
+-----------------------+-----------------------+
| ZBLAN | |
+-----------------------+-----------------------+
[<matplotlib.lines.Line2D object at 0x7fd4f5226f90>, <matplotlib.lines.Line2D object at 0x7fd4f49fe390>, <matplotlib.lines.Line2D object at 0x7fd4f49fc850>]
import numpy as np
from PyMieSim import (
ureg,
InfiniteCylinderSet,
GaussianSet,
PolarizationSet,
Experiment,
print_available,
TabulatedMaterial,
)
print_available()
polarization_set = PolarizationSet(
angles=[30.0] * ureg.degree,
)
source = GaussianSet(
wavelength=[400] * ureg.nanometer,
polarization=polarization_set,
optical_power=[1e-3] * ureg.watt,
numerical_aperture=[0.2],
)
scatterer = InfiniteCylinderSet(
diameter=np.linspace(1, 800, 300) * ureg.nanometer,
material=[TabulatedMaterial("silver"), TabulatedMaterial("gold"), TabulatedMaterial("aluminium")],
medium=[1],
)
experiment = Experiment(scatterer_set=scatterer, source_set=source)
result = experiment.get("Qabs", "Qsca", "Qext")
result.plot(x="scatterer:diameter", y="Qabs")
Total running time of the script: (0 minutes 0.452 seconds)