.MinRaw Dotfield
- Last UpdatedNov 07, 2016
- 1 minute read
The .MinRaw dotfield shows the Min Raw low clamp setting assigned to a tag. The value for .MinRaw dotfield comes from the Min Raw value assigned to the I/O tag in the Tagname Dictionary. Any raw value less than this setting is clamped to this minimum value.
Category
Tags
Usage
tag_name.MinRaw;
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 Min Raw low clamp setting.
Data Type
Real or integer (read-only).
Valid Values
Any analog value.
Example
The following script shows an error window if the raw value associated with pump inlet pressure is outside of the lower and upper value boundaries set by the tag’s Min Raw and Max Raw properties.
IF ((PumpInP.RawValue > PumpInP.MaxRaw) OR
(PumpInP.RawValue < PumpInP.MinRaw)) THEN
Show "Instrument Failure Window";
ENDIF;
See Also
.EngUnits, .MinEU, .MaxEU, .MaxRaw, .RawValue