9 OperationType

This ObjectType contains components which are necessary to operate the TCD. It is formally defined in Table 3.

Table 3 – OperationType Definition
Attribute Value
BrowseNameOperationType
IsAbstractFalse
References Node Class BrowseName DataType TypeDefinition Other
Subtype of 0:BaseObjectType defined in OPC UA Part 5
0:HasPropertyVariableDeviceMappingNumber0:UInt320:PropertyTypeM, RW
0:HasPropertyVariableHighestActiveAlarmSeverity0:UInt160:PropertyTypeM, R
0:HasComponentVariableActiveErrors3:ActiveErrorDataType[]0:BaseDataVariableTypeM, R
0:HasComponentMethodResetAllErrorsO
0:HasComponentMethodResetErrorByIdO
0:HasPropertyVariableOperatingModeOperatingMode
Enumeration
0:PropertyTypeM, RO
0:HasComponentVariableHoursOfOperation0:Double0:AnalogItemTypeO, RO
0:HasComponentMethodIdentifyDeviceO
0:HasComponentMethodSwitchOnM
0:HasComponentMethodSwitchOffM
0:HasComponentMethodReduceToStandByOnO
0:HasComponentMethodReduceToStandByOffO

9.1 DeviceMappingNumber

Description:Unique identifier/address/number for devices of the same DeviceType within a local network. Several peripheral devices of the same DeviceType can be connected to a machine. In most applications, the machine must map the connected peripheral devices to internal logical devices and zones in a fixed configuration (e.g. hot runner systems according to the wiring or temperature control devices according to the tubing).
The mapping shall be stable after reconnecting the devices and is therefore not possible via IP addresses, which can be assigned dynamically via DHCP. DeviceMappingNumber sets the mapping order of peripheral devices of the same type on the local network and is therefore of type UInt32.
Example:1

9.2 HighestActiveAlarmSeverity

Description:Indication of the severity of the highest active alarm (0 = no active alarm – 1000 = possible error). Together with ActiveErrors, it provides a minimal error handling for devices without alarm support. However, the variable shall be filled even if alarms are supported.
Example:400

9.3 ActiveErrors

Description:List of the active errors of the device. It provides a minimal error handling for devices without alarm support. However, the variable shall be filled even if alarms are supported. The ActiveErrorDataType is defined in OPC 40083. If there is no active error, the array is empty.

9.4 ResetAllErrors

Description:Method to reset all errors of the device.

Signature

	ResetAllErrors();

9.5 ResetErrorById

Description:Method to reset one error of the device.

Signature

	ResetErrorById(
		[in]	String	Id);
Table 4 –ResetErrorById Method Arguments
Argument Description
IdId of the error, listed in ActiveErrors, that shall be reset.
Table 5 – ResetErrorById Method AddressSpace Definition
Attribute Value
BrowseNameResetErrorById
References Node Class BrowseName DataType TypeDefinition Modelling Rule
HasPropertyVariableInputArgumentsArgument[]PropertyTypeMandatory

9.6 OperatingMode

Description:Actual operating mode of the TCD.
Table 6 – OperatingModeEnumeration Values
Name Value Description
OTHER0Operating mode of the TCD is unknown
READY_TO_OPERATE1TCD is ready to operate (heating, pump and cooling are switched off)
NORMAL_OPERATION2TCD is running in normal operating mode
LEAK_STOPPER3TCD is running in leak stopper operating mode
MOULD_EVACUATION4TCD is carrying out a mould evacuation process
PRESSURE_RELIEF5TCD is carrying out a pressure relief process
COOLING6TCD is cooling down to StandbyTemperature and switch off
SAFETY_COOLING7TCD is cooling down to SwitchingOffTemperature and switch off
ECO8TCD is running in Eco operating mode (energy is saved via the reduced pump speed)
BOOST9TCD is running in Boost operating mode (pump runs at maximum possible speed)

9.7 HoursOfOperation

Description:Actual hours of operation
Unit: h
Example:4586

9.8 IdentifyDevice

Description:The TCD on which this method is called shows itself by e.g. activation of a LED.

Signature

	IdentifyDevice ();

9.9 SwitchOn

Description:Main switch method of the TCD for switching on. OperatingMode shows the actual state of the device.

Signature

	SwitchOn ();

9.10 SwitchOff

Description:Main switch method of the TCD for switching off. OperatingMode shows the actual state of the device.

Signature

	SwitchOff ();

9.11 ReduceToStandByOn

Description:Activate the cooling down function on the TCD followed by switching off.
OperatingMode shows the actual state of the device during the cooling down process.

Signature

	ReduceToStandByOn ();

9.12 ReduceToStandByOff

Description:Deactivate the cooling down function on the TCD. If it is already in progress, it will be interrupted and the device changes back to the last selected operating mode.

Signature

	ReduceToStandByOff ();