PyMieSim 3.6.0__cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. PyMieSim/__init__.py +16 -0
  2. PyMieSim/__main__.py +9 -0
  3. PyMieSim/_version.py +21 -0
  4. PyMieSim/binary/__init__.py +0 -0
  5. PyMieSim/binary/interface_detector.cpython-310-x86_64-linux-gnu.so +0 -0
  6. PyMieSim/binary/interface_detector.cpython-311-x86_64-linux-gnu.so +0 -0
  7. PyMieSim/binary/interface_detector.cpython-312-x86_64-linux-gnu.so +0 -0
  8. PyMieSim/binary/interface_detector.cpython-313-x86_64-linux-gnu.so +0 -0
  9. PyMieSim/binary/interface_experiment.cpython-310-x86_64-linux-gnu.so +0 -0
  10. PyMieSim/binary/interface_experiment.cpython-311-x86_64-linux-gnu.so +0 -0
  11. PyMieSim/binary/interface_experiment.cpython-312-x86_64-linux-gnu.so +0 -0
  12. PyMieSim/binary/interface_experiment.cpython-313-x86_64-linux-gnu.so +0 -0
  13. PyMieSim/binary/interface_scatterer.cpython-310-x86_64-linux-gnu.so +0 -0
  14. PyMieSim/binary/interface_scatterer.cpython-311-x86_64-linux-gnu.so +0 -0
  15. PyMieSim/binary/interface_scatterer.cpython-312-x86_64-linux-gnu.so +0 -0
  16. PyMieSim/binary/interface_scatterer.cpython-313-x86_64-linux-gnu.so +0 -0
  17. PyMieSim/binary/interface_sets.cpython-310-x86_64-linux-gnu.so +0 -0
  18. PyMieSim/binary/interface_sets.cpython-311-x86_64-linux-gnu.so +0 -0
  19. PyMieSim/binary/interface_sets.cpython-312-x86_64-linux-gnu.so +0 -0
  20. PyMieSim/binary/interface_sets.cpython-313-x86_64-linux-gnu.so +0 -0
  21. PyMieSim/binary/interface_source.cpython-310-x86_64-linux-gnu.so +0 -0
  22. PyMieSim/binary/interface_source.cpython-311-x86_64-linux-gnu.so +0 -0
  23. PyMieSim/binary/interface_source.cpython-312-x86_64-linux-gnu.so +0 -0
  24. PyMieSim/binary/interface_source.cpython-313-x86_64-linux-gnu.so +0 -0
  25. PyMieSim/binary/libcpp_coordinates.a +0 -0
  26. PyMieSim/binary/libcpp_detector.a +0 -0
  27. PyMieSim/binary/libcpp_experiment.a +0 -0
  28. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  29. PyMieSim/binary/libcpp_mode_field.a +0 -0
  30. PyMieSim/binary/libcpp_sets.a +0 -0
  31. PyMieSim/binary/libcpp_source.a +0 -0
  32. PyMieSim/directories.py +31 -0
  33. PyMieSim/experiment/__init__.py +1 -0
  34. PyMieSim/experiment/dataframe_subclass.py +220 -0
  35. PyMieSim/experiment/detector/__init__.py +2 -0
  36. PyMieSim/experiment/detector/base.py +169 -0
  37. PyMieSim/experiment/detector/coherent_mode.py +50 -0
  38. PyMieSim/experiment/detector/photodiode.py +52 -0
  39. PyMieSim/experiment/scatterer/__init__.py +4 -0
  40. PyMieSim/experiment/scatterer/base.py +98 -0
  41. PyMieSim/experiment/scatterer/core_shell.py +82 -0
  42. PyMieSim/experiment/scatterer/cylinder.py +63 -0
  43. PyMieSim/experiment/scatterer/sphere.py +66 -0
  44. PyMieSim/experiment/setup.py +356 -0
  45. PyMieSim/experiment/source/__init__.py +2 -0
  46. PyMieSim/experiment/source/base.py +85 -0
  47. PyMieSim/experiment/source/gaussian.py +60 -0
  48. PyMieSim/experiment/source/planewave.py +69 -0
  49. PyMieSim/experiment/utils.py +132 -0
  50. PyMieSim/gui/__init__.py +0 -0
  51. PyMieSim/gui/helper.py +60 -0
  52. PyMieSim/gui/interface.py +136 -0
  53. PyMieSim/gui/section.py +606 -0
  54. PyMieSim/mesh.py +368 -0
  55. PyMieSim/polarization.py +174 -0
  56. PyMieSim/single/__init__.py +48 -0
  57. PyMieSim/single/detector/__init__.py +2 -0
  58. PyMieSim/single/detector/base.py +271 -0
  59. PyMieSim/single/detector/coherent.py +99 -0
  60. PyMieSim/single/detector/uncoherent.py +105 -0
  61. PyMieSim/single/representations.py +734 -0
  62. PyMieSim/single/scatterer/__init__.py +4 -0
  63. PyMieSim/single/scatterer/base.py +405 -0
  64. PyMieSim/single/scatterer/core_shell.py +126 -0
  65. PyMieSim/single/scatterer/cylinder.py +113 -0
  66. PyMieSim/single/scatterer/sphere.py +108 -0
  67. PyMieSim/single/source/__init__.py +3 -0
  68. PyMieSim/single/source/base.py +7 -0
  69. PyMieSim/single/source/gaussian.py +137 -0
  70. PyMieSim/single/source/planewave.py +97 -0
  71. PyMieSim/special_functions.py +81 -0
  72. PyMieSim/units.py +130 -0
  73. PyMieSim/validation_data/bohren_huffman/figure_810.csv +245 -0
  74. PyMieSim/validation_data/bohren_huffman/figure_87.csv +2 -0
  75. PyMieSim/validation_data/bohren_huffman/figure_88.csv +2 -0
  76. PyMieSim/validation_data/pymiescatt/example_coreshell_0.csv +41 -0
  77. PyMieSim/validation_data/pymiescatt/example_coreshell_1.csv +401 -0
  78. PyMieSim/validation_data/pymiescatt/example_shpere_0.csv +51 -0
  79. PyMieSim/validation_data/pymiescatt/example_shpere_1.csv +801 -0
  80. PyMieSim/validation_data/pymiescatt/example_shpere_2.csv +41 -0
  81. PyMieSim/validation_data/pymiescatt/example_shpere_3.csv +401 -0
  82. PyMieSim/validation_data/pymiescatt/example_sphere_0.csv +51 -0
  83. PyMieSim/validation_data/pymiescatt/example_sphere_1.csv +801 -0
  84. PyMieSim/validation_data/pymiescatt/example_sphere_2.csv +41 -0
  85. PyMieSim/validation_data/pymiescatt/example_sphere_3.csv +401 -0
  86. PyMieSim/validation_data/pymiescatt/validation_Qsca.csv +800 -0
  87. PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv +400 -0
  88. PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv +400 -0
  89. PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv +800 -0
  90. PyMieSim/validation_data/pymiescatt/validation_coreshell.csv +81 -0
  91. PyMieSim/validation_data/pymiescatt/validation_sphere.csv +801 -0
  92. lib/libZBessel.a +0 -0
  93. lib/lib_ZBessel.a +0 -0
  94. lib/libcpp_base_scatterer.a +0 -0
  95. lib/libcpp_coreshell.a +0 -0
  96. lib/libcpp_cylinder.a +0 -0
  97. lib/libcpp_sphere.a +0 -0
  98. pymiesim-3.6.0.dist-info/METADATA +246 -0
  99. pymiesim-3.6.0.dist-info/RECORD +104 -0
  100. pymiesim-3.6.0.dist-info/WHEEL +6 -0
  101. pymiesim-3.6.0.dist-info/licenses/LICENSE +21 -0
  102. pymiesim.libs/libgfortran-040039e1.so.5.0.0 +0 -0
  103. pymiesim.libs/libgomp-a34b3233.so.1.0.0 +0 -0
  104. pymiesim.libs/libquadmath-96973f99.so.0.0.0 +0 -0
