PyMieSim 3.6.0__cp313-cp313-macosx_14_0_arm64.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 (106) hide show
  1. PyMieSim/.dylibs/libgcc_s.1.1.dylib +0 -0
  2. PyMieSim/.dylibs/libgfortran.5.dylib +0 -0
  3. PyMieSim/.dylibs/libgomp.1.dylib +0 -0
  4. PyMieSim/.dylibs/libquadmath.0.dylib +0 -0
  5. PyMieSim/.dylibs/libstdc++.6.dylib +0 -0
  6. PyMieSim/__init__.py +16 -0
  7. PyMieSim/__main__.py +9 -0
  8. PyMieSim/_version.py +21 -0
  9. PyMieSim/binary/__init__.py +0 -0
  10. PyMieSim/binary/interface_detector.cpython-310-darwin.so +0 -0
  11. PyMieSim/binary/interface_detector.cpython-311-darwin.so +0 -0
  12. PyMieSim/binary/interface_detector.cpython-312-darwin.so +0 -0
  13. PyMieSim/binary/interface_detector.cpython-313-darwin.so +0 -0
  14. PyMieSim/binary/interface_experiment.cpython-310-darwin.so +0 -0
  15. PyMieSim/binary/interface_experiment.cpython-311-darwin.so +0 -0
  16. PyMieSim/binary/interface_experiment.cpython-312-darwin.so +0 -0
  17. PyMieSim/binary/interface_experiment.cpython-313-darwin.so +0 -0
  18. PyMieSim/binary/interface_scatterer.cpython-310-darwin.so +0 -0
  19. PyMieSim/binary/interface_scatterer.cpython-311-darwin.so +0 -0
  20. PyMieSim/binary/interface_scatterer.cpython-312-darwin.so +0 -0
  21. PyMieSim/binary/interface_scatterer.cpython-313-darwin.so +0 -0
  22. PyMieSim/binary/interface_sets.cpython-310-darwin.so +0 -0
  23. PyMieSim/binary/interface_sets.cpython-311-darwin.so +0 -0
  24. PyMieSim/binary/interface_sets.cpython-312-darwin.so +0 -0
  25. PyMieSim/binary/interface_sets.cpython-313-darwin.so +0 -0
  26. PyMieSim/binary/interface_source.cpython-310-darwin.so +0 -0
  27. PyMieSim/binary/interface_source.cpython-311-darwin.so +0 -0
  28. PyMieSim/binary/interface_source.cpython-312-darwin.so +0 -0
  29. PyMieSim/binary/interface_source.cpython-313-darwin.so +0 -0
  30. PyMieSim/binary/libcpp_coordinates.a +0 -0
  31. PyMieSim/binary/libcpp_detector.a +0 -0
  32. PyMieSim/binary/libcpp_experiment.a +0 -0
  33. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  34. PyMieSim/binary/libcpp_mode_field.a +0 -0
  35. PyMieSim/binary/libcpp_sets.a +0 -0
  36. PyMieSim/binary/libcpp_source.a +0 -0
  37. PyMieSim/directories.py +31 -0
  38. PyMieSim/experiment/__init__.py +1 -0
  39. PyMieSim/experiment/dataframe_subclass.py +220 -0
  40. PyMieSim/experiment/detector/__init__.py +2 -0
  41. PyMieSim/experiment/detector/base.py +169 -0
  42. PyMieSim/experiment/detector/coherent_mode.py +50 -0
  43. PyMieSim/experiment/detector/photodiode.py +52 -0
  44. PyMieSim/experiment/scatterer/__init__.py +4 -0
  45. PyMieSim/experiment/scatterer/base.py +98 -0
  46. PyMieSim/experiment/scatterer/core_shell.py +82 -0
  47. PyMieSim/experiment/scatterer/cylinder.py +63 -0
  48. PyMieSim/experiment/scatterer/sphere.py +66 -0
  49. PyMieSim/experiment/setup.py +356 -0
  50. PyMieSim/experiment/source/__init__.py +2 -0
  51. PyMieSim/experiment/source/base.py +85 -0
  52. PyMieSim/experiment/source/gaussian.py +60 -0
  53. PyMieSim/experiment/source/planewave.py +69 -0
  54. PyMieSim/experiment/utils.py +132 -0
  55. PyMieSim/gui/__init__.py +0 -0
  56. PyMieSim/gui/helper.py +60 -0
  57. PyMieSim/gui/interface.py +136 -0
  58. PyMieSim/gui/section.py +606 -0
  59. PyMieSim/mesh.py +368 -0
  60. PyMieSim/polarization.py +174 -0
  61. PyMieSim/single/__init__.py +48 -0
  62. PyMieSim/single/detector/__init__.py +2 -0
  63. PyMieSim/single/detector/base.py +271 -0
  64. PyMieSim/single/detector/coherent.py +99 -0
  65. PyMieSim/single/detector/uncoherent.py +105 -0
  66. PyMieSim/single/representations.py +734 -0
  67. PyMieSim/single/scatterer/__init__.py +4 -0
  68. PyMieSim/single/scatterer/base.py +405 -0
  69. PyMieSim/single/scatterer/core_shell.py +126 -0
  70. PyMieSim/single/scatterer/cylinder.py +113 -0
  71. PyMieSim/single/scatterer/sphere.py +108 -0
  72. PyMieSim/single/source/__init__.py +3 -0
  73. PyMieSim/single/source/base.py +7 -0
  74. PyMieSim/single/source/gaussian.py +137 -0
  75. PyMieSim/single/source/planewave.py +97 -0
  76. PyMieSim/special_functions.py +81 -0
  77. PyMieSim/units.py +130 -0
  78. PyMieSim/validation_data/bohren_huffman/figure_810.csv +245 -0
  79. PyMieSim/validation_data/bohren_huffman/figure_87.csv +2 -0
  80. PyMieSim/validation_data/bohren_huffman/figure_88.csv +2 -0
  81. PyMieSim/validation_data/pymiescatt/example_coreshell_0.csv +41 -0
  82. PyMieSim/validation_data/pymiescatt/example_coreshell_1.csv +401 -0
  83. PyMieSim/validation_data/pymiescatt/example_shpere_0.csv +51 -0
  84. PyMieSim/validation_data/pymiescatt/example_shpere_1.csv +801 -0
  85. PyMieSim/validation_data/pymiescatt/example_shpere_2.csv +41 -0
  86. PyMieSim/validation_data/pymiescatt/example_shpere_3.csv +401 -0
  87. PyMieSim/validation_data/pymiescatt/example_sphere_0.csv +51 -0
  88. PyMieSim/validation_data/pymiescatt/example_sphere_1.csv +801 -0
  89. PyMieSim/validation_data/pymiescatt/example_sphere_2.csv +41 -0
  90. PyMieSim/validation_data/pymiescatt/example_sphere_3.csv +401 -0
  91. PyMieSim/validation_data/pymiescatt/validation_Qsca.csv +800 -0
  92. PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv +400 -0
  93. PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv +400 -0
  94. PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv +800 -0
  95. PyMieSim/validation_data/pymiescatt/validation_coreshell.csv +81 -0
  96. PyMieSim/validation_data/pymiescatt/validation_sphere.csv +801 -0
  97. lib/libZBessel.a +0 -0
  98. lib/lib_ZBessel.a +0 -0
  99. lib/libcpp_base_scatterer.a +0 -0
  100. lib/libcpp_coreshell.a +0 -0
  101. lib/libcpp_cylinder.a +0 -0
  102. lib/libcpp_sphere.a +0 -0
  103. pymiesim-3.6.0.dist-info/METADATA +246 -0
  104. pymiesim-3.6.0.dist-info/RECORD +106 -0
  105. pymiesim-3.6.0.dist-info/WHEEL +5 -0
  106. pymiesim-3.6.0.dist-info/licenses/LICENSE +21 -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,106 @@
