How to deal with Mitsubishi PLC failures - Mitsubishi

Create Date: 2024-8-30 12:03:23|Source: Mitsubishi Electric/Mitsubishi Electric

01. Base system problem

In Mitsubishi PLC, binary, octal, decimal 10, hexadecimal, 2-10 (BCD), etc., we need to master the conversion of 2-8 base.

2-8, the binary number is remembered from the back, every 3 dividends are divided into a group, and each group is separated into octal, such as 1110111-1 110 111-167;

8-2, separate each of the octal numbers, and then convert each bit into a binary system and combine them. e.g. 157-1 101 111-1101111;

2-16 conversion, 2-16, the binary number is remembered from the back, every 4 dividends in a group, each group is separated into hexadecimal, such as 1011111-101 1111-5F

16-2, separate each hexadecimal number, and then convert each bit into a binary system and combine them. Such as 47-0100 0111-1000111

In the FX series PLC, X,Y is used in occimal system, that is, X0-X7, X10-X17, Y0-Y7...... There is no X8, and other soft components are in decimal format.

In the A and Q series PLCs, X and Y use hexadecimal system, that is, X0-XF, X10-X1F, Y0-YF

02. Programming software

FX-GPWIN is only suitable for FX series PLC programming

GX-Developer is suitable for FX, Q, A series PLC programming

GX-WORK2 is suitable for FX, Q, L series PLC programming

When installing GX-Developer, please first install the SETUP in the ENVMEL in the device folder, and then click SETUP in the device folder. When installing the device, please note that there will be options in the middle of the device, and note that it is not critical to take the device into a monitoring mode.

                              How to deal with Mitsubishi PLC failures - Mitsubishi

03. Programming line problem

There are several main programming cables: SC-09, USB-SC-09, and USB (printer cable).

When using SC-09, if the computer does not have RS232 interface, it needs to be equipped with USB/RS232 converter, when purchasing the converter, please be sure to explain to the merchant that it is used for PLC programming. The primary requirement is the device driver, after the device is driven, there will be a virtual RS232 port number of the converter in the device manager of the computer, such as COM4, and this port number should be selected when downloading and uploading when programming.

When using the USB-SC-09 cable, the device driver is required, and after the device is driven, there will be a virtual RS232 port number of the converter in the device manager of the computer, such as COM4, and this port number should be selected when downloading and uploading during programming.

When the Q series PLC is connected with a USB cable, the first connection will find new hardware, which is driven in the device directory MELSEC\Easysocket\USBDrivers.

04. Array problem

It is not uncommon to see people asking this question like MOV H0003 K1Y000

First of all, you need to understand that H and K H are generally hexadecimal values, and K is decimal values.

Before you understand the meaning of KmXn, KmYn, KmMn, etc., this is like an array, an array of 4 adjacent elements, which can represent 0-1111 in binary, which is 0-5 in decimal and 0-F in hexadecimal. Km indicates that there are several arrays, and Xn, Yn, etc., indicate the starting bits of the array. For example, K1Y0 is Y0, Y1, Y2, Y3, where Y0 is the low position and y3 is the high position, and the corresponding data should be written Y3Y2Y1Y0.

05. Pulse output problem

If you want to output pulses, you need the MT model, and of course, the MR model can also be changed to transistors if you are good enough to change the relay such as Y0 and Y1 to transistors.

06. The problem of peripheral imitation potentiometer

There is an imitation potentiometer on the periphery of FX0N, the corresponding potentiometer address is D8013, and the starting value changes between 0 and 255 with the adjustment of the potentiometer.

There are two imitation potentiometers in the periphery of the FX1N/FX1S, the corresponding potentiometer address is D8030/D8031, and the starting value changes between 0 and 255 with the adjustment of the potentiometer.

The FX2N does not have an imitation potentiometer in the periphery.

The peripheral potentiometer can be extended with an expansion board.

The use of peripheral potentiometers, such as timers with adjustable punctuality, etc., if the punctuality time is 2-8S, then the requirements are converted as follows

07. About the moment at that time

Suppose there is no time in FX0N

FX1N/1S, FX2N Time of Time, Seconds D8013, Minutes D8014, Hour D8015, Day D8016, Month D8017, Year D8018, Day of the Week D8019.

At that time, the use of time, punctual power on, if you need to turn on at 8:00 and turn off at 17:00

  LD>= D8015 K8

  SET Y0

  LD>= D8015 K17

  RST Y0

08. Mutual conversion of binary and decimal systems

This can be classified into N-base and decimal conversions.

