PyMieSim 3.5.4.1__cp312-cp312-macosx_14_0_arm64.whl → 3.5.4.3__cp312-cp312-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 (33) hide show
  1. PyMieSim/_version.py +2 -2
  2. PyMieSim/binary/interface_detector.cpython-310-darwin.so +0 -0
  3. PyMieSim/binary/interface_detector.cpython-311-darwin.so +0 -0
  4. PyMieSim/binary/interface_detector.cpython-312-darwin.so +0 -0
  5. PyMieSim/binary/interface_scatterer.cpython-310-darwin.so +0 -0
  6. PyMieSim/binary/interface_scatterer.cpython-311-darwin.so +0 -0
  7. PyMieSim/binary/interface_scatterer.cpython-312-darwin.so +0 -0
  8. PyMieSim/binary/interface_sets.cpython-310-darwin.so +0 -0
  9. PyMieSim/binary/interface_sets.cpython-311-darwin.so +0 -0
  10. PyMieSim/binary/interface_sets.cpython-312-darwin.so +0 -0
  11. PyMieSim/binary/libcpp_coordinates.a +0 -0
  12. PyMieSim/binary/libcpp_detector.a +0 -0
  13. PyMieSim/binary/libcpp_experiment.a +0 -0
  14. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  15. PyMieSim/binary/libcpp_mode_field.a +0 -0
  16. PyMieSim/binary/libcpp_sets.a +0 -0
  17. PyMieSim/binary/libcpp_source.a +0 -0
  18. PyMieSim/experiment/scatterer/base.py +8 -2
  19. PyMieSim/experiment/scatterer/core_shell.py +11 -8
  20. PyMieSim/experiment/scatterer/cylinder.py +8 -7
  21. PyMieSim/experiment/scatterer/sphere.py +8 -7
  22. PyMieSim/experiment/source/gaussian.py +13 -14
  23. PyMieSim/experiment/source/planewave.py +15 -16
  24. {PyMieSim/binary → lib}/libZBessel.a +0 -0
  25. {PyMieSim/binary → lib}/lib_ZBessel.a +0 -0
  26. {PyMieSim/binary → lib}/libcpp_base_scatterer.a +0 -0
  27. {PyMieSim/binary → lib}/libcpp_coreshell.a +0 -0
  28. {PyMieSim/binary → lib}/libcpp_cylinder.a +0 -0
  29. {PyMieSim/binary → lib}/libcpp_sphere.a +0 -0
  30. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/METADATA +2 -2
  31. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/RECORD +33 -33
  32. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/WHEEL +0 -0
  33. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/licenses/LICENSE +0 -0
PyMieSim/_version.py CHANGED
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '3.5.4.1'
21
- __version_tuple__ = version_tuple = (3, 5, 4, 1)
20
+ __version__ = version = '3.5.4.3'
21
+ __version_tuple__ = version_tuple = (3, 5, 4, 3)
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -62,11 +62,17 @@ class BaseScatterer():
62
62
  CPPClass = CppMediumProperties if name == 'medium' else CppScattererProperties
63
63
 
64
64
  if all(isinstance(item, Quantity) for item in properties):
65
- self.binding_kwargs[f'{name}_properties'] = CPPClass(index_properties=properties.magnitude)
65
+ instance = CPPClass(index_properties=properties.magnitude)
66
+ self.binding_kwargs[f'{name}_properties'] = instance
67
+
68
+ return instance
66
69
 
67
70
  elif all(isinstance(item, BaseMaterial) for item in properties):
68
71
  eval_index = numpy.asarray([m.compute_refractive_index(self.source.wavelength.to_base_units().magnitude) for m in properties])
69
- self.binding_kwargs[f'{name}_properties'] = CPPClass(material_properties=eval_index)
72
+ instance = CPPClass(material_properties=eval_index)
73
+ self.binding_kwargs[f'{name}_properties'] = instance
74
+
75
+ return instance
70
76
 
71
77
  else:
72
78
  raise TypeError("All elements in the list must be of type 'Quantity' or 'BaseMaterial', not a mix of both.")
