8 OPC UA ObjectTypes

8.1 Standby Management

8.1.1 EnergyStandbyManagementType

The EnergyStandbyManagementType ObjectTypes provide access to the Standby Management functionality of one Standby Management Entity. Parallel access of Clients to the read only data shall be possible but write operations and Method invocation can be limited to one Client at a time with the Lock Object.

Table 12 – EnergyStandbyManagementType Definition
Attribute Value
BrowseNameEnergyStandbyManagementType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasComponentVariableStandbyManagementStatusByte0:MultiStateDiscreteTypeM, RO
0:HasComponentObjectEnergySavingModeStatusEnergySavingModeStatusTypeM
0:HasComponentObjectEnergySavingModesEnergySavingModesContainerTypeO
0:HasComponentVariablePauseTime0:Duration0:BaseDataVariableTypeM, RW
0:HasComponentObject2:Lock2:LockingServicesTypeO
0:HasComponentMethodStartPauseO
0:HasComponentMethodEndPauseO
0:HasComponentMethodSwitchToEnergySavingModeO

The StandbyManagementStatus Variable shall contain the current state of the Standby Management. The value of this Variable shall be consistent with the content of the EnergySavingModeStatus Object.

The values of the 0:EnumStrings of the StandbyManagementStatus shall follow the definition of Table 13. Each instance shall have the values 0 to 8. Element numbers 9-15 are reserved for future use. If vendors add specific elements, the range 9-15 shall be filled with ‘null’-strings.

Table 13 – Defined elements of EnumStrings array of StandbyManagementStatus Variable
Element number (starting with 0) Message (for locale “en”)
0Energy saving disabled
1Power Off
2Ready to operate
3Moving to Energy Saving Mode
4Energy saving mode
5Moving to ready to operate
6Moving to Sleep mode WOL
7Sleep mode WOL
8Wake up WOL
9-15‘null’-String
16 – 255Vendor specific

The Variables of the EnergyStandbyManagementType have additional Attributes defined in Table 14

Table 14 – EnergyStandbyManagementType Attribute values for child Nodes
Source Path Value Attribute

Energy saving disabled

Power Off

Ready to operate

Moving to Energy Saving Mode

Energy saving mode

Moving to ready to operate

Moving to Sleep mode WOL

Sleep mode WOL

Wake up WOL

The EnergySavingModes container Object contains References to EnergySavingModeType Objects representing the supported Energy Saving Modes.

Writing the PauseTime Variable can be used to update the pause time alternatively to the StartPause Method. Setting the PauseTime Variable with a value not equal to 0 shall have the same effect as invoking the StartPause Method passing the PauseTime value. Setting the PauseTime Variable with a value equal to 0 shall have the same effect as invoking the EndPause Method. An additional benefit is that the Variable PauseTime can be used in a PubSub communication scenario where the PauseTime is distributed by a central time management client using a broadcast telegram to which every Standby Management Entity subscribes.

The Lock Object ensures exclusive write access and Method call for one client. Write access and Method calls from Clients shall be blocked unless the client has locked the Object by invoking the InitLock Method of the Lock Object.

The StartPause Method starts the transition to an Energy Saving Mode. The SwitchToEnergySavingMode allows the transition into a specific Energy Saving Mode. The EndPause Method ends the Energy Saving Mode.

A RepresentedBy Reference may connect the Object to the representing PROFIenergy service access point Object (see PeServiceAccessPointType). The BrowseName of the Reference shall be “PESAP”.

8.1.1.1 StartPause Method

This Method starts the transition into an Energy Saving Mode.

Signature

	StartPause (
		[in]  0:Duration	PauseTime
		[out] 0:Byte		ModeID
		[out] 0:Duration	CurrentTimeToDestination
		[out] 0:Duration	RegularTimeToOperate
		[out] 0:Duration	TimeMinLengthOfStay
		[out] 0:Byte		ReturnCode
		);
	
