Note
Go to the end to download the full example code.
Sphere: Qabs vs diameter#

+-----------------------+-----------------------+
| 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 0x7fd4f5563510>, <matplotlib.lines.Line2D object at 0x7fd4f5562490>]
import numpy as np
from PyMieSim import (
ureg,
SphereSet,
GaussianSet,
PolarizationSet,
Experiment,
print_available,
TabulatedMaterial,
)
print_available()
polarization_set = PolarizationSet(
angles=[0] * ureg.degree
)
source = GaussianSet(
wavelength=[400, 700] * ureg.nanometer,
polarization=polarization_set,
optical_power=[1e-3] * ureg.watt,
numerical_aperture=[0.2],
)
silver = TabulatedMaterial("silver")
scatterer = SphereSet(
diameter=np.linspace(1, 800, 300) * ureg.nanometer,
material=[silver],
medium=[1],
)
experiment = Experiment(scatterer_set=scatterer, source_set=source)
result = experiment.get("Qsca")
result.plot(x="scatterer:diameter")
Total running time of the script: (0 minutes 0.259 seconds)