Before understanding, we must first understand the purpose of the servo motor. Compared with the ordinary motor, the servo motor is mainly used for precise positioning. Therefore, the control servo is usually called the position control of the servo motor. In fact, the servo motor also uses two other modes of operation, namely speed control and torque control, but the application is relatively small.
Speed control is generally implemented by a frequency converter. Speed control is performed by a servo motor. Generally, it is used for rapid acceleration/deceleration or speed precision control, because the servo motor can reach several thousand revolutions within a few millimeters relative to the inverter. Since the servos are closed loop, the speed is very stable. The torque control mainly controls the output torque of the servo motor, also because the response of the servo motor is fast. With the above two controls, the servo driver can be regarded as a frequency converter, which is generally controlled by analog.
The main application of servo motors is positioning control. Position control has two physical quantities to control, that is, speed and position. To be precise, it is to control where the servo motor arrives at what speed and stop accurately.
The servo drive controls the distance and speed at which the servo motor operates by the frequency and number of pulses received. For example, we promise that the servo motor will make one revolution every 10,000 pulses. If the PLC sends 10,000 pulses in one minute, the servo motor will complete one revolution at 1r/min. If 10,000 pulses are sent in one second, the servo motor will finish at 60r/min. ring.
Therefore, the PLC controls the servo motor by controlling the transmitted pulse, and sends the pulse physically, that is, using the transistor output of the PLC is the most common method, generally the low-end PLC adopts this method. The high-end PLC transmits the number and frequency of pulses to the servo drive by means of communication. such as:
Profibus-DP CANopen, MECHATROLINK-II, EtherCAT, etc.
These two methods are only different channels of implementation, the essence is the same, and it is the same for us programming. This is what I want to tell you, to learn the principles, to bypass the class, not to learn.
For program writing, this difference is very large, the Japanese PLC is the instruction method, and the European PLC is in the form of function blocks. But the essence is the same. For example, to control the servo to take an absolute positioning, we need to control the PLC's output channel, pulse number, pulse frequency, acceleration and deceleration time, and need to know when the servo driver is positioned, whether it touches the limit, etc. Wait. No matter which PLC, nothing more than the control of these physical quantities and the reading of the motion parameters, but different PLC implementation methods are different.