Argument Description
PauseTimeRequested pause time.
ModeIDID of the destination Energy Saving Mode if successful, otherwise 0.
CurrentTimeToDestinationTime needed to reach the Energy Saving Mode if successful, otherwise 0.
RegularTimeToOperateTime needed to reach “Ready to operate” again if the destination Energy Saving Mode will be regularly terminated if successful, otherwise 0.
TimeMinLengthOfStayTime of minimum stay in the destination Energy Saving Mode if successful, otherwise 0.
ReturnCodeReturn code. See Table 16.

The Method Result Codes (defined in Call Service) are defined in Table 15.

8.1.1.2 SwitchToEnergySavingMode Method

This Method initiates a switch to a certain Energy Saving Mode.

Signature

	SwitchToEnergySavingMode (
		[in]  0:Byte		ModeID
	[out] 0:Byte		EffectiveModeID
	[out] 0:Duration	CurrentTimeToDestination
		[out] 0:Duration	RegularTimeToOperate
		[out] 0:Duration	TimeMinLengthOfStay
		[out] 0:Byte		ReturnCode
		);
	
Argument Description
ModeIDID of the requested Energy Saving Mode.
EffectiveModeIDID of the effectively chosen Energy Saving Mode if successful, otherwise ID of current mode.
CurrentTimeToDestinationTime needed to reach the destination Energy Saving Mode if successful, otherwise 0.
RegularTimeToOperateTime needed to reach “Ready to operate” again if the destination Energy Saving Mode will be regularly terminated if successful, otherwise 0.
TimeMinLengthOfStayTime of minimum stay in the destination Energy Saving Mode if successful, otherwise 0.
ReturnCodeReturn code. See table Table 16.

The Method Result Codes (defined in Call Service) are defined in Table 15.

8.1.1.3 EndPause Method

This Method ends the current Energy Saving Mode.

Signature

	EndPause (
		[out] 0:Duration	CurrentTimeToOperate
		[out] 0:Byte		ReturnCode
		);
	
Argument Description
CurrentTimeToOperateTime needed to reach “Ready to operate” if successful, 0.
ReturnCodeReturn code. See table Table 16.

The Method Result Codes (defined in Call Service) are defined in Table 15.

Table 15 shows the possible values for the Method call result codes.

Table 15 – Possible Method result codes
Result Code Description
GoodThe Method execution was successful and the ReturnCode parameter has the value 0x00 (”Success”)
UncertainThe Method execution was successful, but the ReturnCode parameter indicates an error.
Bad_UserAccessDeniedThe user has not the right to execute the Method. The client shall not evaluate the ReturnCode parameter.
Bad_UnexpectedErrorThe server is not able to execute the function because an unexpected error occurred. The device might be temporarily unavailable or unreachable due to network failure. The client shall not evaluate the ReturnCode parameter.

Table 16 shows the possible values for the out parameter ReturnCode.

Table 16 – Possible ReturnCode parameter Values
ReturnCode Description
0x00Success.
0x50No suitable energy-saving mode available.
0x52No switch to requested energy-saving mode because of invalid mode ID.
0x53No switch to Energy Saving Mode because of state operate.
0x54Service or function not available due to internal device status.

8.1.2 EnergySavingModesContainerType

Table 17 – EnergySavingModesContainerType Definition
Attribute Value
BrowseNameEnergySavingModesContainerType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasComponentObject<EnergySavingModes>EnergySavingModeTypeMP

8.1.3 EnergySavingModeStatusType

Table 18 – EnergySavingModeStatusType Definition
Attribute Value
BrowseNameEnergySavingModeStatusType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasComponentVariableCurrentTransitionDataStandbyModeTransitionDataType0:BaseDataVariableTypeO, RO
0:HasComponentVariableStateInformationEnergyStateInformationDataType0:BaseDataVariableTypeM, RO

The CurrentTransitionData Variable contains details for the state transition indicated by the StateInformation Variable.

The StateInformation Variable contains details for the actual Energy Saving Mode state.

8.1.4 EnergySavingModeType