@@ -66,14 +66,17 @@ class CoreShell(BaseScatterer, Sequential):
66
66
  is_sequential=self.is_sequential
67
67
  )
68
68
 
69
- self._add_properties(name='medium', properties=self.medium_property)
69
+ mediun_properties = self._add_properties(name='medium', properties=self.medium_property)
70
70
 
71
- self._add_properties(name='core', properties=self.core_property)
71
+ core_properties = self._add_properties(name='core', properties=self.core_property)
72
72
 
73
- self._add_properties(name='shell', properties=self.shell_property)
73
+ shell_properties = self._add_properties(name='shell', properties=self.shell_property)
74
74
 
75
- binding_kwargs = {
76
- k: v.to_base_units().magnitude if isinstance(v, Quantity) else v for k, v in self.binding_kwargs.items()
77
- }
78
-
79
- self.binding = CppCoreShellSet(**binding_kwargs)
75
+ self.binding = CppCoreShellSet(
76
+ core_diameter=self.core_diameter.to('meter').magnitude,
77
+ shell_thickness=self.shell_thickness.to('meter').magnitude,
78
+ core_properties=core_properties,
79
+ shell_properties=shell_properties,
80
+ medium_properties=mediun_properties,
81
+ is_sequential=self.is_sequential,
82
+ )
@@ -51,12 +51,13 @@ class Cylinder(BaseScatterer, Sequential):
51
51
 
52
52
  self.binding_kwargs = dict(diameter=self.diameter, is_sequential=self.is_sequential)
53
53
 
54
- self._add_properties(name='medium', properties=self.medium_property)
54
+ mediun_properties = self._add_properties(name='medium', properties=self.medium_property)
55
55
 
56
- self._add_properties(name='scatterer', properties=self.property)
56
+ scatterer_properties = self._add_properties(name='scatterer', properties=self.property)
57
57
 
58
- binding_kwargs = {
59
- k: v.to_base_units().magnitude if isinstance(v, Quantity) else v for k, v in self.binding_kwargs.items()
60
- }
61
-
62
- self.binding = CppCylinderSet(**binding_kwargs)
58
+ self.binding = CppCylinderSet(
59
+ diameter=self.diameter.to('meter').magnitude,
60
+ scatterer_properties=scatterer_properties,
61
+ medium_properties=mediun_properties,
62
+ is_sequential=self.is_sequential,
63
+ )
@@ -54,12 +54,13 @@ class Sphere(BaseScatterer, Sequential):
54
54
 
55
55
  self.binding_kwargs = dict(diameter=self.diameter, is_sequential=self.is_sequential)
56
56
 
57
- self._add_properties(name='medium', properties=self.medium_property)
57
+ mediun_properties = self._add_properties(name='medium', properties=self.medium_property)
58
58
 
59
- self._add_properties(name='scatterer', properties=self.property)
59
+ scatterer_properties = self._add_properties(name='scatterer', properties=self.property)
60
60
 
61
- binding_kwargs = {
62
- k: v.to_base_units().magnitude if isinstance(v, Quantity) else v for k, v in self.binding_kwargs.items()
63
- }
64
-
65
- self.binding = CppSphereSet(**binding_kwargs)
61
+ self.binding = CppSphereSet(
62
+ diameter=self.diameter.to('meter').magnitude,
63
+ scatterer_properties=scatterer_properties,
64
+ medium_properties=mediun_properties,
65
+ is_sequential=self.is_sequential,
66
+ )
@@ -32,12 +32,17 @@ class Gaussian(BaseSource, Sequential):
32
32
  wavelength: Quantity
33
33
  polarization: Union[BasePolarization, Quantity]
34
34
 
35
- def _generate_binding_kwargs(self) -> None:
35
+ def _generate_binding(self) -> None:
36
36
  """
37
37
  Prepares the keyword arguments for the C++ binding based on the scatterer's properties. This
38
38
  involves evaluating material indices and organizing them into a dictionary for the C++ interface.
39
39
 
40
40
  """
