SELPLCopen 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 inputs - 2 inputs.

Inputs

Inputs

Data Type

Description

G

BOOL

Selection command.

IN0

ANY

First input.

IN1

ANY

Second input.

Outputs

Output

Data Type

Description

Q

ANY

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

Truth Table

SELECT Q

0

IN0

1

IN1

Remarks

ST Language

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

FBD Language

FFLD Language

(* the input rung is the selector *)
(* ENO has the same value as SELECT *)

IL Language

Op1: LDClosed "Ladder diagram"
Ladder logic is a method of drawing electrical logic schematics. It is now 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

See Also