Class RateBasedPackedColumn.ColumnState
java.lang.Object
neqsim.process.equipment.distillation.RateBasedPackedColumn.ColumnState
- Enclosing class:
RateBasedPackedColumn
Internal column state reconstructed from equation-oriented unknowns.
- Version:
- 1.0
- Author:
- NeqSim
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final List<SystemInterface> Gas entering each segment from bottom to top.private final List<SystemInterface> Gas leaving each segment from bottom to top.private final SystemInterfaceColumn gas outlet.private final List<SystemInterface> Liquid entering each segment from bottom to top.private final List<SystemInterface> Liquid leaving each segment from bottom to top.private final SystemInterfaceColumn liquid outlet. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateColumnState(List<SystemInterface> gasEntering, List<SystemInterface> gasLeaving, List<SystemInterface> liquidEntering, List<SystemInterface> liquidLeaving, SystemInterface gasOutlet, SystemInterface liquidOutlet) Create a reconstructed column state. -
Method Summary
-
Field Details
-
gasEntering
Gas entering each segment from bottom to top. -
gasLeaving
Gas leaving each segment from bottom to top. -
liquidEntering
Liquid entering each segment from bottom to top. -
liquidLeaving
Liquid leaving each segment from bottom to top. -
gasOutlet
Column gas outlet. -
liquidOutlet
Column liquid outlet.
-
-
Constructor Details
-
ColumnState
private ColumnState(List<SystemInterface> gasEntering, List<SystemInterface> gasLeaving, List<SystemInterface> liquidEntering, List<SystemInterface> liquidLeaving, SystemInterface gasOutlet, SystemInterface liquidOutlet) Create a reconstructed column state.- Parameters:
gasEntering- gas systems entering each segmentgasLeaving- gas systems leaving each segmentliquidEntering- liquid systems entering each segmentliquidLeaving- liquid systems leaving each segmentgasOutlet- column gas outlet systemliquidOutlet- column liquid outlet system
-