surface-ion 1.0.3.dev2__tar.gz → 1.0.5__tar.gz
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.
- {surface-ion-1.0.3.dev2/surface_ion.egg-info → surface_ion-1.0.5}/PKG-INFO +11 -4
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/readme.md +9 -2
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/setup.cfg +1 -1
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/setup.py +2 -2
- surface_ion-1.0.5/sion/__init__.py +7 -0
- surface_ion-1.0.5/sion/sion.py +3191 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5/surface_ion.egg-info}/PKG-INFO +11 -4
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/surface_ion.egg-info/SOURCES.txt +2 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/surface_ion.egg-info/requires.txt +1 -1
- surface_ion-1.0.5/surface_ion.egg-info/top_level.txt +1 -0
- surface-ion-1.0.3.dev2/surface_ion.egg-info/top_level.txt +0 -1
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/LICENSE +0 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/MANIFEST.in +0 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/surface_ion.egg-info/dependency_links.txt +0 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/tests/FiveWireSimulation.py +0 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/tests/RingSimulation.py +0 -0
- {surface-ion-1.0.3.dev2 → surface_ion-1.0.5}/tests/stability.ipynb +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: surface-ion
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Python package for simulation and analysis of ion crystals in surface traps.
|
|
5
5
|
Home-page: https://github.com/underforestaaa/Sion
|
|
6
6
|
Author: Artem Podlesnyy
|
|
@@ -19,7 +19,7 @@ Requires-Dist: cython>=3.0.1
|
|
|
19
19
|
Requires-Dist: jinja2>=2.9.6
|
|
20
20
|
Requires-Dist: scipy>=1.12.1
|
|
21
21
|
Requires-Dist: scikit-optimize>=0.10.2
|
|
22
|
-
Requires-Dist: matplotlib>=3.
|
|
22
|
+
Requires-Dist: matplotlib>=3.0.2
|
|
23
23
|
Requires-Dist: gdspy>=1.6.13
|
|
24
24
|
Requires-Dist: shapely>=2.0.6
|
|
25
25
|
Requires-Dist: tqdm>=4.66.6
|
|
@@ -45,11 +45,13 @@ The newest version may be installed via pip:
|
|
|
45
45
|
*Sion* works with surface traps, defined through the *electrode* package. The simulation of ion dynamics is carried through the *pylion* environment.
|
|
46
46
|
All functions, presented in *Sion* are described in example notebooks. Main file *sion.py* contains docs for each function.
|
|
47
47
|
|
|
48
|
-
To publish the results, obtained with *Sion*,
|
|
48
|
+
To publish the results, obtained with *Sion*, we kindly ask you to cite the following article:
|
|
49
49
|
1. [Surface trap with adjustable ion couplings for scalable and parallel gates](https://journals.aps.org/pra/abstract/10.1103/PhysRevA.109.022605)
|
|
50
50
|
|
|
51
|
+
Free software: MIT license
|
|
51
52
|
|
|
52
53
|
## Features
|
|
54
|
+
|
|
53
55
|
* Simulation of ion motion in arbitrary polygon and point electrode surface trap.
|
|
54
56
|
* Optimization and simulation of arbitrary ion shuttling in polygon traps.
|
|
55
57
|
* Calculation of normal modes for general case of 1D, 2D, 3D mixed species ion crystals with arbitrary set of ions' secular frequencies.
|
|
@@ -66,4 +68,9 @@ To publish the results, obtained with *Sion*, the following articles should be c
|
|
|
66
68
|
|
|
67
69
|
* 'tests': verifications and tests of *Sion* work.
|
|
68
70
|
|
|
69
|
-
|
|
71
|
+
## Possible issues
|
|
72
|
+
|
|
73
|
+
* The following error may occur from trying to execute simulation two times without restarting the kernel. It is specific to IPython IDEs (Jupyter, spyder). The error source is in pylion package, and will be resolved by restarting the kernel.
|
|
74
|
+
|
|
75
|
+
<code>SimulationError: There are identical 'uids'. Although this is allowed in some cases, 'lammps' is probably not going to like it.</code>
|
|
76
|
+
|
|
@@ -18,11 +18,13 @@ The newest version may be installed via pip:
|
|
|
18
18
|
*Sion* works with surface traps, defined through the *electrode* package. The simulation of ion dynamics is carried through the *pylion* environment.
|
|
19
19
|
All functions, presented in *Sion* are described in example notebooks. Main file *sion.py* contains docs for each function.
|
|
20
20
|
|
|
21
|
-
To publish the results, obtained with *Sion*,
|
|
21
|
+
To publish the results, obtained with *Sion*, we kindly ask you to cite the following article:
|
|
22
22
|
1. [Surface trap with adjustable ion couplings for scalable and parallel gates](https://journals.aps.org/pra/abstract/10.1103/PhysRevA.109.022605)
|
|
23
23
|
|
|
24
|
+
Free software: MIT license
|
|
24
25
|
|
|
25
26
|
## Features
|
|
27
|
+
|
|
26
28
|
* Simulation of ion motion in arbitrary polygon and point electrode surface trap.
|
|
27
29
|
* Optimization and simulation of arbitrary ion shuttling in polygon traps.
|
|
28
30
|
* Calculation of normal modes for general case of 1D, 2D, 3D mixed species ion crystals with arbitrary set of ions' secular frequencies.
|
|
@@ -39,4 +41,9 @@ To publish the results, obtained with *Sion*, the following articles should be c
|
|
|
39
41
|
|
|
40
42
|
* 'tests': verifications and tests of *Sion* work.
|
|
41
43
|
|
|
42
|
-
|
|
44
|
+
## Possible issues
|
|
45
|
+
|
|
46
|
+
* The following error may occur from trying to execute simulation two times without restarting the kernel. It is specific to IPython IDEs (Jupyter, spyder). The error source is in pylion package, and will be resolved by restarting the kernel.
|
|
47
|
+
|
|
48
|
+
<code>SimulationError: There are identical 'uids'. Although this is allowed in some cases, 'lammps' is probably not going to like it.</code>
|
|
49
|
+
|
|
@@ -18,7 +18,7 @@ requirements = [
|
|
|
18
18
|
'jinja2>=2.9.6',
|
|
19
19
|
'scipy>=1.12.1',
|
|
20
20
|
'scikit-optimize>=0.10.2',
|
|
21
|
-
'matplotlib>=3.
|
|
21
|
+
'matplotlib>=3.0.2',
|
|
22
22
|
'gdspy>=1.6.13',
|
|
23
23
|
'shapely>=2.0.6',
|
|
24
24
|
'tqdm>=4.66.6'
|
|
@@ -30,7 +30,7 @@ short_description = (
|
|
|
30
30
|
|
|
31
31
|
setup(
|
|
32
32
|
name='surface-ion',
|
|
33
|
-
version='1.0.
|
|
33
|
+
version='1.0.5',
|
|
34
34
|
description=short_description,
|
|
35
35
|
long_description=readme,
|
|
36
36
|
long_description_content_type='text/markdown',
|