Note
Go to the end to download the full example code.
Scatterer Footprint Calculation and Visualization#
This example demonstrates how to compute and visualize the footprint of a scatterer using PyMieSim.

2026-02-01 09:11:20,998 INFO Substituting symbol \mu from STIXNonUnicode
2026-02-01 09:11:21,031 INFO Substituting symbol \mu from STIXNonUnicode
# Import necessary components from PyMieSim
from PyMieSim.units import ureg
from PyOptik import Material
from PyMieSim.single.scatterer import Sphere
from PyMieSim.single.detector import CoherentMode
from PyMieSim.single.source import Gaussian
from PyMieSim.single.representations import Footprint
source = Gaussian(
wavelength=1 * ureg.micrometer,
polarization=0 * ureg.degree,
optical_power=1 * ureg.watt,
NA=0.3 * ureg.AU,
)
scatterer = Sphere(
diameter=2 * ureg.micrometer,
source=source,
medium_refractive_index=1.0 * ureg.RIU,
refractive_index=1.8 * ureg.RIU,
)
detector = CoherentMode(
mode_number="HG02",
NA=0.3 * ureg.AU,
sampling=200,
gamma_offset=0 * ureg.degree,
phi_offset=0 * ureg.degree,
rotation=0 * ureg.degree,
medium_refractive_index=1.0 * ureg.RIU,
)
footprint = Footprint(
scatterer=scatterer,
detector=detector,
sampling=100,
)
figure = footprint.plot()
Total running time of the script: (0 minutes 0.513 seconds)