pyvisq
An open-source package to model/visualize viscoelastic responses.
Models
Run the code below to see available models:
from pyvisq.models import hierarchy
hierarchy.show()
Output:
models\burgers
├── Burgers
models\elements
├── Spring
├── Dashpot
├── Springpot
models\generalized
├── Generalized
models\kelvinvoigt
├── KelvinVoigt
├── FracDashpotKelvinVoigt
├── FracSpringKelvinVoigt
├── FracKelvinVoigt
models\maxwell
├── Maxwell
├── FracDashpotMaxwell
├── FracSpringMaxwell
├── FracMaxwell
models\powerlaw
├── Powerlaw
models\poynting_thomson
├── SLSPT
├── JeffreysPT
├── FracSLSPT
├── FracJeffreysPT
├── FracPT
models\zener
├── SLS
├── JeffreysZener
├── FracJeffreysZener
├── FracSolidZener
├── FracSLSZener
├── FracZener
Example:
from pyvisq import Test, TestMethod
from pyvisq.models import zener
# Define the test method and parameters
method = TestMethod.CREEP
test_params = {
"I": 1.0,
"D1": 0.01,
"L1": 2,
"D2": 0.01,
"L2": 2
}
test = Test(method=method, **test_params)
"""
input profile:
I ==========
//: :\\
// : : \\
// :D1 :L1\\D2==========L2
"""
# Define the Zener model parameters
dashpot_a = zener.DashpotParams(c=1)
spring_b = zener.SpringParams(k=1)
spring_c = zener.SpringParams(k=1)
sls_params = zener.SLSParams(
dashpot_a=dashpot_a,
spring_b=spring_b,
spring_c=spring_c
)
sls = zener.SLS(params=sls_params)
# Print the SLS model diagram and parameters
print(sls)
""" Output:
___
____| |______╱╲ ╱╲ ╱╲ _____
| _|_| ca ╲╱ ╲╱ ╲╱ kb |
____| |____
| |
|__________╱╲ ╱╲ ╱╲ ________|
╲╱ ╲╱ ╲╱ kc
SLSParams(dashpot_a=DashpotParams(c=1), spring_b=SpringParams(k=1), spring_c=SpringParams(k=1))
"""
# Set up and run the test
sls.set_test(test)
sls.set_time()
sls.set_input() # Optional: set the input profile for visualization
sls.run()
References
-
J. L. Kaplan, A. Bonfanti, A. J. Kabla (2019). RHEOS.jl -- A Julia Package for Rheology Data Analysis. Journal of Open Source Software, 4(41), 1700, https://doi.org/10.21105/joss.01700
-
A. Bonfanti, J. L. Kaplan, G. Charras, A. J. Kabla (2020). Fractional viscoelastic models for power-law materials. Soft Matter, 16, 6002-6020, https://doi.org/10.1039/D0SM00354A
Release files for pyvisq 1.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyvisq-1.2.2.tar.gz | 10.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyvisq-1.2.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 26.8 kB
Release files / pyvisq-1.2.2.tar.gz
| Download URL | pyvisq-1.2.2.tar.gz |
|---|---|
| Size | 10.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b2a28a0e71dac411b0e06ab9e8d48f5bb755c15c108e02a78ba34914fb3e62c0
|
|
BLAKE2b-256 checksum How to use checksums |
56a0b901695762975ef10afe0ea92156c68cbf53ea70114de407b00a072424cb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.5.26
|
Release files / pyvisq-1.2.2-py3-none-any.whl
| Download URL | pyvisq-1.2.2-py3-none-any.whl |
|---|---|
| Size | 15.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
8ce484b1b9f160412d8ff6d63a0751184692056a04510140f025dff9454897b6
|
|
BLAKE2b-256 checksum How to use checksums |
09d3d4235c0871baa18f9f8af5df8878780214d7e3f9af49e5961036073578d2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.5.26
|