lib/libZBessel.a ADDED
Binary file
lib/lib_ZBessel.a ADDED
Binary file
Binary file
lib/libcpp_coreshell.a ADDED
Binary file
lib/libcpp_cylinder.a ADDED
Binary file
lib/libcpp_sphere.a ADDED
Binary file
@@ -0,0 +1,246 @@
1
+ Metadata-Version: 2.2
2
+ Name: PyMieSim
3
+ Version: 3.6.0
4
+ Summary: A package for light scattering computation.
5
+ Keywords: mie,scattering,backscatter,sphere,cylinder,nanoparticle,phase function,efficiency,rayleigh,backscattering
6
+ Author-Email: Martin Poinsinet de Sivry-Houle <martin.poinsinet.de.sivry@gmail.com>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2020 Martin Poinsinet de Sivry-Houle
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ Classifier: Programming Language :: Python
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: Programming Language :: Python :: 3.10
32
+ Classifier: Programming Language :: Python :: 3.11
33
+ Classifier: Programming Language :: Python :: 3.12
34
+ Classifier: Programming Language :: Python :: Implementation :: CPython
35
+ Classifier: Development Status :: 5 - Production/Stable
36
+ Classifier: Intended Audience :: Science/Research
37
+ Classifier: Intended Audience :: Developers
38
+ Classifier: Topic :: Scientific/Engineering :: Physics
39
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
40
+ Classifier: Topic :: Scientific/Engineering :: Visualization
41
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
42
+ Classifier: License :: OSI Approved :: MIT License
43
+ Classifier: Operating System :: OS Independent
44
+ Classifier: Framework :: Jupyter
45
+ Classifier: Framework :: Sphinx
46
+ Project-URL: Documentation, https://martinpdes.github.io/PyMieSim/
47
+ Project-URL: Repository, https://github.com/MartinPdeS/PyMieSim
48
+ Requires-Python: >=3.10
49
+ Requires-Dist: setuptools_scm[toml]~=8.0
50
+ Requires-Dist: numpy==2.2.6
51
+ Requires-Dist: matplotlib==3.10.3
52
+ Requires-Dist: MPSPlots==1.6.4
53
+ Requires-Dist: pydantic<2.12.0,>=2.9.2
54
+ Requires-Dist: pint-pandas~=0.6
55
+ Requires-Dist: pandas~=2.3.0
56
+ Requires-Dist: PyOptik==1.11.0
57
+ Requires-Dist: tabulate~=0.9
58
+ Requires-Dist: pyvista==0.45.2
59
+ Provides-Extra: testing
60
+ Requires-Dist: pytest>=0.6; extra == "testing"
61
+ Requires-Dist: pytest-cov>=2.0; extra == "testing"
62
+ Requires-Dist: pytest-json-report==1.5.0; extra == "testing"
63
+ Requires-Dist: coverage==7.9.2; extra == "testing"
64
+ Provides-Extra: documentation
65
+ Requires-Dist: numpydoc==1.9.0; extra == "documentation"
66
+ Requires-Dist: sphinx>=5.1.1; extra == "documentation"
67
+ Requires-Dist: sphinx-rtd-theme==3.0.2; extra == "documentation"
68
+ Requires-Dist: sphinx-gallery==0.19.0; extra == "documentation"
69
+ Requires-Dist: pydata-sphinx-theme==0.16.1; extra == "documentation"
70
+ Provides-Extra: dev
71
+ Requires-Dist: flake8==7.3.0; extra == "dev"
72
+ Description-Content-Type: text/x-rst
73
+
74
+ |logo|
75
+
76
+ .. list-table::
77
+ :widths: 10 25 25 25
78
+ :header-rows: 0
79
+
80
+ * - Meta
81
+ - |python|
82
+ - |docs|
83
+ - |zenodo|
84
+ * - Testing
85
+ - |ci/cd|
86
+ - |coverage|
87
+ - |colab|
88
+ * - PyPI
89
+ - |PyPI|
90
+ - |PyPI_download|
91
+ -
92
+ * - Anaconda
93
+ - |anaconda|
94
+ - |anaconda_download|
95
+ - |anaconda_date|
96
+
97
+ PyMieSim
98
+ ========
99
+
100
+ **PyMieSim** is an open-source Python package for fast and flexible Mie
101
+ scattering simulations. It supports spherical, cylindrical and core--shell
102
+ particles and provides helper classes for custom sources and detectors.
103
+ The project targets both quick single-scatterer studies and large parametric
104
+ experiments.
105
+
106
+ Features
107
+ --------
108
+ - Solvers for spheres, cylinders and core--shell geometries.
109
+ - Built-in models for plane wave and Gaussian sources.
110
+ - Multiple detector types including photodiodes and coherent modes.
111
+ - Simple data analysis with pandas DataFrame outputs.
112
+
113
+ Installation
114
+ ------------
115
+ PyMieSim is available on PyPI and Anaconda. Install it with:
116
+
117
+ .. code-block:: bash
118
+
119
+ pip install PyMieSim
120
+ conda install PyMieSim
121
+
122
+ See the `online documentation <https://pymiesim.readthedocs.io/>`_ for detailed
123
+ usage and additional examples.
124
+
125
+ Quick example
126
+ -------------
127
+ Below is a short example computing the scattering efficiency of a sphere.
128
+
129
+ .. code-block:: python
130
+
131
+ import numpy as np
132
+ from PyMieSim.experiment.scatterer import Sphere
133
+ from PyMieSim.experiment.source import Gaussian
134
+ from PyMieSim.experiment import Setup
135
+ from PyMieSim.units import nanometer, degree, watt, AU, RIU
136
+
137
+ source = Gaussian(
138
+ wavelength=np.linspace(400, 1000, 500) * nanometer,
139
+ polarization=0 * degree,
140
+ optical_power=1e-3 * watt,
141
+ NA=0.2 * AU,
142
+ )
143
+
144
+ scatterer = Sphere(
145
+ diameter=[200] * nanometer,
146
+ property=[4] * RIU,
147
+ medium_property=1 * RIU,
148
+ source=source,
149
+ )
150
+
151
+ experiment = Setup(scatterer=scatterer, source=source)
152
+ df = experiment.get("Qsca")
153
+ df.plot_data(x="source:wavelength")
154
+
155
+ Building from source
156
+ --------------------
157
+ For development or manual compilation, clone the repository and run:
158
+
159
+ .. code-block:: bash
160
+
161
+ git submodule update --init
162
+ mkdir build && cd build
163
+ cmake ../ -G"Unix Makefiles"
164
+ sudo make install
165
+ cd ..
166
+ python -m pip install .
167
+
168
+ Testing
169
+ -------
170
+ Run the unit tests with:
171
+
172
+ .. code-block:: bash
173
+
174
+ pip install PyMieSim[testing]
175
+ pytest
176
+
177
+ Citing PyMieSim
178
+ ---------------
179
+ If you use PyMieSim in academic work, please cite:
180
+
181
+ .. code-block:: none
182
+
183
+ @article{PoinsinetdeSivry-Houle:23,
184
+ author = {Martin Poinsinet de Sivry-Houle and Nicolas Godbout and Caroline Boudoux},
185
+ journal = {Opt. Continuum},
186
+ title = {PyMieSim: an open-source library for fast and flexible far-field Mie scattering simulations},
187
+ volume = {2},
188
+ number = {3},
189
+ pages = {520--534},
190
+ year = {2023},
191
+ doi = {10.1364/OPTCON.473102},
192
+ }
193
+
194
+ Contact
195
+ -------
196
+ For questions or contributions, contact `martin.poinsinet.de.sivry@gmail.ca <mailto:martin.poinsinet.de.sivry@gmail.ca>`_.
197
+
198
+ .. |logo| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/logo.png
199
+ :alt: PyOptik logo
200
+ .. |python| image:: https://img.shields.io/pypi/pyversions/pymiesim.svg
201
+ :alt: Python
202
+ :target: https://www.python.org/
203
+ .. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.5593704.svg
204
+ :alt: Scientific article
205
+ :target: https://doi.org/10.5281/zenodo.4556074
206
+ .. |colab| image:: https://colab.research.google.com/assets/colab-badge.svg
207
+ :alt: Google Colab
208
+ :target: https://colab.research.google.com/github/MartinPdeS/PyMieSim/blob/master/notebook.ipynb
209
+ .. |docs| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_documentation.yml/badge.svg
210
+ :target: https://martinpdes.github.io/PyMieSim/
211
+ :alt: Documentation Status
212
+ .. |PyPI| image:: https://badge.fury.io/py/PyMieSim.svg
213
+ :alt: PyPI version
214
+ :target: https://badge.fury.io/py/PyMieSim
215
+ .. |PyPI_download| image:: https://img.shields.io/pypi/dm/PyMieSim?style=plastic&label=PyPI%20downloads&labelColor=hex&color=hex
216
+ :alt: PyPI downloads
217
+ :target: https://pypistats.org/packages/pymiesim
218
+ .. |coverage| image:: https://raw.githubusercontent.com/MartinPdeS/PyMieSim/python-coverage-comment-action-data/badge.svg
219
+ :alt: Unittest coverage
220
+ :target: https://htmlpreview.github.io/?https://github.com/MartinPdeS/PyMieSim/blob/python-coverage-comment-action-data/htmlcov/index.html
221
+ .. |ci/cd| image:: https://github.com/martinpdes/pymiesim/actions/workflows/deploy_coverage.yml/badge.svg
222
+ :alt: Unittest Status
223
+ .. |code_structure| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/code_structure.png
224
+ :width: 800
225
+ :alt: Structure of the library
226
+ .. |example_gui| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/example_gui.png
227
+ :width: 800
228
+ :alt: Structure of the library
229
+ .. |wikipedia_example| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/wikipedia_example.png
230
+ :width: 800
231
+ :alt: Example wikipedia
232
+ .. |example_plasmon| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/plasmonic_resonances.png
233
+ :width: 800
234
+ :alt: Plasmonic resonances
235
+ .. |example_qsca| image:: https://github.com/MartinPdeS/PyMieSim/raw/master/docs/images/Qsca_diameter.png
236
+ :width: 800
237
+ :alt: Qsca vs diameter
238
+ .. |anaconda| image:: https://anaconda.org/martinpdes/pymiesim/badges/version.svg
239
+ :alt: Anaconda version
240
+ :target: https://anaconda.org/martinpdes/pymiesim
241
+ .. |anaconda_download| image:: https://anaconda.org/martinpdes/pymiesim/badges/downloads.svg
242
+ :alt: Anaconda downloads
243
+ :target: https://anaconda.org/martinpdes/pymiesim
244
+ .. |anaconda_date| image:: https://anaconda.org/martinpdes/pymiesim/badges/latest_release_relative_date.svg
245
+ :alt: Latest release date
246
+ :target: https://anaconda.org/martinpdes/pymiesim
@@ -0,0 +1,104 @@
1
+ lib/libcpp_cylinder.a,sha256=P2v2Et_nAslpqVD1hHkapRmRGby_n3-pNVeEtUHPItc,323242
2
+ lib/libcpp_sphere.a,sha256=9MvZA49L_JXHODC8Jjjs8yFtIwmIcbVK679LQ_HOEYM,338816
3
+ lib/libZBessel.a,sha256=KC71rPpJ547boE6oadoV9lSfrJpPGSOT7uih3rwG130,162754
4
+ lib/libcpp_coreshell.a,sha256=RnR-K-CKypX7lMjd-69RZMEzTkCiK--1b11v3ByuhuE,338638
5
+ lib/libcpp_base_scatterer.a,sha256=iqpbixBcGEe5sJAFSr8Mtel2LdtYJsHmkUTK9lyl1Sg,343224
6
+ lib/lib_ZBessel.a,sha256=Cbzo4u0xjcYf3o3dJj0qNdy4yqG7VVGv5chrTzJ7ojU,15774
7
+ pymiesim-3.6.0.dist-info/METADATA,sha256=NLH1cmL-XPL5EVHrCZuT_ZTIbYMT-jqEMJlNV92L1PQ,9530
8
+ pymiesim-3.6.0.dist-info/RECORD,,
9
+ pymiesim-3.6.0.dist-info/WHEEL,sha256=GI0vPfBzMqwETFoYglhFMM37nXBm7L8E01YLfOP5FPw,156
10
+ pymiesim-3.6.0.dist-info/licenses/LICENSE,sha256=-QSWDJghhVqbAzChmEK86liqPX_eeQFgdwlrKTLLcIA,1088
11
+ PyMieSim/__init__.py,sha256=ZRdkOFRqjkVCq0qQs4DHIFnAgkdtBr19gZaq1k6bzxw,453
12
+ PyMieSim/polarization.py,sha256=PP8ksfWeTOnW3IOGVsAe8L183pgqe5R-KKBF99nQhaU,5487
13
+ PyMieSim/directories.py,sha256=ohe9qvjwN0IJ7OpZHsD7LxKYGMLr4CC7xYUGgWgw-Rg,648
14
+ PyMieSim/_version.py,sha256=eic-6Xs9-9wocSdGZ3Qt8lkpGHJbspTaUymbZDQfBkA,511
15
+ PyMieSim/mesh.py,sha256=WcX_rXpWxH7WDniIqaG4rPC-pfDm4AG9ZAX-zI8GbhU,14566
16
+ PyMieSim/special_functions.py,sha256=tC82qnTSpcNv0MFy5wZsVFwhbJKy_5tO8kBullijOaY,2093
17
+ PyMieSim/units.py,sha256=L7Trn8rW5d5AQK1_8I-XwaHGswXklupXs5wHgWQtJNQ,4224
18
+ PyMieSim/__main__.py,sha256=KO6-uwDgv95PHXlhpyIcyFX3qqddbI8HdQTsdqziz7g,237
19
+ PyMieSim/single/__init__.py,sha256=GqpWQIaAkruQ4d1fa_fI2Qf8b5TGNXRFdkuHoe8LsTc,2207
20
+ PyMieSim/single/representations.py,sha256=ThzTI0fQYhWC8LKHMLo17GOT3v6cSOa1n4iplNitn2A,29149
21
+ PyMieSim/single/detector/__init__.py,sha256=os2BbDrnjrEZ3-gie6AKJAZHyE_I4OvKo0uuDEKqpE0,89
22
+ PyMieSim/single/detector/uncoherent.py,sha256=DOqf5hU5ghEhj8IooC5uJX6pjMwNBveIr-FzcWkgTLk,4848
23
+ PyMieSim/single/detector/base.py,sha256=2nKXdx-8ycg1Xm02rxV4TJIAHbQWHCOR-9T32byf5zs,11319
24
+ PyMieSim/single/detector/coherent.py,sha256=FDUSkWvoCvicKEhCGpfExucfMpRutfs0oppVgJfJpPg,5306
25
+ PyMieSim/single/source/__init__.py,sha256=zCiDBYIE0TdYbtQXPgfU70DNz7ZxqtENU_NvrThJpTg,93
26
+ PyMieSim/single/source/base.py,sha256=HKqsEVw7caNV7ev8OVNPi3zMHc4cgGuhH9s2XcgvgBw,124
27
+ PyMieSim/single/source/gaussian.py,sha256=vVZ7UVkhlm2KvsTOf2uVcm9rjgXISSs7sv798m9otp4,4849
28
+ PyMieSim/single/source/planewave.py,sha256=J2t78fseCthUzCLqjH1KD7H669kGwiyBxPjkChZXZMw,3586
29
+ PyMieSim/single/scatterer/__init__.py,sha256=2a9o-VHfqGloCEEbfIGSjLIIzWssRCt9W72AYvU2nSg,124
30
+ PyMieSim/single/scatterer/base.py,sha256=CVVI8_nSgoF_BkEN0Fb_A61YHgMnKfOiKaKbe60NsD8,19701
31
+ PyMieSim/single/scatterer/cylinder.py,sha256=GNABjAb2csnWxANlIdJW7PhuuewJHMVAlzNmlfnz7eU,4062
32
+ PyMieSim/single/scatterer/core_shell.py,sha256=fqhu2PooEUDo7Vnotio7_iz2stozC5i5XczP8vdOKMs,5074
33
+ PyMieSim/single/scatterer/sphere.py,sha256=NVBP9iUX0pAPWdi13xbMzgLfllDPCgvF5BuJuWfUUec,3847
34
+ PyMieSim/binary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
+ PyMieSim/binary/interface_source.cpython-312-x86_64-linux-gnu.so,sha256=shrysomujn0oVVIMw9l5eDilHT7GOKe6PCggPg8JGyE,250624
36
+ PyMieSim/binary/interface_experiment.cpython-311-x86_64-linux-gnu.so,sha256=RHn0vIhZDnF-PDVg5XdhbFEBBloajm_8iFe1URJEaBE,798809
37
+ PyMieSim/binary/interface_scatterer.cpython-310-x86_64-linux-gnu.so,sha256=PIYwBZi_rvtAvpzybKriVgsVTWfEhAnQ0C8wPcEVIyI,640385
38
+ PyMieSim/binary/interface_sets.cpython-313-x86_64-linux-gnu.so,sha256=ZMEo-YFa9JawOixsJLBBKJXdYQhp7k8j_ZM3dRt5iqY,673745
39
+ PyMieSim/binary/interface_detector.cpython-312-x86_64-linux-gnu.so,sha256=Uua-TBPuWwwRPkSmHU6wgZoL4U-xeB6WiNm_VQUhCNU,554649
40
+ PyMieSim/binary/libcpp_mode_field.a,sha256=6qWG9JRnygTCpamtm8kjN-6BTFv6TkGJFTBjXoXmaMo,16282
41
+ PyMieSim/binary/interface_scatterer.cpython-313-x86_64-linux-gnu.so,sha256=-ZE-aop3ldfNSejRxN6AohDjRYv2c_ogau4ucSFrxG8,644625
42
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=QVj33wuRoaEuQVOUNT0LgJLaOnfyqPWArGONNnO6_o8,21142
43
+ PyMieSim/binary/interface_scatterer.cpython-312-x86_64-linux-gnu.so,sha256=ss95HLs82h4ZgFBd1bun62D3Lon5QSuEZuha-qOV3Jg,644553
44
+ PyMieSim/binary/interface_detector.cpython-313-x86_64-linux-gnu.so,sha256=MeJoghIY8oP8u_be_OYP7TD5N4xGMOoGWiCcWIdpgko,554721
45
+ PyMieSim/binary/interface_source.cpython-313-x86_64-linux-gnu.so,sha256=KojZHmLtn_Ea99Kd6qN_AuFh1UEA1JGDTlSP9qbZWB8,250656
46
+ PyMieSim/binary/interface_detector.cpython-310-x86_64-linux-gnu.so,sha256=j77JNHwxcmuBOf-cT5aWhY_BTjloOLc8gzhJnCu_2N8,546385
47
+ PyMieSim/binary/interface_sets.cpython-310-x86_64-linux-gnu.so,sha256=eZt6DxiSwlAeQH4tMiPHjflcgHJFb7TrAK8be8RoNwg,665409
48
+ PyMieSim/binary/libcpp_source.a,sha256=VafWewygpQAgqkWhV5KzKU9UtWkM8VinKIdKntTuG2I,5920
49
+ PyMieSim/binary/interface_source.cpython-310-x86_64-linux-gnu.so,sha256=Zx_2rlxDTyRXXPFJYhNZ2HHlGO7ZgU3IabdmYQSAZEk,250664
50
+ PyMieSim/binary/libcpp_experiment.a,sha256=kt3YQX6H9sLs6ESsHMYT-2wqadLFKefuYDcValQs7NI,301886
51
+ PyMieSim/binary/libcpp_detector.a,sha256=H3S6HpEk27A14kO4-uo3UFJEj1zO1Yn3Ui8iafAR9E4,342144
52
+ PyMieSim/binary/interface_experiment.cpython-310-x86_64-linux-gnu.so,sha256=aE5VvVyEfjcOnncmI_8wuiSfiOn3mqm37frIkoqlFv4,794641
53
+ PyMieSim/binary/interface_scatterer.cpython-311-x86_64-linux-gnu.so,sha256=g7z92ChD9Rr25FLTZBftxsxrCOOnnVjPpV43GDkIJB8,648649
54
+ PyMieSim/binary/interface_sets.cpython-312-x86_64-linux-gnu.so,sha256=FINtAwa39KWUXr1NoFeEjq83UfRZKFvQwNECbcEWzNc,673673
55
+ PyMieSim/binary/interface_experiment.cpython-312-x86_64-linux-gnu.so,sha256=e4pCIYkyabid2FYXRgycp_uWWNyb5majpx3iwypZVD4,802905
56
+ PyMieSim/binary/interface_sets.cpython-311-x86_64-linux-gnu.so,sha256=4-j0wizdlp-VOBjDjBxwcE69ep7d1OYl5dtgc4BVri4,669577
57
+ PyMieSim/binary/libcpp_coordinates.a,sha256=noTwZmKwSJ6okG8uoOVMCapZMGlesydXEw5ivNcMqJQ,29730
58
+ PyMieSim/binary/libcpp_sets.a,sha256=Ix4BI8YOCR4KufTjhqPQMRHDTwhO21KGRVQTR6-_Nbg,301800
59
+ PyMieSim/binary/interface_detector.cpython-311-x86_64-linux-gnu.so,sha256=hhvt30SKBKTJ9gyddrR0ss1SasvtKslQHGv14YGv3f0,550553
60
+ PyMieSim/binary/interface_source.cpython-311-x86_64-linux-gnu.so,sha256=_t1UOnFEqK7BGw1xlAjk0oNk642tYNGoVgRQ2-7-l9c,254760
61
+ PyMieSim/binary/interface_experiment.cpython-313-x86_64-linux-gnu.so,sha256=moY5IFDb3VYGxl0mAdIlCd1O8bToQJA-idptk9Tql84,802977
62
+ PyMieSim/experiment/setup.py,sha256=_dt2urIwClCKiKWJjgF4kNOB98gTj1XLNMSPf3KGYOU,13294
63
+ PyMieSim/experiment/__init__.py,sha256=HC_SUtzoeyD8mnFZrRieEZ47wHftgIdYKorXKLVFrEo,45
64
+ PyMieSim/experiment/utils.py,sha256=H4KkYMN33NSm9nwman0vk-umW9ecMsPKujQ4zkctMzc,5380
65
+ PyMieSim/experiment/dataframe_subclass.py,sha256=qPD_XW8x4WApQFdNOHJHt-Mc3BoT1b9y28dWmpZxccU,7174
66
+ PyMieSim/experiment/detector/__init__.py,sha256=pvtXHKR2pM7JOeTTcouKipeQwi0e8dZiZTpdAn9K2Ls,75
67
+ PyMieSim/experiment/detector/base.py,sha256=j2yY_InLQDAPgDkM19ILlIEF-2koGMKRe9Hc-nFpyGc,7340
68
+ PyMieSim/experiment/detector/coherent_mode.py,sha256=ME1CtxUfPY40E3HJoqJrW0ikje6QvhMY4RYs-yOvx0Q,1805
69
+ PyMieSim/experiment/detector/photodiode.py,sha256=GBSoF3mhVRyADJbEO2g4n0LffmGU7HOc5gDGF-ojgLQ,1850
70
+ PyMieSim/experiment/source/__init__.py,sha256=tAfSmMqMTem6-obvbOHD2YK7l4UDh1g-20t789_1Ihw,64
71
+ PyMieSim/experiment/source/base.py,sha256=QDe7CTQVQthI0KDmvLET4-5kxbv7ESuplmiU2Ubn1LM,3104
72
+ PyMieSim/experiment/source/gaussian.py,sha256=DRkap4C9vHHV85yE6Cj2qM3MsoZbNdX_wSilBRParE4,2331
73
+ PyMieSim/experiment/source/planewave.py,sha256=62RHOHCuTj0LrZ_0IAmLSiVyYyPRvRnLfBQIbdI0gwo,2480
74
+ PyMieSim/experiment/scatterer/__init__.py,sha256=_19R38S6LSGuuFRRPTFK1Lv2jaSoFk6O1V7CdwdhLXo,124
75
+ PyMieSim/experiment/scatterer/base.py,sha256=3hesoH2tNh2JtyOSSefU7Jl1WWjVpf8-QFmM1IfaR6Q,3879
76
+ PyMieSim/experiment/scatterer/cylinder.py,sha256=yr8fJsX-tj5HaCqxQOd4UccUxvWylZRgHXhXTL4tflE,2538
77
+ PyMieSim/experiment/scatterer/core_shell.py,sha256=4VbxS6Evcz5sjNlB3wtMTdScXCPLHov87Vr3HNlH-AQ,3470
78
+ PyMieSim/experiment/scatterer/sphere.py,sha256=tPZMCfrGlttVh6W2kJSLxzz1zvKEQNC7CmVk5yIaBSM,2845
79
+ PyMieSim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
+ PyMieSim/gui/interface.py,sha256=NVTd4c1PtykyW3cAWZErWqBgkaaO1tMrlNH1X-QxN2Q,4813
81
+ PyMieSim/gui/section.py,sha256=VcuMYvcedd67vplGeisXnmCg1mjnTaRP4mzdnX8u60w,21095
82
+ PyMieSim/gui/helper.py,sha256=VYkVS5G4AZ0gAqyC-IhQdyoi_CshoAp5lv8O3D8ORlk,2545
83
+ PyMieSim/validation_data/pymiescatt/example_shpere_3.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
84
+ PyMieSim/validation_data/pymiescatt/example_shpere_1.csv,sha256=4nycDmiIGwyDlv6wvmgxUtVKMQqUF4Ywsl1TdP4om2k,148968
85
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv,sha256=pHyrVFIEa7NSOQ3OxmgnkrNkajJWW8K3-ioGHfMfMyU,10000
86
+ PyMieSim/validation_data/pymiescatt/validation_coreshell.csv,sha256=HhaPQ15pK4OCFeug3V0Vz7vjIybWf13998qvBI6EWGE,14708
87
+ PyMieSim/validation_data/pymiescatt/example_sphere_1.csv,sha256=E2Z2k6Xvd0vmT9kgqUJWD97KueArfuv8kPkfdNcP1bE,148966
88
+ PyMieSim/validation_data/pymiescatt/example_sphere_2.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
89
+ PyMieSim/validation_data/pymiescatt/example_sphere_0.csv,sha256=C6pSBduyWNxf3xHmGyciANQQ_ZgATdO8l18rkmjlaRw,8967
90
+ PyMieSim/validation_data/pymiescatt/example_shpere_2.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
91
+ PyMieSim/validation_data/pymiescatt/example_sphere_3.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
92
+ PyMieSim/validation_data/pymiescatt/validation_Qsca.csv,sha256=EH2Nwi8UFRbltHu-ErURw0tJHDthnLD3k8nCcbN6law,20000
93
+ PyMieSim/validation_data/pymiescatt/validation_sphere.csv,sha256=FwaMumImKQN8sDPNi_sq79ccGfcXTYb-YUu4eNhL3ck,142747
94
+ PyMieSim/validation_data/pymiescatt/example_shpere_0.csv,sha256=C6pSBduyWNxf3xHmGyciANQQ_ZgATdO8l18rkmjlaRw,8967
95
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv,sha256=0S5USnRpPkT-3jSFFUh-RvjjrE-8EauLKLvt_r7M0D4,10000
96
+ PyMieSim/validation_data/pymiescatt/example_coreshell_1.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
97
+ PyMieSim/validation_data/pymiescatt/example_coreshell_0.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
98
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv,sha256=655BTGdcxmA4lBd2V_51YRGjiRzihl2ISxAC_JGRa-M,20000
99
+ PyMieSim/validation_data/bohren_huffman/figure_87.csv,sha256=h4Rk4DSjQSTfq-BYfXYP51MBwBfygfOePqDhrHk6xkY,40000
100
+ PyMieSim/validation_data/bohren_huffman/figure_88.csv,sha256=SimTnjZ-13-ovY0MmYKvgjqXuCIwhFE8crjaN_iNrEs,40000
101
+ PyMieSim/validation_data/bohren_huffman/figure_810.csv,sha256=KCea8BeVm3LBw8tbKWVQf18EiE6tOtQFKEs4fs4jxDk,9828
102
+ pymiesim.libs/libgomp-a34b3233.so.1.0.0,sha256=On6uznIxkRvi-7Gz58tMtcLg-E4MK7c3OUcrWh_uyME,168193
103
+ pymiesim.libs/libgfortran-040039e1.so.5.0.0,sha256=FK-zEpsai1C8QKOwggx_EVLqm8EBIaqxUpQ_cFdHKIY,2686065
104
+ pymiesim.libs/libquadmath-96973f99.so.0.0.0,sha256=k0wi3tDn0WnE1GeIdslgUa3z2UVF2pYvYLQWWbB12js,247609
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 0.11.5
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-manylinux_2_17_x86_64
5
+ Tag: cp313-cp313-manylinux2014_x86_64
6
+
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Martin Poinsinet de Sivry-Houle
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
Binary file