Hi Sahand,
Can you share how did you configure the model to start from 0 speed?
For this shipping example, the initial condition is defined by a .mat file. And the model has defined a InitFcn callback to load the inital values, where the inital motor speed is defined 0.993pu. Everytime when you hit run, it will load this .mat file.
One way to change the inital motor speed is to define the xInitial in 'PreLoadFcn' callback, and modify the inital motor speed to 0 by run this in the commond before run the model:
>> xInitial.signals(44).values = 0;
Here is the simulation result of motor speed with 0 inital:
Hope this is helpful!
Best,
Christine