- 积分
- 3
- 注册时间
- 2010-6-17
- 积分
- 3

|
会用vba的话,要用excel检索hysys结果实际上很简单,比如
Dim hyCase As Object
Sub ConnectHYSYS()
On Error GoTo ErrorTrap
Set hyApp = GetObject(, "HYSYS.Application")
Set hyCase = hyApp.ActiveDocument
If hyCase Is Nothing Then
MsgBox "A HYSYS simulation case must be open."
Exit Sub
End If
Clear
GetStreamData
Exit Sub
ErrorTrap:
If Err = 429 Or Err = 483 Then
MsgBox "HYSYS is not currently running."
Else
MsgBox "The following error (" & Err & ") occurred: " & Error(Err)
End If
End Sub
Sub OpenHYSYS()
' Set hyApp = GetObject(, "HYSYS.Application")
' If Err = 483 Then MsgBox "HYSYS is not running."
On Error GoTo ErrorTrap
CaseName = Application.GetOpenFilename("HYSYS Simulation Case (*.hsc), *.hsc")
If CaseName = "False" Then
Exit Sub
End If
Set hyCase = GetObject(CaseName, "HYSYS.SimulationCase")
GetStreamData
hyCase.Close
Exit Sub
ErrorTrap:
MsgBox "The following error occurred: " & Error(Err), Buttons:=48
End Sub
'Get HYSYS stream data
Sub GetStreamData()
On Error GoTo ErrorTrap
Dim hyStreams As Object
Dim hyStream As ProcessStream
Dim xlSheet As Worksheet
Dim hyfluid As Fluid
Dim OptionButtons As OptionButtons
Dim OptionButton As OptionButton
Dim SIValue As Boolean
Set hyStreams = hyCase.Flowsheet.MaterialStreams
Set xlSheet = Worksheets("Stream Data")
Set OptionButtons = Worksheets("Main").OptionButtons
Clear
For Each OptionButton In OptionButtons
If OptionButton.Value = xlOn Then Exit For
Next
With xlSheet
i = 0
For Each hyStream In hyStreams
.Cells(3 + i, 1) = hyStream.Name
.Cells(3 + i, 2) = Format(hyStream.VapourFractionValue, "0.###")
.Cells(3 + i, 3) = Format(hyStream.Temperature.GetValue("K"), "##.###")
.Cells(3 + i, 4) = Format(hyStream.Pressure.GetValue("kg/cm2"), "0.###")
.Cells(3 + i, 5) = Format(hyStream.Pressure.GetValue("bar"), "0.###")
.Cells(3 + i, 6) = Format(hyStream.MolarFlow.GetValue("Nm3/h(gas)"), "0.##")
.Cells(3 + i, 7) = Format(hyStream.ComponentMolarFraction.Values(0), "0.000000")
.Cells(3 + i, 8) = Format(hyStream.ComponentMolarFraction.Values(1), "0.000000")
.Cells(3 + i, 9) = Format(hyStream.ComponentMolarFraction.Values(2), "0.000000")
.Cells(3 + i, 10) = Format(hyStream.ActualVolumeFlow.GetValue("m3/h"), "0.##")
.Cells(3 + i, 11) = Format(hyStream.MassFlow.GetValue("kg/h"), "0.##")
.Cells(3 + i, 12) = Format(hyStream.CpCv, "0.####")
If hyStream.Compressibility > 0 Then
.Cells(3 + i, 13) = Format(hyStream.Compressibility, "0.#####")
Else
.Cells(3 + i, 13) = "N/A"
End If
If hyStream.Viscosity > 0 Then
.Cells(3 + i, 14) = Format(hyStream.Viscosity, "0.#####")
Else
.Cells(3 + i, 14) = "N/A"
End If
.Cells(3 + i, 15) = Format(hyStream.MassDensity.GetValue("kg/m3"), "0.###")
Set hyfluid = hyStream.DuplicateFluid
On Error Resume Next
.Cells(3 + i, 17) = Format(hyfluid.BubblePointPressureValue / 100, "0.000")
i = i + 1
Next hyStream
Set hyStreams = hyCase.Flowsheet.EnergyStreams
For Each hyStream In hyStreams
.Cells(3 + i, 1) = " " + hyStream.Name
.Cells(3 + i, 4) = "kW"
.Cells(3 + i, 3) = Format(hyStream.Power, "#.#")
i = i + 1
Next hyStream
xlSheet.Select
Selection.Sort Key1:=Range("A3"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, SortMethod _
:=xlPinYin
End With
Exit Sub
ErrorTrap:
MsgBox "The following error occurred: " & Error(Err), Buttons:=48
End Sub
以上代码各个版本hysys都能使用,当然你需要先建立一个相应的excel页。 |
|