.MaxRaw Dotfield
- Last UpdatedNov 07, 2016
- 1 minute read
The .MaxRaw dotfield shows the Max Raw high clamp setting assigned to an I/O tag from the Max Raw property in the Tagname Dictionary. Any raw data value that exceeds this setting is clamped to this maximum raw value.
Category
Tags
Usage
Tag_name.MaxRaw
Parameter
Tag_name
The name of any I/O integer, I/O real, and indirect analog tag.
Remarks
This read-only dotfield shows the value assigned to the Max Raw high clamp setting.
Data Type
Real or integer (read-only).
Valid Values
Any analog value.
Example
This script determines if a tag value is out of normal operating range and a window is shown if this is the case.
IF ((Temp01.RawValue > Temp01.MaxRaw) OR (Temp01.RawValue <
Temp01.MinRaw))THEN
Show "Instrument Failure Window";
ENDIF;
See Also
.EngUnits, .MinEU, .MaxEU, .MinRaw, .RawValue