pyvisco 2.0.0__py3-none-any.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.
- pyvisco/__init__.py +17 -0
- pyvisco/inter.py +1474 -0
- pyvisco/load.py +713 -0
- pyvisco/master.py +877 -0
- pyvisco/opt.py +145 -0
- pyvisco/out.py +86 -0
- pyvisco/prony.py +1150 -0
- pyvisco/shift.py +307 -0
- pyvisco/styles.py +92 -0
- pyvisco/verify.py +249 -0
- pyvisco-2.0.0.dist-info/METADATA +101 -0
- pyvisco-2.0.0.dist-info/RECORD +15 -0
- pyvisco-2.0.0.dist-info/WHEEL +5 -0
- pyvisco-2.0.0.dist-info/licenses/LICENSE +31 -0
- pyvisco-2.0.0.dist-info/top_level.txt +1 -0
pyvisco/__init__.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
|
|
3
|
+
"""Collection of submodules to identify Prony series parameters of linear
|
|
4
|
+
viscoelastic materials from measurements in either the time (relaxation tests)
|
|
5
|
+
or frequency domain (DMTA).
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
9
|
+
|
|
10
|
+
from . import load, master, opt, out, prony, shift, verify
|
|
11
|
+
|
|
12
|
+
__all__ = ["load", "master", "opt", "out", "prony", "shift", "verify", "__version__"]
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
__version__ = version("pyvisco")
|
|
16
|
+
except PackageNotFoundError: # package not installed
|
|
17
|
+
__version__ = "0.0.0+unknown"
|