Get the minimum step size used by the model containing the S-function.
time_T mSS = ssGetMinStepSize(SimStruct *S)
S
SimStruct representing an S-function block.
A time_T
value indicating the minimum step size of the model
containing the S-function if the model is configured to use a variable-step solver.
Otherwise returns 0
.
Use this macro in methods called after the compilation phase, i.e., in
mdlSetWorkWidths
or later, to obtain the maximum step size of
the model containing the S-function. See
for a description of the
matlabroot
/extern/include/tmwtypes.htime_T
data type.
C, C++
The following lines get and display the fixed step size.
time_T mSS = ssGetMinStepSize(S); ssPrintf("Minimum step size : %g\n",mSS);