我是 FMU 世界的新手,并从它开始。我正在尝试在 Python 中加载和模拟在 GT-Suite 中创建的 FMU。我在加载 FMU 时很难解决错误,但最终可以做到。我正在关注jmodelica 教程
from pyfmi import load_fmu
#Load the FMU
model = load_fmu('AHU.fmu')
#simulate an fmu
res = model.simulate(final_time=10)
现在,当我尝试模拟模型时出现错误。错误是:
FMUException: The slave failed to initialize. See the log for possibly more information.
可能是什么原因?我的 .fmu 文件是否有问题,因为当我尝试加载和模拟从fmi-standard下载的 fmu 时,一切正常。
model = load_fmu('RoomHeating_OM_RH.fmu')
res = model.simulate(final_time=10)
'RoomHeating_OM_RH.fmu'
来自fmi 标准