sel

PLCopen motion icon

 FunctionClosed A function calculates a result according to the current value of its inputs. A function has no internal data and is not linked to declared instances. - Select one of the two integer inputs.

Inputs

Input

Data Type

Range

Unit

Default

Description

G

BOOL

FALSE, TRUE

 

 

Selection command.

IN0

ANY

 

 

 

First input.

IN1

ANY

 

 

 

Second input.

Outputs

Output

Data Type

Range

Unit

Description

Q

ANY

 

 

  • IN0 if G is FALSE
  • IN1 if G is TRUE

Remarks

None

Truth Table

G

Q

0

IN0

1

IN1

FBD Language Example

FFLD Language Example

  • In the FFLD Language, the selector command is the input rung.
    • The output rung keeps the state of the input rung.
    • ENO has the same value as SELECT.

IL Language Example

Op1: LDClosed Ladder diagram - This is a method of drawing electrical logic schematics. It is a very popular graphical language for programming Programmable Logic Controllers (PLCs). It was originally invented to describe logic made from relays. The name is based on the observation that programs in this language resemble ladders, with two vertical rails and a series of horizontal rungs between them.  SELECT
     SEL IN1, IN2
     ST  Q

ST Language Example

Q := SEL (G, IN0, IN1);

See Also