fugacio-thermo 0.0.1__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.
- fugacio/thermo/__init__.py +615 -0
- fugacio/thermo/_binary_params.py +461 -0
- fugacio/thermo/_eos_params.py +169 -0
- fugacio/thermo/_formation_data.py +115 -0
- fugacio/thermo/_property_data.py +2812 -0
- fugacio/thermo/activity/__init__.py +118 -0
- fugacio/thermo/activity/margules.py +65 -0
- fugacio/thermo/activity/models.py +335 -0
- fugacio/thermo/activity/nrtl.py +76 -0
- fugacio/thermo/activity/regular_solution.py +100 -0
- fugacio/thermo/activity/uniquac.py +78 -0
- fugacio/thermo/activity/vanlaar.py +44 -0
- fugacio/thermo/activity/wilson.py +68 -0
- fugacio/thermo/components.py +6465 -0
- fugacio/thermo/consistency.py +94 -0
- fugacio/thermo/constants.py +63 -0
- fugacio/thermo/correlations.py +235 -0
- fugacio/thermo/data.py +182 -0
- fugacio/thermo/departure.py +200 -0
- fugacio/thermo/diffcheck.py +55 -0
- fugacio/thermo/energy.py +276 -0
- fugacio/thermo/eos.py +348 -0
- fugacio/thermo/equilibrium.py +385 -0
- fugacio/thermo/gammaphi.py +481 -0
- fugacio/thermo/groupcontrib/__init__.py +37 -0
- fugacio/thermo/groupcontrib/_dortmund_data.py +1007 -0
- fugacio/thermo/groupcontrib/_unifac_data.py +959 -0
- fugacio/thermo/groupcontrib/dortmund.py +147 -0
- fugacio/thermo/groupcontrib/joback.py +146 -0
- fugacio/thermo/groupcontrib/unifac.py +152 -0
- fugacio/thermo/helmholtz/__init__.py +140 -0
- fugacio/thermo/helmholtz/_data.py +2595 -0
- fugacio/thermo/helmholtz/density.py +121 -0
- fugacio/thermo/helmholtz/fluids.py +334 -0
- fugacio/thermo/helmholtz/iapws.py +219 -0
- fugacio/thermo/helmholtz/props.py +229 -0
- fugacio/thermo/helmholtz/saturation.py +245 -0
- fugacio/thermo/helmholtz/states.py +334 -0
- fugacio/thermo/helmholtz/surface.py +31 -0
- fugacio/thermo/helmholtz/terms.py +220 -0
- fugacio/thermo/ideal.py +188 -0
- fugacio/thermo/implicit.py +317 -0
- fugacio/thermo/kinetics.py +211 -0
- fugacio/thermo/lle.py +178 -0
- fugacio/thermo/oracles.py +582 -0
- fugacio/thermo/parameter_bank.json +81 -0
- fugacio/thermo/parameter_bank.py +271 -0
- fugacio/thermo/phase.py +317 -0
- fugacio/thermo/properties.py +189 -0
- fugacio/thermo/py.typed +0 -0
- fugacio/thermo/reaction_equilibrium.py +200 -0
- fugacio/thermo/reactions.py +301 -0
- fugacio/thermo/reference.py +139 -0
- fugacio/thermo/regression.py +409 -0
- fugacio/thermo/saft/__init__.py +90 -0
- fugacio/thermo/saft/_data.py +154 -0
- fugacio/thermo/saft/association.py +170 -0
- fugacio/thermo/saft/equilibrium.py +256 -0
- fugacio/thermo/saft/model.py +130 -0
- fugacio/thermo/saft/parameters.py +239 -0
- fugacio/thermo/saft/pcsaft.py +199 -0
- fugacio/thermo/saft/properties.py +241 -0
- fugacio/thermo/saft/regression.py +141 -0
- fugacio/thermo/stability.py +140 -0
- fugacio/thermo/thermoml.py +462 -0
- fugacio/thermo/thermoml_samples/acetone_chloroform_vle_318K.xml +141 -0
- fugacio/thermo/thermoml_samples/benzene_toluene_vle_363K.xml +141 -0
- fugacio/thermo/thermoml_samples/ethanol_water_vle_323K.xml +138 -0
- fugacio/thermo/thermoml_samples/isopropanol_water_vle_353K.xml +141 -0
- fugacio/thermo/thermoml_samples/methanol_water_vle_338K.xml +141 -0
- fugacio/thermo/thermoml_samples/water_vapor_pressure.xml +66 -0
- fugacio/thermo/transport/__init__.py +70 -0
- fugacio/thermo/transport/diffusivity.py +182 -0
- fugacio/thermo/transport/surface_tension.py +100 -0
- fugacio/thermo/transport/thermal_conductivity.py +200 -0
- fugacio/thermo/transport/viscosity.py +227 -0
- fugacio/thermo/vlle.py +270 -0
- fugacio/thermo/volumetric.py +301 -0
- fugacio_thermo-0.0.1.dist-info/METADATA +130 -0
- fugacio_thermo-0.0.1.dist-info/RECORD +81 -0
- fugacio_thermo-0.0.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,615 @@
|
|
|
1
|
+
"""Differentiable thermodynamics and physical-property engine for Fugacio.
|
|
2
|
+
|
|
3
|
+
Everything here is written against `jax.numpy`, so gradients flow cleanly
|
|
4
|
+
through the rest of the Fugacio stack (``fugacio.sim``, ``fugacio.copilot``).
|
|
5
|
+
|
|
6
|
+
The public surface is grouped as:
|
|
7
|
+
|
|
8
|
+
* **data**: `Component`, the curated `DATABASE`, helpers, and a
|
|
9
|
+
NIST ThermoML archive reader (`read_thermoml`, `load_sample`);
|
|
10
|
+
* **ideal gas**: `cp_ig`, `enthalpy_ig`, `entropy_ig`;
|
|
11
|
+
* **equations of state**: `PR`, `SRK`, `RK`, `VDW`
|
|
12
|
+
plus fugacity-coefficient and volume routines;
|
|
13
|
+
* **activity models**: Margules, van Laar, Wilson, NRTL, UNIQUAC, and
|
|
14
|
+
regular-solution / Flory-Huggins, both as functions and as differentiable
|
|
15
|
+
`ActivityModel` objects;
|
|
16
|
+
* **group contribution**: `unifac_activity`, `joback_estimate`;
|
|
17
|
+
* **reference state**: `liquid_reference_fugacity`,
|
|
18
|
+
`poynting_factor`, `henry_constant`;
|
|
19
|
+
* **reference fluids**: `fugacio.thermo.helmholtz`, multiparameter
|
|
20
|
+
Helmholtz EOS of the REFPROP/CoolProp class (IAPWS-95 water/steam,
|
|
21
|
+
Span-Wagner CO2, ...) with differentiable saturation lines, steam-table
|
|
22
|
+
state functions (`state_tp`, `state_ph`, ...), and the IAPWS
|
|
23
|
+
transport formulations for water;
|
|
24
|
+
* **property correlations**: DIPPR-form kernels and corresponding-states
|
|
25
|
+
estimators for enthalpy of vaporization and liquid heat capacity
|
|
26
|
+
(`heat_of_vaporization`, `liquid_heat_capacity`), liquid/vapour
|
|
27
|
+
volumetric properties (`liquid_density`, `mixture_liquid_volume`,
|
|
28
|
+
Peneloux translation), and transport properties
|
|
29
|
+
(`gas_viscosities`, `liquid_thermal_conductivities`,
|
|
30
|
+
`surface_tensions`, `gas_diffusivity`, ...), pure and mixture;
|
|
31
|
+
* **phase equilibrium**: equation-of-state (`flash_pt`,
|
|
32
|
+
`bubble_pressure_eos`, ...) *and* gamma-phi (`flash_pt_gamma`,
|
|
33
|
+
`bubble_pressure_gamma`, ...) routes, plus liquid-liquid
|
|
34
|
+
(`flash_lle`) and vapour-liquid-liquid (`flash_vlle`,
|
|
35
|
+
`heterogeneous_azeotrope`) equilibria and tangent-plane stability;
|
|
36
|
+
* **PC-SAFT**: `fugacio.thermo.saft`, a molecular-based (perturbed-chain
|
|
37
|
+
SAFT) equation of state with Wertheim association (`SAFTModel`,
|
|
38
|
+
`saft_parameters_for`, `flash_pt_saft`, ...), the third class of
|
|
39
|
+
thermodynamic method alongside the cubic EOS and gamma-phi routes;
|
|
40
|
+
* **models**: the unified `EOSModel` / `GammaPhiModel` / `SAFTModel` interface;
|
|
41
|
+
* **regression**: differentiable parameter estimation
|
|
42
|
+
(`levenberg_marquardt`, `fit_nrtl_binary`, ...),
|
|
43
|
+
UNIFAC-to-binary prediction (`predict_nrtl_from_unifac`), and the
|
|
44
|
+
ThermoML batch driver / parameter bank (`fit_vle_dataset`,
|
|
45
|
+
`ParameterBank`);
|
|
46
|
+
* **reactions**: stoichiometry and standard-state thermochemistry
|
|
47
|
+
(`Reaction`, `reaction_properties`, `equilibrium_constant`),
|
|
48
|
+
chemical-reaction equilibrium
|
|
49
|
+
(`fugacio.thermo.reaction_equilibrium.equilibrium`), and differentiable
|
|
50
|
+
rate laws (`PowerLaw`, `MassActionReversible`, `LHHW`);
|
|
51
|
+
* **validation**: consistency laws and finite-difference gradient checks, plus
|
|
52
|
+
`fugacio.thermo.oracles`, optional differential tests against the
|
|
53
|
+
``thermo`` / ``chemicals`` / Clapeyron.jl (activity) and Cantera (reaction)
|
|
54
|
+
reference libraries.
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
from fugacio.thermo.activity import (
|
|
58
|
+
NRTL,
|
|
59
|
+
UNIQUAC,
|
|
60
|
+
ActivityModel,
|
|
61
|
+
FloryHuggins,
|
|
62
|
+
Hildebrand,
|
|
63
|
+
Margules,
|
|
64
|
+
RegularSolution,
|
|
65
|
+
VanLaar,
|
|
66
|
+
Wilson,
|
|
67
|
+
excess_gibbs,
|
|
68
|
+
flory_huggins_gamma,
|
|
69
|
+
flory_huggins_ln_gamma,
|
|
70
|
+
gamma,
|
|
71
|
+
hildebrand_ln_gamma,
|
|
72
|
+
margules,
|
|
73
|
+
margules_excess_gibbs,
|
|
74
|
+
margules_gamma,
|
|
75
|
+
margules_ln_gamma,
|
|
76
|
+
nrtl,
|
|
77
|
+
nrtl_from_energies,
|
|
78
|
+
nrtl_gamma,
|
|
79
|
+
nrtl_ln_gamma,
|
|
80
|
+
nrtl_tau,
|
|
81
|
+
regular_solution_gamma,
|
|
82
|
+
regular_solution_ln_gamma,
|
|
83
|
+
uniquac,
|
|
84
|
+
uniquac_from_energies,
|
|
85
|
+
uniquac_gamma,
|
|
86
|
+
uniquac_ln_gamma,
|
|
87
|
+
uniquac_tau,
|
|
88
|
+
van_laar,
|
|
89
|
+
van_laar_gamma,
|
|
90
|
+
van_laar_ln_gamma,
|
|
91
|
+
volume_fractions,
|
|
92
|
+
wilson_gamma,
|
|
93
|
+
wilson_lambda,
|
|
94
|
+
wilson_ln_gamma,
|
|
95
|
+
)
|
|
96
|
+
from fugacio.thermo.components import (
|
|
97
|
+
DATABASE,
|
|
98
|
+
AntoineCoeffs,
|
|
99
|
+
Component,
|
|
100
|
+
CpIdeal,
|
|
101
|
+
component_arrays,
|
|
102
|
+
get,
|
|
103
|
+
names,
|
|
104
|
+
)
|
|
105
|
+
from fugacio.thermo.constants import P_REF, T_REF, R
|
|
106
|
+
from fugacio.thermo.correlations import (
|
|
107
|
+
dippr100,
|
|
108
|
+
dippr101,
|
|
109
|
+
dippr102,
|
|
110
|
+
dippr105,
|
|
111
|
+
dippr106,
|
|
112
|
+
heat_of_vaporization,
|
|
113
|
+
liquid_heat_capacity,
|
|
114
|
+
mulero_cachadina,
|
|
115
|
+
pitzer_hvap,
|
|
116
|
+
rowlinson_bondi_cp,
|
|
117
|
+
watson_hvap,
|
|
118
|
+
)
|
|
119
|
+
from fugacio.thermo.data import (
|
|
120
|
+
has_nrtl,
|
|
121
|
+
has_uniquac,
|
|
122
|
+
kij_from_database,
|
|
123
|
+
nrtl_from_database,
|
|
124
|
+
nrtl_params,
|
|
125
|
+
pr_kij,
|
|
126
|
+
uniquac_from_database,
|
|
127
|
+
uniquac_params,
|
|
128
|
+
uniquac_rq,
|
|
129
|
+
)
|
|
130
|
+
from fugacio.thermo.departure import (
|
|
131
|
+
ResidualProperties,
|
|
132
|
+
residual_cp,
|
|
133
|
+
residual_enthalpy,
|
|
134
|
+
residual_entropy,
|
|
135
|
+
residual_gibbs,
|
|
136
|
+
residual_properties,
|
|
137
|
+
)
|
|
138
|
+
from fugacio.thermo.energy import (
|
|
139
|
+
EnergyFlashResult,
|
|
140
|
+
flash_ph,
|
|
141
|
+
flash_ps,
|
|
142
|
+
mixture_enthalpy,
|
|
143
|
+
mixture_entropy,
|
|
144
|
+
)
|
|
145
|
+
from fugacio.thermo.eos import (
|
|
146
|
+
PR,
|
|
147
|
+
RK,
|
|
148
|
+
SRK,
|
|
149
|
+
VDW,
|
|
150
|
+
CubicEOS,
|
|
151
|
+
compressibility,
|
|
152
|
+
ln_phi_mixture,
|
|
153
|
+
ln_phi_pure,
|
|
154
|
+
molar_volume,
|
|
155
|
+
pressure,
|
|
156
|
+
)
|
|
157
|
+
from fugacio.thermo.equilibrium import (
|
|
158
|
+
FlashResult,
|
|
159
|
+
StabilityResult,
|
|
160
|
+
bubble_pressure_eos,
|
|
161
|
+
dew_pressure_eos,
|
|
162
|
+
flash_pt,
|
|
163
|
+
psat_eos,
|
|
164
|
+
rachford_rice,
|
|
165
|
+
stability_analysis,
|
|
166
|
+
wilson_k,
|
|
167
|
+
)
|
|
168
|
+
from fugacio.thermo.gammaphi import (
|
|
169
|
+
bubble_pressure_gamma,
|
|
170
|
+
bubble_temperature_gamma,
|
|
171
|
+
dew_pressure_gamma,
|
|
172
|
+
dew_temperature_gamma,
|
|
173
|
+
flash_pt_gamma,
|
|
174
|
+
gamma_phi_k_values,
|
|
175
|
+
)
|
|
176
|
+
from fugacio.thermo.groupcontrib import (
|
|
177
|
+
joback_estimate,
|
|
178
|
+
modified_unifac_activity,
|
|
179
|
+
unifac_activity,
|
|
180
|
+
)
|
|
181
|
+
from fugacio.thermo.helmholtz import (
|
|
182
|
+
FluidState,
|
|
183
|
+
HelmholtzFluid,
|
|
184
|
+
SaturationState,
|
|
185
|
+
has_reference_fluid,
|
|
186
|
+
reference_fluid,
|
|
187
|
+
reference_fluid_names,
|
|
188
|
+
saturation_state,
|
|
189
|
+
state_ph,
|
|
190
|
+
state_pq,
|
|
191
|
+
state_ps,
|
|
192
|
+
state_tp,
|
|
193
|
+
state_tq,
|
|
194
|
+
water_thermal_conductivity,
|
|
195
|
+
water_viscosity,
|
|
196
|
+
)
|
|
197
|
+
from fugacio.thermo.helmholtz import (
|
|
198
|
+
surface_tension as reference_surface_tension,
|
|
199
|
+
)
|
|
200
|
+
from fugacio.thermo.ideal import (
|
|
201
|
+
cp_ig,
|
|
202
|
+
enthalpy_ig,
|
|
203
|
+
enthalpy_ig_mixture,
|
|
204
|
+
entropy_ig,
|
|
205
|
+
entropy_ig_mixture,
|
|
206
|
+
gibbs_ig,
|
|
207
|
+
gibbs_ig_mixture,
|
|
208
|
+
ideal_gas_coeffs,
|
|
209
|
+
)
|
|
210
|
+
from fugacio.thermo.kinetics import (
|
|
211
|
+
LHHW,
|
|
212
|
+
Arrhenius,
|
|
213
|
+
MassActionReversible,
|
|
214
|
+
PowerLaw,
|
|
215
|
+
arrhenius,
|
|
216
|
+
arrhenius_ref,
|
|
217
|
+
)
|
|
218
|
+
from fugacio.thermo.lle import (
|
|
219
|
+
LLEResult,
|
|
220
|
+
binary_binodal,
|
|
221
|
+
binodal_curve,
|
|
222
|
+
flash_lle,
|
|
223
|
+
tie_line,
|
|
224
|
+
)
|
|
225
|
+
from fugacio.thermo.parameter_bank import (
|
|
226
|
+
FittedBinary,
|
|
227
|
+
ParameterBank,
|
|
228
|
+
fit_bundled_samples,
|
|
229
|
+
fit_vle_dataset,
|
|
230
|
+
)
|
|
231
|
+
from fugacio.thermo.phase import (
|
|
232
|
+
EOSModel,
|
|
233
|
+
EquilibriumModel,
|
|
234
|
+
GammaPhiModel,
|
|
235
|
+
eos_model,
|
|
236
|
+
gamma_phi_model,
|
|
237
|
+
)
|
|
238
|
+
from fugacio.thermo.properties import (
|
|
239
|
+
molar_cp,
|
|
240
|
+
molar_enthalpy,
|
|
241
|
+
molar_entropy,
|
|
242
|
+
molar_gibbs,
|
|
243
|
+
speed_of_sound_ideal,
|
|
244
|
+
stable_phase,
|
|
245
|
+
)
|
|
246
|
+
from fugacio.thermo.reactions import (
|
|
247
|
+
Reaction,
|
|
248
|
+
ReactionProperties,
|
|
249
|
+
delta_g_rxn,
|
|
250
|
+
delta_h_rxn,
|
|
251
|
+
delta_s_rxn,
|
|
252
|
+
equilibrium_constant,
|
|
253
|
+
equilibrium_constant_of,
|
|
254
|
+
parse_reaction,
|
|
255
|
+
reaction_arrays,
|
|
256
|
+
reaction_properties,
|
|
257
|
+
stoichiometry,
|
|
258
|
+
)
|
|
259
|
+
from fugacio.thermo.reference import (
|
|
260
|
+
antoine_psat,
|
|
261
|
+
henry_constant,
|
|
262
|
+
liquid_reference_fugacity,
|
|
263
|
+
poynting_factor,
|
|
264
|
+
pure_liquid_volumes,
|
|
265
|
+
saturation_fugacity_coefficient,
|
|
266
|
+
saturation_pressures,
|
|
267
|
+
)
|
|
268
|
+
from fugacio.thermo.regression import (
|
|
269
|
+
activity_residuals,
|
|
270
|
+
bubble_pressure_residuals,
|
|
271
|
+
fit_nrtl_binary,
|
|
272
|
+
fit_uniquac_binary,
|
|
273
|
+
gradient_descent,
|
|
274
|
+
levenberg_marquardt,
|
|
275
|
+
lle_residuals,
|
|
276
|
+
predict_nrtl_from_unifac,
|
|
277
|
+
predict_uniquac_from_unifac,
|
|
278
|
+
unifac_ln_gamma_grid,
|
|
279
|
+
)
|
|
280
|
+
from fugacio.thermo.saft import (
|
|
281
|
+
SAFTModel,
|
|
282
|
+
SaftParameters,
|
|
283
|
+
bubble_pressure_saft,
|
|
284
|
+
dew_pressure_saft,
|
|
285
|
+
fit_saft_kij,
|
|
286
|
+
fit_saft_pure,
|
|
287
|
+
flash_pt_saft,
|
|
288
|
+
psat_saft,
|
|
289
|
+
saft_model,
|
|
290
|
+
saft_parameters,
|
|
291
|
+
saft_parameters_for,
|
|
292
|
+
site_fractions,
|
|
293
|
+
stability_saft,
|
|
294
|
+
)
|
|
295
|
+
from fugacio.thermo.saft import (
|
|
296
|
+
residual_properties as saft_residual_properties,
|
|
297
|
+
)
|
|
298
|
+
from fugacio.thermo.stability import (
|
|
299
|
+
TangentPlaneResult,
|
|
300
|
+
liquid_stability,
|
|
301
|
+
stability_analysis_general,
|
|
302
|
+
tangent_plane_distance,
|
|
303
|
+
)
|
|
304
|
+
from fugacio.thermo.thermoml import (
|
|
305
|
+
Column,
|
|
306
|
+
Compound,
|
|
307
|
+
Dataset,
|
|
308
|
+
ThermoMLData,
|
|
309
|
+
list_samples,
|
|
310
|
+
load_sample,
|
|
311
|
+
read_thermoml,
|
|
312
|
+
sample_path,
|
|
313
|
+
)
|
|
314
|
+
from fugacio.thermo.transport import (
|
|
315
|
+
brock_bird_surface_tension,
|
|
316
|
+
chung_thermal_conductivity_gas,
|
|
317
|
+
chung_viscosity_gas,
|
|
318
|
+
diffusion_volume,
|
|
319
|
+
dippr9h_mixture,
|
|
320
|
+
fuller_diffusivity,
|
|
321
|
+
gas_diffusivity,
|
|
322
|
+
gas_mixture_thermal_conductivity,
|
|
323
|
+
gas_mixture_viscosity,
|
|
324
|
+
gas_thermal_conductivities,
|
|
325
|
+
gas_viscosities,
|
|
326
|
+
grunberg_nissan_viscosity,
|
|
327
|
+
letsou_stiel_viscosity,
|
|
328
|
+
liquid_diffusivity,
|
|
329
|
+
liquid_mixture_thermal_conductivity,
|
|
330
|
+
liquid_mixture_viscosity,
|
|
331
|
+
liquid_thermal_conductivities,
|
|
332
|
+
liquid_viscosities,
|
|
333
|
+
mixture_surface_tension,
|
|
334
|
+
sato_riedel_thermal_conductivity,
|
|
335
|
+
surface_tensions,
|
|
336
|
+
wassiljewa_mixture,
|
|
337
|
+
wilke_chang_diffusivity,
|
|
338
|
+
wilke_mixture_viscosity,
|
|
339
|
+
winterfeld_scriven_davis,
|
|
340
|
+
)
|
|
341
|
+
from fugacio.thermo.vlle import (
|
|
342
|
+
HeterogeneousAzeotrope,
|
|
343
|
+
VLLEResult,
|
|
344
|
+
flash_vlle,
|
|
345
|
+
heterogeneous_azeotrope,
|
|
346
|
+
)
|
|
347
|
+
from fugacio.thermo.volumetric import (
|
|
348
|
+
costald_mixture_volume,
|
|
349
|
+
costald_volume,
|
|
350
|
+
liquid_density,
|
|
351
|
+
liquid_molar_volumes,
|
|
352
|
+
mixture_liquid_volume,
|
|
353
|
+
peneloux_shift,
|
|
354
|
+
rackett_volume,
|
|
355
|
+
translated_liquid_volume_for,
|
|
356
|
+
translated_molar_volume,
|
|
357
|
+
tyn_calus_vb,
|
|
358
|
+
vapor_density,
|
|
359
|
+
zra_estimate,
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
__all__ = [
|
|
363
|
+
"DATABASE",
|
|
364
|
+
"LHHW",
|
|
365
|
+
"NRTL",
|
|
366
|
+
"PR",
|
|
367
|
+
"P_REF",
|
|
368
|
+
"RK",
|
|
369
|
+
"SRK",
|
|
370
|
+
"T_REF",
|
|
371
|
+
"UNIQUAC",
|
|
372
|
+
"VDW",
|
|
373
|
+
"ActivityModel",
|
|
374
|
+
"AntoineCoeffs",
|
|
375
|
+
"Arrhenius",
|
|
376
|
+
"Column",
|
|
377
|
+
"Component",
|
|
378
|
+
"Compound",
|
|
379
|
+
"CpIdeal",
|
|
380
|
+
"CubicEOS",
|
|
381
|
+
"Dataset",
|
|
382
|
+
"EOSModel",
|
|
383
|
+
"EnergyFlashResult",
|
|
384
|
+
"EquilibriumModel",
|
|
385
|
+
"FittedBinary",
|
|
386
|
+
"FlashResult",
|
|
387
|
+
"FloryHuggins",
|
|
388
|
+
"FluidState",
|
|
389
|
+
"GammaPhiModel",
|
|
390
|
+
"HelmholtzFluid",
|
|
391
|
+
"HeterogeneousAzeotrope",
|
|
392
|
+
"Hildebrand",
|
|
393
|
+
"LLEResult",
|
|
394
|
+
"Margules",
|
|
395
|
+
"MassActionReversible",
|
|
396
|
+
"ParameterBank",
|
|
397
|
+
"PowerLaw",
|
|
398
|
+
"R",
|
|
399
|
+
"Reaction",
|
|
400
|
+
"ReactionProperties",
|
|
401
|
+
"RegularSolution",
|
|
402
|
+
"ResidualProperties",
|
|
403
|
+
"SAFTModel",
|
|
404
|
+
"SaftParameters",
|
|
405
|
+
"SaturationState",
|
|
406
|
+
"StabilityResult",
|
|
407
|
+
"TangentPlaneResult",
|
|
408
|
+
"ThermoMLData",
|
|
409
|
+
"VLLEResult",
|
|
410
|
+
"VanLaar",
|
|
411
|
+
"Wilson",
|
|
412
|
+
"activity_residuals",
|
|
413
|
+
"antoine_psat",
|
|
414
|
+
"arrhenius",
|
|
415
|
+
"arrhenius_ref",
|
|
416
|
+
"binary_binodal",
|
|
417
|
+
"binodal_curve",
|
|
418
|
+
"brock_bird_surface_tension",
|
|
419
|
+
"bubble_pressure_eos",
|
|
420
|
+
"bubble_pressure_gamma",
|
|
421
|
+
"bubble_pressure_residuals",
|
|
422
|
+
"bubble_pressure_saft",
|
|
423
|
+
"bubble_temperature_gamma",
|
|
424
|
+
"chung_thermal_conductivity_gas",
|
|
425
|
+
"chung_viscosity_gas",
|
|
426
|
+
"component_arrays",
|
|
427
|
+
"compressibility",
|
|
428
|
+
"costald_mixture_volume",
|
|
429
|
+
"costald_volume",
|
|
430
|
+
"cp_ig",
|
|
431
|
+
"delta_g_rxn",
|
|
432
|
+
"delta_h_rxn",
|
|
433
|
+
"delta_s_rxn",
|
|
434
|
+
"dew_pressure_eos",
|
|
435
|
+
"dew_pressure_gamma",
|
|
436
|
+
"dew_pressure_saft",
|
|
437
|
+
"dew_temperature_gamma",
|
|
438
|
+
"diffusion_volume",
|
|
439
|
+
"dippr9h_mixture",
|
|
440
|
+
"dippr100",
|
|
441
|
+
"dippr101",
|
|
442
|
+
"dippr102",
|
|
443
|
+
"dippr105",
|
|
444
|
+
"dippr106",
|
|
445
|
+
"enthalpy_ig",
|
|
446
|
+
"enthalpy_ig_mixture",
|
|
447
|
+
"entropy_ig",
|
|
448
|
+
"entropy_ig_mixture",
|
|
449
|
+
"eos_model",
|
|
450
|
+
"equilibrium_constant",
|
|
451
|
+
"equilibrium_constant_of",
|
|
452
|
+
"excess_gibbs",
|
|
453
|
+
"fit_bundled_samples",
|
|
454
|
+
"fit_nrtl_binary",
|
|
455
|
+
"fit_saft_kij",
|
|
456
|
+
"fit_saft_pure",
|
|
457
|
+
"fit_uniquac_binary",
|
|
458
|
+
"fit_vle_dataset",
|
|
459
|
+
"flash_lle",
|
|
460
|
+
"flash_ph",
|
|
461
|
+
"flash_ps",
|
|
462
|
+
"flash_pt",
|
|
463
|
+
"flash_pt_gamma",
|
|
464
|
+
"flash_pt_saft",
|
|
465
|
+
"flash_vlle",
|
|
466
|
+
"flory_huggins_gamma",
|
|
467
|
+
"flory_huggins_ln_gamma",
|
|
468
|
+
"fuller_diffusivity",
|
|
469
|
+
"gamma",
|
|
470
|
+
"gamma_phi_k_values",
|
|
471
|
+
"gamma_phi_model",
|
|
472
|
+
"gas_diffusivity",
|
|
473
|
+
"gas_mixture_thermal_conductivity",
|
|
474
|
+
"gas_mixture_viscosity",
|
|
475
|
+
"gas_thermal_conductivities",
|
|
476
|
+
"gas_viscosities",
|
|
477
|
+
"get",
|
|
478
|
+
"gibbs_ig",
|
|
479
|
+
"gibbs_ig_mixture",
|
|
480
|
+
"gradient_descent",
|
|
481
|
+
"grunberg_nissan_viscosity",
|
|
482
|
+
"has_nrtl",
|
|
483
|
+
"has_reference_fluid",
|
|
484
|
+
"has_uniquac",
|
|
485
|
+
"heat_of_vaporization",
|
|
486
|
+
"henry_constant",
|
|
487
|
+
"heterogeneous_azeotrope",
|
|
488
|
+
"hildebrand_ln_gamma",
|
|
489
|
+
"ideal_gas_coeffs",
|
|
490
|
+
"joback_estimate",
|
|
491
|
+
"kij_from_database",
|
|
492
|
+
"letsou_stiel_viscosity",
|
|
493
|
+
"levenberg_marquardt",
|
|
494
|
+
"liquid_density",
|
|
495
|
+
"liquid_diffusivity",
|
|
496
|
+
"liquid_heat_capacity",
|
|
497
|
+
"liquid_mixture_thermal_conductivity",
|
|
498
|
+
"liquid_mixture_viscosity",
|
|
499
|
+
"liquid_molar_volumes",
|
|
500
|
+
"liquid_reference_fugacity",
|
|
501
|
+
"liquid_stability",
|
|
502
|
+
"liquid_thermal_conductivities",
|
|
503
|
+
"liquid_viscosities",
|
|
504
|
+
"list_samples",
|
|
505
|
+
"lle_residuals",
|
|
506
|
+
"ln_phi_mixture",
|
|
507
|
+
"ln_phi_pure",
|
|
508
|
+
"load_sample",
|
|
509
|
+
"margules",
|
|
510
|
+
"margules_excess_gibbs",
|
|
511
|
+
"margules_gamma",
|
|
512
|
+
"margules_ln_gamma",
|
|
513
|
+
"mixture_enthalpy",
|
|
514
|
+
"mixture_entropy",
|
|
515
|
+
"mixture_liquid_volume",
|
|
516
|
+
"mixture_surface_tension",
|
|
517
|
+
"modified_unifac_activity",
|
|
518
|
+
"molar_cp",
|
|
519
|
+
"molar_enthalpy",
|
|
520
|
+
"molar_entropy",
|
|
521
|
+
"molar_gibbs",
|
|
522
|
+
"molar_volume",
|
|
523
|
+
"mulero_cachadina",
|
|
524
|
+
"names",
|
|
525
|
+
"nrtl",
|
|
526
|
+
"nrtl_from_database",
|
|
527
|
+
"nrtl_from_energies",
|
|
528
|
+
"nrtl_gamma",
|
|
529
|
+
"nrtl_ln_gamma",
|
|
530
|
+
"nrtl_params",
|
|
531
|
+
"nrtl_tau",
|
|
532
|
+
"parse_reaction",
|
|
533
|
+
"peneloux_shift",
|
|
534
|
+
"pitzer_hvap",
|
|
535
|
+
"poynting_factor",
|
|
536
|
+
"pr_kij",
|
|
537
|
+
"predict_nrtl_from_unifac",
|
|
538
|
+
"predict_uniquac_from_unifac",
|
|
539
|
+
"pressure",
|
|
540
|
+
"psat_eos",
|
|
541
|
+
"psat_saft",
|
|
542
|
+
"pure_liquid_volumes",
|
|
543
|
+
"rachford_rice",
|
|
544
|
+
"rackett_volume",
|
|
545
|
+
"reaction_arrays",
|
|
546
|
+
"reaction_properties",
|
|
547
|
+
"read_thermoml",
|
|
548
|
+
"reference_fluid",
|
|
549
|
+
"reference_fluid_names",
|
|
550
|
+
"reference_surface_tension",
|
|
551
|
+
"regular_solution_gamma",
|
|
552
|
+
"regular_solution_ln_gamma",
|
|
553
|
+
"residual_cp",
|
|
554
|
+
"residual_enthalpy",
|
|
555
|
+
"residual_entropy",
|
|
556
|
+
"residual_gibbs",
|
|
557
|
+
"residual_properties",
|
|
558
|
+
"rowlinson_bondi_cp",
|
|
559
|
+
"saft_model",
|
|
560
|
+
"saft_parameters",
|
|
561
|
+
"saft_parameters_for",
|
|
562
|
+
"saft_residual_properties",
|
|
563
|
+
"sample_path",
|
|
564
|
+
"sato_riedel_thermal_conductivity",
|
|
565
|
+
"saturation_fugacity_coefficient",
|
|
566
|
+
"saturation_pressures",
|
|
567
|
+
"saturation_state",
|
|
568
|
+
"site_fractions",
|
|
569
|
+
"speed_of_sound_ideal",
|
|
570
|
+
"stability_analysis",
|
|
571
|
+
"stability_analysis_general",
|
|
572
|
+
"stability_saft",
|
|
573
|
+
"stable_phase",
|
|
574
|
+
"state_ph",
|
|
575
|
+
"state_pq",
|
|
576
|
+
"state_ps",
|
|
577
|
+
"state_tp",
|
|
578
|
+
"state_tq",
|
|
579
|
+
"stoichiometry",
|
|
580
|
+
"surface_tensions",
|
|
581
|
+
"tangent_plane_distance",
|
|
582
|
+
"tie_line",
|
|
583
|
+
"translated_liquid_volume_for",
|
|
584
|
+
"translated_molar_volume",
|
|
585
|
+
"tyn_calus_vb",
|
|
586
|
+
"unifac_activity",
|
|
587
|
+
"unifac_ln_gamma_grid",
|
|
588
|
+
"uniquac",
|
|
589
|
+
"uniquac_from_database",
|
|
590
|
+
"uniquac_from_energies",
|
|
591
|
+
"uniquac_gamma",
|
|
592
|
+
"uniquac_ln_gamma",
|
|
593
|
+
"uniquac_params",
|
|
594
|
+
"uniquac_rq",
|
|
595
|
+
"uniquac_tau",
|
|
596
|
+
"van_laar",
|
|
597
|
+
"van_laar_gamma",
|
|
598
|
+
"van_laar_ln_gamma",
|
|
599
|
+
"vapor_density",
|
|
600
|
+
"volume_fractions",
|
|
601
|
+
"wassiljewa_mixture",
|
|
602
|
+
"water_thermal_conductivity",
|
|
603
|
+
"water_viscosity",
|
|
604
|
+
"watson_hvap",
|
|
605
|
+
"wilke_chang_diffusivity",
|
|
606
|
+
"wilke_mixture_viscosity",
|
|
607
|
+
"wilson_gamma",
|
|
608
|
+
"wilson_k",
|
|
609
|
+
"wilson_lambda",
|
|
610
|
+
"wilson_ln_gamma",
|
|
611
|
+
"winterfeld_scriven_davis",
|
|
612
|
+
"zra_estimate",
|
|
613
|
+
]
|
|
614
|
+
|
|
615
|
+
__version__ = "0.0.1"
|