With Python libraries like FMPy I am able to simulate fmus (using fmpy.simulate_fmu
) for given start_time
and stop_time
. In such case, the function simulate_fmu completes the simulation and return the time-series results.
However, I want to create a closed loop between fmu and a Python function (i.e. in a Python script initialize the fmu, get the results from fmu after every 0.1s and based on that update the input value to the fmu for the next timestep). Is there a way to achieve this using existing libraries like fmpy or pyfmi?
The short answer is yes the tools you mention are set up to do what you are asking.
A long answer can be found for FMPy:
But the gist is to perform changes during simulation like you are asking the approach you want you need to go a layer deeper than
simulate_fmu
and usedoStep
and associated setup. The functions/approach needed for these are defined by the FMI standard while highler level implmentations likesimulate_fmu
are not and are therefore tool dependent implementations of the standard.The cliff notes are:
fmu.setReal
andfmu.getReal
fmu.doStep
)fmu.terminate()
andfmu.freeInstance()