node-opcua-nodeset-robotics 2.70.1 → 2.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/enum_axis_motion_profile.d.ts +43 -43
  2. package/dist/enum_axis_motion_profile.js +48 -48
  3. package/dist/enum_execution_mode.d.ts +24 -24
  4. package/dist/enum_execution_mode.js +29 -29
  5. package/dist/enum_motion_device_category.d.ts +61 -61
  6. package/dist/enum_motion_device_category.js +66 -66
  7. package/dist/enum_operational_mode.d.ts +35 -35
  8. package/dist/enum_operational_mode.js +40 -40
  9. package/dist/index.d.ts +19 -19
  10. package/dist/index.js +35 -35
  11. package/dist/ua_auxiliary_component.d.ts +28 -28
  12. package/dist/ua_auxiliary_component.js +2 -2
  13. package/dist/ua_axis.d.ts +60 -60
  14. package/dist/ua_axis.js +2 -2
  15. package/dist/ua_controller.d.ts +112 -112
  16. package/dist/ua_controller.js +2 -2
  17. package/dist/ua_drive.d.ts +29 -29
  18. package/dist/ua_drive.js +2 -2
  19. package/dist/ua_emergency_stop_function.d.ts +34 -34
  20. package/dist/ua_emergency_stop_function.js +2 -2
  21. package/dist/ua_gear.d.ts +44 -44
  22. package/dist/ua_gear.js +2 -2
  23. package/dist/ua_load.d.ts +52 -52
  24. package/dist/ua_load.js +2 -2
  25. package/dist/ua_motion_device.d.ts +96 -96
  26. package/dist/ua_motion_device.js +2 -2
  27. package/dist/ua_motion_device_system.d.ts +35 -35
  28. package/dist/ua_motion_device_system.js +2 -2
  29. package/dist/ua_motor.d.ts +57 -57
  30. package/dist/ua_motor.js +2 -2
  31. package/dist/ua_power_train.d.ts +16 -16
  32. package/dist/ua_power_train.js +2 -2
  33. package/dist/ua_protective_stop_function.d.ts +51 -51
  34. package/dist/ua_protective_stop_function.js +2 -2
  35. package/dist/ua_safety_state.d.ts +72 -72
  36. package/dist/ua_safety_state.js +2 -2
  37. package/dist/ua_task_control.d.ts +53 -53
  38. package/dist/ua_task_control.js +2 -2
  39. package/dist/ua_user.d.ts +31 -31
  40. package/dist/ua_user.js +2 -2
  41. package/package.json +10 -10
