First time here? Check out the Help page!
1 | initial version |
I am not familiar with FMUModelCS2
and hence suggest to use the load_fmu()
function to load/instantiate your FMU instead.
so the code will look a bit like this
from pyfmi import load_fmu
house=load_fmu("/workspaces/Eplus93/source/house/example.fmu")
then later you will initialize your FMU with
house.initialize(start_time=starttime, stop_time=finaltime)