qrotor 4.5.0__tar.gz → 4.5.1__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.

Potentially problematic release.


This version of qrotor might be problematic. Click here for more details.

Files changed (26) hide show
  1. {qrotor-4.5.0 → qrotor-4.5.1}/PKG-INFO +1 -1
  2. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/_version.py +1 -1
  3. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/systems.py +11 -4
  4. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor.egg-info/PKG-INFO +1 -1
  5. {qrotor-4.5.0 → qrotor-4.5.1}/LICENSE +0 -0
  6. {qrotor-4.5.0 → qrotor-4.5.1}/README.md +0 -0
  7. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/__init__.py +0 -0
  8. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/constants.py +0 -0
  9. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/plot.py +0 -0
  10. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/potential.py +0 -0
  11. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/rotation.py +0 -0
  12. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/solve.py +0 -0
  13. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor/system.py +1 -1
  14. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor.egg-info/SOURCES.txt +0 -0
  15. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor.egg-info/dependency_links.txt +0 -0
  16. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor.egg-info/requires.txt +0 -0
  17. {qrotor-4.5.0 → qrotor-4.5.1}/qrotor.egg-info/top_level.txt +0 -0
  18. {qrotor-4.5.0 → qrotor-4.5.1}/setup.cfg +0 -0
  19. {qrotor-4.5.0 → qrotor-4.5.1}/setup.py +0 -0
  20. {qrotor-4.5.0 → qrotor-4.5.1}/tests/__init__.py +0 -0
  21. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_constants.py +0 -0
  22. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_potential.py +0 -0
  23. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_rotation.py +0 -0
  24. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_solve.py +0 -0
  25. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_system.py +0 -0
  26. {qrotor-4.5.0 → qrotor-4.5.1}/tests/test_systems.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qrotor
3
- Version: 4.5.0
3
+ Version: 4.5.1
4
4
  Summary: QRotor
5
5
  Author: Pablo Gila-Herranz
6
6
  Author-email: pgila001@ikasle.ehu.eus
@@ -11,5 +11,5 @@ https://semver.org/
11
11
  ---
12
12
  """
13
13
 
14
- __version__ = "v4.5.0"
14
+ __version__ = "v4.5.1"
15
15
 
@@ -288,6 +288,7 @@ def summary(
288
288
  """
289
289
  print('--------------------')
290
290
  systems = as_list(systems)
291
+
291
292
  for system in systems:
292
293
  dictionary = system.summary()
293
294
  if verbose:
@@ -299,10 +300,16 @@ def summary(
299
300
  if len(system.eigenvalues) > 6:
300
301
  eigenvalues = eigenvalues[:6]
301
302
  extra = '...'
302
- print('comment ' + str(system.comment))
303
- print('B ' + str(system.B))
304
- print('eigenvalues ' + str([float(round(e, 4)) for e in eigenvalues]) + extra)
305
- print('version ' + str(system.version))
303
+ print('comment ' + str(system.comment))
304
+ print('ZPE ' + str(system.eigenvalues[0]))
305
+ print('E activation ' + str(system.E_activation))
306
+ print('V max ' + str(system.potential_max))
307
+ print('1st splitting ' + str(system.splittings[0]))
308
+ print('1st excitation ' + str(system.excitations[0]))
309
+ print('B ' + str(system.B))
310
+ print('eigenvalues ' + str([float(round(e, 4)) for e in eigenvalues]) + extra)
311
+ print('tags ' + str(system.tags))
312
+ print('version ' + str(system.version))
306
313
  print('--------------------')
307
314
  return None
308
315
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qrotor
3
- Version: 4.5.0
3
+ Version: 4.5.1
4
4
  Summary: QRotor
5
5
  Author: Pablo Gila-Herranz
6
6
  Author-email: pgila001@ikasle.ehu.eus
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -212,10 +212,10 @@ class System:
212
212
  return {
213
213
  'version': self.version,
214
214
  'comment': self.comment,
215
+ 'tags': self.tags,
215
216
  'searched_E': self.searched_E,
216
217
  'correct_potential_offset': self.correct_potential_offset,
217
218
  'save_eigenvectors': self.save_eigenvectors,
218
- 'tags': self.tags,
219
219
  'B': self.B,
220
220
  'gridsize': self.gridsize,
221
221
  'potential_name': self.potential_name,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes