node-opcua-nodeset-robotics 2.64.0 → 2.64.1

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 +31 -31
  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 +59 -59
  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 +95 -95
  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 +0 -0
  34. package/dist/ua_protective_stop_function.js +2 -2
  35. package/dist/ua_safety_state.d.ts +71 -71
  36. package/dist/ua_safety_state.js +2 -2
  37. package/dist/ua_task_control.d.ts +52 -52
  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 +22 -21
@@ -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,95 +1,95 @@
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 { UALoad } from "./ua_load";
9
- export interface UAMotionDevice_parameterSet extends UAObject {
10
- /**
11
- * onPath
12
- * OnPath is true if the motion device is on or near
13
- * enough the planned program path such that program
14
- * execution can continue. If the MotionDevice
15
- * deviates too much from this path in case of
16
- * errors or an emergency stop, this value becomes
17
- * false. If OnPath is false, the motion device
18
- * needs repositioning to continue program execution.
19
- */
20
- onPath?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
21
- /**
22
- * inControl
23
- * InControl provides the information if the
24
- * actuators (in most cases a motor) of the motion
25
- * device are powered up and in control: "true". The
26
- * motion device might be in a standstill.
27
- */
28
- inControl?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
29
- /**
30
- * speedOverride
31
- * SpeedOverride provides the current speed setting
32
- * in percent of programmed speed (0 - 100%).
33
- */
34
- speedOverride: UABaseDataVariable<number, /*z*/ DataType.Double>;
35
- }
36
- /**
37
- * Represents a specific motion device in the motion
38
- * device system like a robot, a linear unit or a
39
- * positioner. A MotionDevice should have at least
40
- * one axis.
41
- *
42
- * | | |
43
- * |----------------|--------------------------------------------------|
44
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
45
- * |nodeClass |ObjectType |
46
- * |typedDefinition |7:MotionDeviceType ns=7;i=1004 |
47
- * |isAbstract |false |
48
- */
49
- export interface UAMotionDevice_Base extends UAComponent_Base {
50
- /**
51
- * parameterSet
52
- * Flat list of Parameters
53
- */
54
- parameterSet: UAMotionDevice_parameterSet;
55
- manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
56
- model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
57
- productCode: UAProperty<UAString, /*z*/ DataType.String>;
58
- serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
59
- /**
60
- * motionDeviceCategory
61
- * The variable MotionDeviceCategory provides the
62
- * kind of motion device defined by
63
- * MotionDeviceCategoryEnumeration based on ISO 8373.
64
- */
65
- motionDeviceCategory: UAProperty<any, any>;
66
- /**
67
- * axes
68
- * Axes is a container for one or more instances of
69
- * the AxisType.
70
- */
71
- axes: UAFolder;
72
- /**
73
- * powerTrains
74
- * PowerTrains is a container for one or more
75
- * instances of the PowerTrainType.
76
- */
77
- powerTrains: UAFolder;
78
- /**
79
- * flangeLoad
80
- * The FlangeLoad is the load on the flange or at
81
- * the mounting point of the MotionDevice. This can
82
- * be the maximum load of the MotionDevice.
83
- */
84
- flangeLoad?: UALoad;
85
- /**
86
- * additionalComponents
87
- * AdditionalComponents is a container for one or
88
- * more instances of subtypes of ComponentType
89
- * defined in OPC UA DI. The listed components are
90
- * installed at the motion device, e.g. an IO-board.
91
- */
92
- additionalComponents?: UAFolder;
93
- }
94
- export interface UAMotionDevice extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotionDevice_Base {
95
- }
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 { UALoad } from "./ua_load";
9
+ export interface UAMotionDevice_parameterSet extends UAObject {
10
+ /**
11
+ * onPath
12
+ * OnPath is true if the motion device is on or near
13
+ * enough the planned program path such that program
14
+ * execution can continue. If the MotionDevice
15
+ * deviates too much from this path in case of
16
+ * errors or an emergency stop, this value becomes
17
+ * false. If OnPath is false, the motion device
18
+ * needs repositioning to continue program execution.
19
+ */
20
+ onPath?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
21
+ /**
22
+ * inControl
23
+ * InControl provides the information if the
24
+ * actuators (in most cases a motor) of the motion
25
+ * device are powered up and in control: "true". The
26
+ * motion device might be in a standstill.
27
+ */
28
+ inControl?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
29
+ /**
30
+ * speedOverride
31
+ * SpeedOverride provides the current speed setting
32
+ * in percent of programmed speed (0 - 100%).
33
+ */
34
+ speedOverride: UABaseDataVariable<number, /*z*/ DataType.Double>;
35
+ }
36
+ /**
37
+ * Represents a specific motion device in the motion
38
+ * device system like a robot, a linear unit or a
39
+ * positioner. A MotionDevice should have at least
40
+ * one axis.
41
+ *
42
+ * | | |
43
+ * |----------------|--------------------------------------------------|
44
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
45
+ * |nodeClass |ObjectType |
46
+ * |typedDefinition |7:MotionDeviceType ns=7;i=1004 |
47
+ * |isAbstract |false |
48
+ */
49
+ export interface UAMotionDevice_Base extends UAComponent_Base {
50
+ /**
51
+ * parameterSet
52
+ * Flat list of Parameters
53
+ */
54
+ parameterSet: UAMotionDevice_parameterSet;
55
+ manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
56
+ model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
57
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
58
+ serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
59
+ /**
60
+ * motionDeviceCategory
61
+ * The variable MotionDeviceCategory provides the
62
+ * kind of motion device defined by
63
+ * MotionDeviceCategoryEnumeration based on ISO 8373.
64
+ */
65
+ motionDeviceCategory: UAProperty<any, any>;
66
+ /**
67
+ * axes
68
+ * Axes is a container for one or more instances of
69
+ * the AxisType.
70
+ */
71
+ axes: UAFolder;
72
+ /**
73
+ * powerTrains
74
+ * PowerTrains is a container for one or more
75
+ * instances of the PowerTrainType.
76
+ */
77
+ powerTrains: UAFolder;
78
+ /**
79
+ * flangeLoad
80
+ * The FlangeLoad is the load on the flange or at
81
+ * the mounting point of the MotionDevice. This can
82
+ * be the maximum load of the MotionDevice.
83
+ */
84
+ flangeLoad?: UALoad;
85
+ /**
86
+ * additionalComponents
87
+ * AdditionalComponents is a container for one or
88
+ * more instances of subtypes of ComponentType
89
+ * defined in OPC UA DI. The listed components are
90
+ * installed at the motion device, e.g. an IO-board.
91
+ */
92
+ additionalComponents?: UAFolder;
93
+ }
94
+ export interface UAMotionDevice extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotionDevice_Base {
95
+ }
@@ -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