Sphere: Qsca vs wavelength STD#

sphere Qsca vs wavelength std
+-----------------------+-----------------------+
| 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 0x7fd4f59854d0>, <matplotlib.collections.FillBetweenPolyCollection object at 0x7fd4f5984c10>, <matplotlib.lines.Line2D object at 0x7fd4f5873d10>, <matplotlib.collections.FillBetweenPolyCollection object at 0x7fd4f5872cd0>, <matplotlib.lines.Line2D object at 0x7fd4f5817d10>, <matplotlib.collections.FillBetweenPolyCollection object at 0x7fd4f513e450>]

import numpy as np
from PyMieSim import (
    ureg,
    SphereSet,
    GaussianSet,
    PolarizationSet,
    Experiment,
    print_available,
    TabulatedMaterial,
)


print_available()

polarization_set = PolarizationSet(
    angles=[0.0] * ureg.degree,
)

source = GaussianSet(
    wavelength=np.linspace(200, 1800, 200) * ureg.nanometer,
    polarization=polarization_set,
    optical_power=[1e-3] * ureg.watt,
    numerical_aperture=[0.2],
)

silver = TabulatedMaterial("silver")
gold = TabulatedMaterial("gold")

scatterer = SphereSet(
    diameter=np.linspace(400, 1400, 10) * ureg.nanometer,
    material=[silver, gold, 1.4],
    medium=[1],
)

experiment = Experiment(scatterer_set=scatterer, source_set=source)

result = experiment.get("Qsca")

result.plot(x="source:wavelength", std="scatterer:diameter")

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

Gallery generated by Sphinx-Gallery