Motor drive u = * x + * v Run the Model The drive is now limited in magnitude to 1. You can apply a disturbing force to the motion, disturbance = 0 1){u=1; Colour('red');} //This applies the limit if (u<-1){u=-1; Colour('red');} x = x + v*dt; //This is the simulation v = v + (b*u+disturbance)*dt; t = t + dt; Spot(t, x); Colour('gray'); Spot(t,u); Colour('blue'); Spot(t,v); if(t