複数ケースの結果から任意のケースの結果を1つのCSVファイルに書き出すスクリプトを例示します。
app = designer.GetApplication() # 1ケース目の結果を取得 ref1 = app.GetModel(0).GetStudy(0).GetDataSet(u"Torque",1) # グラフの作成 graph = app.GetDataManager().CreateGraphModel(ref1) # 作成したグラフに3ケース目と5ケース目の結果を追加 ref2 = app.GetModel(0).GetStudy(0).GetDataSet(u"Torque",3) graph.AddDataSet(ref2) ref3 = app.GetModel(0).GetStudy(0).GetDataSet(u"Torque",5) graph.AddDataSet(ref3) # CSVファイルとして書き出し graph.WriteTable(u"D:/test.csv")