41
+ self.mapping = {}
42
+
43
+ if not isinstance(self.polarization, BasePolarization):
44
+ self.polarization = Linear(self.polarization)
45
+
41
46
  self.binding_kwargs = dict(
42
47
  wavelength=self.wavelength,
43
48
  jones_vector=self.polarization.element,
@@ -46,16 +51,10 @@ class Gaussian(BaseSource, Sequential):
46
51
  is_sequential=self.is_sequential
47
52
  )
48
53
 
49
- def _generate_binding(self):
50
- self.mapping = {}
51
-
52
- if not isinstance(self.polarization, BasePolarization):
53
- self.polarization = Linear(self.polarization)
54
-
55
- self._generate_binding_kwargs()
56
-
57
- binding_kwargs = {
58
- k: v.to_base_units().magnitude if isinstance(v, Quantity) else v for k, v in self.binding_kwargs.items()
59
- }
60
-
61
- self.binding = CppGaussianSourceSet(**binding_kwargs)
54
+ self.binding = CppGaussianSourceSet(
55
+ wavelength=self.wavelength.to('meter').magnitude,
56
+ jones_vector=self.polarization.element,
57
+ NA=self.NA.to('dimensionless').magnitude,
58
+ optical_power=self.optical_power.to('watt').magnitude,
59
+ is_sequential=self.is_sequential
60
+ )
@@ -40,14 +40,20 @@ class PlaneWave(BaseSource, Sequential):
40
40
 
41
41
  return value
42
42
 
43
- def _generate_binding_kwargs(self) -> None:
43
+ def _generate_binding(self) -> None:
44
44
  """
45
45
  Prepares the keyword arguments for the C++ binding based on the scatterer's properties. This
46
46
  involves evaluating material indices and organizing them into a dictionary for the C++ interface.
47
47
 
48
- Returns:
49
- None
48
+ Returns
49
+ -------
50
+ None
50
51
  """
52
+ self.mapping = {}
53
+
54
+ if not isinstance(self.polarization, BasePolarization):
55
+ self.polarization = Linear(self.polarization)
56
+
51
57
  self.binding_kwargs = dict(
52
58
  wavelength=self.wavelength,
53
59
  jones_vector=self.polarization.element,
@@ -55,16 +61,9 @@ class PlaneWave(BaseSource, Sequential):
55
61
  is_sequential=self.is_sequential
56
62
  )
57
63
 
58
- def _generate_binding(self):
59
- self.mapping = {}
60
-
61
- if not isinstance(self.polarization, BasePolarization):
62
- self.polarization = Linear(self.polarization)
63
-
64
- self._generate_binding_kwargs()
65
-
66
- binding_kwargs = {
67
- k: v.to_base_units().magnitude if isinstance(v, Quantity) else v for k, v in self.binding_kwargs.items()
68
- }
69
-
70
- self.binding = CppPlaneWaveSourceSet(**binding_kwargs)
64
+ self.binding = CppPlaneWaveSourceSet(
65
+ wavelength=self.wavelength.to('meter').magnitude,
66
+ jones_vector=self.polarization.element,
67
+ amplitude=self.amplitude.to('volt/meter').magnitude,
68
+ is_sequential=self.is_sequential
69
+ )
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: PyMieSim
3
- Version: 3.5.4.1
3
+ Version: 3.5.4.3
4
4
  Summary: A package for light scattering computation.
5
5
  Keywords: mie,scattering,backscatter,sphere,cylinder,nanoparticle,phase function,efficiency,rayleigh,backscattering
6
6
  Author-Email: Martin Poinsinet de Sivry-Houle <martin.poinsinet.de.sivry@gmail.com>
@@ -61,7 +61,7 @@ Provides-Extra: testing
61
61
  Requires-Dist: pytest>=0.6; extra == "testing"
62
62
  Requires-Dist: pytest-cov>=2.0; extra == "testing"
63
63
  Requires-Dist: pytest-json-report==1.5.0; extra == "testing"
64
- Requires-Dist: coverage==7.8.2; extra == "testing"
64
+ Requires-Dist: coverage==7.9.1; extra == "testing"
65
65
  Provides-Extra: documentation
