This module provides tools to simulate scattering intensities detected by POPS as a function of particle size, refractive index, and some more less obvious parameters. Simulations are based on mie scattering, which gives the module the name. The only function that is worth mentioning is the one below. Its worth exploring all the optional parameters.
In [5]:
from atmPy.instruments.POPS import mie
from atmPy.tools import plt_tools
%matplotlib inline
plt_tools.setRcParams(plt)
In [7]:
d,amp = mie.makeMie_diameter(noOfdiameters=1000)
In [13]:
f,a = plt.subplots()
a.plot(d,amp)
a.loglog()
a.set_xlim((0.1,3))
a.set_ylabel('Signal intensity (arb. u.)')
a.set_xlabel('Diameter ($\mu$m)')
Out[13]:
In [ ]: