Note
Go to the end to download the full example code.
Sphere: Goniometer#

+-----------------------+-----------------------+
| 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 0x7fd4f4fa4410>, <matplotlib.collections.FillBetweenPolyCollection object at 0x7fd4f4fa5e10>, <matplotlib.lines.Line2D object at 0x7fd4f4f7a810>, <matplotlib.collections.FillBetweenPolyCollection object at 0x7fd4f4f7aa90>]
from PyMieSim import (
ureg,
PhotodiodeSet,
SphereSet,
GaussianSet,
PolarizationSet,
Experiment,
print_available,
SellmeierMaterial,
)
import numpy
print_available()
polarization_set = PolarizationSet(
angles=[90.0] * ureg.degree,
)
source = GaussianSet(
wavelength=[600, 1200] * ureg.nanometer,
polarization=polarization_set,
optical_power=[1e-3] * ureg.watt,
numerical_aperture=[0.2],
)
scatterer = SphereSet(
diameter=[1000] * ureg.nanometer,
material=[SellmeierMaterial("BK7")],
medium=[1],
)
detector = PhotodiodeSet(
numerical_aperture=[0.1, 0.15, 0.2],
phi_offset=numpy.linspace(-180, 180, 200) * ureg.degree,
cache_numerical_aperture=[0.05],
gamma_offset=0 * ureg.degree,
sampling=[400]
)
experiment = Experiment(scatterer_set=scatterer, source_set=source, detector_set=detector)
result = experiment.get("coupling")
result.plot(x="detector:phi_offset", y='coupling', std='detector:NA')
Total running time of the script: (0 minutes 0.360 seconds)