DC Motor Basics
The physics behind VEX motors
Direct Current (DC) Motors like the ones used on VEX robots move in accordance with a few physics equations. An understanding of these equations will help clarify the relationship between the values commanded to the motor from software and the physical movement of the motor.
Prerequisites
A basic understanding of electronics (really just Ohm's Law)
Velocity
The velocity of the motor roughly correlates to the voltage that is commanded to it.
The full equation is:
The angular velocity of the motor, or , is equal to the motor's velocity constant, , multiplied by the difference between the voltage commanded to the motor, , and the actual voltage drop across the motor, .
Those familiar with electronics will probably be asking - why wouldn't be equal to here, like Ohm's Law says? This is because the commanded voltage is distributed across two outputs of sorts with the motor:
The DC voltage drop based on the current, , and relatedly, the torque provided by the motor (see Torque)
The "back-EMF" (ElectroMotive Force). This is the voltage drop accross the motor corresponding to the velocity of the motor. The faster the motor is spinning, the more back-EMF is produced.
We can rewrite the equation above to show the commanded voltage as the sum of these two voltages:
This back-EMF component, interestingly, is also the explanation for how electric generators work. Traditionally a voltage is provided to a motor to make it spin. This relation works in the opposite direction too though - so manually turning a motor will produce a voltage on the motor. The faster you spin the motor, the larger the voltage produced. On the VEX Cortex you could observe this by spinning a 393 motor fast enough to turn on the Cortex LEDS while there wasn't a battery plugged in.
Torque
The second kind of output from a DC motor is torque. Torque is the rotational force provided by the motor. A motor on the drivetrain for a heavy robot will need to produce a lot of torque to get the robot moving, while a motor on a flywheel should produce relatively little.
The torque that a motor produces is directly related to its current draw:
The torque, , is equal to the current drawn by the motor, , multiplied by a torque constant, .
Combining the Two
If we substitute our torque equation into the voltage/velocity equation, we get:
The voltage provided to the motor will become a mix of torque and velocity. If the motor is stuck by some external force and cannot move at any velocity, then all of the provided voltage will go toward providing as much torque to try to get the motor moving.
Determining the Constants
Torque Constant (K_t)
The torque constant of a motor is equal to the torque provided by the motor divided by the current draw of the motor while stuck and under stall.
The following PROS code will find :
The value for a motor with a Blue (600RPM) gearset is roughly: 0.198.
Resistance (R)
The motor's resistance, , is equal to the voltage provided to a motor divided by its current draw while under stall.
The following PROS code will find :
The R value for a 600RPM V5 Motor is roughly 3.84 Ohms.
Velocity Constant (K_v)
The velocity constant of a motor can be calculated after finding the resistance. Command a voltage to the motor (while it is not connected to anything or under stall) and measure the velocity and current draw of the motor. Plug those values into the combined equation and solve for K_v.
The following PROS code will find :
A 600RPM V5 Motor has a K_v value of roughly 6.68.
Converting Constants for Other Gearsets
The value is consistent for each gearset -- the value should be roughly the same for a 100RPM V5 motor and a 600RPM motor. The and values, on the other hand, will scale according to the gearset used. A 100RPM motor has 6 times the torque and 1/6 the velocity of a 600RPM motor, so its value will be 6 times as large and its value will be 1/6th as large compared to the 600RPM motor's constants.
Contributing Teams to this Article
BLRS (Purdue SIGBots)
Last updated