First, look at the conversion of decimal to N, and choose the divisor remainder, that is, divide the decimal number by N to get the quotient and remainder, and divide the quotient by N to get the quotient and remainder...... This is repeated until the quotient is 0, and then all the remainders are lined to the left of the remainder obtained from the back, and the remainder obtained first is to the right, and the resulting set of numbers is the N base number of the decimal number. For example, if the decimal number 12 is converted to a decimal system, then 12/7 = 1 is left as 5, and 1/7 = 0 is left as 1, so the base number is 15. For example, if the decimal number 9 is converted into a binary number, then 9/2 = 4 and 1, 4/2 = 2 and 0, 2/2 = 1 and 0, 1/2 = 0 and 1, so the binary digit 1001.

If you look at the conversion of an N number into a decimal number, first take the value of each bit * the weight of the bit to get the product, and then add the product of each bit to get the sum of the number of the decimal number. The weight of the M bit of the base N = the (M-1) square of N.

For example, 23 in decimal 7 to decimal = 2×7(2-1) +3×7(1-1) =2×7+3×1=17. For example, 37 in octal is converted to decimal = 3×8(2-1) + 7×8(1-1) = 3×8+7×1=31.

09. About expansion and type description

  FX 1 N-30 MR-001

FX is a series number Mitsubishi Micro PLC

1 is a series sequence,

N is extensible, if S cannot be extended

30 indicates that the total number of input and output points is 30 points

M is the host, and E is the extension

R is the relay output, T is the transistor output (when the front is E, X is the input, YR is the relay output, YT is the transistor output, YS thyristor output) 001 is the AC power supply, D DC power supply.

Although S is not an expansion product, if you only need to expand X, Y, AD, and DA below 4 points, you can choose to use a function expansion board, such as FX1N-4EX-BD, FX1N-2EYT-BD, FX1N-2AD-BD, FX1N-1DA-BD.

When the input/output point is expanded, the number starts with the next 8 bits of the host, such as FX1N-30MR, extended FX1N-8EX, FX1N-8EYR, then the input of the host is X0-X7, X10-X17, the output is Y0-Y7, -Y10-Y15, the extended input is X20-X27, and the output is Y2-Y27.

10. Problems in the use of programming software

When the Mitsubishi programming software modifies the ladder diagram, it can directly input instructions in the form of a statement table, and does not need to use [ ] to select them one by one.

When modifying, pay attention to the input method in English, and pay attention to the difference between 0 and O.

More on that
Which components in the Mitsubishi inverter need to be replaced regularly Which components in the Mitsubishi inverter need to be replaced regularly

Mitsubishi inverter is composed of many electronic parts, such as semiconductor components, etc., in the application and protection involves the replacement of a related component, because of the composition or physical characteristics of the inverter, in a certain period of time will deteriorate, thus reducing the characteristics of the inverter, is ...

Characteristics of servos and advantages of Mitsubishi servos Characteristics of servos and advantages of Mitsubishi servos

The servo system is an automatic control system that enables the output of the object's orientation, direction, and state to change with the arbitrary change of the input quantity (or given value). In the automatic control system, the system that can echo the control signal with a certain degree of accuracy is called the follow-up system, also known as the servo system.

Mitsubishi inverter setting parameter adjustment method Mitsubishi inverter setting parameter adjustment method

Mitsubishi inverter has many setting parameters, each parameter has a certain selection scale, and the inverter can not work normally due to improper setting of a single parameter in the application. Let's take a look at the Mitsubishi inverter parameter setting operation. ...

Mitsubishi is a method for completing the modification of timer setting outside the PLC Mitsubishi is a method for completing the modification of timer setting outside the PLC

In the process of using the PLC control system, it is often necessary to correct some parameters, and the most common is to correct the set value of the timer. In order to facilitate the operator to correct the set value of the timer, the following methods can be used: 1. The use of man-machine ...

Mitsubishi servo motor types and advantages Mitsubishi servo motor types and advantages

1. DC servo The structure is simple and easy to operate. However, considering the actual operation, the DC servo motor has introduced mechanical equipment for reversing installation, which increases the cost, has many problems, and is inconvenient to maintain, and often interferes with the production and manufacturing due to the sparks of carbon brushes, and electromagnetic interference will occur. Combine...

Analysis of PLC and inverter connection problems - Mitsubishi Analysis of PLC and inverter connection problems - Mitsubishi

When the inverter is used to form an active control system for control, in many cases, the PLC and the inverter are used together, and how to correctly connect the PLC and the inverter together has become the key to the success of the system. 1. PLC switch command signal input Inverter input ...

Advantages and disadvantages of different output types of Mitsubishi PLC Advantages and disadvantages of different output types of Mitsubishi PLC

The three output types of PLC are: transistor output, thyristor output and relay output, what is the difference between these three different output types? (1) Transistor output: The biggest advantage is that it is accustomed to high-frequency action, and the echo moment is short, generally about 0.2ms, but it ...

Mitsubishi servo drive system requirements Mitsubishi servo drive system requirements

