Stepping system = stepping driver + stepping motor. The stepper motor is driven by a stepper driver, which is equivalent to a drive power supply , and it is controlled by an external pulse signal and direction signal (here is an example of Siemens PLC output pulse), and then controls the rotation angle and speed of the stepper motor.
2. Step angle: The angle at which each pulse causes the stepper motor to rotate. The most common one is 1.8°. This generally cannot be changed.
Example: Without setting the subdivision, how many pulses does the PLC need to send out to control a stepper motor with a step angle of 1.8° to rotate one revolution (360°)?
360°/X=1.8°/1, so X=200 pulses.
3. Subdivision: In practical applications, it is found that if the step angle is large, the angle of each rotation will be large, which will cause vibration and the corresponding control error will also become larger. Therefore, the segmentation function was introduced. This means that the step angle can be increased by a few minutes through the driver’s DIP switch to make the motor rotate more smoothly.
Example: The step angle is 1.8°, and 10 subdivisions are set. Then every time the PLC sends out a pulse, the motor only rotates 0.18°, and the stepper motor rotates once (360°). How many pulses does the PLC need to send out?
360°/X=0.18°/1, so X=2000 pulses.
Summary: The larger the step angle, the fewer the number of pulses; the smaller the step angle, the more the number of pulses.
Introduction to stepping system hardware (taking Pfield stepper motor as an example)
1. Stepper driver
The signal voltage of the stepper motor is 5V, and the voltage used by Siemens PLC is 24V, so to connect to the driver, a 1.2K, 1/4W resistor needs to be connected in series, as shown in the red part of the picture above.
Siemens PLC (CPU222) can output two types of high-speed pulses:
1. PTO (duty cycle 50%)
2. PWM (duty cycle can be changed)
The above two high-speed pulse output instructions can be used to control the stepper driver, and then the stepper motor, and then control the movement and speed of some specific equipment.