weac 2.6.3__tar.gz → 2.6.4__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.
Files changed (30) hide show
  1. {weac-2.6.3 → weac-2.6.4}/CITATION.cff +1 -1
  2. {weac-2.6.3/weac.egg-info → weac-2.6.4}/PKG-INFO +1 -1
  3. {weac-2.6.3 → weac-2.6.4}/pyproject.toml +2 -2
  4. {weac-2.6.3 → weac-2.6.4}/weac/__init__.py +1 -1
  5. {weac-2.6.3 → weac-2.6.4}/weac/mixins.py +5 -5
  6. {weac-2.6.3 → weac-2.6.4/weac.egg-info}/PKG-INFO +1 -1
  7. {weac-2.6.3 → weac-2.6.4}/LICENSE +0 -0
  8. {weac-2.6.3 → weac-2.6.4}/MANIFEST.in +0 -0
  9. {weac-2.6.3 → weac-2.6.4}/README.md +0 -0
  10. {weac-2.6.3 → weac-2.6.4}/img/bc.png +0 -0
  11. {weac-2.6.3 → weac-2.6.4}/img/layering.png +0 -0
  12. {weac-2.6.3 → weac-2.6.4}/img/logo.png +0 -0
  13. {weac-2.6.3 → weac-2.6.4}/img/model.png +0 -0
  14. {weac-2.6.3 → weac-2.6.4}/img/profiles.png +0 -0
  15. {weac-2.6.3 → weac-2.6.4}/img/systems.png +0 -0
  16. {weac-2.6.3 → weac-2.6.4}/setup.cfg +0 -0
  17. {weac-2.6.3 → weac-2.6.4}/tests/test_eigensystem.py +0 -0
  18. {weac-2.6.3 → weac-2.6.4}/tests/test_layered.py +0 -0
  19. {weac-2.6.3 → weac-2.6.4}/tests/test_mixins.py +0 -0
  20. {weac-2.6.3 → weac-2.6.4}/tests/test_plot.py +0 -0
  21. {weac-2.6.3 → weac-2.6.4}/tests/test_tools.py +0 -0
  22. {weac-2.6.3 → weac-2.6.4}/weac/eigensystem.py +0 -0
  23. {weac-2.6.3 → weac-2.6.4}/weac/inverse.py +0 -0
  24. {weac-2.6.3 → weac-2.6.4}/weac/layered.py +0 -0
  25. {weac-2.6.3 → weac-2.6.4}/weac/plot.py +0 -0
  26. {weac-2.6.3 → weac-2.6.4}/weac/tools.py +0 -0
  27. {weac-2.6.3 → weac-2.6.4}/weac.egg-info/SOURCES.txt +0 -0
  28. {weac-2.6.3 → weac-2.6.4}/weac.egg-info/dependency_links.txt +0 -0
  29. {weac-2.6.3 → weac-2.6.4}/weac.egg-info/requires.txt +0 -0
  30. {weac-2.6.3 → weac-2.6.4}/weac.egg-info/top_level.txt +0 -0
@@ -8,7 +8,7 @@ authors:
8
8
  - family-names: "Weissgraeber"
9
9
  given-names: "Philipp"
10
10
  orcid: "https://orcid.org/0000-0001-8320-8672"
11
- version: 2.6.3
11
+ version: 2.6.4
12
12
  date-released: 2021-12-30
13
13
  identifiers:
14
14
  - description: Collection of archived snapshots of all versions of WEAC
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weac
3
- Version: 2.6.3
3
+ Version: 2.6.4
4
4
  Summary: Weak layer anticrack nucleation model
5
5
  Author-email: 2phi GbR <mail@2phi.de>
6
6
  License: Proprietary
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "weac"
7
- version = "2.6.3"
7
+ version = "2.6.4"
8
8
  authors = [
9
9
  {name = "2phi GbR", email = "mail@2phi.de"},
10
10
  ]
@@ -77,7 +77,7 @@ ignore-patterns = [".*\\.ipynb$"]
77
77
  ignore = ["E121", "E123", "E126", "E211", "E226", "E24", "E704", "W503", "W504", "E741"]
78
78
 
79
79
  [tool.bumpversion]
80
- current_version = "2.6.3"
80
+ current_version = "2.6.4"
81
81
  tag = true
82
82
  commit = true
83
83
 
@@ -11,7 +11,7 @@ from weac.inverse import Inverse
11
11
  from weac.layered import Layered
12
12
 
13
13
  # Version
14
- __version__ = "2.6.3"
14
+ __version__ = "2.6.4"
15
15
 
16
16
  # Public names
17
17
  __all__ = ["Layered", "Inverse", "plot"]
@@ -787,14 +787,14 @@ class SlabContactMixin:
787
787
  """Calculate touchdown-mode from thresholds"""
788
788
  if self.touchdown:
789
789
  # Calculate stage transitions
790
- a1 = self.calc_a1()
791
- a2 = self.calc_a2()
790
+ self.a1 = self.calc_a1()
791
+ self.a2 = self.calc_a2()
792
792
  # Assign stage
793
- if self.a <= a1:
793
+ if self.a <= self.a1:
794
794
  mode = "A"
795
- elif a1 < self.a <= a2:
795
+ elif self.a1 < self.a <= self.a2:
796
796
  mode = "B"
797
- elif a2 < self.a:
797
+ elif self.a2 < self.a:
798
798
  mode = "C"
799
799
  self.mode = mode
800
800
  else:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weac
3
- Version: 2.6.3
3
+ Version: 2.6.4
4
4
  Summary: Weak layer anticrack nucleation model
5
5
  Author-email: 2phi GbR <mail@2phi.de>
6
6
  License: Proprietary
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
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
File without changes
File without changes
File without changes
File without changes
File without changes