PLC BLOG | codesys comparison instrunction
Share on Facebook Share On Twitter Share on LinkedIn Share on Whatsapp


lg-12 col-12 fb-share-button">

Share on Facebook

Share on twitter

Share on Whats-App

codesys comparison instrunction

codesys comparison instrunction compare two inputs and if compariosn result true than set the boolean output true,comparisonperform between two same data type input variable. output is always boolean. Permitted data types any basic data type, depending on target system and compiler version. some of the follwoing codesys comparison instrunction


EQUAL TO comparison instrunction : EQ

This block compare both inputs variable if both inputs variable are equal so Boolean output set to true otherwise false.

codesys EQUAL TO comparison instrunction : EQ


NOT EQUAL comparison instrunction : NE

This block used for comparing of not equal inputs. if inputs variable are not equal then Boolean output set to true otherwise false.

codesys EQUAL TO comparison instrunction : EQ


less then : LT

in less then comparison block,if first input variable is less then that of second inputs variable than Boolean output set to true otherwise false.

codesys less then comparison instrunction


less then or equal to comparison instrunction : LE

A Boolean operator that returns the value TRUE when the value of the first input variable is less then or equal to that of the second input variable. If the first operand is less then or equal to the second operand, then the Boolean output set to true otherwise false.

codesys less then or equal to comparison instrunction


Greater than : GT

A Boolean operator that returns the value TRUE when the value of the first input variable Greater than the second input variable. If the first operand is Greater than the second operand, then the Boolean output set to true otherwise false.

codesys Greater than comparison instrunction


Greater than or equal to GE

A Boolean operator that returns the value TRUE when the value of the first input variable Greater than or equal to the second input variable. If the first operand is Greater than or equal to the second operand, then the Boolean output set to true otherwise false.