@@ -1,29 +1,29 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device";
5
- /**
6
- * Drives (multi-slot or single-slot axis amplifier)
7
- * mounted in a controller cabinet or a motion
8
- * device.
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |7:DriveType ns=7;i=17793 |
15
- * |isAbstract |false |
16
- */
17
- export interface UADrive_Base extends UADevice_Base {
18
- /**
19
- * productCode
20
- * The ProductCode property provides a unique
21
- * combination of numbers and letters used to
22
- * identify the product. It may be the order
23
- * information displayed on type shields or in ERP
24
- * systems.
25
- */
26
- productCode: UAProperty<UAString, /*z*/ DataType.String>;
27
- }
28
- export interface UADrive extends Omit<UADevice, "productCode">, UADrive_Base {
29
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device";
5
+ /**
6
+ * Drives (multi-slot or single-slot axis amplifier)
7
+ * mounted in a controller cabinet or a motion
8
+ * device.
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |7:DriveType ns=7;i=17793 |
15
+ * |isAbstract |false |
16
+ */
17
+ export interface UADrive_Base extends UADevice_Base {
18
+ /**
19
+ * productCode
20
+ * The ProductCode property provides a unique
21
+ * combination of numbers and letters used to
22
+ * identify the product. It may be the order
23
+ * information displayed on type shields or in ERP
24
+ * systems.
25
+ */
26
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
27
+ }
28
+ export interface UADrive extends Omit<UADevice, "productCode">, UADrive_Base {
29
+ }
package/dist/ua_drive.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_drive.js.map
@@ -1,34 +1,34 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
5
- /**
6
- * According to ISO 10218-1:2011 Ch.5.5.2 Emergency
7
- * stop the robot shall have one or more emergency
8
- * stop functions.
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |7:EmergencyStopFunctionType ns=7;i=17230 |
15
- * |isAbstract |false |
16
- */
17
- export interface UAEmergencyStopFunction_Base {
18
- /**
19
- * name
20
- * The Name of the EmergencyStopFunctionType
21
- * provides a manufacturer-specific emergency stop
22
- * function identifier within the safety system.
23
- */
24
- name: UAProperty<UAString, /*z*/ DataType.String>;
25
- /**
26
- * active
27
- * The Active variable is TRUE if this particular
28
- * emergency stop function is active, e.g. that the
29
- * emergency stop button is pressed, FALSE otherwise.
30
- */
31
- active: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
32
- }
33
- export interface UAEmergencyStopFunction extends UAObject, UAEmergencyStopFunction_Base {
34
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
5
+ /**
6
+ * According to ISO 10218-1:2011 Ch.5.5.2 Emergency
7
+ * stop the robot shall have one or more emergency
8
+ * stop functions.
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |7:EmergencyStopFunctionType ns=7;i=17230 |
15
+ * |isAbstract |false |
16
+ */
17
+ export interface UAEmergencyStopFunction_Base {
18
+ /**
19
+ * name
20
+ * The Name of the EmergencyStopFunctionType
21
+ * provides a manufacturer-specific emergency stop
22
+ * function identifier within the safety system.
23
+ */
24
+ name: UAProperty<UAString, /*z*/ DataType.String>;
25
+ /**
26
+ * active
27
+ * The Active variable is TRUE if this particular
28
+ * emergency stop function is active, e.g. that the
29
+ * emergency stop button is pressed, FALSE otherwise.
30
+ */
31
+ active: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
32
+ }
33
+ export interface UAEmergencyStopFunction extends UAObject, UAEmergencyStopFunction_Base {
34
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_emergency_stop_function.js.map
package/dist/ua_gear.d.ts CHANGED
@@ -1,44 +1,44 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { DTRationalNumber } from "node-opcua-nodeset-ua/source/dt_rational_number";
6
- import { UARationalNumber } from "node-opcua-nodeset-ua/source/ua_rational_number";
7
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
8
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
9
- /**
10
- * The GearType describes a gear in a powertrain,
11
- * e.g. a gear box or a spindle.
12
- *
13
- * | | |
14
- * |----------------|--------------------------------------------------|
15
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
16
- * |nodeClass |ObjectType |
17
- * |typedDefinition |7:GearType ns=7;i=1022 |
18
- * |isAbstract |false |
19
- */
20
- export interface UAGear_Base extends UAComponent_Base {
21
- manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
22
- model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
23
- productCode: UAProperty<UAString, /*z*/ DataType.String>;
24
- serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
25
- /**
26
- * gearRatio
27
- * The transmission ratio of the gear expressed as a
28
- * fraction as input velocity (motor side) by output
29
- * velocity (load side).
30
- */
31
- gearRatio: UARationalNumber<DTRationalNumber>;
32
- /**
33
- * pitch
34
- * Pitch describes the distance covered in
35
- * millimeters (mm) for linear motion per one
36
- * revolution of the output side of the driving
37
- * unit. Pitch is used in combination with GearRatio
38
- * to describe the overall transmission from input
39
- * to output of the gear.
40
- */
41
- pitch?: UABaseDataVariable<number, /*z*/ DataType.Double>;
42
- }
43
- export interface UAGear extends Omit<UAComponent, "manufacturer" | "model" | "productCode" | "serialNumber">, UAGear_Base {
44
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { DTRationalNumber } from "node-opcua-nodeset-ua/source/dt_rational_number";
6
+ import { UARationalNumber } from "node-opcua-nodeset-ua/source/ua_rational_number";
7
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
8
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
9
+ /**
10
+ * The GearType describes a gear in a powertrain,
11
+ * e.g. a gear box or a spindle.
12
+ *
13
+ * | | |
14
+ * |----------------|--------------------------------------------------|
15
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
16
+ * |nodeClass |ObjectType |
17
+ * |typedDefinition |7:GearType ns=7;i=1022 |
18
+ * |isAbstract |false |
19
+ */
20
+ export interface UAGear_Base extends UAComponent_Base {
21
+ manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
22
+ model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
23
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
24
+ serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
25
+ /**
26
+ * gearRatio
27
+ * The transmission ratio of the gear expressed as a
28
+ * fraction as input velocity (motor side) by output
29
+ * velocity (load side).
30
+ */
31
+ gearRatio: UARationalNumber<DTRationalNumber>;
32
+ /**
33
+ * pitch
34
+ * Pitch describes the distance covered in
35
+ * millimeters (mm) for linear motion per one
36
+ * revolution of the output side of the driving
37
+ * unit. Pitch is used in combination with GearRatio
38
+ * to describe the overall transmission from input
39
+ * to output of the gear.
40
+ */
41
+ pitch?: UABaseDataVariable<number, /*z*/ DataType.Double>;
42
+ }
43
+ export interface UAGear extends Omit<UAComponent, "manufacturer" | "model" | "productCode" | "serialNumber">, UAGear_Base {
44
+ }
package/dist/ua_gear.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_gear.js.map
package/dist/ua_load.d.ts CHANGED
@@ -1,52 +1,52 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
4
- import { DT3DFrame } from "node-opcua-nodeset-ua/source/dt_3_d_frame";
5
- import { UA3DFrame } from "node-opcua-nodeset-ua/source/ua_3_d_frame";
6
- import { DT3DVector } from "node-opcua-nodeset-ua/source/dt_3_d_vector";
7
- import { UA3DVector } from "node-opcua-nodeset-ua/source/ua_3_d_vector";
8
- /**
9
- * The LoadType is for describing loads mounted on
10
- * the motion device typically by an integrator or a
11
- * customer.
12
- *
13
- * | | |
14
- * |----------------|--------------------------------------------------|
15
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
16
- * |nodeClass |ObjectType |
17
- * |typedDefinition |7:LoadType ns=7;i=1018 |
18
- * |isAbstract |false |
19
- */
20
- export interface UALoad_Base {
21
- /**
22
- * mass
23
- * The weight of the load mounted on one mounting
24
- * point.
25
- */
26
- mass: UAAnalogUnit<number, /*z*/ DataType.Double>;
27
- /**
28
- * centerOfMass
29
- * The position and orientation of the center of the
30
- * mass related to the mounting point using a
31
- * FrameType. X, Y, Z define the position of the
32
- * center of gravity relative to the mounting point
33
- * coordinate system. A, B, C define the orientation
34
- * of the principal axes of inertia relative to the
35
- * mounting point coordinate system. Orientation A,
36
- * B, C can be "0" for systems which do not need
37
- * these values.
38
- */
39
- centerOfMass?: UA3DFrame<DT3DFrame>;
40
- /**
41
- * inertia
42
- * The Inertia uses the VectorType to describe the
43
- * three values of the principal moments of inertia
44
- * with respect to the mounting point coordinate
45
- * system. If inertia values are provided for rotary
46
- * axis the CenterOfMass shall be completely filled
47
- * as well.
48
- */
49
- inertia?: UA3DVector<DT3DVector>;
50
- }
51
- export interface UALoad extends UAObject, UALoad_Base {
52
- }
1
+ import { UAObject } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
4
+ import { DT3DFrame } from "node-opcua-nodeset-ua/source/dt_3_d_frame";
5
+ import { UA3DFrame } from "node-opcua-nodeset-ua/source/ua_3_d_frame";
6
+ import { DT3DVector } from "node-opcua-nodeset-ua/source/dt_3_d_vector";
7
+ import { UA3DVector } from "node-opcua-nodeset-ua/source/ua_3_d_vector";
8
+ /**
9
+ * The LoadType is for describing loads mounted on
10
+ * the motion device typically by an integrator or a
11
+ * customer.
12
+ *
13
+ * | | |
14
+ * |----------------|--------------------------------------------------|
15
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
16
+ * |nodeClass |ObjectType |
17
+ * |typedDefinition |7:LoadType ns=7;i=1018 |
18
+ * |isAbstract |false |
19
+ */
20
+ export interface UALoad_Base {
21
+ /**
22
+ * mass
23
+ * The weight of the load mounted on one mounting
24
+ * point.
25
+ */
26
+ mass: UAAnalogUnit<number, /*z*/ DataType.Double>;
27
+ /**
28
+ * centerOfMass
29
+ * The position and orientation of the center of the
30
+ * mass related to the mounting point using a
31
+ * FrameType. X, Y, Z define the position of the
32
+ * center of gravity relative to the mounting point
33
+ * coordinate system. A, B, C define the orientation
34
+ * of the principal axes of inertia relative to the
35
+ * mounting point coordinate system. Orientation A,
36
+ * B, C can be "0" for systems which do not need
37
+ * these values.
38
+ */
39
+ centerOfMass?: UA3DFrame<DT3DFrame>;
40
+ /**
41
+ * inertia
42
+ * The Inertia uses the VectorType to describe the
43
+ * three values of the principal moments of inertia
44
+ * with respect to the mounting point coordinate
45
+ * system. If inertia values are provided for rotary
46
+ * axis the CenterOfMass shall be completely filled
47
+ * as well.
48
+ */
49
+ inertia?: UA3DVector<DT3DVector>;
50
+ }
51
+ export interface UALoad extends UAObject, UALoad_Base {
52
+ }
package/dist/ua_load.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_load.js.map
@@ -1,96 +1,96 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
- import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
7
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
8
- import { EnumMotionDeviceCategory } from "./enum_motion_device_category";
9
- import { UALoad } from "./ua_load";
10
- export interface UAMotionDevice_parameterSet extends UAObject {
11
- /**
12
- * onPath
13
- * OnPath is true if the motion device is on or near
14
- * enough the planned program path such that program
15
- * execution can continue. If the MotionDevice
16
- * deviates too much from this path in case of
17
- * errors or an emergency stop, this value becomes
18
- * false. If OnPath is false, the motion device
19
- * needs repositioning to continue program execution.
20
- */
21
- onPath?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
22
- /**
23
- * inControl
24
- * InControl provides the information if the
25
- * actuators (in most cases a motor) of the motion
26
- * device are powered up and in control: "true". The
27
- * motion device might be in a standstill.
28
- */
29
- inControl?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
30
- /**
31
- * speedOverride
32
- * SpeedOverride provides the current speed setting
33
- * in percent of programmed speed (0 - 100%).
34
- */
35
- speedOverride: UABaseDataVariable<number, /*z*/ DataType.Double>;
36
- }
37
- /**
38
- * Represents a specific motion device in the motion
39
- * device system like a robot, a linear unit or a
40
- * positioner. A MotionDevice should have at least
41
- * one axis.
42
- *
43
- * | | |
44
- * |----------------|--------------------------------------------------|
45
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
46
- * |nodeClass |ObjectType |
47
- * |typedDefinition |7:MotionDeviceType ns=7;i=1004 |
48
- * |isAbstract |false |
49
- */
50
- export interface UAMotionDevice_Base extends UAComponent_Base {
51
- /**
52
- * parameterSet
53
- * Flat list of Parameters
54
- */
55
- parameterSet: UAMotionDevice_parameterSet;
56
- manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
57
- model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
58
- productCode: UAProperty<UAString, /*z*/ DataType.String>;
59
- serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
60
- /**
61
- * motionDeviceCategory
62
- * The variable MotionDeviceCategory provides the
63
- * kind of motion device defined by
64
- * MotionDeviceCategoryEnumeration based on ISO 8373.
65
- */
66
- motionDeviceCategory: UAProperty<EnumMotionDeviceCategory, /*z*/ DataType.Int32>;
67
- /**
68
- * axes
69
- * Axes is a container for one or more instances of
70
- * the AxisType.
71
- */
72
- axes: UAFolder;
73
- /**
74
- * powerTrains
75
- * PowerTrains is a container for one or more
76
- * instances of the PowerTrainType.
77
- */
78
- powerTrains: UAFolder;
79
- /**
80
- * flangeLoad
81
- * The FlangeLoad is the load on the flange or at
82
- * the mounting point of the MotionDevice. This can
83
- * be the maximum load of the MotionDevice.
84
- */
85
- flangeLoad?: UALoad;
86
- /**
87
- * additionalComponents
88
- * AdditionalComponents is a container for one or
89
- * more instances of subtypes of ComponentType
90
- * defined in OPC UA DI. The listed components are
91
- * installed at the motion device, e.g. an IO-board.
92
- */
93
- additionalComponents?: UAFolder;
94
- }
95
- export interface UAMotionDevice extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotionDevice_Base {
96
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
+ import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
7
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
8
+ import { EnumMotionDeviceCategory } from "./enum_motion_device_category";
9
+ import { UALoad } from "./ua_load";
10
+ export interface UAMotionDevice_parameterSet extends UAObject {
11
+ /**
12
+ * onPath
13
+ * OnPath is true if the motion device is on or near
14
+ * enough the planned program path such that program
15
+ * execution can continue. If the MotionDevice
16
+ * deviates too much from this path in case of
17
+ * errors or an emergency stop, this value becomes
18
+ * false. If OnPath is false, the motion device
19
+ * needs repositioning to continue program execution.
20
+ */
21
+ onPath?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
22
+ /**
23
+ * inControl
24
+ * InControl provides the information if the
25
+ * actuators (in most cases a motor) of the motion
26
+ * device are powered up and in control: "true". The
27
+ * motion device might be in a standstill.
28
+ */
29
+ inControl?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
30
+ /**
31
+ * speedOverride
32
+ * SpeedOverride provides the current speed setting
33
+ * in percent of programmed speed (0 - 100%).
34
+ */
35
+ speedOverride: UABaseDataVariable<number, /*z*/ DataType.Double>;
36
+ }
37
+ /**
38
+ * Represents a specific motion device in the motion
39
+ * device system like a robot, a linear unit or a
40
+ * positioner. A MotionDevice should have at least
41
+ * one axis.
42
+ *
43
+ * | | |
44
+ * |----------------|--------------------------------------------------|
45
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
46
+ * |nodeClass |ObjectType |
47
+ * |typedDefinition |7:MotionDeviceType ns=7;i=1004 |
48
+ * |isAbstract |false |
49
+ */
50
+ export interface UAMotionDevice_Base extends UAComponent_Base {
51
+ /**
52
+ * parameterSet
53
+ * Flat list of Parameters
54
+ */
55
+ parameterSet: UAMotionDevice_parameterSet;
56
+ manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
57
+ model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
58
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
59
+ serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
60
+ /**
61
+ * motionDeviceCategory
62
+ * The variable MotionDeviceCategory provides the
63
+ * kind of motion device defined by
64
+ * MotionDeviceCategoryEnumeration based on ISO 8373.
65
+ */
66
+ motionDeviceCategory: UAProperty<EnumMotionDeviceCategory, /*z*/ DataType.Int32>;
67
+ /**
68
+ * axes
69
+ * Axes is a container for one or more instances of
70
+ * the AxisType.
71
+ */
72
+ axes: UAFolder;
73
+ /**
74
+ * powerTrains
75
+ * PowerTrains is a container for one or more
76
+ * instances of the PowerTrainType.
77
+ */
78
+ powerTrains: UAFolder;
79
+ /**
80
+ * flangeLoad
81
+ * The FlangeLoad is the load on the flange or at
82
+ * the mounting point of the MotionDevice. This can
83
+ * be the maximum load of the MotionDevice.
84
+ */
85
+ flangeLoad?: UALoad;
86
+ /**
87
+ * additionalComponents
88
+ * AdditionalComponents is a container for one or
89
+ * more instances of subtypes of ComponentType
90
+ * defined in OPC UA DI. The listed components are
91
+ * installed at the motion device, e.g. an IO-board.
92
+ */
93
+ additionalComponents?: UAFolder;
94
+ }
95
+ export interface UAMotionDevice extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotionDevice_Base {
96
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_motion_device.js.map
@@ -1,35 +1,35 @@
1
- import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
2
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
3
- /**
4
- * Contains the set of controllers and motion
5
- * devices in a closely-coupled motion device system.
6
- *
7
- * | | |
8
- * |----------------|--------------------------------------------------|
9
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
10
- * |nodeClass |ObjectType |
11
- * |typedDefinition |7:MotionDeviceSystemType ns=7;i=1002 |
12
- * |isAbstract |false |
13
- */
14
- export interface UAMotionDeviceSystem_Base extends UAComponent_Base {
15
- /**
16
- * motionDevices
17
- * Contains any kinematic or motion device which is
18
- * part of the motion device system.
19
- */
20
- motionDevices: UAFolder;
21
- /**
22
- * controllers
23
- * Contains the set of controllers in the motion
24
- * device system.
25
- */
26
- controllers: UAFolder;
27
- /**
28
- * safetyStates
29
- * Contains safety-related data from motion device
30
- * system.
31
- */
32
- safetyStates: UAFolder;
33
- }
34
- export interface UAMotionDeviceSystem extends UAComponent, UAMotionDeviceSystem_Base {
35
- }
1
+ import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
2
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
3
+ /**
4
+ * Contains the set of controllers and motion
5
+ * devices in a closely-coupled motion device system.
6
+ *
7
+ * | | |
8
+ * |----------------|--------------------------------------------------|
9
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
10
+ * |nodeClass |ObjectType |
11
+ * |typedDefinition |7:MotionDeviceSystemType ns=7;i=1002 |
12
+ * |isAbstract |false |
13
+ */
14
+ export interface UAMotionDeviceSystem_Base extends UAComponent_Base {
15
+ /**
16
+ * motionDevices
17
+ * Contains any kinematic or motion device which is
18
+ * part of the motion device system.
19
+ */
20
+ motionDevices: UAFolder;
21
+ /**
22
+ * controllers
23
+ * Contains the set of controllers in the motion
24
+ * device system.
25
+ */
26
+ controllers: UAFolder;
27
+ /**
28
+ * safetyStates
29
+ * Contains safety-related data from motion device
30
+ * system.
31
+ */
32
+ safetyStates: UAFolder;
33
+ }
34
+ export interface UAMotionDeviceSystem extends UAComponent, UAMotionDeviceSystem_Base {
35
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_motion_device_system.js.map