PyMieSim 3.5.4.1__cp311-cp311-win_amd64.whl → 3.5.4.3__cp311-cp311-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 (34) hide show
  1. PyMieSim/_version.py +2 -2
  2. PyMieSim/binary/interface_detector.cp310-win_amd64.pyd +0 -0
  3. PyMieSim/binary/interface_detector.cp311-win_amd64.pyd +0 -0
  4. PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd +0 -0
  5. PyMieSim/binary/interface_experiment.cp311-win_amd64.pyd +0 -0
  6. PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd +0 -0
  7. PyMieSim/binary/interface_scatterer.cp311-win_amd64.pyd +0 -0
  8. PyMieSim/binary/interface_sets.cp310-win_amd64.pyd +0 -0
  9. PyMieSim/binary/interface_sets.cp311-win_amd64.pyd +0 -0
  10. PyMieSim/binary/interface_source.cp310-win_amd64.pyd +0 -0
  11. PyMieSim/binary/interface_source.cp311-win_amd64.pyd +0 -0
  12. PyMieSim/binary/libcpp_coordinates.a +0 -0
  13. PyMieSim/binary/libcpp_detector.a +0 -0
  14. PyMieSim/binary/libcpp_experiment.a +0 -0
  15. PyMieSim/binary/libcpp_fibonacci.a +0 -0
  16. PyMieSim/binary/libcpp_mode_field.a +0 -0
  17. PyMieSim/binary/libcpp_sets.a +0 -0
  18. PyMieSim/binary/libcpp_source.a +0 -0
  19. PyMieSim/experiment/scatterer/base.py +8 -2
  20. PyMieSim/experiment/scatterer/core_shell.py +11 -8
  21. PyMieSim/experiment/scatterer/cylinder.py +8 -7
  22. PyMieSim/experiment/scatterer/sphere.py +8 -7
  23. PyMieSim/experiment/source/gaussian.py +13 -14
  24. PyMieSim/experiment/source/planewave.py +15 -16
  25. {PyMieSim/binary → lib}/libZBessel.a +0 -0
  26. {PyMieSim/binary → lib}/lib_ZBessel.a +0 -0
  27. {PyMieSim/binary → lib}/libcpp_base_scatterer.a +0 -0
  28. {PyMieSim/binary → lib}/libcpp_coreshell.a +0 -0
  29. {PyMieSim/binary → lib}/libcpp_cylinder.a +0 -0
  30. {PyMieSim/binary → lib}/libcpp_sphere.a +0 -0
  31. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/METADATA +2 -2
  32. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/RECORD +34 -34
  33. {pymiesim-3.5.4.1.dist-info → pymiesim-3.5.4.3.dist-info}/WHEEL +0 -0
  34. {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,30 +1,30 @@
1
+ lib/lib_ZBessel.a,sha256=uxLcPLxfwAv-BtN1pUZrk_518fwlNZmb8MtbVs5W-_Y,10676
2
+ lib/libcpp_base_scatterer.a,sha256=sYK46ltptmCkP44u1vhWudqkMJJJprG5jAcO0ANMLFs,279546
3
+ lib/libcpp_coreshell.a,sha256=B7wRi20ed38cdMFRzyFWUoxEXL24ZA34uwO73dsRzPM,282444
4
+ lib/libcpp_cylinder.a,sha256=QsT1A5CIOSUrt0WOV09BGTJ_-X8zK3YYRwz-kf5eKDA,263650
5
+ lib/libcpp_sphere.a,sha256=XdDDAXCNo5R3YlvLfAo5ivRpLjDVRhtAVNg1MsGUzqQ,276626
6
+ lib/libZBessel.a,sha256=3Jzt91865HwdNarUQ2NkzKEB_hW2wyxto-vFLrTMbek,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_detector.cp311-win_amd64.pyd,sha256=dBxwHfmeP4R-s1Gmzle2ZIsbOeWkX48MtpVM8qiMeAo,763904
7
- PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd,sha256=BvG0JmNR5cqOFeEtn492vrEaNYKECmi589TlqrYI_Ss,797696
8
- PyMieSim/binary/interface_experiment.cp311-win_amd64.pyd,sha256=gwKwdYVv-co5LiSqHcqKo9azOG_i5AHvol-DrvVrIoA,801280
9
- PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd,sha256=H7y81yytawszv-dxw251Ykztl2NDYR83kp2-Bi_wYQo,1175040
10
- PyMieSim/binary/interface_scatterer.cp311-win_amd64.pyd,sha256=YQOxvvMocL0uKFZFuouaZH7GTlNxNBnCpvVLMedyqoA,1178624
11
- PyMieSim/binary/interface_sets.cp310-win_amd64.pyd,sha256=GkO1fCeHP2gLRESisKqykLkfq1Ev8iDaooGwgqDUaVk,1178624
12
- PyMieSim/binary/interface_sets.cp311-win_amd64.pyd,sha256=FPtOyGKaYJ704vW0-Q3wFImFAAlY8txU4Ssfc5gr5A0,1183232
13
- PyMieSim/binary/interface_source.cp310-win_amd64.pyd,sha256=OGQAke7_uqolHMSoD_FgzCt6DujXsXvV05efx9AgsEQ,539648
14
- PyMieSim/binary/interface_source.cp311-win_amd64.pyd,sha256=WBIJ8afgDUTMYqQI3rUiNVKlv_LskolBrR8s7TmUxis,542720
15
- PyMieSim/binary/lib_ZBessel.a,sha256=6ZWMmT-YKK5BT79fp76bd7aPC1Po07M2rZPUx8a1Crc,10676
16
- PyMieSim/binary/libcpp_base_scatterer.a,sha256=lgfmw2uMCaWazWJ_Cf00Wp_RKbj31Nn0yR5Z2ewO01o,279546
17
- PyMieSim/binary/libcpp_coordinates.a,sha256=FvceYaQccE04hwek3dUEFksAM5QZAdFxe-2ukILfBtY,23506
18
- PyMieSim/binary/libcpp_coreshell.a,sha256=XMeXlN0yEASXxrdCEzpM8EQlo-KHC884zavHXpTzkxE,282406
19
- PyMieSim/binary/libcpp_cylinder.a,sha256=yQwU5iUKb9382wrwIJZkGtNww3o4NFG9Ua75K371D_g,263716
20
- PyMieSim/binary/libcpp_detector.a,sha256=AW-n715jteC6mnrPz1QndXnHvCPVCUdcfoi-ifohtQc,285836
21
- PyMieSim/binary/libcpp_experiment.a,sha256=Hhk2EjN0t5O_nXEP-OgqP9UIT-qRdg5YNH9SMzUCngU,243680
22
- PyMieSim/binary/libcpp_fibonacci.a,sha256=7mR3Z5Mp50lSWx6-QxExaAPSUiiLlrbPXG9IVZTVizQ,16808
23
- PyMieSim/binary/libcpp_mode_field.a,sha256=_rdL--nt3JXoO_OyMfOIgGLO7VHYjEabHUZr1YhZUHM,13388
24
- PyMieSim/binary/libcpp_sets.a,sha256=ghNWPaKkrbe5j9d6IFJohVnJsM1AMBBX2beylkW8skM,243594
25
- PyMieSim/binary/libcpp_source.a,sha256=khFgtntv96QFXfes1Q9Yh6pADICDNVCJWkePKc6kjR0,4070
26
- PyMieSim/binary/libcpp_sphere.a,sha256=1uCnXyuROCss-zWWOhlz44VdMuBpTca5Yc_No5uF7SI,276592
27
- PyMieSim/binary/libZBessel.a,sha256=rMX2EZ29JMM7qyXQ69KwlooJRQBU_oiimiNktYHvozg,133174
11
+ PyMieSim/binary/interface_detector.cp310-win_amd64.pyd,sha256=k_eFMo3StUEQDOdeIacs0DbZG4vwoZaxk-8RPsCyEVI,755712
12
+ PyMieSim/binary/interface_detector.cp311-win_amd64.pyd,sha256=pulrHpr_y6wH7lwRM3J0kqocN2DMm6gu0AzhHJldzP0,758784
13
+ PyMieSim/binary/interface_experiment.cp310-win_amd64.pyd,sha256=XKfGab5bUHMZPVK_c5qNsVtRE9uE4NIArcCBFpZbLk0,797696
14
+ PyMieSim/binary/interface_experiment.cp311-win_amd64.pyd,sha256=0YOaqlzDhWpmBLPLC-33J0yVZzmggDVO2gZAY1_B2Lc,801280
15
+ PyMieSim/binary/interface_scatterer.cp310-win_amd64.pyd,sha256=4Ot0KbxHCfRgTJKOJfPxWzpsM6FWdKyB5Vig0i6-2YE,1171968
16
+ PyMieSim/binary/interface_scatterer.cp311-win_amd64.pyd,sha256=_8apNih_N2EFPeHLNsqS7VZyOPo6Ml5TizNvkXQhfzo,1176064
17
+ PyMieSim/binary/interface_sets.cp310-win_amd64.pyd,sha256=_WVxNPVZkRnlhk_7LSaweouzs-giwNglHL42l-kGYBs,1178624
18
+ PyMieSim/binary/interface_sets.cp311-win_amd64.pyd,sha256=Jlg7J9wyHGEvIvmpe74yA8J8Ihn6yMwXK2y_gUvvyYA,1183232
19
+ PyMieSim/binary/interface_source.cp310-win_amd64.pyd,sha256=yOLgbVBPeOKYZrENJDeUlEPnolzflrjjJgYLlGVAwgs,539648
20
+ PyMieSim/binary/interface_source.cp311-win_amd64.pyd,sha256=1jVMPboHJwMkz9RVrbTPxAUu6W2t-se1wLha3RGQyp8,542720
21
+ PyMieSim/binary/libcpp_coordinates.a,sha256=E4F9hV3J41fUaSIlLN-a7j22ASW2YDND7tRi5D4nKnk,23506
22
+ PyMieSim/binary/libcpp_detector.a,sha256=vSmKvEfnkSB1khvj-GFPhhN6Zsn5xuzU5Ndkz8kotd8,285852
23
+ PyMieSim/binary/libcpp_experiment.a,sha256=pxsLtCTxIARDmUKIqDsRfxuZCulfv9LvGrzqfbL5g5M,243680
24
+ PyMieSim/binary/libcpp_fibonacci.a,sha256=_paqbWq2cgH4JmhtakGeIeVA1A4zqhjEmVMijT_BCck,16808
25
+ PyMieSim/binary/libcpp_mode_field.a,sha256=08IniCnlib7aPk7uDnUeEz5W82TSOOiVsDGhKU9YgeQ,13388
26
+ PyMieSim/binary/libcpp_sets.a,sha256=sPfOgCsyY-hJlOQDHu-Xu7cPa_AXbwm9SqzI4JIWJCI,243594
27
+ PyMieSim/binary/libcpp_source.a,sha256=wxnwgxcxSBQIijlsOdPcYOUomA7E_b6-PCNFuJpH40Q,4070
28
28
  PyMieSim/directories.py,sha256=x8nf0HACHDuny0YQ3sPnktY8aCKOA1RDvbDTSrerGN0,679
29
29
  PyMieSim/experiment/__init__.py,sha256=3W7RgRQ2wspQyhAsUUfd5oYx199lQbYv90Lf0A5Ypf4,46
30
30
  PyMieSim/experiment/dataframe_subclass.py,sha256=WVVbvLmdPaqgFU48f8Ua0-WOlNj-CDpK_tFNCDC5ixU,7394
@@ -33,15 +33,15 @@ PyMieSim/experiment/detector/base.py,sha256=R2kObUqhY1FicedybH7xn4DJu50-SdAWtHc2
33
33
  PyMieSim/experiment/detector/coherent_mode.py,sha256=5bnQ0j22R5-6ALR9_3wseF01JOiSk9iii2opvcsaQpc,1855
34
34
  PyMieSim/experiment/detector/photodiode.py,sha256=Hpw9Nxo19QUV-r31LCuEl2-EOgUPDEbkbOVB0zPyw8s,1902
35
35
  PyMieSim/experiment/scatterer/__init__.py,sha256=Daf3HTH5jA5Br5R3hb0NQSVZAz5NpaiedGUQG1bYtkU,128
36
- PyMieSim/experiment/scatterer/base.py,sha256=8ZInPzjBpwOsC13L7oAZ6dD9ISHcWLRSzAbX3gKCxfY,3849
37
- PyMieSim/experiment/scatterer/core_shell.py,sha256=OO5-Rg5WKmsFCi1JoMR134WO-bHXQLz8nVRa11TT3YA,3327
38
- PyMieSim/experiment/scatterer/cylinder.py,sha256=FiPeZROIiDmLgGekLK5y0kTHvTnxh6oGJ1m59NA-Kmc,2511
39
- PyMieSim/experiment/scatterer/sphere.py,sha256=rM0miEr8qIht8HO3zSvh3a8pvCyjIn8QghlF82DpVYo,2821
36
+ PyMieSim/experiment/scatterer/base.py,sha256=3wKHLeOnXIXNK9ZE8-q0vNVjeYP2pJV4191DuGSfRuQ,3977
37
+ PyMieSim/experiment/scatterer/core_shell.py,sha256=2HQI285zd63hY0DaDNUwyeOEaDaE5DX3dF9WG9SyhRU,3552
38
+ PyMieSim/experiment/scatterer/cylinder.py,sha256=bpypSsx23WAOx9FEdnkepJI0tfIKBbUndXR7DDjktHw,2601
39
+ PyMieSim/experiment/scatterer/sphere.py,sha256=hiv8rXTm-7BEhE0d48jX9KvSoaxiD1KkmNaC7O9J5sM,2911
40
40
  PyMieSim/experiment/setup.py,sha256=bNbiKh77TX94qKBhDP9PBjE5WZ6b_uQXMK-7R5CrrBI,13649
41
41
  PyMieSim/experiment/source/__init__.py,sha256=QOwlP9wBNAlQA3dmH-g8mNpb2qu5hFdlD_zkmw88Q8w,66
42
42
  PyMieSim/experiment/source/base.py,sha256=bkIM2UDO8APBi6MPWWGrapkSqddQBmiCScJ3Y2Q741c,3189
43
- PyMieSim/experiment/source/gaussian.py,sha256=glmSVMXMJqZ4VDWGjp31wpmTX0eXx_p4MrqWjUEAWxE,2354
44
- PyMieSim/experiment/source/planewave.py,sha256=qMr3T-RBWjmLJD4ep6ofPwHa9YurOm65Ja85tSopb4Q,2557
43
+ PyMieSim/experiment/source/gaussian.py,sha256=00FAe2dHDefDNFr-nh3yA9P4dvtoVfdQmDI36G6wdLI,2390
44
+ PyMieSim/experiment/source/planewave.py,sha256=rZtCS_fOk--WzUg8tz7e5QwHZy_3N9KS-QP4jgo6gXI,2548
45
45
  PyMieSim/experiment/utils.py,sha256=pVdLsLYACnOt1aKPmLO9qLC9I2a9paN4ypMF3TIaaGA,5512
46
46
  PyMieSim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
47
  PyMieSim/gui/helper.py,sha256=GWrG91CBVgMruvwvQbhfU_07ZhbIBkgAs3FwOvCPhe8,2605
@@ -85,7 +85,7 @@ PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_1.csv,sha256=fW1pa
85
85
  PyMieSim/validation_data/pymiescatt/validation_Qsca_coreshell_2.csv,sha256=khOJo3N54CqvrG9sxpuvvv5mZlcF3awOk738WHLougI,10400
86
86
  PyMieSim/validation_data/pymiescatt/validation_Qsca_medium.csv,sha256=7PE_F3sLIKmKPhcoMUxeByZHw3lzDfc3TH9g9bh3Noo,20800
87
87
  PyMieSim/validation_data/pymiescatt/validation_sphere.csv,sha256=0VCbInLU-PcTMa8IOsGL9vBWYJ9tQ6FpMv3ApV8fQVY,143548
88
- pymiesim-3.5.4.1.dist-info/METADATA,sha256=lF-Jv_Pr0ijVs5CZmGwC_LF4dH68v33pIcICD6h1zMo,13472
89
- pymiesim-3.5.4.1.dist-info/WHEEL,sha256=snOjF3_Qdfl83AvEPF_jBYJIRsss89-Tk83TV05TAGs,106
90
- pymiesim-3.5.4.1.dist-info/licenses/LICENSE,sha256=Iiz1zBIAocPfqqVpPTakp8OKXY9K5j4bIRbgaXy2iAE,1109
91
- pymiesim-3.5.4.1.dist-info/RECORD,,
88
+ pymiesim-3.5.4.3.dist-info/METADATA,sha256=3QF4Pz6lqkM-onxvKsHs4zMk7yLajZ-4mZx9uSpp8dM,13472
89
+ pymiesim-3.5.4.3.dist-info/WHEEL,sha256=snOjF3_Qdfl83AvEPF_jBYJIRsss89-Tk83TV05TAGs,106
90
+ pymiesim-3.5.4.3.dist-info/licenses/LICENSE,sha256=Iiz1zBIAocPfqqVpPTakp8OKXY9K5j4bIRbgaXy2iAE,1109
91
+ pymiesim-3.5.4.3.dist-info/RECORD,,