Hi @Florian ,
After going through your comments, please see my suggestions listed below.
Review Initial Conditions: Ensure that the initial conditions for all components are set correctly. This includes the initial angular positions and velocities of the hub and ring.
% Example of setting initial conditions set_param('Roue_Libre_Haut_Avant.Rotational_Multibody_Interface', 'InitialCondition', '0'); Adjust Solver Settings: Experiment with different solver settings.
For instance, try using a different solver or adjusting the tolerances to see if it improves convergence.
% Example of changing solver settings set_param('Roue_Libre_Haut_Avant', 'Solver', 'ode45', 'RelTol', '1e-6', 'AbsTol', '1e-6');
Simplify the Model: If possible, simplify the model to isolate the problem. Remove or deactivate components to identify if a specific part of the model is causing the issue.
Check for Discontinuities: Ensure that there are no abrupt changes in the model that could lead to discontinuities in the equations of motion. This is particularly important for nonlinear components like clutches.
Use Diagnostic Tools: Utilize MATLAB's diagnostic tools to analyze the model for potential issues. The Model Advisor can help identify common problems in the setup.
In addition to these suggestions, please click the link below to help you further.
https://www.mathworks.com/help/simscape/ug/troubleshooting-simulation-errors.html
Hope this helps.