The EnergySavingModeType provides detailed information for a specific Energy Saving Mode.

Table 19 – EnergySavingModeType Definition
Attribute Value
BrowseNameEnergySavingModeType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasPropertyVariableID0:Byte0:PropertyTypeM, RO
0:HasPropertyVariableDynamicData0:Boolean0:PropertyTypeM, RO
0:HasComponentVariableTimeMinPause0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableTimeToPause0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableTimeMinLengthOfStay0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableTimeMaxLengthOfStay0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableRegularTimeToOperate0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableModePowerConsumption0:Float0:AnalogUnitTypeM, RO
0:HasComponentVariableEnergyConsumptionToPause0:Float0:AnalogUnitTypeM, RO
0:HasComponentVariableEnergyConsumptionToOperate0:Float0:AnalogUnitTypeM, RO

The BrowseName shall contain a unique name for the Energy Saving Mode.

The ID Variable shall contain a unique mode ID for the Energy Saving Mode. The mode ID’s 0x00, 0xF0, 0xFE and 0xFF are reserved for predefined states.

DynamicData shall indicate whether the time, energy consumption and power values can vary (slightly) during runtime.

The TimeMinPause Variable shall contain the minimum pause time for this Energy Saving Mode.

The TimeToPause Variable shall contain the expected time to switch to this Energy Saving Mode.

The TimeMinLengthOfStay Variable shall contain the time of minimum stay in this Energy Saving Mode.

The TimeMaxLengthOfStay Variable shall contain the time of maximum stay in this Energy Saving Mode.

The RegularTimeToOperate Variable shall contain the time value to reach ”Ready to operate” (see Figure 1) if this Energy Saving Mode will be regularly terminated.

The ModePowerConsumption Variable shall contain the power consumption in this Energy Saving Mode. Unit: [kW].

The EnergyConsumptionToPause Variable shall contain the energy consumption from ”Ready to operate” to this Energy Saving Mode. Unit: [kWh].

The EnergyConsumptionToOperate Variable shall contain the energy consumption from this Energy Saving Mode to ”Ready to operate”. Unit: [kWh].

Mapping to PROFIenergy properties:

BrowseName PE Service PE Service Data Response Field
ID List_Energy_Saving_ModesPE_Mode_ID
TimeMinPause Get_ModeTime_min_Pause
TimeToPause Get_ModeTime_to_Pause
TimeMinLengthOfStay Get_ModeTime_min_length_of_stay
TimeMaxLengthOfStay Get_ModeTime_max_length_of_stay
RegularTimeToOperate Get_ModeRegular_time_to_operate
ModePowerConsumption Get_ModeMode_Power_Consumption
EnergyConsumptionToPause Get_ModeEnergy_Consumption_to_pause
EnergyConsumptionToOperate Get_ModeEnergy_Consumption_to_operate

8.2 Energy Measurement

8.2.1 Overview

The Energy Measurement Objects provide access to the Energy Measurement values. For each Metering Point one EnergyMeasurementType Object shall exist.

8.2.2 EnergyMeasurementType

The EnergyMeasurementType contains References to MeasurementValueType Objects.

Table 20 – EnergyMeasurementType Definition
Attribute Value
BrowseNameEnergyMeasurementType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType
0:HasPropertyVariablePeObjectNumber0:UInt160:PropertyTypeM, RO
0:HasComponentVariable<MeasurementValue>0:NumberMeasurementValueTypeMP, RO
0:HasComponentMethodResetEnergyCounterO

The PeObjectNumber Variable shall contain the Object number of the related PROFIenergy measurement Object.

The MeasurementValue Variable contains one actual measurement value. For each measurement value of a Metering Point one MeasurementValueType Variable shall exist.

If one of the MeasurementValueType Variables is used as energy counter, the ResetEnergyCounter Method can be used to set the value of this Variable to 0. See section 9.1, ”MeasurementValueType” for further details.