1
+ PyMieSim/units.py,sha256=L7Trn8rW5d5AQK1_8I-XwaHGswXklupXs5wHgWQtJNQ,4224
2
+ PyMieSim/_version.py,sha256=eic-6Xs9-9wocSdGZ3Qt8lkpGHJbspTaUymbZDQfBkA,511
3
+ PyMieSim/directories.py,sha256=ohe9qvjwN0IJ7OpZHsD7LxKYGMLr4CC7xYUGgWgw-Rg,648
4
+ PyMieSim/__init__.py,sha256=ZRdkOFRqjkVCq0qQs4DHIFnAgkdtBr19gZaq1k6bzxw,453
5
+ PyMieSim/mesh.py,sha256=WcX_rXpWxH7WDniIqaG4rPC-pfDm4AG9ZAX-zI8GbhU,14566
6
+ PyMieSim/polarization.py,sha256=PP8ksfWeTOnW3IOGVsAe8L183pgqe5R-KKBF99nQhaU,5487
7
+ PyMieSim/special_functions.py,sha256=tC82qnTSpcNv0MFy5wZsVFwhbJKy_5tO8kBullijOaY,2093
8
+ PyMieSim/__main__.py,sha256=KO6-uwDgv95PHXlhpyIcyFX3qqddbI8HdQTsdqziz7g,237
9
+ PyMieSim/single/__init__.py,sha256=GqpWQIaAkruQ4d1fa_fI2Qf8b5TGNXRFdkuHoe8LsTc,2207
10
+ PyMieSim/single/representations.py,sha256=ThzTI0fQYhWC8LKHMLo17GOT3v6cSOa1n4iplNitn2A,29149
11
+ PyMieSim/single/source/__init__.py,sha256=zCiDBYIE0TdYbtQXPgfU70DNz7ZxqtENU_NvrThJpTg,93
12
+ PyMieSim/single/source/planewave.py,sha256=J2t78fseCthUzCLqjH1KD7H669kGwiyBxPjkChZXZMw,3586
13
+ PyMieSim/single/source/base.py,sha256=HKqsEVw7caNV7ev8OVNPi3zMHc4cgGuhH9s2XcgvgBw,124
14
+ PyMieSim/single/source/gaussian.py,sha256=vVZ7UVkhlm2KvsTOf2uVcm9rjgXISSs7sv798m9otp4,4849
15
+ PyMieSim/single/scatterer/__init__.py,sha256=2a9o-VHfqGloCEEbfIGSjLIIzWssRCt9W72AYvU2nSg,124
16
+ PyMieSim/single/scatterer/core_shell.py,sha256=fqhu2PooEUDo7Vnotio7_iz2stozC5i5XczP8vdOKMs,5074
17
+ PyMieSim/single/scatterer/base.py,sha256=CVVI8_nSgoF_BkEN0Fb_A61YHgMnKfOiKaKbe60NsD8,19701
18
+ PyMieSim/single/scatterer/sphere.py,sha256=NVBP9iUX0pAPWdi13xbMzgLfllDPCgvF5BuJuWfUUec,3847
19
+ PyMieSim/single/scatterer/cylinder.py,sha256=GNABjAb2csnWxANlIdJW7PhuuewJHMVAlzNmlfnz7eU,4062
20
+ PyMieSim/single/detector/uncoherent.py,sha256=DOqf5hU5ghEhj8IooC5uJX6pjMwNBveIr-FzcWkgTLk,4848
21
+ PyMieSim/single/detector/__init__.py,sha256=os2BbDrnjrEZ3-gie6AKJAZHyE_I4OvKo0uuDEKqpE0,89
22
+ PyMieSim/single/detector/base.py,sha256=2nKXdx-8ycg1Xm02rxV4TJIAHbQWHCOR-9T32byf5zs,11319
23
+ PyMieSim/single/detector/coherent.py,sha256=FDUSkWvoCvicKEhCGpfExucfMpRutfs0oppVgJfJpPg,5306
24
+ PyMieSim/.dylibs/libstdc++.6.dylib,sha256=S8J6btzPSCOCt6wC-ZML_6U4vsNte2gBHAhAzvgwkyQ,3371520
25
+ PyMieSim/.dylibs/libgfortran.5.dylib,sha256=KXSiOwTI1oxQEj42-n_6xp3Z-sEN01Q0KuL6Nm2ykKI,1901520
26
+ PyMieSim/.dylibs/libquadmath.0.dylib,sha256=oPIr8ShqhXo3K4LcXFhVmqTffKNaVYfb5DrzpBYZbX0,363936
27
+ PyMieSim/.dylibs/libgcc_s.1.1.dylib,sha256=9fqjUPdAuQTI2tsDNryOX6ncpInUHr2j8C67VncDm30,183040
28
+ PyMieSim/.dylibs/libgomp.1.dylib,sha256=7v76J9Q8vRpTLl4OE83e9_jGrv3hvwofbUoNf4ip8Os,422096
29
+ PyMieSim/validation_data/pymiescatt/validation_coreshell.csv,sha256=HhaPQ15pK4OCFeug3V0Vz7vjIybWf13998qvBI6EWGE,14708
30
+ PyMieSim/validation_data/pymiescatt/validation_sphere.csv,sha256=FwaMumImKQN8sDPNi_sq79ccGfcXTYb-YUu4eNhL3ck,142747
31
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv,sha256=655BTGdcxmA4lBd2V_51YRGjiRzihl2ISxAC_JGRa-M,20000
32
+ PyMieSim/validation_data/pymiescatt/example_sphere_2.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
33
+ PyMieSim/validation_data/pymiescatt/example_sphere_3.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
34
+ PyMieSim/validation_data/pymiescatt/example_sphere_1.csv,sha256=E2Z2k6Xvd0vmT9kgqUJWD97KueArfuv8kPkfdNcP1bE,148966
35
+ PyMieSim/validation_data/pymiescatt/example_sphere_0.csv,sha256=C6pSBduyWNxf3xHmGyciANQQ_ZgATdO8l18rkmjlaRw,8967
36
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv,sha256=pHyrVFIEa7NSOQ3OxmgnkrNkajJWW8K3-ioGHfMfMyU,10000
37
+ PyMieSim/validation_data/pymiescatt/validation_Qsca.csv,sha256=EH2Nwi8UFRbltHu-ErURw0tJHDthnLD3k8nCcbN6law,20000
38
+ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv,sha256=0S5USnRpPkT-3jSFFUh-RvjjrE-8EauLKLvt_r7M0D4,10000
39
+ PyMieSim/validation_data/pymiescatt/example_shpere_2.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
40
+ PyMieSim/validation_data/pymiescatt/example_shpere_3.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
41
+ PyMieSim/validation_data/pymiescatt/example_shpere_1.csv,sha256=4nycDmiIGwyDlv6wvmgxUtVKMQqUF4Ywsl1TdP4om2k,148968
42
+ PyMieSim/validation_data/pymiescatt/example_shpere_0.csv,sha256=C6pSBduyWNxf3xHmGyciANQQ_ZgATdO8l18rkmjlaRw,8967
43
+ PyMieSim/validation_data/pymiescatt/example_coreshell_1.csv,sha256=pbg_mzehlkPp7eNtR2cymiakILiFaJw8Mi3FPZS-S-I,64484
44
+ PyMieSim/validation_data/pymiescatt/example_coreshell_0.csv,sha256=GtMZdqgC1wGVToufToE47jle_pcq2QMdzf-9vLvEcUc,6483
45
+ PyMieSim/validation_data/bohren_huffman/figure_810.csv,sha256=KCea8BeVm3LBw8tbKWVQf18EiE6tOtQFKEs4fs4jxDk,9828
46
+ PyMieSim/validation_data/bohren_huffman/figure_88.csv,sha256=SimTnjZ-13-ovY0MmYKvgjqXuCIwhFE8crjaN_iNrEs,40000
47
+ PyMieSim/validation_data/bohren_huffman/figure_87.csv,sha256=h4Rk4DSjQSTfq-BYfXYP51MBwBfygfOePqDhrHk6xkY,40000
48
+ PyMieSim/gui/interface.py,sha256=NVTd4c1PtykyW3cAWZErWqBgkaaO1tMrlNH1X-QxN2Q,4813
49
+ PyMieSim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ PyMieSim/gui/section.py,sha256=VcuMYvcedd67vplGeisXnmCg1mjnTaRP4mzdnX8u60w,21095
51
+ PyMieSim/gui/helper.py,sha256=VYkVS5G4AZ0gAqyC-IhQdyoi_CshoAp5lv8O3D8ORlk,2545
52
+ PyMieSim/experiment/__init__.py,sha256=HC_SUtzoeyD8mnFZrRieEZ47wHftgIdYKorXKLVFrEo,45
53
+ PyMieSim/experiment/setup.py,sha256=_dt2urIwClCKiKWJjgF4kNOB98gTj1XLNMSPf3KGYOU,13294
54
+ PyMieSim/experiment/utils.py,sha256=H4KkYMN33NSm9nwman0vk-umW9ecMsPKujQ4zkctMzc,5380
55
+ PyMieSim/experiment/dataframe_subclass.py,sha256=qPD_XW8x4WApQFdNOHJHt-Mc3BoT1b9y28dWmpZxccU,7174
56
+ PyMieSim/experiment/source/__init__.py,sha256=tAfSmMqMTem6-obvbOHD2YK7l4UDh1g-20t789_1Ihw,64
57
+ PyMieSim/experiment/source/planewave.py,sha256=62RHOHCuTj0LrZ_0IAmLSiVyYyPRvRnLfBQIbdI0gwo,2480
58
+ PyMieSim/experiment/source/base.py,sha256=QDe7CTQVQthI0KDmvLET4-5kxbv7ESuplmiU2Ubn1LM,3104
59
+ PyMieSim/experiment/source/gaussian.py,sha256=DRkap4C9vHHV85yE6Cj2qM3MsoZbNdX_wSilBRParE4,2331
60
+ PyMieSim/experiment/scatterer/__init__.py,sha256=_19R38S6LSGuuFRRPTFK1Lv2jaSoFk6O1V7CdwdhLXo,124
61
+ PyMieSim/experiment/scatterer/core_shell.py,sha256=4VbxS6Evcz5sjNlB3wtMTdScXCPLHov87Vr3HNlH-AQ,3470
62
+ PyMieSim/experiment/scatterer/base.py,sha256=3hesoH2tNh2JtyOSSefU7Jl1WWjVpf8-QFmM1IfaR6Q,3879
63
+ PyMieSim/experiment/scatterer/sphere.py,sha256=tPZMCfrGlttVh6W2kJSLxzz1zvKEQNC7CmVk5yIaBSM,2845
64
+ PyMieSim/experiment/scatterer/cylinder.py,sha256=yr8fJsX-tj5HaCqxQOd4UccUxvWylZRgHXhXTL4tflE,2538
65
+ PyMieSim/experiment/detector/photodiode.py,sha256=GBSoF3mhVRyADJbEO2g4n0LffmGU7HOc5gDGF-ojgLQ,1850
66
+ PyMieSim/experiment/detector/coherent_mode.py,sha256=ME1CtxUfPY40E3HJoqJrW0ikje6QvhMY4RYs-yOvx0Q,1805
67
+ PyMieSim/experiment/detector/__init__.py,sha256=pvtXHKR2pM7JOeTTcouKipeQwi0e8dZiZTpdAn9K2Ls,75
68
+ PyMieSim/experiment/detector/base.py,sha256=j2yY_InLQDAPgDkM19ILlIEF-2koGMKRe9Hc-nFpyGc,7340
69
+ PyMieSim/binary/interface_source.cpython-312-darwin.so,sha256=CQ8wPJrzmwAW9nnbhMUQD4KIpSSCuWP7kXfHDAoqBqY,240624
70
+ PyMieSim/binary/interface_detector.cpython-313-darwin.so,sha256=_J_R1Z8lu8dfS0zLtzU7m1dOKISoApLKjPo5GoFwXlA,492592
71
+ PyMieSim/binary/interface_experiment.cpython-311-darwin.so,sha256=j-bh2Ec8tOKyVRCQwgYr5L5Xi4LWUJUFamhlT7N5vf4,491584
72
+ PyMieSim/binary/interface_sets.cpython-312-darwin.so,sha256=OvqbheIrBafqIkepmA92exYqyQh_LvYngm7InIJ3M5s,595968
73
+ PyMieSim/binary/interface_scatterer.cpython-312-darwin.so,sha256=YskPBQa5MBPGHkxIRZ5pQ_m3_5YMQKixbn97JIxMePA,576512
74
+ PyMieSim/binary/libcpp_coordinates.a,sha256=JF0rPWiu7e4IvItQgWMAZ1s-8uYHsJI2vTc76yHcdxo,22432
75
+ PyMieSim/binary/interface_source.cpython-313-darwin.so,sha256=fIG-_MNdIlDlA01hhBWpUNxCKOTTK66yhHiIiU2IQ1U,240864
76
+ PyMieSim/binary/interface_detector.cpython-312-darwin.so,sha256=zb-Fd5xUJ8boMJ-hrYYj-HmwaURdymcSfs00GBtTSlY,492336
77
+ PyMieSim/binary/libcpp_source.a,sha256=eCtn6C7ikdkcVKHYMjA5fbjZvErko1JiyUGjRv6PU4U,6720
78
+ PyMieSim/binary/interface_experiment.cpython-310-darwin.so,sha256=4fBEUHQlYLuesrGM45q23MiGDHJ2SC6D6OyuFhS1kT8,474976
79
+ PyMieSim/binary/interface_sets.cpython-313-darwin.so,sha256=khK4bZiYVH795MWaDKlHSLgNHqegeOC_w6O9f-NLB2E,596256
80
+ PyMieSim/binary/interface_scatterer.cpython-313-darwin.so,sha256=xgx7mGN20uy_u4WGOHyXZRLnrQORe17o0k3vdlHwn9c,576752
81
+ PyMieSim/binary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
+ PyMieSim/binary/interface_detector.cpython-311-darwin.so,sha256=lh_RCWgRN4R1wKI3q-tWLtC_8666eV09V3H0qafR0q8,492336
83
+ PyMieSim/binary/interface_source.cpython-310-darwin.so,sha256=WKhrAqfJWndYN1ACTmjnD7W4qHu0OPZiE4kK7Zu-de0,240624
84
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=JV1VxGz_S_jn4S-ov6oDJ3eaw7AXVISG1HxSaXhr2p8,14160
85
+ PyMieSim/binary/interface_sets.cpython-310-darwin.so,sha256=67faOdm74RVKsEq-bRptcZTtagRfYbSdRkAW9njxtJ0,579360
86
+ PyMieSim/binary/libcpp_experiment.a,sha256=A8LnPFH62-Xy48vb-WWDaT7FgfGqhRV1gJcCeWtGYoY,172960
87
+ PyMieSim/binary/interface_experiment.cpython-313-darwin.so,sha256=p_N_r_jKmN1_wKuumGD25cIFXQh6rXZZGQ15aHjB_cg,491824
88
+ PyMieSim/binary/libcpp_mode_field.a,sha256=1JYKKeZ6sCW-07MdudTk3hldvvGPT3Nzwx2Y8Xna6SM,10960
89
+ PyMieSim/binary/interface_scatterer.cpython-310-darwin.so,sha256=UdqKQyH0KUkGlW1PIz891BnfDiUQ08QqHRDcDQda4MI,559936
90
+ PyMieSim/binary/interface_detector.cpython-310-darwin.so,sha256=Cm8QqjfgCodblQQfRTFgh9kTxYMmS-D55E_w7ND4N9o,475776
91
+ PyMieSim/binary/interface_source.cpython-311-darwin.so,sha256=8ZwlKEMALhwE8u7vvSH_LlEpimsPcQtB8BnubLyKW0M,240624
92
+ PyMieSim/binary/interface_sets.cpython-311-darwin.so,sha256=4rRbWfSR1jQ1cF328qHIfYZN1em6sJMr3pbGw9wHALo,579440
93
+ PyMieSim/binary/interface_experiment.cpython-312-darwin.so,sha256=suJQTGXWhS5aJb9xYpQQi23CY3vrVqmiLUTbp0867kE,491584
94
+ PyMieSim/binary/libcpp_sets.a,sha256=2rL9-8odQvPPPVgGUHqd_GNWoMug8RNfoaJQnQ6Ut9o,172952
95
+ PyMieSim/binary/interface_scatterer.cpython-311-darwin.so,sha256=W9qVZz9zvi4cRU_GgqMMQnxsx6KhKQ5cx3IaUxynYI8,576512
96
+ PyMieSim/binary/libcpp_detector.a,sha256=w7m6xRYURit3o8XwvlkHzC6SapbE2ABewVFBWlosLwI,200264
97
+ pymiesim-3.6.0.dist-info/RECORD,,
98
+ pymiesim-3.6.0.dist-info/WHEEL,sha256=_wdnp6N2S4se9FSmG8Grxw-01KRCMKjjAi2kFwM0M4I,114
99
+ pymiesim-3.6.0.dist-info/METADATA,sha256=NLH1cmL-XPL5EVHrCZuT_ZTIbYMT-jqEMJlNV92L1PQ,9530
100
+ pymiesim-3.6.0.dist-info/licenses/LICENSE,sha256=-QSWDJghhVqbAzChmEK86liqPX_eeQFgdwlrKTLLcIA,1088
101
+ lib/libcpp_cylinder.a,sha256=D1mbpyUi7ZBzDRkTYhFgNUxGWGRxiCnU9pFW3lC0aj8,187992
102
+ lib/libcpp_sphere.a,sha256=8-x7Wcupbo6FYIKKCW_MnUXjBcefKJj2LtpkXD-s6vM,196984
103
+ lib/libZBessel.a,sha256=rmEdAOjcB6LZ_55VI2OYc65c77Qq_1ACbI0Ff-Pfjlw,106200
104
+ lib/lib_ZBessel.a,sha256=Mz8WmHrnFGKmImtue_1xjpbzJhgM7PSxlt26r6PQYU8,9840
105
+ lib/libcpp_coreshell.a,sha256=uy4HmHTRWHnR4h0a9Vbb1tORgqOYUSNCPHXvS1_r68U,196296
106
+ lib/libcpp_base_scatterer.a,sha256=9hVprMKB3BKaEJOAcbUfKw1vdgOaB6EQ-aCu2Qa7lMM,197136
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 0.11.5
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-macosx_14_0_arm64
5
+
@@ -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.