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.
- {weac-2.6.3 → weac-2.6.4}/CITATION.cff +1 -1
- {weac-2.6.3/weac.egg-info → weac-2.6.4}/PKG-INFO +1 -1
- {weac-2.6.3 → weac-2.6.4}/pyproject.toml +2 -2
- {weac-2.6.3 → weac-2.6.4}/weac/__init__.py +1 -1
- {weac-2.6.3 → weac-2.6.4}/weac/mixins.py +5 -5
- {weac-2.6.3 → weac-2.6.4/weac.egg-info}/PKG-INFO +1 -1
- {weac-2.6.3 → weac-2.6.4}/LICENSE +0 -0
- {weac-2.6.3 → weac-2.6.4}/MANIFEST.in +0 -0
- {weac-2.6.3 → weac-2.6.4}/README.md +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/bc.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/layering.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/logo.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/model.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/profiles.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/img/systems.png +0 -0
- {weac-2.6.3 → weac-2.6.4}/setup.cfg +0 -0
- {weac-2.6.3 → weac-2.6.4}/tests/test_eigensystem.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/tests/test_layered.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/tests/test_mixins.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/tests/test_plot.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/tests/test_tools.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac/eigensystem.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac/inverse.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac/layered.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac/plot.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac/tools.py +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac.egg-info/SOURCES.txt +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac.egg-info/dependency_links.txt +0 -0
- {weac-2.6.3 → weac-2.6.4}/weac.egg-info/requires.txt +0 -0
- {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.
|
|
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
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "weac"
|
|
7
|
-
version = "2.6.
|
|
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.
|
|
80
|
+
current_version = "2.6.4"
|
|
81
81
|
tag = true
|
|
82
82
|
commit = true
|
|
83
83
|
|
|
@@ -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:
|
|
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
|
|
File without changes
|