yaeos 4.0.0__cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.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.
- yaeos/__init__.py +56 -0
- yaeos/constants.py +11 -0
- yaeos/core.py +2874 -0
- yaeos/envelopes.py +510 -0
- yaeos/fitting/__init__.py +12 -0
- yaeos/fitting/core.py +199 -0
- yaeos/fitting/model_setters.py +76 -0
- yaeos/fitting/solvers.py +87 -0
- yaeos/gpec.py +225 -0
- yaeos/lib/__init__.py +9 -0
- yaeos/lib/yaeos_python.cpython-311-x86_64-linux-gnu.so +0 -0
- yaeos/models/__init__.py +26 -0
- yaeos/models/excess_gibbs/__init__.py +20 -0
- yaeos/models/excess_gibbs/dortmund.py +45 -0
- yaeos/models/excess_gibbs/nrtl.py +49 -0
- yaeos/models/excess_gibbs/psrk_unifac.py +45 -0
- yaeos/models/excess_gibbs/unifac.py +45 -0
- yaeos/models/excess_gibbs/uniquac.py +117 -0
- yaeos/models/groups.py +49 -0
- yaeos/models/residual_helmholtz/__init__.py +21 -0
- yaeos/models/residual_helmholtz/cubic_eos/__init__.py +38 -0
- yaeos/models/residual_helmholtz/cubic_eos/cubic_eos.py +449 -0
- yaeos/models/residual_helmholtz/cubic_eos/mixing_rules.py +253 -0
- yaeos/models/residual_helmholtz/multifluid/__init__.py +12 -0
- yaeos/models/residual_helmholtz/multifluid/gerg2008.py +73 -0
- yaeos-4.0.0.dist-info/METADATA +87 -0
- yaeos-4.0.0.dist-info/RECORD +34 -0
- yaeos-4.0.0.dist-info/WHEEL +6 -0
- yaeos.libs/libblas-fe34f726.so.3.8.0 +0 -0
- yaeos.libs/libgfortran-8f1e9814.so.5.0.0 +0 -0
- yaeos.libs/libgomp-870cb1d0.so.1.0.0 +0 -0
- yaeos.libs/liblapack-31d7d384.so.3.8.0 +0 -0
- yaeos.libs/libmvec-2-8eb5c230.28.so +0 -0
- yaeos.libs/libquadmath-828275a7.so.0.0.0 +0 -0
yaeos/__init__.py
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
"""Yet Another Equation-Of-State (library).
|
2
|
+
|
3
|
+
Library to use EoS-based calculations. This main module imports all the
|
4
|
+
relevant constants, procedures and objects to have better access to them.
|
5
|
+
"""
|
6
|
+
|
7
|
+
import importlib.metadata
|
8
|
+
|
9
|
+
import yaeos.constants as constants
|
10
|
+
import yaeos.envelopes as envelopes
|
11
|
+
from yaeos.gpec import GPEC
|
12
|
+
from yaeos.lib import yaeos_c
|
13
|
+
from yaeos.models.excess_gibbs import (
|
14
|
+
NRTL,
|
15
|
+
UNIFACDortmund,
|
16
|
+
UNIFACPSRK,
|
17
|
+
UNIFACVLE,
|
18
|
+
UNIQUAC,
|
19
|
+
)
|
20
|
+
from yaeos.models.residual_helmholtz.cubic_eos import (
|
21
|
+
HV,
|
22
|
+
MHV,
|
23
|
+
PSRK,
|
24
|
+
PengRobinson76,
|
25
|
+
PengRobinson78,
|
26
|
+
QMR,
|
27
|
+
QMRTD,
|
28
|
+
RKPR,
|
29
|
+
SoaveRedlichKwong,
|
30
|
+
)
|
31
|
+
from yaeos.models.residual_helmholtz.multifluid import GERG2008
|
32
|
+
|
33
|
+
__all__ = [
|
34
|
+
"envelopes",
|
35
|
+
"constants",
|
36
|
+
"GPEC",
|
37
|
+
"yaeos_c",
|
38
|
+
"SoaveRedlichKwong",
|
39
|
+
"PengRobinson76",
|
40
|
+
"PengRobinson78",
|
41
|
+
"RKPR",
|
42
|
+
"PSRK",
|
43
|
+
"QMR",
|
44
|
+
"QMRTD",
|
45
|
+
"GERG2008",
|
46
|
+
"NRTL",
|
47
|
+
"UNIFACDortmund",
|
48
|
+
"UNIFACPSRK",
|
49
|
+
"UNIFACVLE",
|
50
|
+
"UNIQUAC",
|
51
|
+
"MHV",
|
52
|
+
"HV",
|
53
|
+
]
|
54
|
+
|
55
|
+
|
56
|
+
__version__ = importlib.metadata.version("yaeos")
|