Simulate the BouncingBall.fmu from the Rerference FMUs with FMPy.
from fmpy import * # path to the FMU filename = 'BouncingBall.fmu' # simulate the default experiment result = simulate_fmu(filename) # plot the result plot_result(result)