A RepresentedBy Reference may connect the Object to the representing PROFIenergy service access point Object (see PeServiceAccessPointType). The BrowseName of the Reference shall be “PESAP”. If the PESAP is not part of the Information Model, the RepresentedBy Reference in the EnergyMeasurementType Object is omitted.

Mapping to PROFIenergy properties:

BrowseName PE Service PE Service Data Response Field
PeObjectNumber Get_Measurement_List_with_Object_NumberObject_Number

8.2.3 Interfaces for EnergyProfiles

EnergyMeasurementType Objects should support Interfaces for standardized energy data profiles, so called EnergyProfiles. The supported measurement values demanded by an energy data profile are specified by Interfaces applied to instances of the EnergyMeasurementType.

Table 21 shows the definitions of the Interfaces for the standardized energy data profiles. The EnergyProfiles represent standard Energy Measurement use cases and are therefore the preferred way to represent Energy Measurement data. It is recommended to support at least one of the EnergyProfiles.

Table 21 – Interfaces for EnergyProfiles
EnergyProfileMeasurementValueDataTypeAccuracy
InterfaceTypeBrowseNameSymbolEngineering
Unit
IEnergyProfileE0TypeE0AcCurrentIL1
IL2
IL3
AAcPeData
Type
≤10%
IEnergyProfileE1TypeE1AcActivePowerTotal∑PWFloat≤5%
IEnergyProfileE2TypeE2AcActivePowerTotal∑PWFloat≤5%
AcActiveEnergyTotalImportLp∑↓EW·hFloat
AcActiveEnergyTotalExportLp∑↑EW·hFloat
IEnergyProfileE3TypeE3AcActivePowerPL1
PL2
PL3
WAcPeData
Type
≤2%
AcReactivePowerQtotL1 QtotL2 QtotL3varAcPeData
Type
AcActiveEnergyTotalImportHp∑↓EW·hDouble
AcActiveEnergyTotalExportHp∑↑EW·hDouble
AcReactiveEnergyTotalImportHp∑↓EQVarhDouble
AcReactiveEnergyTotalExportHp∑↑EQVarhDouble
AcVoltagePeUL1N
UL2N
UL3N
VAcPeData
Type
AcVoltagePpUL1L2 UL2L3 UL3L1VAcPpData
Type
AcCurrentIL1
IL2
IL3
AFloat
AcPowerFactorλL1
λL2
λL3
Float
IEnergyProfileD0TypeD0DcCurrentIAFloat≤10%

Figure 11 shows an example how different EnergyProfiles can be supported by EnergyMeasurementType Object instances.

Figure 11 – Implementing different EnergyProfiles
8.2.3.1 IEnergyProfileE0Type

The IEnergyProfileE0Type contains the References to MeasurementValueType Variables needed for EnergyProfile E0.

Table 22 – IEnergyProfileE0Type Definition
Attribute Value
BrowseNameIEnergyProfileE0Type
IsAbstractTrue
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseInterfaceType defined in [OPC 10001-7]
0:HasComponentVariableAcCurrentAcPeDataTypeMeasurementValueTypeM
Table 23 – IEnergyProfileE0Type Attribute values for child Nodes
Source Path Value Attribute

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 4279632

DisplayName: A

Description: ampere

8.2.3.2 IEnergyProfileE1Type

The IEnergyProfileE1Type contains the References to MeasurementValueType Variables needed for EnergyProfile E1.

Table 24 – IEnergyProfileE1Type Definition
Attribute Value
BrowseNameIEnergyProfileE1Type
IsAbstractTrue
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseInterfaceType defined in [OPC 10001-7]
0:HasComponentVariableAcActivePowerTotal0:FloatMeasurementValueTypeM
Table 25 – IEnergyProfileE1Type Attribute values for child Nodes
Source Path Value Attribute

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5723220

DisplayName: W

Description: watt

8.2.3.3 IEnergyProfileE2Type

The IEnergyProfileE2Type contains the References to MeasurementValueType Variables needed for EnergyProfile E2.

