PyMieSim 3.5.4.1__cp311-cp311-macosx_14_0_arm64.whl → 3.5.4.3__cp311-cp311-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 (30) 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_scatterer.cpython-310-darwin.so +0 -0
  5. PyMieSim/binary/interface_scatterer.cpython-311-darwin.so +0 -0
  6. PyMieSim/binary/interface_sets.cpython-310-darwin.so +0 -0
  7. PyMieSim/binary/interface_sets.cpython-311-darwin.so +0 -0
  8. PyMieSim/binary/libcpp_coordinates.a +0 -0
  9. PyMieSim/binary/libcpp_detector.a +0 -0
  10. PyMieSim/binary/libcpp_experiment.a +0 -0
  11. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  12. PyMieSim/binary/libcpp_mode_field.a +0 -0
  13. PyMieSim/binary/libcpp_sets.a +0 -0
  14. PyMieSim/binary/libcpp_source.a +0 -0
  15. PyMieSim/experiment/scatterer/base.py +8 -2
  16. PyMieSim/experiment/scatterer/core_shell.py +11 -8
  17. PyMieSim/experiment/scatterer/cylinder.py +8 -7
  18. PyMieSim/experiment/scatterer/sphere.py +8 -7
  19. PyMieSim/experiment/source/gaussian.py +13 -14
  20. PyMieSim/experiment/source/planewave.py +15 -16
  21. {PyMieSim/binary → lib}/libZBessel.a +0 -0
  22. {PyMieSim/binary → lib}/lib_ZBessel.a +0 -0
  23. {PyMieSim/binary → lib}/libcpp_base_scatterer.a +0 -0
  24. {PyMieSim/binary → lib}/libcpp_coreshell.a +0 -0
  25. {PyMieSim/binary → lib}/libcpp_cylinder.a +0 -0
  26. {PyMieSim/binary → lib}/libcpp_sphere.a +0 -0
  27. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/METADATA +2 -2
  28. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/RECORD +30 -30
  29. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/WHEEL +0 -0
  30. {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=HextC8KDUIf6gchwfQ6LVKxqG5EqB97SIF71bsxoA1k,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,43 +58,39 @@ 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_experiment.cpython-311-darwin.so,sha256=ZYR0Asnh4bKtRVz7N-fiac4rQunvw_HAo0HzPKYJm6U,473360
70
- PyMieSim/binary/libcpp_cylinder.a,sha256=NkOP-m0uVsUDLW9ejV2-Qg8bmcuI2nFXkUR2evHqrIQ,165024
71
- PyMieSim/binary/libcpp_coordinates.a,sha256=L9EfMUc2xbMbbLC7BIDYeStDkam-ec6q9oqOLkLpHOo,22432
72
- PyMieSim/binary/libcpp_source.a,sha256=Ul02IjODjve8qjOoMQGsNM02HjOtlLrRI7hpTAXuyOo,6720
74
+ PyMieSim/binary/libcpp_coordinates.a,sha256=3RSuMCRJSfct5Ryo2I9_0d4D6jk67TrBwmHl1SySTFw,22432
75
+ PyMieSim/binary/libcpp_source.a,sha256=QzLzdZJ5sTMAqiuhymNGEuF9YFZPXrPgKvLcjndcHKU,6720
73
76
  PyMieSim/binary/interface_experiment.cpython-310-darwin.so,sha256=UCgdLZHrbVmEZ432PUrIHE8P8lAlM_IDyx0hEZqd3nU,456752
74
- PyMieSim/binary/libcpp_sphere.a,sha256=RiG4zsdj3hjnjaoVwGKglQRxQcQyBPURcJD0BERFj1Y,175040
75
77
  PyMieSim/binary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- PyMieSim/binary/interface_detector.cpython-311-darwin.so,sha256=dF2k-Qb73SRJ4dIIfflq2TLhGGrpMahtc271RlxSIbQ,457200
78
+ PyMieSim/binary/interface_detector.cpython-311-darwin.so,sha256=EqTCLRbdgxAlJWAjzMSFZDqpZOyphvlkd6jV3TJNySE,440640
77
79
  PyMieSim/binary/interface_source.cpython-310-darwin.so,sha256=rpdCj8Y6nvkHYAgsvGPdpXw6Tuc5QJrEko0qyPz80hc,223664
78
- PyMieSim/binary/libcpp_fibonacci.a,sha256=qECZN4F03_db258VVete3UmGJUvPkh_eQY2ywmXNb_c,14160
79
- PyMieSim/binary/libZBessel.a,sha256=CnDTQMHD1uabDsJYgwM7U7sKqEjiliIfA1QkUwNR46M,106200
80
- PyMieSim/binary/interface_sets.cpython-310-darwin.so,sha256=mOuQ-k55bFh1pg15iLQSAp-C3Qiqh4cCyU1OiOYSqts,544672
81
- PyMieSim/binary/libcpp_experiment.a,sha256=1ZzKcONwMTwklEqpck42NM1swZPQXV8PTJzbKy67Bk0,152376
82
- PyMieSim/binary/lib_ZBessel.a,sha256=AqhW9XL12_GFzcc2F3agMwXbRDykW-_5CtBJzsz1e0c,9840
83
- PyMieSim/binary/libcpp_coreshell.a,sha256=mP9YgRjJM6Gh0hbIrNUsp0LR5CvbppnRDiiPj4N5YKo,174096
84
- PyMieSim/binary/libcpp_mode_field.a,sha256=Q-yiBOw9obpQGlK6eG2GPN-umnll8RiI7Voc1g75AmA,10960
85
- PyMieSim/binary/interface_scatterer.cpython-310-darwin.so,sha256=H-R0X3GCRQP6pJ8IRb9z2I8bj7ClPwg67fU-Vz4QH_0,541440
86
- PyMieSim/binary/interface_detector.cpython-310-darwin.so,sha256=GX9-2miDwhgx9MVT3swRE8355ma91HLuApi8skh96tc,457136
80
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=D8x2Yw9KNSNR7f411V975tJcXRwyQOBL4iwCsJ7qBIg,14160
81
+ PyMieSim/binary/interface_sets.cpython-310-darwin.so,sha256=BNlKN6BC7ORNSA8BugkD3RGHQHToa79lKOmbTrhoGhQ,544672
82
+ PyMieSim/binary/libcpp_experiment.a,sha256=Xwop-nbCEfUhQWXhhfm4aKRzPlhBuXr7CqUTF-fSb3Q,152376
83
+ PyMieSim/binary/libcpp_mode_field.a,sha256=V8TCe_o5rf02yowcSPxCrQ0HRRLi3QNT-qJkhXbVfBU,10960
84
+ PyMieSim/binary/interface_scatterer.cpython-310-darwin.so,sha256=RuIFRUL5za0Gs1m53KQgaY7_cC2qQCtXtMhVdPpYRlw,541440
85
+ PyMieSim/binary/interface_detector.cpython-310-darwin.so,sha256=1hHF3ya14-4IYVqsRt0IYMmGw4EHumGgG0bbDr_wE4s,440576
87
86
  PyMieSim/binary/interface_source.cpython-311-darwin.so,sha256=AM5oXZa5UaGwoir1IfrC8_kixE_72pTlvfQ2OSid-io,223664
88
- PyMieSim/binary/interface_sets.cpython-311-darwin.so,sha256=V8GFAnAN4bVp8nNgFVuDJMtfT5UKoOGedlLtVxWovL8,544784
89
- PyMieSim/binary/libcpp_base_scatterer.a,sha256=XyIVSnaMmidouux10N9foZdS5NR8jWVVcK3zawqrCqE,176032
90
- PyMieSim/binary/libcpp_sets.a,sha256=qdNMNC3P8JgY9FgnkaTNmtUeCmiggoa6l68mBr7cl8M,152368
91
- PyMieSim/binary/interface_scatterer.cpython-311-darwin.so,sha256=RvQuN_omEsNGyiMg0wvTs728DbB3Lk4HRKn8uDLoU9Q,541504
92
- PyMieSim/binary/libcpp_detector.a,sha256=CI3qZAvXJjPFiiLGnGIgYwfi5L2FhalLuGlfjx0eHck,180536
93
- pymiesim-3.5.4.1.dist-info/RECORD,,
94
- pymiesim-3.5.4.1.dist-info/WHEEL,sha256=HextC8KDUIf6gchwfQ6LVKxqG5EqB97SIF71bsxoA1k,114
95
- pymiesim-3.5.4.1.dist-info/METADATA,sha256=lF-Jv_Pr0ijVs5CZmGwC_LF4dH68v33pIcICD6h1zMo,13472
96
- pymiesim-3.5.4.1.dist-info/licenses/LICENSE,sha256=-QSWDJghhVqbAzChmEK86liqPX_eeQFgdwlrKTLLcIA,1088
87
+ PyMieSim/binary/interface_sets.cpython-311-darwin.so,sha256=DtDLUpnG7LU484HBVYUatlFIkuN0l5dkMV1imd73hb8,544784
88
+ PyMieSim/binary/libcpp_sets.a,sha256=r5gZBc2fr9PzK9UCDMtugYb0zarqigTy8BDdmuErM9k,152368
89
+ PyMieSim/binary/interface_scatterer.cpython-311-darwin.so,sha256=Rrdyt7_zGTjggoAjay7LPquY9vYCh1-8ZaEMaCR_HDg,541488
90
+ PyMieSim/binary/libcpp_detector.a,sha256=ncBrMdmLi0AVFIT7HcuQfCkfasboq-2E8LwBY6PNayA,180536
91
+ lib/libcpp_cylinder.a,sha256=yKnzReIevJMnT97JGulf0gwcypPh3jBFmHe-4-o8T0o,165216
92
+ lib/libcpp_sphere.a,sha256=Dd93fCvg-lj_nFbMh-0TqTGLhhyk2Z-qGOOdUGU8CLk,175040
93
+ lib/libZBessel.a,sha256=SIa-Hdri7n5skbNaLFbR3E2BfymGBpPLsZFWHcWTX2g,106200
94
+ lib/lib_ZBessel.a,sha256=LRLxY6WRUSszh0lDeM_yakLrqA08QimkDHyUVHuC1xA,9840
95
+ lib/libcpp_coreshell.a,sha256=sTzeIFW2IGacOVNXqVNShJ5svdTEU3ciXyUCLkJfPKg,174096
96
+ lib/libcpp_base_scatterer.a,sha256=YrENJmF2lWRpgNybvN30YL2qBwhw3jDoErLXnosdBSE,176032