8.44 ProcessItemType ObjectType

8.44.1 Overview

The ProcessItemType is used to measure and monitor over time a measurement point. The ProcessItemType also provides aggregates (Avg, Max, Min, Std, Total) that are computed by the underlying system. The aggregates are computed over a time period or for a product quantity and can be configured by a client altogether with the sampling time.

The ProcessItemType is formally defined in the following table.

Table 129 – ProcessItemType Definition
Attribute Value
BrowseNameProcessItemType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in OPC 10000-5 - Part 5: Information Model, i.e. inheriting the Instance Declarations of that Node.
0:HasPropertyVariableAggregationWindow0:UInt320:PropertyTypeM, RW
0:HasComponentObjectLimitAlarms0:NonExclusiveLevelAlarmTypeM
0:HasComponentVariableValue0:DoubleDisplayAnalogUnitTypeM, RO, HR
0:HasComponentVariableAvg0:Double0:BaseDataVariableTypeM, RO, HR
0:HasPropertyVariableLastResetTime0:UtcTime0:PropertyTypeM, RO
0:HasComponentVariableMax0:Double0:BaseDataVariableTypeM, RO
0:HasComponentVariableMin0:Double0:BaseDataVariableTypeM, RO
0:HasComponentMethodResetAggregatesSee below.M
0:HasComponentVariableSamplingRate0:Double0:AnalogUnitRangeTypeM, RW
0:HasComponentVariableStd0:Double0:BaseDataVariableTypeM, RO, HR
0:HasComponentVariableTotal0:Double0:BaseDataVariableTypeM, RO
0:HasComponentObjectUIInfoUIInformationTypeO
0:GeneratesEventObjectType0:NonExclusiveLevelAlarmType
0:GeneratesEventObjectTypeProcessItemResetLogType
Conformance Units
TMC Process Variables Ingestion and Control
BrowseName Description
AggregationWindow

Tthe number of samples over which the aggregates are computed. When the number of aggregated samples since the last reset exceeds the AggregationWindow, the aggregates are rolled over, i.e. computed over the last AggregationWindow number of samples.

The value of the AggregationWindow can be set by a client to obtain the desired aggregation.

If the written value is below (above) the minimum (maximum) value that can be managed by the underlying system, the underlying system will overwrite it with the minimum (maximum).

LimitAlarmsThe deviation alarm with 4 thresholds: HighHigh, High, Low, LowLow. All 4 thresholds shall be supported.
ValueValue represents the current value measured by the sensor.
Avg

The average of valid values over the last AggregationWindow samples and after the last reset.

It is only reset by the successful execution of the ResetAggregates method.

LastResetTimeThe time (in UTC) when ResetAggregates was last successfully executed.
Max

The maximum valid value for the last AggregationWindow samples and after the last reset.

It is only reset by the successful execution of the ResetAggregates method.

Min

The minimum valid value for the last AggregationWindow samples and after the last reset.

It is only reset by the successful execution of the ResetAggregates method.

SamplingRate

The rate samples are collected for aggregation. The rate is referred to the either product or time, as indicated by the EURange property.

For example, SamplingRate equal to 100 ms means that the value is measured and collected for aggregation every 100 ms. SamplingRate equal to 10 kg means that the value is measured and collected for aggregation every 10 kg of product. SamplingRate equal to 100 rods means that the value is measured and collected for aggregation every 100 rods of product.

The EURange property of the SamplingRate is read only and defines both the unit of measure and the supported range.

The value of the SamplingRate can be set by a client to obtain the desired sampling rate for aggregation.

If the written value is below (above) the minimum (maximum) value that can be managed by the underlying system, the underlying system will overwrite it with the minimum (maximum).

The underlying system will support equivalent sampling rates of 100ms or better.

Std

The standard deviation of the valid value for the last AggregationWindow samples and after the last reset. After reset, when only one value is available, the standard deviation is not defined and zero will be returned.

It is only reset by the successful execution of the ResetAggregates method.

Total

The accumulated total of the valid value for the last AggregationWindow samples and after the last reset.

It is only reset by the successful execution of the ResetAggregates method.

UIInfoThe visualization resources to display the ProcessItemType on the UserInterface.

8.44.2 ResetAggregates Method

The ResetAggregates Method restarts from new the computation of aggregates performed by the underlying system.

The signature of this Method is specified below. Table 130 specifies the Arguments representation.

Signature

	ResetAggregates (
	  [out] MethodExecutionFeedbackType		ExecutionFeedback);
Table 130 – ResetAggregates Method Arguments
Argument Description
ExecutionFeedbackThe extended feedback returning a detailed message in case of execution failure.

When the ResetAggregates method is invoked, an event of type ProcessItemResetLogType is generated with the last value of the aggregate variables, then the aggregates are reset as specified and the LastResetTime is set at the time when the method completes successfully.