Skip to content

Instantly share code, notes, and snippets.

@kijuky
Created August 8, 2011 19:56
Show Gist options
  • Save kijuky/1132561 to your computer and use it in GitHub Desktop.
Save kijuky/1132561 to your computer and use it in GitHub Desktop.
Hysysと戯れる。
var simulationCase = WScript.GetObject("C:/Program Files/AspenTech/Aspen HYSYS 2006.5/Samples/TUTOR1.hsc");
// 全ての単位操作の名前を書き出す
for (var index = 0; index < simulationCase.Flowsheet.Operations.Count; index++) {
var operation = simulationCase.Flowsheet.Operations.Item(index);
WScript.Echo(operation.name);
}
// 参考
// C:/Program Files/AspenTech/Aspen HYSYS 2006.5/xhysys.chm
// AspenHYSYS2006_5-Cust.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment