带有 python 界面的 Dymola - 将结果绘制到文本文件 (.txt) 或类似文件中

Dymola with python interface - plotting the results to a text file (.txt) or something similar

我是来自 dymola python 界面的 运行 这个例子(见下文),我如何 plot/store 在 table/text-file 或类似的东西中输出?

from dymola.dymola_interface import DymolaInterface
from dymola.dymola_exception import DymolaException

dymola = None
try:
    # Instantiate the Dymola interface and start Dymola
    dymola = DymolaInterface()

    # Call a function in Dymola and check its return value
    result = dymola.simulateModel("Modelica.Mechanics.Rotational.Examples.CoupledClutches")
    if not result:
        print("Simulation failed. Below is the translation log.")
        log = dymola.getLastError()
        print(log)
        exit(1)

    dymola.plot(["J1.w", "J2.w", "J3.w", "J4.w"])
    dymola.ExportPlotAsImage("C:/temp/plot.png")
    print("OK")
except DymolaException as ex:
    print("Error: " + str(ex))
finally:
    if dymola is not None:
        dymola.close()
        dymola = None

在 Dymola 手册第 2 卷中,"Section 6.7 Python Interface for Dymola"(发布的示例似乎出自其中),您可以找到与多线程相关的示例。在此示例中,您可以找到一种直接创建绘图的方法。

可以在 https://www.j-raedler.de/projects/dymat/ 找到一个不错的工具。您可以使用它来读取默认结果文件(这是存储在工作目录中的文件 #ModelName#.mat),在 Python.

中有效地进一步处理它

要从默认的 .mat 文件切换到基于文本的文件,您可以在此处找到命令:

还有其他方法,但这作为第一步应该没问题...