Table 26 – IEnergyProfileE2Type Definition
Attribute Value
BrowseNameIEnergyProfileE2Type
IsAbstractTrue
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseInterfaceType defined in [OPC 10001-7]
0:HasComponentVariableAcActivePowerTotal0:FloatMeasurementValueTypeM
0:HasComponentVariableAcActiveEnergyTotalImportLp0:FloatMeasurementValueTypeM
0:HasComponentVariableAcActiveEnergyTotalExportLp0:FloatMeasurementValueTypeM
Table 27 – IEnergyProfileE2Type Attribute values for child Nodes
Source Path Value Attribute

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5723220

DisplayName: W

Description: watt

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5720146

DisplayName: W·h

Description: watt hour

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5720146

DisplayName: W·h

Description: watt hour

8.2.3.4 IEnergyProfileE3Type

The IEnergyProfileE3Type contains the References to MeasurementValueType Variables needed for EnergyProfile E3.

Table 28 – IEnergyProfileE3Type Definition
Attribute Value
BrowseNameIEnergyProfileE3Type
IsAbstractTrue
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseInterfaceType defined in [OPC 10001-7]
0:HasComponentVariableAcActivePowerAcPeDataTypeMeasurementValueTypeM
0:HasComponentVariableAcReactivePowerAcPeDataTypeMeasurementValueTypeM
0:HasComponentVariableAcActiveEnergyTotalImportHp0:DoubleMeasurementValueTypeM
0:HasComponentVariableAcActiveEnergyTotalExportHp0:DoubleMeasurementValueTypeM
0:HasComponentVariableAcReactiveEnergyTotalImportHp0:DoubleMeasurementValueTypeM
0:HasComponentVariableAcReactiveEnergyTotalExportHp0:DoubleMeasurementValueTypeM
0:HasComponentVariableAcVoltagePeAcPeDataTypeMeasurementValueTypeM
0:HasComponentVariableAcVoltagePpAcPpDataTypeMeasurementValueTypeM
0:HasComponentVariableAcCurrentAcPeDataTypeMeasurementValueTypeM
0:HasComponentVariableAcPowerFactorAcPeDataTypeMeasurementValueTypeM
Table 29 – IEnergyProfileE3Type Attribute values for child Nodes
Source Path Value Attribute

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5723220

DisplayName: W

Description: watt

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 4469812

DisplayName: var

Description: var

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5720146

DisplayName: W·h

Description: watt hour

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5720146

DisplayName: W·h

Description: watt hour

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5655636

DisplayName: V

Description: volt

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 5655636

DisplayName: V

Description: volt

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 4279632

DisplayName: A

Description: ampere

8.2.3.5 IEnergyProfileD0Type

The IEnergyProfileD0Type Interface contains a Reference to a MeasurementValueType Variable representing direct current (EnergyProfile D0).

Table 30 – IEnergyProfileD0Type Definition
Attribute Value
BrowseNameIEnergyProfileD0Type
IsAbstractTrue
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseInterfaceType defined in [OPC 10001-7]
0:HasComponentVariableDcCurrent0:FloatMeasurementValueTypeM
Table 31 – IEnergyProfileD0Type Attribute values for child Nodes
Source Path Value Attribute

NamespaceUri: http://www.opcfoundation.org/UA/units/un/cefact

UnitId: 4279632

DisplayName: A

Description: ampere

8.3 Sleep Mode WOL Functionality

8.3.1 EnergyDevicePowerOffType

The EnergyDevicePowerOffType type provides access to the Sleep Mode WOL functionality of the device if supported.

Table 32 – EnergyDevicePowerOffType Definition
Attribute Value
BrowseNameEnergyDevicePowerOffType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasComponentVariableRegularTimeToOperate0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableTimeMinPause0:Duration0:BaseDataVariableTypeM, RO
0:HasComponentVariableModePowerConsumption0:UInt320:BaseDataVariableTypeM, RO
0:HasPropertyVariableWOLMagicPacket0:ByteString0:PropertyTypeM, RO
0:HasComponentMethodSwitchOffWOLM

A RepresentedBy Reference may connect the Object to the representing PROFIenergy service access point Object (see PeServiceAccessPointType). The BrowseName of the Reference shall be “PESAP”. If the PESAP is not part of the Information Model, the RepresentedBy Reference in the EnergyDevicePowerOffType Object is omitted.

The RegularTimeToOperate Variable shall contain the time value to reach the state “Ready to operate” if the Wake-on-LAN sleep mode is terminated by a wake-up (see below).

The ModePowerConsumption Variable shall contain the power consumption in the
Wake-on-LAN sleep mode. Unit: [kW].

The WOLMagicPacket Variable shall contain the 6 bytes MAC address to be used with the magic packet sent for wake-up (see [PE CAP], chapter 7.3.4.9).

The SwitchOffWOL Method initiates the transition into the Wake-on-LAN sleep mode. In this mode the device is effectively switched off and unavailable for network communication. The device can be awakened using the magic packet (see [PE CAP], chapter 7.3.4.9).

8.3.1.1 SwitchOffWOL Method

This Method starts the transition into the special Wake-on-LAN mode.

Signature

	SwitchOffWOL (
		[out] 0:Byte			ModeID
		[out] 0:Duration		CurrentTimeToDestination
		[out] 0:Duration		RegularTimeToOperate
		[out] 0:Duration		TimeMinLengthOfStay
		[out] 0:Byte			ReturnCode
		);
	
Argument Description
ModeIDID of the “Sleep Mode WOL” (0xFE) if successful, otherwise 0.
CurrentTimeToDestinationTime needed to reach the Energy Saving Mode if successful, otherwise 0.
RegularTimeToOperateTime needed to reach “Ready to operate” again if the Wake-on-LAN sleep mode will be regularly terminated if successful, otherwise 0.
TimeMinLengthOfStayTime of minimum stay in the Wake-on-LAN sleep mode if successful, otherwise 0.
ReturnCodeReturn code. See Table 16.

The Method Result Codes (defined in Call Service) are defined in Table 15.

8.4 PeServiceAccessPointType

The PeServiceAccessPointType connects the PE Energy Management Objects belonging to one PE Entity. The PeServiceAccessPointType Object could be included in the PE Energy Management model to model the PROFIenergy Service Access Point within PROFINET devices. Independent from the PeServiceAccessPointType Object, the PE Energy Management functionality can be directly managed by OPC UA access.

Table 33 – PeServiceAccessPointType Definition
Attribute Value
BrowseNamePeServiceAccessPointType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of the BaseObjectType defined in [OPC 10000-5].
0:HasPropertyVariablePeClassPeClassEnumeration0:PropertyTypeO, RO
0:HasPropertyVariablePeSubclassPeSubclassEnumeration0:PropertyTypeO, RO
0:HasPropertyVariablePeVersionPeVersionDataType0:PropertyTypeM, RO

The BrowseName of a PeServiceAccessPointType instance should be “PESAP@<Subslot>, where <Subslot> shall be the content of the subslot Variable of the Object which is the source of the 0:HasAddin Reference pointing to the service access point Object in hexadecimal number string format.

The PeSubclass Property shall be provided in conjunction with the Class Property: If the Class Property has the value PE_CLASS1 or the value PE_CLASS3, this Property is mandatory.

The PeVersion Property shall contain the implemented PROFIenergy version number.

A Represents Reference with the BrowseName “Standby” is mandatory for PROFIenergy class 1 and class 3 and shall point to the EnergyStandbyManagementType Object representing the Standby Management functionality.

A Represents Reference with the BrowseName “Measurement” is mandatory for PROFIenergy class 2 and class 3 and shall point to the EnergyMeasurementType Object representing the Energy Measurement functionality.

One optional Represents Reference with the BrowseName “EnergyPowerOff” points to an EnergyDevicePowerOffType Object if “Sleep Mode WOL” is supported.