Electronic – arduino – How to decrease the motor Speed without losing the maximum Torque

arduinodrivermotormotor controllertorque

I am using MDS40A motor driver(http://www.cytron.com.my/viewProduct.php?pcode=MDS40A&name=SmartDrive40) to drive a power window motor (12V, brushed motor) similar to the one at (http://www.cytron.com.my/viewProduct.php?pcode=MO-PW-R&name=Power%20Window%20Motor%20%28Wira%29%20-%20Right). I am using PWM generated by Arduino to control the speed of the motor. As I use lower value of PWM to get slower speed (the current gets reduced as well), the torque of the motor is drastically reduced. I am using Arduino Uno.

What I have understood is that with PWM, the voltage and current are not affected by the duty cycle. Torque depends on available current, while RPM depends on available current or amount of time it is ON. When the motor is ON, it resists load (accelerates) and when it's OFF it does not resist load (gets slowed by load/decelerates), hence RPM can be controlled by amount of time motor is ON, while torque stays at max due to max current at ON period.

I want to decrease the motor speed without losing the maximum torque. Can anyone help me on this? Can it be done with code?

Best Answer

You seem to be confused about what you want. If you want to decrease the motor speed, but you still want maximum torque, then you must apply full rated electrical power to the motor, and put a mechanical brake on the motor until it slows to the speed you desire. Or, you must somehow make your motor less efficient. I don't think that's what you want.

Think of it this way: electrical power is the product of current \$I\$ and voltage \$E\$:

$$ P = I E $$

Mechanical power is the product of torque (\$\tau\$, in newton-meters) in and angular velocity (\$\omega\$, in radians per second):

$$ P = \tau \omega $$

A motor is an electrical to mechanical power converter. The mechanical power always equals the electrical power after losses.

Furthermore, current is proportional to torque, because the more current you apply, the stronger the magnetic field inside the motor, and the attraction between the motor's poles becomes greater.

If the mechanical and electrical powers are correlated, as are the current and torque, then voltage and speed must be, also. And they are, because the faster the rotor spins through the stator field, the greater back-emf it will generate. This is Faraday's law of induction.

So, if you want to decrease speed, decrease voltage. If you want to decrease torque, decrease current. If you increase torque (say by putting a brake on the motor), you are increasing motor torque. But if you don't change the supply of electrical power, then the mechanical power also won't change. If torque increased, the only way to keep mechanical power constant is to decrease speed, so the motor slows down.

There is one kink here: as torque goes up, current goes up. The resistive losses in the motor also go up, because the windings have some resistance, and those resistive losses are proportional to the square of the current:

$$ P = R I^2 $$

So, as current goes up, the resistive losses increase, making the motor a less efficient converter of electrical energy to mechanical energy, because some of that electrical energy is now creating heat. If you stall the motor, then the motor reaches 0% efficiency: speed is zero, so mechanical power must be zero, but the motor is drawing a ton of current, and there is a voltage drop over the winding resistance, so electrical power is very high.

Interesting fact: if you can make a motor with no winding resistance (or other losses), and you connect it to a perfect voltage source, then the speed regulation (how much speed changes with torque) is perfect. That is, the motor won't slow down if you try to stop it: it will just draw exactly enough more current from your battery to keep spinning at the same speed, no matter what.

PWM is all irrelevant to this. PWM motor control is just a way to efficiently apply less than the full battery voltage to the motor. It works because a PWM driven motor is equivalent to a buck converter. Changing your PWM duty cycle is equivalent to changing your supply voltage:

schematic

The maximum torque you could have (which you will get when the motor is stalled) is limited by the current your power supply can supply and the losses in the motor, just as it is without PWM. Your PWM driver might add a bit of resistance to the circuit, reducing the current and torque a bit, but usually this isn't significant compared to the resistance of the motor windings.