Cylinder: Qsca vs wavelength std#

Importing the package dependencies: numpy, PyMieSim

import numpy as np

from PyMieSim.experiment.scatterer import Cylinder
from PyMieSim.experiment.source import Gaussian
from PyMieSim.experiment import Setup


from PyOptik import UsualMaterial
from PyMieSim import measure

Defining the source to be employed.

source = Gaussian(
    wavelength=np.linspace(200e-9, 1800e-9, 300),
    polarization_value=0,
    polarization_type='linear',
    optical_power=1e-3,
    NA=0.2
)

Defining the ranging parameters for the scatterer distribution

scatterer = Cylinder(
    diameter=np.linspace(400e-9, 1400e-9, 10),
    material=UsualMaterial.Silver,
    medium_index=1,
    source=source
)

Defining the experiment setup

experiment = Setup(
    scatterer=scatterer,
    source=source
)

Measuring the properties

data = experiment.get(measure.Qsca)

Plotting the results

figure = data.plot(
    x=experiment.wavelength,
    y_scale='log',
    std=experiment.diameter
)

_ = figure.show()
plot cylinder Qsca vs wavelength std

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

Gallery generated by Sphinx-Gallery