Aspen Touch Solutions ATM-123R Series Especificações Página 60

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 374
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 59
2-46 Key HYSYS Objects
2-46
ColumnOp & ColumnFlowsheet
The column operation is a special kind of operation in HYSYS
and actually contains its own flowsheet. The ColumnFlowsheet is
accessed either from the Columnop object or as a member of
the flowsheets object accessed through the main flowsheet. In
order to access the various temperatures, pressures, and
specifications for a column the ColumnFlowsheet must be
accessed.
The ColumnFlowsheet object contains a considerable amount of
information regarding the column. A variant is used to receive
an array of column pressure information and displays a stage by
stage breakdown of the pressure values.
ColumnSpecification(s)
A column is solved based on matching specifications related to
the available degrees of freedom. The ColumnSpecifications
collection object is accessed through the ColumnFlowsheet. The
ColumnSpecification contains information such as the goal
Syntax: Accessing Columns
Set objColumn = SimulationCase.Flowsheet.Operations(“ColumnOp”).Item(0)
Set objColumnSubFlow = objColumn.ColumnFlowsheet
Example: Column Operation
Dim hyColumn As ColumnOp
Dim hyColumnSubFlowsheet As ColumnFlowsheet
Dim Pressure_Profile As Variant
Set hyColumn = hyCase.Flowsheet.Operations(“ColumnOp”).Item(0)
Set hyColumnSubFlowsheet = hyColumn.ColumnFlowsheet
Pressure_Profile = hyColumnSubFlowsheet.Pressures
For i = 0 To UBound(Pressure_Profile)
MsgBox “Stage “ & i + 1 & “ pressure = “ & Pressure_Profile(i)
Next i
Vista de página 59
1 2 ... 55 56 57 58 59 60 61 62 63 64 65 ... 373 374

Comentários a estes Manuais

Sem comentários