Simulation of fmu in Scilab.
out = fmiSimulate(fmu)
out = fmiSimulate(fmu, time, logging)
tlist, a model.
a 1-by-3 matrix of doubles, first number: strart time; second number: fixed step; third number: end of simulatoin. Exemple ([0; 0.01; 10]).
boolean, %f disable or %t enable debug logging. For more information fmiSetDebugLogging
tlist, results of simulation.
out.Real.result : list, results for real variables.out.Integer.result : list, results for integer variables.out.Boolean.result : list, results for boolean variables.fmiSimulate is the simulation function for models. The configuration of the values of variables proceeds via the structures "setValues" and "getValues" in the model
(e.g. fmu.setValues, where "fmu" can be retrieved with the function importFMU). If no changes were done in "setValues" or "getValues"
then a simulation will be done with default values for all variables and parameters. The results of simlation will be received only for variables with start values.
In the case if this function was called with one argument "fmu", the simualtion will be done with default values of time and debug logging.