본문 바로가기

카테고리 없음

Hysys 7.3

Hysys 7.3

Aspen Hysys 7.3 Download

Aspen HYSYS ® the best process simulation software for the oil and gas industry is continuously upgraded to add new functionalities for improved process design and safe, optimized plant operations all in a unified engineering environment. I have collected some tutorial video for our Learning purpose.

Aspen Hysys 7.3

Hi there,This post is requested by Mayembe. It has been so long time not to update this blog. Linking between Hysys Simulations and Excel using Macro VBA (Visual Basic Application). Create new module in Macro VBA and put this code.Option ExplicitPublic hyApp As HYSYS.ApplicationPublic simCase As SimulationCase' LOADING HYSYS TUTORIAL FILE Set hyApp = CreateObject('HYSYS.Application') hyApp.Visible = True Set simCase = hyApp.ActiveDocument If simCase Is Nothing Then fileName = Worksheets('inputhysys').Range('c2') If fileName 'False' And simCase Is Nothing Then Set simCase = GetObject(fileName, 'HYSYS.SimulationCase') simCase.Visible = True End If End IfNote: I put directory address of Hysys file (HSC file) in cell C2.