01. Base system problem
In Mitsubishi PLC, there are binary, octal, decimal, 10, 2-10 (BCD), etc., we need to master the conversion of 2-8 base.
2-8, remember the base number from the back, divide every 3 into a group, and each group is converted into 8 base, 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 are divided into a group, and each group is converted 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 device folder in the device environment, and then click SETUP in the device folder when the device is finished. When setting up, please note that there will be an option in the middle of the device, and be careful not to tap the device into monitoring mode.
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. First of all, 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 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, and the driver will be 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 beginning bit 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 expanded via an expansion board.
The use of peripheral potentiometers, such as timers with adjustable timing time, etc., if the timing time of the demand is 2-8S, then the demand is converted as follows
07. About the moment at that time
It is assumed that 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.
If you need to turn on and off 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, then all the remainders are lined to the left, and the remainders obtained first are placed 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.
Then look at the conversion of N-base numbers into decimal numbers, 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 is the decimal number of the 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 widening and model 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 expandable product, if you only need to expand X, Y, AD and DA below 4 points, you can choose the 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
Mitsubishi programming software can directly input instructions in the form of sentence tables when modifying the ladder diagram, and there is no 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
|
Mitsubishi Electric one-click adjustment user instruction mode tuning method
1. Set PA08 to 0003 and set the gain adjustment form to; , the function is to prevent the failure of the active calculation of the inertia ratio, and the alarm C005 will be given.
2. Flip it over; menu; , set the speed/acceleration and deceleration/movement amount, according to the actual situation ...
|
|
Mitsubishi servo about the selection of robot methods
When evaluating which process is suitable for which approach in the production environment, it is important to carefully consider the problem you want to deal with and consider all the costs that the robot can save: cutting waste, improving efficiency, improving yield, improving safety, or reducing labor costs. These costs ...
|
|
Self-locking function of servo motor - Mitsubishi
Press the abort button SB1, the contactor KM coil is de-energized, and the auxiliary normally open contact of the KM connected in parallel with SB2 is disconnected to ensure that the KM coil continues to lose power after the button SB1 is released, and the main contact of the KM connected in series in the motor circuit is continuously disconnected and the motor stops. Auxiliary to the KM in parallel with SB2 ...
|
|
Introduction to Mitsubishi PLC network structure
1. The equipment layer/fieldbus CC-Link equipment layer is a field network that connects PLC and other control equipment, sensors and drive equipment, which is the lowest layer of the entire network system. The CC-Link fieldbus connection is adopted, and the number of wiring is greatly reduced, and the maintainability of the system is improved. Combine...
|
|
Mitsubishi Electric Europe Ltd. acquires AQS, a Sweden air conditioning distributor
TOKYO, April 2, 2020 - Mitsubishi Electric Corporation (TSE: 6503) announced today that its European subsidiary, Mitsubishi Electric Europe Ltd., acquired all the shares of AQS PRODUKTER AB, a Sweden company in the comfort, craft industry, on April 1.
|
|
Mitsubishi inverter control mode
According to the classification of the main circuit operation mode, it can be divided into voltage-type inverter and current-type inverter; According to the classification of switching methods, it can be divided into PAM control inverter, PWM control inverter and high carrier frequency PWM control inverter;
According to the classification of operating principles, it can be divided into V/f control frequency conversion ...
|
|
Mitsubishi PLC commonly used circuit programming application
1. Self-locking and interlocking circuits
1) Self-locking circuit: The self-locking circuit is often used for the start-stop control of the motor.
Press the start button X0 motor to start running, release the start button to keep the motor running, press the stop button X1 motor to stop running.
2) Interlock ...
|
|
Capacitive action in Mitsubishi inverters
Capacitor is a kind of energy storage element, with the characteristics of "straight through AC, low frequency through high frequency", people in order to know and identify the capacitor in different circuits, according to its effect in the line and give it many titles, the following introduces the meaning of some commonly used titles.
...
|
|
Mitsubishi drive functions and functions
1. Control the start, stop, speed and so on of the servo motor;
2. Carry out various maintenance on the motor (overload, short circuit, undervoltage, etc.)
3. Respond to external signals, and control the servo motor (position, speed, torque) after internal PID conditioning;
The manipulator is the control of the electric ...
|
|
Mitsubishi Electric will introduce the T-series 2.0kV IGBT module for industrial use
Tokyo, June 9, 2021 – Mitsubishi announced the upcoming launch of its industrial T-series 2.0kV insulated gate bipolar transistor (IGBT) module, the world's first IGBT1 with a 2.0kV withstand voltage, June 30. This module is ideally suited to increase the power of renewable energy power converters ...
|
|
Application of Mitsubishi FX PLC in speed measurement
[Example] a motor is equipped with an optical encoder (the optical encoder is coaxially installed with the motor), and the FX2N-32MT is used to measure the speed of the motor.
【Solution】
Because the photoelectric encoder is coaxially installed with the motor, the ...
|
|
Mitsubishi Electric develops MEMS LiDAR solutions for autonomous vehicles
TOKYO, March 12, 2020 - Mitsubishi Electric Corporation (TSE: 6503) today announced that it has developed a compact Light Detection and Ranging (LiDAR) solution that integrates microelectromechanical systems (MEMS) that enable ultra-wide horizontal scanning angles in the self-...
|
|
The cause of the failure caused by OC - Mitsubishi inverter
1. Aging of drive circuit
Due to the long-term use, it will inevitably lead to the aging of components, and then cause the drive waveform to be distorted, and the output voltage will be unstable, so OC alarm often appears as soon as it is running.
...
|
|
The choice of industrial tablet case – Mitsubishi
Tablet PC can often be seen in today's daily life, it can be brought stronger, but also more popular with us, industrial tablet PC is gradually widespread, because industrial use will cause Tablet PC is very simple damage, so generally will use maintenance covers, so ...
|
|
Introduction of Mitsubishi servo motor
Servo motor refers to the engine that controls the operation of mechanical components in the servo system, and is a kind of auxiliary motor indirect transmission device. The servo motor can make the control speed, azimuth accuracy is very precise, and can convert the voltage signal into torque and speed to drive the control target. Servo motor rotor speed ...
|
|
PLC is different from each output type
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 suitable for high-frequency action, and the sound ...
|
|
Mitsubishi PLC's method of controlling the inverter
1. Mitsubishi PLC's analog signal control inverter
Hardware: FX1N, FX2N PLC hosts, equipped with 1 simple FX1N-1DA-BD extended analog output board; or analog input-output hybrid module FX0N-3A; or FX2N-2DA with two outputs; or four outputs ...
|
|
Features of Mitsubishi PLC commonly used models
FX Series PLC: FX3G PLC has a built-in large-capacity program memory, 32K steps, and the basic instruction processing speed can reach 0.21μs in specification mode. In the meantime, the FX series 5U is suitable for any industry, and is used by small and medium-sized enterprises. For example, this year's very popular mask machine is suitable for FX5U, and he can ...
|
|
Mitsubishi Electric develops satellites for greenhouse gas and water cycle observations
TOKYO, March 30, 2020 – Mitsubishi Electric Corporation (Tokyo: 6503) announced today that it has been appointed by the Japan Aerospace Agency (JAXA) as the contractor for the Global Satellite Observing Satellite for the Greenhouse Gas and Water Cycle (GOSAT-GW), the third satellite in the GOSAT series, ...
|
|
Mitsubishi inverter control method
There are several ways to classify Mitsubishi inverters:
According to the classification of the main circuit operation method, it can be divided into voltage-type inverter and current-type inverter; According to the classification of switching methods, it can be divided into PAM control inverter, PWM control inverter and high carrier frequency PWM control inverter;
Depend on...
|
|