Share this

Improving the control scheme of a squirrel-cage asynchronous motor using PLC

2026-04-06 05:56:40 · · #1
1. Introduction Traditional starting and braking control methods for squirrel-cage induction motors generally include four types: stator circuit series resistance starting, Y/Δ starting, autotransformer starting, and extended delta starting; braking methods include three types: reverse braking, energy consumption braking, and capacitor braking. The implementation of any of these starting and braking control methods is usually accomplished by a relay-contactor control system. The following analysis uses stator circuit series resistance reduced-voltage starting and reverse braking as examples to illustrate the starting and braking control of a squirrel-cage induction motor implemented by a relay-contactor system. [ALIGN=CENTER] Figure 1 Relay Contactor Control System[/ALIGN] As shown in Figure 1, this control circuit contains three contactors and one intermediate relay coil, with 12 contacts. During starting, both KM2 and KM3 coils are in the open state. Pressing the start button SB1 energizes and latches the KM1 coil, and the motor starts with reduced-voltage series resistance. When the motor speed reaches a certain value (this value is the set value of speed relay KS1, which is adjustable; for example, it activates when set to 100 r/min), the normally open contact of speed relay KS1 closes, the intermediate relay KA is energized and self-locked, and the normally open contact of KA connects the contactor coil KM3. The main contacts of KM3 short-circuit the stator resistor R in the main circuit, and the motor enters stable operation when the speed reaches the given value. During braking, pressing the stop button SB2 de-energizes the KM1 coil, and its main contacts disconnect the three-phase power supply; the normally open contacts in the control circuit open, KM3 is de-energized, and the current-limiting resistor is connected in series; the normally closed contacts close, connecting the reverse braking contactor KM2, swapping the phase sequence of the two-phase power supply, and the motor is in reverse braking mode. When the speed drops to a certain value (e.g., 100 r/min), the normally open contact of KS1 opens KA, and then KM2 opens, the motor is de-energized, and it stops quickly. This traditional relay contactor control method has clear control logic and uses an electromechanical integrated approach, making it easy for ordinary mechanical or electrical technicians to maintain. However, due to the large size of the electrical components, the numerous contacts, and the high failure rate, its operational reliability is relatively low. With the development of PLC technology, using PLC for motor operation control has become an inevitable trend. 2. Using PLC to Implement Starting and Braking Control of Squirrel-Cage Asynchronous Motors Programmable logic controllers (PLCs) are products developed based on relay control and computer control. Since the late 1960s, when the United States first developed and used PLCs, countries around the world, especially Japan and West Germany, have successively developed their own PLCs. Therefore, compared with the traditional relay contactor control system, the author believes that using PLC to implement starting and braking control of squirrel-cage asynchronous motors is the wisest choice. Below are the wiring diagram, ladder diagram, and instruction program of the starting and braking control circuit for squirrel-cage asynchronous motors implemented by the author using PLC, as shown in Figures 2 and 3. The PLC control logic is basically the same as that of the traditional relay contactor control system. Its working process is as follows: When starting, press the start button SB1, the normally open contact of X400 closes, the Y430 coil is energized and self-locked, the KM1 coil is energized, the main contact is attracted, the motor starts with the current limiting resistor R connected in series, and at the same time, the two pairs of normally open contacts of Y430 close. When the motor speed rises to a certain value, the normally open contact of KS1 closes, the normally open contact of X402 closes, the M100 coil is energized and self-locked, the two pairs of normally open contacts of M100 connect the Y432 coil, the KM3 coil is energized, the main contact is attracted, the starting resistor is short-circuited, and the motor speed rises to the given value and enters stable operation. During braking, pressing the stop button SB2 disconnects the Y430 coil via the normally open contact of X401, de-energizing and releasing KM1. Simultaneously, the normally closed contact of Y430 energizes the Y431 coil, energizing the contactor KM2 for braking. This reverses the phase sequence of the two power supplies, putting the motor in reverse braking mode. At the same time, the normally open contact of Y430 disconnects the Y432 coil, de-energizing and releasing KM3, and a resistor R is connected in series to limit the braking current. When the motor speed rapidly decreases to a certain value, the normally open contact of KS1 opens, the normally open contact of X402 disconnects the M100 coil, the normally open contact of M100 disconnects the Y431 coil, and KM2 de-energizes and releases, quickly stopping the motor. In case of overload, the normally open contact of the thermal relay FR closes, and the two pairs of normally closed contacts of X403 disconnect the coils of Y430 and M110, causing either KM1 or KM2 to de-energize and release, thus providing overload protection. The above control process instruction program is as follows: 3. Comparison of PLC and relay contactor control systems By comparing the traditional control method for starting and braking of squirrel-cage asynchronous motors and the PLC control method, in a sense, PLC control is developed from relay contactor control. The two have similarities but also many differences. 3.1 Differences between the two schemes (1) The PLC internally adopts "soft" logic. The relay contactor control is all connected by hard devices, hard contacts and "hard" wires, which is a full hardware control; the PLC internally adopts "soft" electrical appliances, "soft" contacts and "soft" wires, which is a software control. (2) The PLC control system has a compact structure. The relay contactor control system uses many electrical appliances, has a large size and a high failure rate; the PLC control system has a compact structure, uses fewer electrical appliances and has a small size. (3) The PLC internally is all "soft contacts" and has fast action. The electrical contactor control is all mechanical contacts, which have slow action and serious arc discharge; the PLC internally is all "soft contacts" and has fast action. (4) PLC control function changes are extremely convenient. Changing the control function of a relay contactor requires disconnecting wires and rewiring, or even replacing components, which is quite troublesome. Changing the control function of a PLC generally only requires modifying the program, which is extremely convenient. (5) PLC control system has a short manufacturing cycle. Because the PLC control system has a simple and compact structure and is basically software controlled, the design, construction and debugging cycle is shorter than that of a relay contactor control system. In addition, since PLC technology is developed on the basis of computer control, it has advantages in hardware and software settings that traditional relay contactor control cannot match, and its working reliability is extremely high. 3.2 Design points of PLC scheme (1) Setting up filtering In PLC, π-shaped filters are generally set at the input and output interfaces. They can not only filter out high-frequency interference from the outside, but also reduce mutual interference between signals between internal modules. (2) Isolation is provided In the PLC system, the CPU and each I/O circuit (mainly referring to digital ports) are almost all equipped with optocouplers for isolation to prevent interference or possible damage to the CPU. (3) Shielding: There are two types of shielding: one is to use a double shielding of the transformer with magnetic and electric fields, in which case a material that is both magnetic and conductive should be used as the shielding layer; the other is to only shield the CPU and programmer modules with electromagnetic fields, in which case a conductive metal material can be used as the shielding layer. (4) Modular Structure: PLCs usually adopt a modular structure, which is convenient for users to inspect and replace modules. At the same time, each module is equipped with a fault detection circuit and its status is marked with a corresponding indicator, so that users can quickly determine the location of the fault. (5) Interlocking Function: There is an interlocking function between each output channel in the PLC to prevent accidents caused by malfunctions between controlled objects. (6) Environmental Detection and Diagnostic Circuit: This part of the circuit is responsible for detecting the operating environment of the PLC (such as mains voltage, operating temperature, ambient humidity, etc.), and also for monitoring the working status of each module in the PLC. This part of the circuit often works in conjunction with the software to realize automatic fault diagnosis and prediction. (7) Watchdog Circuit: This circuit in the PLC is specifically designed to monitor whether the PLC's operation process follows a predetermined sequence. If a fault occurs in the PLC or the user program area is damaged, an alarm will sound because the CPU cannot operate in the predetermined sequence (predetermined time interval). (8) Simple Input and Output Control of PLC: The PLC operates in a scanning mode, meaning that the PLC processes signal input, data, and control signals in batches at different time intervals within a scan cycle. This not only simplifies user programming and reduces errors but also makes the PLC less susceptible to external interference. Furthermore, the data processed by the PLC is relatively stable, thus reducing errors during processing. Additionally, the input and output control of the PLC is relatively simple, making it less prone to problems caused by inappropriate timing. 4. Conclusion: Because the design and manufacturing of PLCs fully consider the environmental conditions of industrial control and employ multiple levels and effective measures to improve operational reliability, using PLCs for motor control, especially in industrial and mining enterprises with harsh working environments, is a wise choice.
Read next

CATDOLL 123CM Laura (TPE Body with Hard Silicone Head)

Height: 123cm Weight: 23kg Shoulder Width: 32cm Bust/Waist/Hip: 61/54/70cm Oral Depth: 3-5cm Vaginal Depth: 3-15cm Anal...

Articles 2026-02-22