Hi @Maya,
I thoroughly reviewed your block diagram. You have two issues:
Issue #1: Your R2024b model won't run in R2025b because the SPS library was removed. See: https://www.mathworks.com/matlabcentral/answers/2180147
Issue #2: Your converted R2025b model is missing critical connections. Based on your block diagram, here's the exact problem:
Critical Problem - Motor Winding Connections:
Your motor block shows ports a1, b1, c1 (input) and a2, b2, c2 (output). The a2, b2, c2 ports are not properly connected to a neutral point. This is causing your solver error at time 0.001 seconds.
Required Fix:
Add Grounded Neutral (Three-Phase) block:Path: Simscape > Electrical > Connectors & References > Grounded Neutral (Three-Phase).Connect motor ports a2, b2, c2 to this block's three inputs.Connect the neutral output to an Electrical Reference block.
Replace ground symbol at R port:Remove the ground symbol from motor R port (housing). Add: Simscape > Driveline > Rotational > Mechanical Rotational Reference.Connect to R port
Add Solver Configuration block:Path: Simscape > Utilities > Solver Configuration. Connect to electrical network. Settings: Enable "Start simulation from steady state", consistency tolerance = 1e-3
Change solver settings (Ctrl+E):Solver: ode15s (not auto).Relative tolerance: 1e-3.
Why this fixes your error: The Induction Machine Squirrel Cage block models complete stator windings. The winding ends (a2, b2, c2) must connect together to form a wye (star) configuration through the Grounded Neutral block. Without this, the electrical potentials are undefined, creating algebraic constraints the solver cannot resolve.
Test procedure: After fixes, set simulation time to 0.01 sec with zero load torque to verify motor starts.
My recommendation: Use R2024b where your original model works, or apply these specific fixes to your R2025b model.