66
66
  Requires-Dist: numpydoc==1.8.0; extra == "documentation"
67
67
  Requires-Dist: sphinx>=5.1.1; extra == "documentation"
@@ -1,5 +1,9 @@
1
+ pymiesim-3.5.4.3.dist-info/RECORD,,
2
+ pymiesim-3.5.4.3.dist-info/WHEEL,sha256=I1cjv22AH4f535uJ7LXi2cB9hHnwWJJUjEcKzY-eyp0,114
3
+ pymiesim-3.5.4.3.dist-info/METADATA,sha256=3QF4Pz6lqkM-onxvKsHs4zMk7yLajZ-4mZx9uSpp8dM,13472
4
+ pymiesim-3.5.4.3.dist-info/licenses/LICENSE,sha256=-QSWDJghhVqbAzChmEK86liqPX_eeQFgdwlrKTLLcIA,1088
1
5
  PyMieSim/units.py,sha256=L7Trn8rW5d5AQK1_8I-XwaHGswXklupXs5wHgWQtJNQ,4224
2
- PyMieSim/_version.py,sha256=5Tapzkw5U6lFgs0XMplhd1DKg_j63IGqiiYAseYMB5I,516
6
+ PyMieSim/_version.py,sha256=l0lRbKiwIHWmY6kRcxAgchNaIBGY3lnaM0_Hpo0-dOI,516
3
7
  PyMieSim/directories.py,sha256=ohe9qvjwN0IJ7OpZHsD7LxKYGMLr4CC7xYUGgWgw-Rg,648
4
8
  PyMieSim/__init__.py,sha256=BGzl1hTX7-KoanQDm26IRHq6AmPFzVoIFcvOMfI0wQQ,249
5
9
  PyMieSim/mesh.py,sha256=WcX_rXpWxH7WDniIqaG4rPC-pfDm4AG9ZAX-zI8GbhU,14566
@@ -54,48 +58,44 @@ PyMieSim/experiment/setup.py,sha256=_dt2urIwClCKiKWJjgF4kNOB98gTj1XLNMSPf3KGYOU,
54
58
  PyMieSim/experiment/utils.py,sha256=H4KkYMN33NSm9nwman0vk-umW9ecMsPKujQ4zkctMzc,5380
55
59
  PyMieSim/experiment/dataframe_subclass.py,sha256=qPD_XW8x4WApQFdNOHJHt-Mc3BoT1b9y28dWmpZxccU,7174
56
60
  PyMieSim/experiment/source/__init__.py,sha256=tAfSmMqMTem6-obvbOHD2YK7l4UDh1g-20t789_1Ihw,64
57
- PyMieSim/experiment/source/planewave.py,sha256=lxUKI2NNV5WXEWRu0CTu-TK15juU4UovWsMTPyIMhv8,2488
61
+ PyMieSim/experiment/source/planewave.py,sha256=62RHOHCuTj0LrZ_0IAmLSiVyYyPRvRnLfBQIbdI0gwo,2480
58
62
  PyMieSim/experiment/source/base.py,sha256=QDe7CTQVQthI0KDmvLET4-5kxbv7ESuplmiU2Ubn1LM,3104
59
- PyMieSim/experiment/source/gaussian.py,sha256=hgtzhWQ41TNYNZyRv8kxIJ8YinGVHMXhN8qsQ71NoFo,2294
63
+ PyMieSim/experiment/source/gaussian.py,sha256=DRkap4C9vHHV85yE6Cj2qM3MsoZbNdX_wSilBRParE4,2331
60
64
  PyMieSim/experiment/scatterer/__init__.py,sha256=_19R38S6LSGuuFRRPTFK1Lv2jaSoFk6O1V7CdwdhLXo,124