Servo drive system requirements 1. Wide speed regulation 2. High positioning accuracy 3. Satisfactory transmission rigidity and high speed stability 4. Fast response, no overshoot In order to ensure productivity and processing quality, in addition to the requirement of high positioning accuracy ...

Precautions for the use of Mitsubishi servo motor with brake Precautions for the use of Mitsubishi servo motor with brake

1. Occasions to choose a servo motor with brakes: The servo motor is mainly loaded through the motor shaft, if the load driven by the motor shaft is in the straight direction, after the whole control system is powered off, the load on the servo motor shaft will be driven to run down under the effect of gravity, so that ...

How does Mitsubishi PLC work? How does Mitsubishi PLC work?

1. A scanning cycle is divided into input sampling, program fulfillment, and output rewriting. 2. Each scan process. The convergence samples the input signal. The convergence rewrites the output signal. 3. The inner ...

The method of Mitsubishi PLC to control the Mitsubishi inverter The method of Mitsubishi PLC to control the Mitsubishi inverter

The switching quantity control inverter of PLC is selected (that is, the switching output terminal of PLC is directly connected to the switching input terminal of the inverter, and the PLC can control the start, stop, forward and reverse rotation of the inverter and high, medium and low speed multi-stage speed operation through the program). ...

Mitsubishi PLC's six programming languages Mitsubishi PLC's six programming languages

(1) Ladder diagram Programming language is traditionally called a ladder diagram. The ladder diagram follows the method of relay control circuit, and it can also be said that the ladder programming language is simplified from the symbol evolution on the basis of the logic control of relays and contactors commonly used in electrical control systems.

Mitsubishi Step Ladder Instruction [STL], [RET] usage example Mitsubishi Step Ladder Instruction [STL], [RET] usage example

Step Instruction (STL) is an instruction that uses internal software components to control the process step on top of the sequential control program. A step-to-back instruction (RET) is an instruction that is used to return to the main program (bus) after the state (S) process is completed. ...

Mitsubishi's introduction to the three-circuit system Mitsubishi's introduction to the three-circuit system

Servo motors are generally operated by three circuits. To put it bluntly, the three circuits are three closed-loop control negative feedback PID control systems. The first innermost PID loop is the current loop, which is implemented completely inside the servo controller. Exercise...

The difference between a motion controller and a PLC – Mitsubishi The difference between a motion controller and a PLC – Mitsubishi

1. Motion manipulator The use of motion control in the field of robotics and CNC machines is more chaotic than in specialized machines, which are more sketchy and often referred to as General Motion Control (GMC). 2.plc Programmable logic manipulators are a kind of specialized ...

Mitsubishi inverter heat dissipation causes and countermeasures Mitsubishi inverter heat dissipation causes and countermeasures

1. Whether there is abnormal change in the sound during the operation of the equipment, including whether there is oscillation during the operation of the motor. 2. Whether the ambient temperature of the inverter installation is too high or too low, the working temperature is generally required to be in the range of -10°C - +40°C, and it is better to be about 25°C. ...

Mitsubishi causes electromagnetic interference Mitsubishi causes electromagnetic interference

1. Harmonic disturbance The rectifier circuit will generate a harmonic current, which will cause a voltage drop on the impedance of the power supply system, resulting in a distortion of the voltage wavepattern, and this distorted voltage will cause disturbance to many electronic devices (because most electronic devices can only operate in the sine wave).

Mitsubishi servo system failure problem Mitsubishi servo system failure problem

The origin position is incorrect, and the encoder debugs/zeros the bit Replacement bearings, bearing groove wear, rotor cracking, shaft cracking Gear groove wear The magnet bursts steel, the magnet falls, gets stuck and doesn't move Encoder wear, code ...

Introduction to Mitsubishi PLCFX3U positioning control Introduction to Mitsubishi PLCFX3U positioning control

1. The workbench runs in the direction of the decrease of the value of the current value register (generally M8342=OFF in the opposite direction), and when it encounters the near-point signal, it becomes a creeping speed, and the zero-point signal after leaving the near-point signal arrives with a delay of 1ms, and the pulse output is immediately aborted. ...

Mitsubishi PLC advantages Mitsubishi PLC advantages

Discrete control and motion control, Mitsubishi's instructions are abundant, there are dedicated positioning instructions, control servo and stepping are easy to complete, to complete some messy action control is also Mitsubishi's strength, and Siemens is weaker in this area, there is no special instruction, do servo or step positioning control is not ...

CATEGORIES BYPASS
Customer Service Center

Online Consultation:QQ


ContactContact

Contact: Manager Huang

Contact QQ: 3271883383

Contact number: 13522565663


Scan the code to add WeChat (please save the picture first on the mobile phone)

working hoursworking hours

Weekdays: 9:00-17:00

Holidays: Only emergencies are handled

Contact us

Contact us

Contact number QQ consultation
QQ consultation

3271883383

Company address
Back to top