Siemens S7-200PLC programming tips - Solutions - Huaqiang Electronic Network

Probe domestic switch needle KG-300K needle head diameter is 3.0mm normally open switch needle
Photocoupler

Siemens' S7-200 plc is powerful and reliable, but it can't do variable type automatic conversion like high-level language when doing mathematical operations. It is often necessary to manually convert BTI, ITD, etc. After calculation, it takes DTI and other time-consuming. The operation, and the increase in the number of lines of code, the program readability is not good, but also reduces the efficiency of the program.

This article gives a little trick to avoid using these instructions, making your code look more concise and shrinking the scan cycle of the program. It is the idea of ​​space-for-time in the design of algorithms in computer programming. For example, a word variable is often converted to a double word variable in the calculation. If we define the symbol, let the variable occupy the double word memory space, and if the unused word is cleared, it can be accessed in both font or double word. This variable does not require a special conversion. The memory format of the S7-200 is exactly the opposite of our usual PC, which is high word first and low word last. So we can put the word variable in the last two bytes and clear the first two bytes when the program is initialized (the two bytes must not be used elsewhere in the program). When we define a symbol, we define the word variable at VW2 while keeping the value of VW0 to zero. In the program, VW2 can be used to access the variable in font form. At the same time, VD0 can be accessed in double font, which avoids type conversion. To avoid confusion at the time of use, it is best to distinguish between word types and double word types with explicit symbol definitions. It is strongly recommended that the Hungarian nomenclature be used to indicate the variable type with a prefix, and the name of the group cooperation variable of the meaningful English word capitalized with the first letter. I am used to the following suffixes:
b ---- byte type variable (byte)
w ---- font variable (word)
d ---- double word variable (double)
r ---- real variable (real)
f ---- bit variable (flag)
Btn --- Self-reset button input (button)
Sw ---- switch or self-locking button input (switch)
Sig --- sensor, coding and other level signal input (signal)
Rly --- output relay bit (relay)
......
Of course, this is based on personal habits, there is no rule, mainly to facilitate their own distinction.
If there is a word type variable named VarName, in order to use the previous conversion technique, we can define it like this:
wVarName ---- VW2
dVarName ---- VD0 clears VW0 to zero when the program is initialized (if it is a variable that does not need to be memorized, it can also clear dVarName directly) or set VW0 to zero in the data block. Then you need to use wVarName when you need to access variables in word type. You need to use dVarName when you need to access variables in double word type. No type conversion is needed at all. This method can greatly reduce the number of program statements, making the program more concise and readable, and the program running efficiency is also improved because no time-consuming type conversion is required. And the greater the amount of mathematical operations, the more obvious the efficiency improvement. The disadvantage is that it takes up two more bytes of memory, and VW0 cannot be used in future programs. However, the RAM space of the S7-200 is very large, and it is generally inexhaustible. Taking 226 as an example, there is up to 10K of RAM, and even never exceeds 1K. These RAMs are all bought for money. They don't have to be used, and they are not wasted. Similarly, if a byte type variable often needs to be converted to and from a word type variable, letting the byte variable occupy one byte of memory is wasted one byte, avoiding type conversion.

Manual Pulse Generator

A manual pulse generator (MPG) is a device normally associated with computer numerically controlled machinery or other devices involved in positioning. It usually consists of a rotating knob that generates electrical pulses that are sent to an equipment controller. The controller will then move the piece of equipment a predetermined distance for each pulse.
The CNC handheld controller MPG Pendant with x1, x10, x100 selectable. It is equipped with our popular machined MPG unit, 4,5,6 axis and scale selector, emergency stop and reset button.

Manual Pulse Generator,Handwheel MPG CNC,Electric Pulse Generator,Signal Pulse Generator

Jilin Lander Intelligent Technology Co., Ltd , https://www.jllandertech.com