61
- PyMieSim/experiment/scatterer/core_shell.py,sha256=SAlSDlaLqs7DpYMafv74BNIOHXyegJgchmlTvHHtiL4,3248
62
- PyMieSim/experiment/scatterer/base.py,sha256=sTbaoI0VKY8pbrbxns8p45iQJvqDRtQ5UFkvpd2X7yA,3757
63
- PyMieSim/experiment/scatterer/sphere.py,sha256=yapEd4t7iIZtEqkhA4EYANNYavw6skcv3wlwgltkpoI,2756
64
- PyMieSim/experiment/scatterer/cylinder.py,sha256=Ly4PvDME7W2cOdXO2rdgquCSxgjjkKNgma6FkkB9HkA,2449
65
+ PyMieSim/experiment/scatterer/core_shell.py,sha256=4VbxS6Evcz5sjNlB3wtMTdScXCPLHov87Vr3HNlH-AQ,3470
66
+ PyMieSim/experiment/scatterer/base.py,sha256=3hesoH2tNh2JtyOSSefU7Jl1WWjVpf8-QFmM1IfaR6Q,3879
67
+ PyMieSim/experiment/scatterer/sphere.py,sha256=tPZMCfrGlttVh6W2kJSLxzz1zvKEQNC7CmVk5yIaBSM,2845
68
+ PyMieSim/experiment/scatterer/cylinder.py,sha256=yr8fJsX-tj5HaCqxQOd4UccUxvWylZRgHXhXTL4tflE,2538
65
69
  PyMieSim/experiment/detector/photodiode.py,sha256=GBSoF3mhVRyADJbEO2g4n0LffmGU7HOc5gDGF-ojgLQ,1850
66
70
  PyMieSim/experiment/detector/coherent_mode.py,sha256=ME1CtxUfPY40E3HJoqJrW0ikje6QvhMY4RYs-yOvx0Q,1805
67
71
  PyMieSim/experiment/detector/__init__.py,sha256=pvtXHKR2pM7JOeTTcouKipeQwi0e8dZiZTpdAn9K2Ls,75
68
72
  PyMieSim/experiment/detector/base.py,sha256=j2yY_InLQDAPgDkM19ILlIEF-2koGMKRe9Hc-nFpyGc,7340
69
73
  PyMieSim/binary/interface_source.cpython-312-darwin.so,sha256=EPA191SxHTaPC-v4ZzW2iXise06LypOvWjV_fyIxbz4,222784
70
74
  PyMieSim/binary/interface_experiment.cpython-311-darwin.so,sha256=ZYR0Asnh4bKtRVz7N-fiac4rQunvw_HAo0HzPKYJm6U,473360
71
- PyMieSim/binary/interface_sets.cpython-312-darwin.so,sha256=XmDsmr4ih9YbB3v8kax8kOF18_2-mHBvqUXzBVG9Zy8,562016
72
- PyMieSim/binary/interface_scatterer.cpython-312-darwin.so,sha256=4aQszpDdd-jypCyK_OyoFRqjj-xThAy87eibRbZZRB0,542240
73
- PyMieSim/binary/libcpp_cylinder.a,sha256=R2WlNohO9SVu8ESPw4pcpdX0YDgHnMQKOvlL4R-GsMc,166144
74
- PyMieSim/binary/libcpp_coordinates.a,sha256=P2zNkoXHB3zmZc72bM7H0imhb6w1rq6OoMxEpJle3NI,22432
75
- PyMieSim/binary/interface_detector.cpython-312-darwin.so,sha256=DXLaIUZAK0EUaEhIBUsxjREcGMCx6hNaiXWZQLyU8is,457920
76
- PyMieSim/binary/libcpp_source.a,sha256=szn--4ycmkJKYjenq6lJVtXHnYLjFHrPWOxAVsVn0Ac,6720
75
+ PyMieSim/binary/interface_sets.cpython-312-darwin.so,sha256=IPe1pjrQtuy-UWNj1sN-zUlntXG_AV53jmTrZRM_i0M,562016
76
+ PyMieSim/binary/interface_scatterer.cpython-312-darwin.so,sha256=4ka3rTKssXXT2xjE_KEohF5yYqnZznjjve2ypz4r6c4,542224
77
+ PyMieSim/binary/libcpp_coordinates.a,sha256=wjIp7Qdi5I8veGDFyHm6HTGxmAplSfSXPonr-paIhvs,22432
78
+ PyMieSim/binary/interface_detector.cpython-312-darwin.so,sha256=OlnGovl3xddKkYQF1oQAZtt_aqIhnRcJvKMOdE-n9_E,457888
79
+ PyMieSim/binary/libcpp_source.a,sha256=hbASYGd_ZS4Lq9QqwH8Odn-LoddMeLvXW3HLHOM0VS8,6720
77
80
  PyMieSim/binary/interface_experiment.cpython-310-darwin.so,sha256=UCgdLZHrbVmEZ432PUrIHE8P8lAlM_IDyx0hEZqd3nU,456752
