polykin.thermo.flash¤
FlashResult
dataclass
¤
Flash result dataclass.
| ATTRIBUTE | DESCRIPTION |
|---|---|
method |
Method used to perform the flash calculation.
TYPE:
|
success |
Flag indicating if the solver converged.
TYPE:
|
message |
Description of the exit status.
TYPE:
|
T |
Temperature (K).
TYPE:
|
P |
Pressure (Pa).
TYPE:
|
F |
Feed mole flowrate (mol/s).
TYPE:
|
L |
Liquid mole flowrate (mol/s).
TYPE:
|
V |
Vapor mole flowrate (mol/s).
TYPE:
|
beta |
Vapor phase fraction (mol/mol).
TYPE:
|
z |
Feed mole fractions (mol/mol).
TYPE:
|
x |
Liquid mole fractions (mol/mol).
TYPE:
|
y |
Vapor mole fractions (mol/mol).
TYPE:
|
K |
K-values.
TYPE:
|
Source code in src/polykin/thermo/flash/vle.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | |