Attention
IronPLC can only run very simple programs. The steps described are accurate but many language features are not yet supported.
LIMIT¶
Clamps a value to a specified range.
IEC 61131-3 |
Section 2.5.1.5.5 |
Support |
Supported |
Signatures¶
# |
Input (MN) |
Input (IN) |
Input (MX) |
Return Type |
Support |
|---|---|---|---|---|---|
1 |
|
|
|
|
Not yet supported |
2 |
|
|
|
|
Not yet supported |
3 |
|
|
|
|
Supported |
4 |
|
|
|
|
Not yet supported |
5 |
|
|
|
|
Not yet supported |
6 |
|
|
|
|
Not yet supported |
7 |
|
|
|
|
Not yet supported |
8 |
|
|
|
|
Not yet supported |
9 |
|
|
|
|
Supported |
10 |
|
|
|
|
Supported |
Description¶
LIMIT(MN, IN, MX) clamps IN to the range [MN, MX]. The
function returns:
MN if IN < MN
MX if IN > MX
IN otherwise
The behavior is undefined if MN > MX.
Example¶
result := LIMIT(0, 50, 100); (* result = 50 *)
result := LIMIT(0, -10, 100); (* result = 0 *)
result := LIMIT(0, 200, 100); (* result = 100 *)