78
- PyMieSim/binary/libcpp_sphere.a,sha256=YsC8qahKE1_7Ggt2VFW146-fq-BwUByPiNJPgPLCr6M,179784
79
81
  PyMieSim/binary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
- PyMieSim/binary/interface_detector.cpython-311-darwin.so,sha256=dF2k-Qb73SRJ4dIIfflq2TLhGGrpMahtc271RlxSIbQ,457200
82
+ PyMieSim/binary/interface_detector.cpython-311-darwin.so,sha256=EqTCLRbdgxAlJWAjzMSFZDqpZOyphvlkd6jV3TJNySE,440640
81
83
  PyMieSim/binary/interface_source.cpython-310-darwin.so,sha256=rpdCj8Y6nvkHYAgsvGPdpXw6Tuc5QJrEko0qyPz80hc,223664
82
- PyMieSim/binary/libcpp_fibonacci.a,sha256=A7MPEgqA12hJjBgusRoDfY4Oto2zK1yTFUH_Ryp7_YY,14160
83
- PyMieSim/binary/libZBessel.a,sha256=MaQnrchO4EYJSTRXbaDcFTDzxTX2lbJOB4fjZAOSt1g,106200
84
- PyMieSim/binary/interface_sets.cpython-310-darwin.so,sha256=mOuQ-k55bFh1pg15iLQSAp-C3Qiqh4cCyU1OiOYSqts,544672
85
- PyMieSim/binary/libcpp_experiment.a,sha256=zNnf_CKYtBo3c3T46AuT0OzqvsrUInLVyu3mkgRZa1o,155272
86
- PyMieSim/binary/lib_ZBessel.a,sha256=9zNuAFlvMNKb0dviHEVbSWdRLmpLvbIKrOjNAcOQghY,9840
87
- PyMieSim/binary/libcpp_coreshell.a,sha256=MNFbkyj8YNr3h0Oxlw0Uj8LN-shfcWgPzG-M5Tc-PTc,178784
88
- PyMieSim/binary/libcpp_mode_field.a,sha256=-Rl5_Jy-HjtLGIcAq8PB8p9SU7tBi9pDFRkvz0B1tbA,10960
89
- PyMieSim/binary/interface_scatterer.cpython-310-darwin.so,sha256=H-R0X3GCRQP6pJ8IRb9z2I8bj7ClPwg67fU-Vz4QH_0,541440
90
- PyMieSim/binary/interface_detector.cpython-310-darwin.so,sha256=GX9-2miDwhgx9MVT3swRE8355ma91HLuApi8skh96tc,457136
84
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=IiCSX_ngsaFgmY19P9EThk8f8iWP3LVYGeXhfMvnfUM,14160
85
+ PyMieSim/binary/interface_sets.cpython-310-darwin.so,sha256=BNlKN6BC7ORNSA8BugkD3RGHQHToa79lKOmbTrhoGhQ,544672
86
+ PyMieSim/binary/libcpp_experiment.a,sha256=c8jFa5UewImQ6R8QkMU5m8IlbAd9i33_Ht9Nt2L5uRk,155272
87
+ PyMieSim/binary/libcpp_mode_field.a,sha256=z8HyrNHvMu7XwkYfXsLjf_iLq5mlBj-NkctVwxOfT5A,10960
88
+ PyMieSim/binary/interface_scatterer.cpython-310-darwin.so,sha256=RuIFRUL5za0Gs1m53KQgaY7_cC2qQCtXtMhVdPpYRlw,541440
89
+ PyMieSim/binary/interface_detector.cpython-310-darwin.so,sha256=1hHF3ya14-4IYVqsRt0IYMmGw4EHumGgG0bbDr_wE4s,440576
91
90
  PyMieSim/binary/interface_source.cpython-311-darwin.so,sha256=AM5oXZa5UaGwoir1IfrC8_kixE_72pTlvfQ2OSid-io,223664
