PyMieSim 3.5.4.1__cp310-cp310-win_amd64.whl → 3.5.4.3__cp310-cp310-win_amd64.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 (29) hide show
  1. PyMieSim/_version.py +2 -2
  2. PyMieSim/binary/interface_detector.cp310-win_amd64.pyd +0 -0
  3. PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd +0 -0
  4. PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd +0 -0
  5. PyMieSim/binary/interface_sets.cp310-win_amd64.pyd +0 -0
  6. PyMieSim/binary/interface_source.cp310-win_amd64.pyd +0 -0
  7. PyMieSim/binary/libcpp_coordinates.a +0 -0
  8. PyMieSim/binary/libcpp_detector.a +0 -0
  9. PyMieSim/binary/libcpp_experiment.a +0 -0
  10. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  11. PyMieSim/binary/libcpp_mode_field.a +0 -0
  12. PyMieSim/binary/libcpp_sets.a +0 -0
  13. PyMieSim/binary/libcpp_source.a +0 -0
  14. PyMieSim/experiment/scatterer/base.py +8 -2
  15. PyMieSim/experiment/scatterer/core_shell.py +11 -8
  16. PyMieSim/experiment/scatterer/cylinder.py +8 -7
  17. PyMieSim/experiment/scatterer/sphere.py +8 -7
  18. PyMieSim/experiment/source/gaussian.py +13 -14
  19. PyMieSim/experiment/source/planewave.py +15 -16
  20. {PyMieSim/binary → lib}/libZBessel.a +0 -0
  21. {PyMieSim/binary → lib}/lib_ZBessel.a +0 -0
  22. {PyMieSim/binary → lib}/libcpp_base_scatterer.a +0 -0
  23. {PyMieSim/binary → lib}/libcpp_coreshell.a +0 -0
  24. {PyMieSim/binary → lib}/libcpp_cylinder.a +0 -0
  25. {PyMieSim/binary → lib}/libcpp_sphere.a +0 -0
  26. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/METADATA +2 -2
  27. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/RECORD +29 -29
  28. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/WHEEL +0 -0
  29. {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,25 +1,25 @@
1
+ lib/lib_ZBessel.a,sha256=VnqIXli9K9pfkldxnep2bB897rSdeh9BdJc2mgmzAIw,10676
2
+ lib/libcpp_base_scatterer.a,sha256=YobPrrig-o6FKlB0C2mOtJZ1f_umNUASo7z-RySBBKg,275118
3
+ lib/libcpp_coreshell.a,sha256=yg9hVrqxIzaaqUfgO1Ls4oHhBWVPRMpW9b-BYkqFnOY,278146
4
+ lib/libcpp_cylinder.a,sha256=DIt2Tf5ZQ1PQ5Xe_FzZ3fHrCuyq739UaBwjoXTYFas4,259476
5
+ lib/libcpp_sphere.a,sha256=st6T-gs_-S1sG5kHRO_ORK8it5YboCoNfut9Xvg5tB4,272358
6
+ lib/libZBessel.a,sha256=5xbNMpsEK0WE1Pt_hruOuoAtcQoGmkmc0XvXIHwTSBw,133174
1
7
  PyMieSim/__init__.py,sha256=ATPcasYo6e8DbNhyXGPN8lRhB_mcOGvNV-kO82U9Z5k,260
2
8
  PyMieSim/__main__.py,sha256=ZSJaGgDhOSzpwPZLLrqyzu6JH5nO7KPHblCD8OMuF4A,180
3
- PyMieSim/_version.py,sha256=no67bqIZ7U0SY30SeIkHz3M6tQ_4IwM-0f1BbFh5Dvk,537
9
+ PyMieSim/_version.py,sha256=SPA2ARbwEu3rmTOQ07I3xcu74m_6fSX88nf8mSfbM_U,537
4
10
  PyMieSim/binary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- PyMieSim/binary/interface_detector.cp310-win_amd64.pyd,sha256=klJpzOdaz8ih08zNVsC_DKCj_WKYvydHUtTDVQgGyxg,760320
6
- PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd,sha256=BvG0JmNR5cqOFeEtn492vrEaNYKECmi589TlqrYI_Ss,797696
7
- PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd,sha256=H7y81yytawszv-dxw251Ykztl2NDYR83kp2-Bi_wYQo,1175040
8
- PyMieSim/binary/interface_sets.cp310-win_amd64.pyd,sha256=GkO1fCeHP2gLRESisKqykLkfq1Ev8iDaooGwgqDUaVk,1178624
9
- PyMieSim/binary/interface_source.cp310-win_amd64.pyd,sha256=OGQAke7_uqolHMSoD_FgzCt6DujXsXvV05efx9AgsEQ,539648
10
- PyMieSim/binary/lib_ZBessel.a,sha256=3g-LmCKMzD8tI-K30Fi3h9i7wLEfyR2TZFxRuIDm3UM,10676
11
- PyMieSim/binary/libcpp_base_scatterer.a,sha256=wji07UZo5tpYBH-4oYBM8C73fEH-H4NStuiQhLWYlgE,275118
12
- PyMieSim/binary/libcpp_coordinates.a,sha256=GxaUGeUl_1ooJZ-YeHxw7e2BH68awetukkly5JAs1-c,23506
13
- PyMieSim/binary/libcpp_coreshell.a,sha256=3C9hHgRx5IQmqT9y_R-Liug9qeW0WN1J-w8xDZ3Upvo,278108
14
- PyMieSim/binary/libcpp_cylinder.a,sha256=b39FZjboH7oZU2QVkesC1udGE8lSAynmyXfCOFUGPzE,259012
15
- PyMieSim/binary/libcpp_detector.a,sha256=VkoRoNjDxZBC3EVxfK7iolzc_4DwwGjjVw2347noOKQ,280566
16
- PyMieSim/binary/libcpp_experiment.a,sha256=uhVGHOHGd-7hZzRmHljG-y-9zcSL44Yd3kghybJggr4,238940
17
- PyMieSim/binary/libcpp_fibonacci.a,sha256=VvIqrsyv5AOJ7SvWokB4jp70-TNA8OlESEzE7g732Pk,16808
18
- PyMieSim/binary/libcpp_mode_field.a,sha256=9QCBCbTPh69tEWKiL9TPu1srh18hENYh-pGPKQxEIh8,13388
19
- PyMieSim/binary/libcpp_sets.a,sha256=sK0yKvjHLJzSDLIP5_DEiU15bmBAgp-mcOFjk9tfGpQ,238854
20
- PyMieSim/binary/libcpp_source.a,sha256=H8e0xSX750_zJtFoK1Np_lBZeGHmwjtYwFSpX_V80sY,4070
21
- PyMieSim/binary/libcpp_sphere.a,sha256=S3gEQCkLF9LcozWcvcv6rEDoNj8JR2seTU3__ew58Zw,272324
22
- PyMieSim/binary/libZBessel.a,sha256=x0woMYGza1NnUFCBRGdCe2bqLtsB85sdKIUvjkN6zKM,133174
11
+ PyMieSim/binary/interface_detector.cp310-win_amd64.pyd,sha256=k_eFMo3StUEQDOdeIacs0DbZG4vwoZaxk-8RPsCyEVI,755712
12
+ PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd,sha256=XKfGab5bUHMZPVK_c5qNsVtRE9uE4NIArcCBFpZbLk0,797696
13
+ PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd,sha256=4Ot0KbxHCfRgTJKOJfPxWzpsM6FWdKyB5Vig0i6-2YE,1171968
14
+ PyMieSim/binary/interface_sets.cp310-win_amd64.pyd,sha256=_WVxNPVZkRnlhk_7LSaweouzs-giwNglHL42l-kGYBs,1178624
15
+ PyMieSim/binary/interface_source.cp310-win_amd64.pyd,sha256=yOLgbVBPeOKYZrENJDeUlEPnolzflrjjJgYLlGVAwgs,539648
16
+ PyMieSim/binary/libcpp_coordinates.a,sha256=G0ePnS04Tb3zN1VZyiR2WMyOqMy22B8b7hj3aAml7Jw,23506
17
+ PyMieSim/binary/libcpp_detector.a,sha256=QvZPm8DgpGhDvUngUB8_yzU0EC9jQqAU_iPJ9GaOWvc,280582
18
+ PyMieSim/binary/libcpp_experiment.a,sha256=VjJuxgXS7SRllm3PzVson0EhFf7xh6H6VsbsTBL0hK0,238940
19
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=xKmzrTtK6JGHhYzW_doMkEK_C8D2lkQe5uqzvFOpbsE,16808
20
+ PyMieSim/binary/libcpp_mode_field.a,sha256=XlEJisgBBb-Olg3kO0VuomVnFqu_WwH6IQZNahRiiCE,13388
21
+ PyMieSim/binary/libcpp_sets.a,sha256=97idX2JTjxrP8jEXqTNxc0YTNOzNrb4gWdfo2XM1olI,238854
22
+ PyMieSim/binary/libcpp_source.a,sha256=Tr3taFsPqyD7_pd02H075fIfzJJqaUkLn2_qrSMrSYg,4070
23
23
  PyMieSim/directories.py,sha256=x8nf0HACHDuny0YQ3sPnktY8aCKOA1RDvbDTSrerGN0,679
24
24
  PyMieSim/experiment/__init__.py,sha256=3W7RgRQ2wspQyhAsUUfd5oYx199lQbYv90Lf0A5Ypf4,46
25
25
  PyMieSim/experiment/dataframe_subclass.py,sha256=WVVbvLmdPaqgFU48f8Ua0-WOlNj-CDpK_tFNCDC5ixU,7394
@@ -28,15 +28,15 @@ PyMieSim/experiment/detector/base.py,sha256=R2kObUqhY1FicedybH7xn4DJu50-SdAWtHc2
28
28
  PyMieSim/experiment/detector/coherent_mode.py,sha256=5bnQ0j22R5-6ALR9_3wseF01JOiSk9iii2opvcsaQpc,1855
29
29
  PyMieSim/experiment/detector/photodiode.py,sha256=Hpw9Nxo19QUV-r31LCuEl2-EOgUPDEbkbOVB0zPyw8s,1902
30
30
  PyMieSim/experiment/scatterer/__init__.py,sha256=Daf3HTH5jA5Br5R3hb0NQSVZAz5NpaiedGUQG1bYtkU,128
31
- PyMieSim/experiment/scatterer/base.py,sha256=8ZInPzjBpwOsC13L7oAZ6dD9ISHcWLRSzAbX3gKCxfY,3849
32
- PyMieSim/experiment/scatterer/core_shell.py,sha256=OO5-Rg5WKmsFCi1JoMR134WO-bHXQLz8nVRa11TT3YA,3327
33
- PyMieSim/experiment/scatterer/cylinder.py,sha256=FiPeZROIiDmLgGekLK5y0kTHvTnxh6oGJ1m59NA-Kmc,2511
34
- PyMieSim/experiment/scatterer/sphere.py,sha256=rM0miEr8qIht8HO3zSvh3a8pvCyjIn8QghlF82DpVYo,2821
31
+ PyMieSim/experiment/scatterer/base.py,sha256=3wKHLeOnXIXNK9ZE8-q0vNVjeYP2pJV4191DuGSfRuQ,3977
32
+ PyMieSim/experiment/scatterer/core_shell.py,sha256=2HQI285zd63hY0DaDNUwyeOEaDaE5DX3dF9WG9SyhRU,3552
33
+ PyMieSim/experiment/scatterer/cylinder.py,sha256=bpypSsx23WAOx9FEdnkepJI0tfIKBbUndXR7DDjktHw,2601
34
+ PyMieSim/experiment/scatterer/sphere.py,sha256=hiv8rXTm-7BEhE0d48jX9KvSoaxiD1KkmNaC7O9J5sM,2911
35
35
  PyMieSim/experiment/setup.py,sha256=bNbiKh77TX94qKBhDP9PBjE5WZ6b_uQXMK-7R5CrrBI,13649
36
36
  PyMieSim/experiment/source/__init__.py,sha256=QOwlP9wBNAlQA3dmH-g8mNpb2qu5hFdlD_zkmw88Q8w,66
37
37
  PyMieSim/experiment/source/base.py,sha256=bkIM2UDO8APBi6MPWWGrapkSqddQBmiCScJ3Y2Q741c,3189
38
- PyMieSim/experiment/source/gaussian.py,sha256=glmSVMXMJqZ4VDWGjp31wpmTX0eXx_p4MrqWjUEAWxE,2354
39
- PyMieSim/experiment/source/planewave.py,sha256=qMr3T-RBWjmLJD4ep6ofPwHa9YurOm65Ja85tSopb4Q,2557
38
+ PyMieSim/experiment/source/gaussian.py,sha256=00FAe2dHDefDNFr-nh3yA9P4dvtoVfdQmDI36G6wdLI,2390
39
+ PyMieSim/experiment/source/planewave.py,sha256=rZtCS_fOk--WzUg8tz7e5QwHZy_3N9KS-QP4jgo6gXI,2548
40
40
  PyMieSim/experiment/utils.py,sha256=pVdLsLYACnOt1aKPmLO9qLC9I2a9paN4ypMF3TIaaGA,5512
41
41
  PyMieSim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  PyMieSim/gui/helper.py,sha256=GWrG91CBVgMruvwvQbhfU_07ZhbIBkgAs3FwOvCPhe8,2605
@@ -80,7 +80,7 @@ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv,sha256=fW1pa
80
80
  PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv,sha256=khOJo3N54CqvrG9sxpuvvv5mZlcF3awOk738WHLougI,10400
81
81
  PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv,sha256=7PE_F3sLIKmKPhcoMUxeByZHw3lzDfc3TH9g9bh3Noo,20800
82
82
  PyMieSim/validation_data/pymiescatt/validation_sphere.csv,sha256=0VCbInLU-PcTMa8IOsGL9vBWYJ9tQ6FpMv3ApV8fQVY,143548
83
- pymiesim-3.5.4.1.dist-info/METADATA,sha256=lF-Jv_Pr0ijVs5CZmGwC_LF4dH68v33pIcICD6h1zMo,13472
84
- pymiesim-3.5.4.1.dist-info/WHEEL,sha256=Bg3xfVZCdvCQkqUyMs2y8LOfK6ua4a-d4Njc-PtQZvk,106
85
- pymiesim-3.5.4.1.dist-info/licenses/LICENSE,sha256=Iiz1zBIAocPfqqVpPTakp8OKXY9K5j4bIRbgaXy2iAE,1109
86
- pymiesim-3.5.4.1.dist-info/RECORD,,
83
+ pymiesim-3.5.4.3.dist-info/METADATA,sha256=3QF4Pz6lqkM-onxvKsHs4zMk7yLajZ-4mZx9uSpp8dM,13472
84
+ pymiesim-3.5.4.3.dist-info/WHEEL,sha256=Bg3xfVZCdvCQkqUyMs2y8LOfK6ua4a-d4Njc-PtQZvk,106
85
+ pymiesim-3.5.4.3.dist-info/licenses/LICENSE,sha256=Iiz1zBIAocPfqqVpPTakp8OKXY9K5j4bIRbgaXy2iAE,1109
86
+ pymiesim-3.5.4.3.dist-info/RECORD,,