Difference between revisions of "Extensions.Measure.GetMeasurementFloatValue"
Jump to navigation
Jump to search
m (Hb moved page GetMeasurementFloatValue to Extensions.Measure.GetMeasurementFloatValue: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:Measure]] | + | {{DISPLAYTITLE:'''GetMeasurementFloatValue '''}}[[Category:Measure]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | GetMeasurementFloatValue | Gets the float value of a measurement | [[Term]] | [[Measure|OTX Measure extension]] | [[Measurement related terms]] | [[InvalidMeasurementException]] | - }} | + | {{ClassificationActivity | GetMeasurementFloatValue | Gets the float value of a measurement | [[Term]] | [[Extensions.Measure|OTX Measure extension]] | [[Measurement related terms]] | [[Extensions.Measure.InvalidMeasurementException|InvalidMeasurementException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
This term brings the float value of a measurement that is independent of a physical device information. | This term brings the float value of a measurement that is independent of a physical device information. | ||
− | {{TermReturnValue| [[Float]] | The float value of a measurement. }} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.Float|Float]] | The float value of a measurement. }} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| Measurement | [[Measurement]] | [[Term]] | - | [1] | The measurement whose float value is acquired.}} | + | {{TableRowPropertie1| Measurement | [[Extensions.Measure.Measurement|Measurement]] | [[Term]] | - | [1] | The measurement whose float value is acquired.}} |
|} | |} | ||
Line 38: | Line 38: | ||
== See also == | == See also == | ||
− | [[GetMeasurementTimestamp]] <br/> | + | [[Extensions.Measure.GetMeasurementTimestamp|GetMeasurementTimestamp]] <br/> |
− | [[GetMeasurementStatus]] <br/> | + | [[Extensions.Measure.GetMeasurementStatus|GetMeasurementStatus]] <br/> |
− | [[GetMeasurementQuantity]] <br/> | + | [[Extensions.Measure.GetMeasurementQuantity|GetMeasurementQuantity]] <br/> |
− | [[IsValidMeasurement]] | + | [[Extensions.Measure.IsValidMeasurement|IsValidMeasurement]] |
Revision as of 02:35, 16 February 2016
Contents
Classification
Name | GetMeasurementFloatValue |
Short Description | Gets the float value of a measurement |
Class | Term |
Extension | OTX Measure extension |
Group | Measurement related terms |
Exceptions | InvalidMeasurementException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
FloatTerm = Measure.GetMeasurementFloatValue(Measurement);
Description
This term brings the float value of a measurement that is independent of a physical device information.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Float | The float value of a measurement. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
Measurement | Measurement | Term | - | [1] | The measurement whose float value is acquired. |
OTL Examples
package Measure.DeviceSignature TestDocument
{
DeviceServiceSignature Addition(in Integer a, in Integer b, out Measure.Measurement OutValue);
}
public procedure GetMeasurementFloatValue()
{
Measure.Measurement Return;
Float Float;
Float a = 12;
Measure.ExecuteDeviceService(TestDocument, Addition, {in a = 2, in b = 3, out OutValue = Return}, false, false);
Float = Measure.GetMeasurementFloatValue(Return);
}
See also
GetMeasurementTimestamp
GetMeasurementStatus
GetMeasurementQuantity
IsValidMeasurement