92
- PyMieSim/binary/interface_sets.cpython-311-darwin.so,sha256=V8GFAnAN4bVp8nNgFVuDJMtfT5UKoOGedlLtVxWovL8,544784
91
+ PyMieSim/binary/interface_sets.cpython-311-darwin.so,sha256=DtDLUpnG7LU484HBVYUatlFIkuN0l5dkMV1imd73hb8,544784
93
92
  PyMieSim/binary/interface_experiment.cpython-312-darwin.so,sha256=KhGwhhLYjh5jNrV1wNzKq1Ka7idTaiEiR2q_nEY8Ntw,474096
94
- PyMieSim/binary/libcpp_base_scatterer.a,sha256=kS93fVMmIqv3pfeWM2Jan8I6IEzhmCrWxmPBFxq9TBQ,177280
95
- PyMieSim/binary/libcpp_sets.a,sha256=sAcnDx7MnZTd2wxICEdzxOPD-IqlDJgpmgXf-CLwqDc,155264
96
- PyMieSim/binary/interface_scatterer.cpython-311-darwin.so,sha256=RvQuN_omEsNGyiMg0wvTs728DbB3Lk4HRKn8uDLoU9Q,541504
97
- PyMieSim/binary/libcpp_detector.a,sha256=XovNNSP-A7vFg8Cq0J6byr5O6-HKMsnrh1Wlc9dSuyU,181528
98
- pymiesim-3.5.4.1.dist-info/RECORD,,
99
- pymiesim-3.5.4.1.dist-info/WHEEL,sha256=I1cjv22AH4f535uJ7LXi2cB9hHnwWJJUjEcKzY-eyp0,114
100
- pymiesim-3.5.4.1.dist-info/METADATA,sha256=lF-Jv_Pr0ijVs5CZmGwC_LF4dH68v33pIcICD6h1zMo,13472
101
- pymiesim-3.5.4.1.dist-info/licenses/LICENSE,sha256=-QSWDJghhVqbAzChmEK86liqPX_eeQFgdwlrKTLLcIA,1088
93
+ PyMieSim/binary/libcpp_sets.a,sha256=xv86-QtXIUKutygoT0fEPm7HTgL1cpPy46ocYVxXz7A,155264
94
+ PyMieSim/binary/interface_scatterer.cpython-311-darwin.so,sha256=Rrdyt7_zGTjggoAjay7LPquY9vYCh1-8ZaEMaCR_HDg,541488
95
+ PyMieSim/binary/libcpp_detector.a,sha256=UKOymAGFfUO2xq8ZdoEcNGTKefJuphZQaPj5rH0Y2is,181528
96
+ lib/libcpp_cylinder.a,sha256=WoVVi1XdHg6_GgBIHI5SVqWulo6gyQxNwMHnP9ScTiY,166352
97
+ lib/libcpp_sphere.a,sha256=OzZ_cqkpBc_-nmkYcPRyhhOlpYdF46d5LIIWIxl5BjM,179784
98
+ lib/libZBessel.a,sha256=JZ5TxQpVGGfHkRnBsdpAmXSgK02hmNDU_fjrSE9ifdk,106200
99
+ lib/lib_ZBessel.a,sha256=hcNAEFP7QbIp5eWb996uZ0XUrGwXlkHouQKDFcfDfwc,9840
100
+ lib/libcpp_coreshell.a,sha256=m4bT_fDACqEXrzFFbM9xgInkpBtoSt0UKt5PWmbeD-Q,178784
101
+ lib/libcpp_base_scatterer.a,sha256=lFJiyZ25aLlE8rqIdOtSat6EfdF5dsNkB6DhzV62fyU,177280