diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml
index 33ad97758..61520b282 100644
--- a/.github/workflows/build-docker-image.yml
+++ b/.github/workflows/build-docker-image.yml
@@ -32,6 +32,9 @@ on:
jobs:
# this workflow contains a single job called "build"
build:
+ # Do not build if it is an RC build
+ if: ${{ ! contains(github.ref_name, "RC") }}
+
# the type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0ad7d6e1e..758a427e1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,8 +1,8 @@
# The version number.
set(AGENT_VERSION_MAJOR 2)
-set(AGENT_VERSION_MINOR 4)
+set(AGENT_VERSION_MINOR 5)
set(AGENT_VERSION_PATCH 0)
-set(AGENT_VERSION_BUILD 9)
+set(AGENT_VERSION_BUILD 1)
set(AGENT_VERSION_RC "")
# This minimum version is to support Visual Studio 2019 and C++ feature checking and FetchContent
diff --git a/README.md b/README.md
index 00c2d1163..c911b749c 100755
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-MTConnect C++ Agent Version 2.3
+MTConnect C++ Agent Version 2.5
--------
[](https://github.com/mtconnect/cppagent/actions/workflows/build.yml)
@@ -13,6 +13,10 @@ the devices and the location of the adapter.
Pre-built binary releases for Windows are available from [Releases](https://github.com/mtconnect/cppagent/releases) for those who do not want to build the agent themselves. For *NIX users, you will need libxml2, cppunit, and cmake as well as build essentials.
+Version 2.5.0 Support for version 2.5. Added validation of observations in the stream and WebSockets support.
+
+Version 2.4.0 Added support for version 2.4
+
Version 2.3.0 Support for all Version 2.3 standard changes and JSON ingress to MQTT adapter.
Version 2.2.0 Support for all Version 2.2 standard changes and dynamic configuration from adapters. Upgrade to conan 2.
@@ -667,6 +671,10 @@ Configuration Parameters
* `VersionDeviceXml` - Create a new versioned file every time the Device.xml file changes from an external source.
*Default*: `false`
+
+* `Validation` - Turns on validation of model components and observations
+
+ *Default*: `false`
* `WorkerThreads` - The number of operating system threads dedicated to the Agent
@@ -741,14 +749,12 @@ These can be overridden on a per-adapter basis
* `HttpHeaders` - Additional headers to add to the HTTP Response for CORS Security
- Example:
- ```
- HttpHeaders {
- Access-Control-Allow-Origin = *
- Access-Control-Allow-Methods = GET
- Access-Control-Allow-Headers = Content-Type
- }
- ```
+ > Example: ```
+ > HttpHeaders {
+ > Access-Control-Allow-Origin = *
+ > Access-Control-Allow-Methods = GET
+ > Access-Control-Allow-Headers = Content-Type
+ > }```
* `Port` - The port number the agent binds to for requests.
@@ -1036,6 +1042,9 @@ Sinks {
*Default*: Auto-generated
+ > **⚠️Note:** Mqtt Sinks and Mqtt Adapters create separate connections to their respective brokers, but currently use the same client ID by default. Because of this, when using a single broker for source and sink, best practice is to explicitly specify their respective `MqttClientId`
+ >
+
Example mqtt adapter block:
```json
mydevice {
diff --git a/agent/cppagent.cpp b/agent/cppagent.cpp
index ae86382a3..3557e01a4 100644
--- a/agent/cppagent.cpp
+++ b/agent/cppagent.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/agent_lib/CMakeLists.txt b/agent_lib/CMakeLists.txt
index 454608561..0943f4de6 100644
--- a/agent_lib/CMakeLists.txt
+++ b/agent_lib/CMakeLists.txt
@@ -25,6 +25,9 @@ set(AGENT_SOURCES
"${SOURCE_DIR}/asset/raw_material.hpp"
"${SOURCE_DIR}/asset/qif_document.hpp"
"${SOURCE_DIR}/asset/component_configuration_parameters.hpp"
+ "${SOURCE_DIR}/asset/physical_asset.hpp"
+ "${SOURCE_DIR}/asset/fixture.hpp"
+ "${SOURCE_DIR}/asset/pallet.hpp"
# src/asset SOURCE_FILES_ONLY
@@ -34,6 +37,9 @@ set(AGENT_SOURCES
"${SOURCE_DIR}/asset/raw_material.cpp"
"${SOURCE_DIR}/asset/qif_document.cpp"
"${SOURCE_DIR}/asset/component_configuration_parameters.cpp"
+ "${SOURCE_DIR}/asset/physical_asset.cpp"
+ "${SOURCE_DIR}/asset/fixture.cpp"
+ "${SOURCE_DIR}/asset/pallet.cpp"
# src/buffer HEADER_FILES_ONLY
@@ -183,6 +189,7 @@ set(AGENT_SOURCES
"${SOURCE_DIR}/pipeline/topic_mapper.hpp"
"${SOURCE_DIR}/pipeline/transform.hpp"
"${SOURCE_DIR}/pipeline/upcase_value.hpp"
+ "${SOURCE_DIR}/pipeline/validator.hpp"
# src/pipeline SOURCE_FILES_ONLY
@@ -243,13 +250,11 @@ set(AGENT_SOURCES
# src/sink/mqtt_sink HEADER_FILE_ONLY
- "${SOURCE_DIR}/sink/mqtt_sink/mqtt_service.hpp"
- "${SOURCE_DIR}/sink/mqtt_sink/mqtt2_service.hpp"
+ "${SOURCE_DIR}/sink/mqtt_sink/mqtt_service.hpp"
#src/sink/mqtt_sink SOURCE_FILES_ONLY
- "${SOURCE_DIR}/sink/mqtt_sink/mqtt_service.cpp"
- "${SOURCE_DIR}/sink/mqtt_sink/mqtt2_service.cpp"
+ "${SOURCE_DIR}/sink/mqtt_sink/mqtt_service.cpp"
# src/sink/rest_sink HEADER_FILE_ONLY
@@ -264,6 +269,7 @@ set(AGENT_SOURCES
"${SOURCE_DIR}/sink/rest_sink/session.hpp"
"${SOURCE_DIR}/sink/rest_sink/session_impl.hpp"
"${SOURCE_DIR}/sink/rest_sink/tls_dector.hpp"
+ "${SOURCE_DIR}/sink/rest_sink/websocket_session.hpp"
# src/sink/rest_sink SOURCE_FILES_ONLY
@@ -271,6 +277,13 @@ set(AGENT_SOURCES
"${SOURCE_DIR}/sink/rest_sink/rest_service.cpp"
"${SOURCE_DIR}/sink/rest_sink/server.cpp"
"${SOURCE_DIR}/sink/rest_sink/session_impl.cpp"
+
+ # validation HEADER_FILES_ONLY
+ "${SOURCE_DIR}/validation/observations.hpp"
+ "${SOURCE_DIR}/validation/observation_validations.hpp"
+
+ # validation SOURCE_FILES_ONLY
+ "${SOURCE_DIR}/validation/observations.cpp"
)
if(WITH_RUBY)
@@ -325,7 +338,6 @@ if(MSVC)
# The modules including Beast required the /bigobj option in Windows
set_property(SOURCE
"${SOURCE_DIR}/sink/mqtt_sink/mqtt_service.cpp"
- "${SOURCE_DIR}/sink/mqtt_sink/mqtt2_service.cpp"
"${SOURCE_DIR}/sink/rest_sink/session_impl.cpp"
"${SOURCE_DIR}/source/adapter/mqtt/mqtt_adapter.cpp"
"${SOURCE_DIR}/source/adapter/agent_adapter/agent_adapter.cpp"
diff --git a/conan/profiles/vs32 b/conan/profiles/vs32
index 8b20a3bfe..fb406b017 100644
--- a/conan/profiles/vs32
+++ b/conan/profiles/vs32
@@ -8,4 +8,5 @@ compiler.runtime=static
compiler.runtime_type=Release
build_type=Release
-
+[options]
+winver=0x0600
diff --git a/conan/profiles/vs32debug b/conan/profiles/vs32debug
index 505fc71bc..54344e405 100644
--- a/conan/profiles/vs32debug
+++ b/conan/profiles/vs32debug
@@ -8,3 +8,5 @@ compiler.runtime=static
compiler.runtime_type=Debug
build_type=Debug
+[options]
+winver=0x0600
diff --git a/conan/profiles/vs32shared b/conan/profiles/vs32shared
index 52ac0b1e4..d30b8f54c 100644
--- a/conan/profiles/vs32shared
+++ b/conan/profiles/vs32shared
@@ -11,3 +11,4 @@ build_type=Release
[options]
shared=True
+winver=0x0600
diff --git a/conanfile.py b/conanfile.py
index 6da2500a0..0a4bfd368 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -9,7 +9,7 @@
class MTConnectAgentConan(ConanFile):
name = "mtconnect_agent"
- version = "2.4"
+ version = "2.5"
url = "https://github.com/mtconnect/cppagent.git"
license = "Apache License 2.0"
settings = "os", "compiler", "arch", "build_type"
@@ -143,6 +143,9 @@ def configure(self):
if is_msvc(self):
self.options["boost/*"].extra_b2_flags = ("define=BOOST_USE_WINAPI_VERSION=" + str(self.options.winver))
+ if is_msvc(self):
+ self.options["boost/*"].extra_b2_flags = ("define=BOOST_USE_WINAPI_VERSION=" + str(self.options.winver))
+
# Make sure shared builds use shared boost
if is_msvc(self) and self.options.shared:
print("**** Making boost, libxml2, gtest, and openssl shared")
diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile
index 69d187ae7..7372a5466 100644
--- a/docker/ubuntu/Dockerfile
+++ b/docker/ubuntu/Dockerfile
@@ -63,7 +63,7 @@ RUN apt-get update \
rake \
ruby \
&& rm -rf /var/lib/apt/lists/* \
- && pip install conan
+ && pip install conan
# make an agent directory and cd into it
WORKDIR /root/agent
diff --git a/schemas/MTConnectAssets_2.5.xsd b/schemas/MTConnectAssets_2.5.xsd
new file mode 100644
index 000000000..7f946cf45
--- /dev/null
+++ b/schemas/MTConnectAssets_2.5.xsd
@@ -0,0 +1,17484 @@
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectAssets Response Document)}} that
+ contains the {{term(Asset Information Model)}} of {{block(Asset)}}
+ types. {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectAssets)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the
+ normative model.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectAssets Response Document)}} that
+ contains the {{term(Asset Information Model)}} of {{block(Asset)}}
+ types. {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectAssets)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(Assets)}} groups one or more {{block(Asset)}} types. See
+ {{package(Asset Information Model)}} for more details.
+
+
+
+
+
+
+
+
+ A URI reference
+
+
+
+
+
+
+
+ The description of an asset, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ {{block(Assets)}} groups one or more {{block(Asset)}} types. See
+ {{package(Asset Information Model)}} for more details.
+
+
+
+
+
+
+
+
+
+ {{term(asset)}} that is used by the manufacturing process to perform
+ tasks. > Note 1 to entry: An {{term(Asset)}} relies upon an
+ {{term(Device)}} to provide {{termplural(observation)}} and information
+ about itself and the {{term(Device)}} revises the information to reflect
+ changes to the {{term(Asset)}} during their interaction. Examples of
+ {{termplural(Asset)}} are cutting tools, Part Information, Manufacturing
+ Processes, Fixtures, and Files. > Note 2 to entry: A singular
+ {{property(Asset::assetId)}} uniquely identifies an {{term(Asset)}}
+ throughout its lifecycle and is used to track and relate the
+ {{term(Asset)}} to other {{termplural(Device)}} and entities. > Note
+ 3 to entry: {{termplural(Asset)}} are temporally associated with a
+ device and can be removed from the device without damage or alteration
+ to its primary functions.
+
+
+
+
+
+ The unique identifier of the asset
+
+
+
+
+
+
+ The time asset information was recorded
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ The asset has been marked as removed
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ {{term(asset)}} that is used by the manufacturing process to perform
+ tasks. > Note 1 to entry: An {{term(Asset)}} relies upon an
+ {{term(Device)}} to provide {{termplural(observation)}} and information
+ about itself and the {{term(Device)}} revises the information to reflect
+ changes to the {{term(Asset)}} during their interaction. Examples of
+ {{termplural(Asset)}} are cutting tools, Part Information, Manufacturing
+ Processes, Fixtures, and Files. > Note 2 to entry: A singular
+ {{property(Asset::assetId)}} uniquely identifies an {{term(Asset)}}
+ throughout its lifecycle and is used to track and relate the
+ {{term(Asset)}} to other {{termplural(Device)}} and entities. > Note
+ 3 to entry: {{termplural(Asset)}} are temporally associated with a
+ device and can be removed from the device without damage or alteration
+ to its primary functions.
+
+
+
+
+
+
+ The interval between adjacent sampleing of data
+
+
+
+
+
+
+
+ The frequency a measurement is sampled
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ An idref to the component id
+
+
+
+
+
+
+
+ An idref to the data item id
+
+
+
+
+
+
+
+ The item's reference to the data item or specificatiton
+
+
+
+
+
+
+
+ The name of a related component
+
+
+
+
+
+
+
+ The id reference for the coordinate system associated with this data
+ item
+
+
+
+
+
+
+
+ An discrete event
+
+
+
+
+
+
+
+ The description of a data item, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ The minimum limit on the change in a value
+
+
+
+
+
+
+
+ The measurement sampling type
+
+
+
+
+
+
+ An event represents a change in state occurs at a point in time.
+ Note: An event does not occur at predefined frequencies.
+
+
+
+
+
+
+ A sample is a data point for continuous data items, that is, the
+ value of a data item at a point in time.
+
+
+
+
+
+
+ The condition of the device
+
+
+
+
+
+
+
+
+ The multiplier for the native value. Conversion divides by this value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ series of sampled data. The data is reported for a specified number
+ of samples and each sample is reported with a fixed period.
+
+
+
+
+
+
+ measured value of the sample data. If no
+ {{property(DataItem::representation)}} is specified for a data item,
+ the {{property(DataItem::representation)}} **MUST** be determined to
+ be `VALUE`.
+
+
+
+
+
+
+ reported value(s) are represented as a set of {{termplural(key-value
+ pair)}}. Each reported value in the {{term(data set)}} **MUST** have
+ a unique key.
+
+
+
+
+
+
+ **DEPRECATED** as {{property(DataItem::representation)}} type in
+ *MTConnect Version 1.5*. Replaced by the
+ {{property(DataItem::discrete)}}.
+
+
+
+
+
+
+ two dimensional set of {{termplural(key-value pair)}} where the
+ {{block(Entry)}} represents a row, and the value is a set of
+ {{term(key-value pair)}} {{block(Cell)}} elements. A {{term(table)}}
+ follows the same behavior as the {{term(data set)}} for change
+ tracking, clearing, and history. When an {{block(Entry)}} changes,
+ all {{block(Cell)}} elements update as a single unit following the
+ behavior of a {{term(data set)}}. > Note: It is best to use
+ {{block(Variable)}} if the {{block(Cell)}} entities represent
+ multiple semantic types. Each {{block(Entry)}} in the
+ {{term(table)}} **MUST** have a unique key. Each {{block(Cell)}} of
+ each {{block(Entry)}} in the {{term(table)}} **MUST** have a unique
+ key. See {{block(Representation)}} in {{package(Observation
+ Information Model)}}, for a description of {{block(Entry)}} and
+ {{block(Cell)}} elements.
+
+
+
+
+
+
+
+
+ The type of filter
+
+
+
+
+
+
+ new value **MUST NOT** be reported for a data item unless the
+ measured value has changed from the last reported value by at least
+ the delta given as the value of this element. The value of
+ {{block(Filter)}} **MUST** be an absolute value using the same units
+ as the reported data.
+
+
+
+
+
+
+ data reported for a data item is provided on a periodic basis. The
+ `PERIOD` for reporting data is defined in the value of the
+ {{block(Filter)}}. The value of {{block(Filter)}} **MUST** be an
+ absolute value reported in seconds representing the time between
+ reported samples of the value of the data item.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+ {{termplural(organize)}} a set of expected values that can be
+ reported for a {{block(DataItem)}}.
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ starting value for a {{block(DataItem)}} as well as the value to be
+ set for the {{block(DataItem)}} after a reset event.
+
+
+
+
+
+
+ type of event that may cause a reset to occur.
+
+
+
+
+
+
+ defines the meaning of {{block(Entry)}} and {{block(Cell)}} entities
+ when the associated {{property(DataItem::representation)}} is either
+ `DATA_SET` or `TABLE`.
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The category of the data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The coordinate system reference to a particular coordinate system
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ Used as the default sample rate for waveforms
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The number of significant digits for this data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ A set of limits for a data item
+
+
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST
+ NOT** be used in conjunction with any other
+ {{block(Constraint)}} elements.
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ A starting point for a data item
+
+
+
+
+
+
+
+
+
+ The value element
+
+
+
+
+
+
+
+
+
+ The filter for the data item
+
+
+
+
+
+
+
+ The type of filter, ABSOLUTE or PERCENT
+
+
+
+
+
+
+
+
+
+ A native data source
+
+
+
+
+
+
+
+ The optional data item within the source component that provides
+ the underlying data
+
+
+
+
+
+
+ The component that is collecting the data associated with this
+ data item
+
+
+
+
+
+
+ The optional composition identifier for the source of this data
+ item
+
+
+
+
+
+
+
+
+
+ The DataItem Definition
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+ unique key
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more {{block(CellDefinition)}}
+ entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+
+ Organizes DataItemRelationship and SpecificationRelationship
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ A reference to the related DataItem id.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ A reference to a DataItem that associates the values with an
+ external entity
+
+
+
+
+
+
+ The referenced DataItem provides the id of the effective Coordinate
+ System
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+ The referenced DataItem provides the observed values.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+ An events data
+
+
+
+
+
+
+
+ The item's unique ID that references the data item id from probe
+
+
+
+
+
+
+
+ An Condition code as defined by the component
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with the
+ normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+ observation is not valid against the MTConnect Standard according to
+ the validation capabilities of the MTConnect Agent.
+
+
+
+
+
+
+ observation cannot be validated.
+
+
+
+
+
+
+ observation is valid against the MTConnect Standard.
+
+
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}} entities.
+ See {{package(Observation Information Model)}} for more detail.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}}
+ for the {{block(ComponentStream)}} model. > Note 1 to entry: In
+ the {{term(XML)}} representation, {{block(ComponentStream)}}
+ entities **MUST NOT** appear in the {{term(MTConnectDevices Response
+ Document)}}. > Note 2 to entry: In the {{term(XML)}}
+ representation, {{block(ComponentStream)}} entities **MUST** appear
+ only in the {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unque identifier for this device
+
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}} for
+ the {{block(ComponentStream)}} model. > Note 1 to entry: In the
+ {{term(XML)}} representation, {{block(ComponentStream)}} entities **MUST
+ NOT** appear in the {{term(MTConnectDevices Response Document)}}. >
+ Note 2 to entry: In the {{term(XML)}} representation,
+ {{block(ComponentStream)}} entities **MUST** appear only in the
+ {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities.
+ See {{sect(Sample)}}.
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The unque identifier for this component
+
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities. See
+ {{sect(Sample)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+
+
+
+ A collection of conditions
+
+
+
+
+
+
+
+
+
+ The observation value for indeterminent data
+
+
+
+
+
+
+ Data is unavailable
+
+
+
+
+
+
+
+
+
+ The events sequence number
+
+
+
+
+
+
+ The event subtype corresponding to the measurement subtype
+
+
+
+
+
+
+ The time the event occurred or recorded
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unique identifier of the item being produced
+
+
+
+
+
+
+ The identifier of the sub-element this result is in reference to
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with
+ the normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ String event value
+
+
+
+
+
+
+
+ DateTime String event value
+
+
+
+
+
+
+
+ A list of axis names
+
+
+
+
+
+
+
+
+
+
+
+ A list of axis for an event
+
+
+
+
+
+
+
+ Common floating point event value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Controlled vocabulary for ActuatorState
+
+
+
+
+
+
+ {{block(Actuator)}} is operating.
+
+
+
+
+
+
+ {{block(Actuator)}} is not operating.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Controlled vocabulary for Availability
+
+
+
+
+
+
+ data source is active and capable of providing data.
+
+
+
+
+
+
+ data source is either inactive or not capable of providing data.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisCoupling
+
+
+
+
+
+
+ axes are physically connected to each other and operate as a single
+ unit.
+
+
+
+
+
+
+ axes are not physically connected to each other but are operating
+ together in lockstep.
+
+
+
+
+
+
+ axis is the master of the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ axis is a slave to the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisInterlock
+
+
+
+
+
+
+ axis lockout function is activated, power has been removed from the
+ axis, and the axis is allowed to move freely.
+
+
+
+
+
+
+ axis lockout function has not been activated, the axis may be
+ powered, and the axis is capable of being controlled by another
+ component.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisState
+
+
+
+
+
+
+ axis is in its home position.
+
+
+
+
+
+
+ axis is in motion.
+
+
+
+
+
+
+ axis has been moved to a fixed position and is being maintained in
+ that position either electrically or mechanically. Action is
+ required to release the axis from this position.
+
+
+
+
+
+
+ axis is stopped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckInterlock
+
+
+
+
+
+
+ chuck cannot be unclamped.
+
+
+
+
+
+
+ chuck can be unclamped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckState
+
+
+
+
+
+
+ {{block(Chuck)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerMode
+
+
+
+
+
+
+ {{block(Controller)}} is configured to automatically execute a
+ program.
+
+
+
+
+
+
+ {{block(Controller)}} is not executing an active program. It is
+ capable of receiving instructions from an external source –
+ typically an operator. The {{block(Controller)}} executes operations
+ based on the instructions received from the external source.
+
+
+
+
+
+
+ operator can enter a series of operations for the
+ {{block(Controller)}} to perform. The {{block(Controller)}} will
+ execute this specific series of operations and then stop.
+
+
+
+
+
+
+ {{block(Controller)}} is operating in a mode that restricts the
+ active program from processing its next process step without
+ operator intervention.
+
+
+
+
+
+
+ {{block(Controller)}} is currently functioning as a programming
+ device and is not capable of executing an active program.
+
+
+
+
+
+
+ axes of the device are commanded to stop, but the spindle continues
+ to function.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerModeOverride
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `ON` state and the mode
+ override is active.
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `OFF` state and the mode
+ override is inactive.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Controlled vocabulary for Direction
+
+
+
+
+
+
+ clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+ counter-clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for DoorState
+
+
+
+
+
+
+ {{block(Door)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for EmergencyStop
+
+
+
+
+
+
+ emergency stop circuit is complete and the piece of equipment,
+ component, or composition is allowed to operate.
+
+
+
+
+
+
+ operation of the piece of equipment, component, or composition is
+ inhibited.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Controlled vocabulary for EndOfBar
+
+
+
+
+
+
+ {{block(EndOfBar)}} has been reached.
+
+
+
+
+
+
+ {{block(EndOfBar)}} has not been reached.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Controlled vocabulary for EquipmentMode
+
+
+
+
+
+
+ equipment is functioning in the mode designated by the `subType`.
+
+
+
+
+
+
+ equipment is not functioning in the mode designated by the
+ `subType`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for Execution
+
+
+
+
+
+
+ {{block(Component)}} is ready to execute instructions. It is
+ currently idle.
+
+
+
+
+
+
+ {{block(Component)}} is actively executing an instruction.
+
+
+
+
+
+
+ {{block(Component)}} suspends the execution of the program due to an
+ external signal. Action is required to resume execution.
+
+
+
+
+
+
+ motion of the active axes are commanded to stop at their current
+ position.
+
+
+
+
+
+
+ {{block(Component)}} program is not `READY` to execute.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ The {{block(Component)}} **MAY** have another state that indicates
+ if the execution is interrupted or the execution ignores the
+ interrupt instruction.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ Action is required to resume execution.
+
+
+
+
+
+
+ program completed execution.
+
+
+
+
+
+
+ {{block(Component)}} suspends execution while a secondary operation
+ executes. Execution resumes automatically once the secondary
+ operation completes.
+
+
+
+
+
+
+ program has been intentionally optionally stopped using an M01 or
+ similar code. **DEPRECATED** in *version 1.4* and replaced with
+ `OPTIONAL_STOP`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for FunctionalMode
+
+
+
+
+
+
+ {{block(Component)}} is currently producing product, ready to
+ produce product, or its current intended use is to be producing
+ product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is being
+ prepared or modified to begin production of product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. Typically,
+ it has completed the production of a product and is being modified
+ or returned to a neutral state such that it may then be prepared to
+ begin production of a different product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is
+ currently being repaired, waiting to be repaired, or has not yet
+ been returned to a normal production status after maintenance has
+ been performed.
+
+
+
+
+
+
+ {{block(Component)}} is being used to prove-out a new process,
+ testing of equipment or processes, or any other active use that does
+ not result in the production of product.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartDetect
+
+
+
+
+
+
+ part or work piece is detected or is present.
+
+
+
+
+
+
+ part or work piece is not detected or is not present.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PathMode
+
+
+
+
+
+
+ path is operating independently and without the influence of another
+ path.
+
+
+
+
+
+
+ path provides information or state values that influences the
+ operation of other {{block(DataItem)}} of similar type.
+
+
+
+
+
+
+ physical or logical parts which are not physically connected to each
+ other but are operating together.
+
+
+
+
+
+
+ axes associated with the path are mirroring the motion of the
+ `MASTER` path.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerState
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is present and
+ active.
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is not present
+ or is disconnected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerStatus
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramEdit
+
+
+
+
+
+
+ {{block(Controller)}} is in the program edit mode.
+
+
+
+
+
+
+ {{block(Controller)}} is capable of entering the program edit mode
+ and no function is inhibiting a change to that mode.
+
+
+
+
+
+
+ {{block(Controller)}} is being inhibited by a function from entering
+ the program edit mode.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramLocationType
+
+
+
+
+
+
+ managed by the controller.
+
+
+
+
+
+
+ not managed by the controller.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Controlled vocabulary for RotaryMode
+
+
+
+
+
+
+ axis is functioning as a spindle.
+
+
+
+
+
+
+ axis is configured to index.
+
+
+
+
+
+
+ position of the axis is being interpolated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Controlled vocabulary for SpindleInterlock
+
+
+
+
+
+
+ power has been removed and the spindle cannot be operated.
+
+
+
+
+
+
+ spindle has not been deactivated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Controlled vocabulary for WaitState
+
+
+
+
+
+
+ execution is waiting while the equipment is powering up and is not
+ currently available to begin producing parts or products.
+
+
+
+
+
+
+ execution is waiting while the equipment is powering down but has
+ not fully reached a stopped state.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ loaded.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ unloaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being loaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being unloaded.
+
+
+
+
+
+
+ execution is waiting while material is being loaded.
+
+
+
+
+
+
+ execution is waiting while material is being unloaded.
+
+
+
+
+
+
+ execution is waiting while another process is completed before the
+ execution can resume.
+
+
+
+
+
+
+ execution is waiting while the equipment is pausing but the piece of
+ equipment has not yet reached a fully paused state.
+
+
+
+
+
+
+ execution is waiting while the equipment is resuming the production
+ cycle but has not yet resumed execution.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartStatus
+
+
+
+
+
+
+ part conforms to given requirements.
+
+
+
+
+
+
+ part does not conform to some given requirements.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ConnectionStatus
+
+
+
+
+
+
+ no connection at all.
+
+
+
+
+
+
+ {{term(agent)}} is waiting for a connection request from an
+ {{term(adapter)}}.
+
+
+
+
+
+
+ open connection. The normal state for the data transfer phase of the
+ connection.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartProcessingState
+
+
+
+
+
+
+ part occurrence is not actively being processed, but the processing
+ has not ended. Processing requirements exist that have not yet been
+ fulfilled. This is the default entry state when the part occurrence
+ is originally received. In some cases, the part occurrence may
+ return to this state while it waits for additional processing to be
+ performed.
+
+
+
+
+
+
+ part occurrence is actively being processed.
+
+
+
+
+
+
+ part occurrence is no longer being processed. A general state when
+ the reason for termination is unknown.
+
+
+
+
+
+
+ part occurrence has completed processing successfully.
+
+
+
+
+
+
+ process has been stopped during the processing. The part occurrence
+ will require special treatment.
+
+
+
+
+
+
+ processing of the part occurrence has come to a premature end.
+
+
+
+
+
+
+ terminal state when the part occurrence has been removed from the
+ equipment by an external entity and it no longer exists at the
+ equipment.
+
+
+
+
+
+
+ part occurrence has been skipped for processing on the piece of
+ equipment.
+
+
+
+
+
+
+ part occurrence has been processed completely. However, the
+ processing may have a problem.
+
+
+
+
+
+
+ part occurrence is waiting for transit.
+
+
+
+
+
+
+ part occurrence is being transported to its destination.
+
+
+
+
+
+
+ part occurrence has been placed at its designated destination.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProcessState
+
+
+
+
+
+
+ device is preparing to execute the process occurrence.
+
+
+
+
+
+
+ process occurrence is ready to be executed.
+
+
+
+
+
+
+ process occurrence is actively executing.
+
+
+
+
+
+
+ process occurrence is now finished.
+
+
+
+
+
+
+ process occurrence has been stopped and may be resumed.
+
+
+
+
+
+
+ process occurrence has come to a premature end and cannot be
+ resumed.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ValveState
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is allowed and the aperture is
+ static. > Note: For a binary value, `OPEN` indicates the valve
+ has the maximum possible aperture.
+
+
+
+
+
+
+ valve is transitioning from a `CLOSED` state to an `OPEN` state.
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is not possible, the aperture is
+ static, and the valve is completely shut.
+
+
+
+
+
+
+ valve is transitioning from an `OPEN` state to a `CLOSED` state.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for LockState
+
+
+
+
+
+
+ mechanism is engaged and preventing the associated
+ {{block(Component)}} from being opened or operated.
+
+
+
+
+
+
+ mechanism is disengaged and the associated {{block(Component)}} is
+ able to be opened or operated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for OperatingMode
+
+
+
+
+
+
+ automatically execute instructions from a recipe or program. >
+ Note: Setpoint comes from a recipe.
+
+
+
+
+
+
+ execute instructions from an external agent or person. > Note 1
+ to entry: Valve or switch is manipulated by an agent/person. >
+ Note 2 to entry: Direct control of the PID output. % of the range: A
+ user manually sets the % output, not the setpoint.
+
+
+
+
+
+
+ executes a single instruction from a recipe or program. > Note 1
+ to entry: Setpoint is entered and fixed, but the PID is controlling.
+ > Note 2 to entry: Still goes through the PID control system.
+ > Note 3 to entry: Manual fixed entry from a recipe.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartCountType
+
+
+
+
+
+
+ count is of individual items.
+
+
+
+
+
+
+ pre-specified group of items.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Controlled vocabulary for LeakDetect
+
+
+
+
+
+
+ leak is currently being detected.
+
+
+
+
+
+
+ leak is currently not being detected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Controlled vocabulary for BatteryState
+
+
+
+
+
+
+ {{block(Component)}} is at it's maximum rated charge level.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is increasing.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is decreasing.
+
+
+
+
+
+
+ {{block(Component)}} is at it's minimum charge level.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Controlled vocabulary for CharacteristicStatus
+
+
+
+
+
+
+ measurement is within acceptable tolerances.
+
+
+
+
+
+
+ measurement is not within acceptable tolerances.
+
+
+
+
+
+
+ failed, but acceptable constraints achievable by utilizing
+ additional manufacturing processes.
+
+
+
+
+
+
+ measurement is indeterminate due to an equipment failure.
+
+
+
+
+
+
+ measurement cannot be determined.
+
+
+
+
+
+
+ measurement cannot be evaluated.
+
+
+
+
+
+
+ nominal provided without tolerance limits. {{cite(QIF 3:2018
+ 5.10.2.6)}}
+
+
+
+
+
+
+ status of measurement cannot be determined.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Controlled vocabulary for UncertaintyType
+
+
+
+
+
+
+ {{term(combined standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(standard uncertainty)}} using arithmetic mean or average the
+ observations. {{cite(JCGM 100:2008 4.2)}}
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for InterfaceState
+
+
+
+
+
+
+ {{block(Interface)}} is currently operational and performing as
+ expected.
+
+
+
+
+
+
+ {{block(Interface)}} is currently not operational.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ The target rate a value can be sampled
+
+
+
+
+
+
+
+ The number of items in the list
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The rate the waveform was sampled at, default back to the value given
+ in the data item
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ The number of seconds since the reset of the statistic
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+
+ The number of samples
+
+
+
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ The description of the Condition
+
+
+
+
+
+
+
+ The device's severity
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a piece of
+ equipment
+
+
+
+
+
+
+
+ A qualifier for the condition
+
+
+
+
+
+
+ The value is too high
+
+
+
+
+
+
+ The value is too low
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ An optional attribute that helps qualify the condition
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a
+ piece of equipment
+
+
+
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+ The tool location
+
+
+
+
+
+
+
+ The number referenced in the program for this tool
+
+
+
+
+
+
+
+ The number of times the cutter has been reconditioned
+
+
+
+
+
+
+
+ The code for the connection to the machine
+
+
+
+
+
+
+
+ The tool group associated with the tool
+
+
+
+
+
+
+
+ A speed in RPM or mm/s
+
+
+
+
+
+
+
+
+
+ A measurement value
+
+
+
+
+
+
+
+
+
+ The number of location units required to hold this tool
+
+
+
+
+
+
+
+ A measurement value
+
+
+
+
+
+
+
+ The tool identifier
+
+
+
+
+
+
+
+ The number of cutting edges
+
+
+
+
+
+
+
+ The number of additional locations taken by a tool
+
+
+
+
+
+
+
+ The life of the tool in time, wear, or parts
+
+
+
+
+
+
+
+ An identifier for the insert
+
+
+
+
+
+
+
+ A single or range of indexes. A range can be a comma separated set of
+ individual elements as in "1,2,3,4", or as a inclusive range
+ of values as in "1-10" or multiple ranges "1-4,6-10"
+
+
+
+
+
+
+
+
+
+ A minimum value
+
+
+
+
+
+
+
+ A maximum value
+
+
+
+
+
+
+
+ A nominal value
+
+
+
+
+
+
+
+ The material for a cutting item
+
+
+
+
+
+
+
+ A maximum count value
+
+
+
+
+
+
+
+ A application specific code
+
+
+
+
+
+
+
+ A comman delimited list of manufactures
+
+
+
+
+
+
+
+ A relationship
+
+
+
+
+
+
+
+ The format of the definition
+
+
+
+
+
+
+ The definition will be provided in EXPRESS format
+
+
+
+
+
+
+ The definition will be provided in XML
+
+
+
+
+
+
+ The definition will be provided in uninterpreted TEXT
+
+
+
+
+
+
+ The definition will be provided in an unspecified format
+
+
+
+
+
+
+
+
+ The state of the tool. These can be combined to define the complete
+ cutting tool state
+
+
+
+
+
+
+ The tool is new
+
+
+
+
+
+
+ The cutting tool is available for use
+
+
+
+
+
+
+ The cutting tool is unavailable for use
+
+
+
+
+
+
+ The cutting tool is assigned to this proces
+
+
+
+
+
+
+ The cutting tool is NOT assigned to this device
+
+
+
+
+
+
+ The tool has been measured
+
+
+
+
+
+
+ An unregisterd state
+
+
+
+
+
+
+ The tool is being reconditioned
+
+
+
+
+
+
+ The tool is used
+
+
+
+
+
+
+ The tool is dead
+
+
+
+
+
+
+ The tool is currently out being reconditioned or sharpened
+
+
+
+
+
+
+ The tool is broken
+
+
+
+
+
+
+ The status of this cutter is undetermined
+
+
+
+
+
+
+
+
+ The direction of tool life count
+
+
+
+
+
+
+ The tool life counts up from the 0 to maximum
+
+
+
+
+
+
+ The tool life counts down from maximum to 0
+
+
+
+
+
+
+
+
+ The direction of tool life count
+
+
+
+
+
+
+ The tool life measured in minutes
+
+
+
+
+
+
+ The tool life measured in parts made
+
+
+
+
+
+
+ Measurement of tool life in tool wear
+
+
+
+
+
+
+
+
+ The type of tool location
+
+
+
+
+
+
+ A location in a tool magazine. updated
+
+
+
+
+
+
+ A location in a turret, tool bar, or tool rack. updated
+
+
+
+
+
+
+ A location within a tool crib. updated
+
+
+
+
+
+
+ A location associated with a spindle
+
+
+
+
+
+
+ A location for a tool awaiting transfer from a tool magazine to
+ spindle or a turret
+
+
+
+
+
+
+ A location for a tool removed from a spindle or turret and awaiting
+ return to a tool magazine
+
+
+
+
+
+
+ A location for a tool awaiting transfer to a tool magazine or turret
+ from outside of the piece of equipment.
+
+
+
+
+
+
+ A location for a tool removed from a tool magazine or turret
+ awaiting transfer to a location outside of the piece of equipment.
+
+
+
+
+
+
+ A location for a tool that is no longer useable and is awaiting
+ removal from a tool magazine or turret.
+
+
+
+
+
+
+ A location associated with an end effector
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static during its
+ lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+ identifies the expected representation of the enclosed data.
+
+
+
+
+
+
+
+ {{block(Asset)}} that physically removes the material from the workpiece
+ by shear deformation.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static
+ during its lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine
+ tool, presetter) and statistical process control
+ applications. Life cycle data will not remain static, but
+ will change periodically when a tool is used or measured.
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine tool,
+ presetter) and statistical process control applications. Life
+ cycle data will not remain static, but will change
+ periodically when a tool is used or measured.
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ The manufacturer of this asset
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that physically removes the material from the workpiece
+ by shear deformation.
+
+
+
+
+
+
+ {{block(Asset)}} that describes the static cutting tool geometries and
+ nominal values as one would expect from a tool catalog.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static
+ during its lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine
+ tool, presetter) and statistical process control
+ applications. Life cycle data will not remain static, but
+ will change periodically when a tool is used or measured.
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine tool,
+ presetter) and statistical process control applications. Life
+ cycle data will not remain static, but will change
+ periodically when a tool is used or measured.
+
+
+
+
+
+
+
+
+ identifier for a class of cutting tools.
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that describes the static cutting tool geometries and
+ nominal values as one would expect from a tool catalog.
+
+
+
+
+
+
+ A archetypical cutting tool life cycle definition
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+ The life of the cutting tool assembly
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ number of the tool as referenced in the part program.
+
+
+
+
+
+
+ constrained process spindle speed for the tool in
+ revolutions/minute. The {{property(ProcessSpindleSpeed::value)}}
+ **MAY** contain the nominal process target spindle speed if
+ available. If {{block(ProcessSpindleSpeed)}} is provided, at least
+ one value of {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal
+ process target feed rate if available. If {{block(ProcessFeedRate)}}
+ is provided, at least one value of
+ {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ identifier for the capability to connect any component of the
+ cutting tool together, except Assembly Items, on the machine side.
+ Code: `CCMS`
+
+
+
+
+
+
+ Any additional properties
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}}
+ for more detail.
+
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data is provided
+ by various pieces of equipment (i.e. machine tool, presetter) and
+ statistical process control applications. Life cycle data will not
+ remain static, but will change periodically when a tool is used or
+ measured.
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED`
+ and `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is
+ `EXPIRED`, `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be
+ `AVAILABLE`.
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ number of the tool as referenced in the part program.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ constrained process spindle speed for the tool in
+ revolutions/minute. The {{property(ProcessSpindleSpeed::value)}}
+ **MAY** contain the nominal process target spindle speed if
+ available. If {{block(ProcessSpindleSpeed)}} is provided, at least
+ one value of {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal
+ process target feed rate if available. If {{block(ProcessFeedRate)}}
+ is provided, at least one value of
+ {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ identifier for the capability to connect any component of the
+ cutting tool together, except Assembly Items, on the machine side.
+ Code: `CCMS`
+
+
+
+
+
+
+ Any additional properties
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}}
+ for more detail.
+
+
+
+
+
+
+
+
+ reference information about the {{property(Asset::assetId)}} and/or the
+ URL of the data source of {{block(CuttingToolArchetype)}}.
+
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED` and
+ `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is `EXPIRED`,
+ `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be `AVAILABLE`.
+
+
+
+
+
+
+ status of the cutting tool.
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The type of location
+
+
+
+
+
+
+ number of locations at lower index values from this location.
+
+
+
+
+
+
+ number of locations at higher index value from this location.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The tool bar associated with a tool
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+
+ The maximum number of times this tool can be reconditioned
+
+
+
+
+
+
+
+
+
+ constrained process spindle speed for the tool in revolutions/minute.
+ The {{property(ProcessSpindleSpeed::value)}} **MAY** contain the nominal
+ process target spindle speed if available. If
+ {{block(ProcessSpindleSpeed)}} is provided, at least one value of
+ {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal process
+ target feed rate if available. If {{block(ProcessFeedRate)}} is
+ provided, at least one value of {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The number of significant digits
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The native units for the measurement, if different from units
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Measurements for both the assembly and the cutting item
+
+
+
+
+
+
+
+
+
+ Measurements for both the assembly and the cutting item
+
+
+
+
+
+
+ Measurements for the assembly
+
+
+
+
+
+
+
+
+
+ Measurements for the assembly
+
+
+
+
+
+
+ Measurements for the cutting item
+
+
+
+
+
+
+
+
+
+ Measurements for the cutting item
+
+
+
+
+
+
+ A collection of assembly measurements
+
+
+
+
+
+
+
+
+
+
+ dimension from the yz-plane to the furthest point of the tool item or
+ adaptive item measured in the -X direction.
+
+
+
+
+
+
+
+
+
+ dimension from the yz-plane to the furthest point of the tool item or
+ adaptive item measured in the -X direction.
+
+
+
+
+
+
+ total weight of the cutting tool in grams. The force exerted by the mass
+ of the cutting tool.
+
+
+
+
+
+
+
+
+
+ total weight of the cutting tool in grams. The force exerted by the mass
+ of the cutting tool.
+
+
+
+
+
+
+ distance from the gauge plane or from the end of the shank to the
+ furthest point on the tool, if a gauge plane does not exist, to the
+ cutting reference point determined by the main function of the tool. The
+ {{block(CuttingTool)}} functional length will be the length of the
+ entire tool, not a single cutting item. Each {{block(CuttingItem)}} can
+ have an independent {{block(FunctionalLength)}} represented in its
+ measurements.
+
+
+
+
+
+
+
+
+
+ distance from the gauge plane or from the end of the shank to the
+ furthest point on the tool, if a gauge plane does not exist, to the
+ cutting reference point determined by the main function of the tool. The
+ {{block(CuttingTool)}} functional length will be the length of the
+ entire tool, not a single cutting item. Each {{block(CuttingItem)}} can
+ have an independent {{block(FunctionalLength)}} represented in its
+ measurements.
+
+
+
+
+
+
+ largest diameter of the body of a tool item.
+
+
+
+
+
+
+
+
+
+ largest diameter of the body of a tool item.
+
+
+
+
+
+
+ distance measured along the X axis from that point of the item closest
+ to the workpiece, including the cutting item for a tool item but
+ excluding a protruding locking mechanism for an adaptive item, to either
+ the front of the flange on a flanged body or the beginning of the
+ connection interface feature on the machine side for cylindrical or
+ prismatic shanks.
+
+
+
+
+
+
+
+
+
+ distance measured along the X axis from that point of the item closest
+ to the workpiece, including the cutting item for a tool item but
+ excluding a protruding locking mechanism for an adaptive item, to either
+ the front of the flange on a flanged body or the beginning of the
+ connection interface feature on the machine side for cylindrical or
+ prismatic shanks.
+
+
+
+
+
+
+ maximum diameter of a circle on which the defined point Pk of each of
+ the master inserts is located on a tool item. The normal of the machined
+ peripheral surface points towards the axis of the cutting tool.
+
+
+
+
+
+
+
+
+
+ maximum diameter of a circle on which the defined point Pk of each of
+ the master inserts is located on a tool item. The normal of the machined
+ peripheral surface points towards the axis of the cutting tool.
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+ maximum engagement of the cutting edge or edges with the workpiece
+ measured perpendicular to the feed motion.
+
+
+
+
+
+
+
+
+
+ maximum engagement of the cutting edge or edges with the workpiece
+ measured perpendicular to the feed motion.
+
+
+
+
+
+
+ largest length dimension of the cutting tool including the master insert
+ where applicable.
+
+
+
+
+
+
+
+
+
+ largest length dimension of the cutting tool including the master insert
+ where applicable.
+
+
+
+
+
+
+ dimension of the diameter of a cylindrical portion of a tool item or an
+ adaptive item that can participate in a connection.
+
+
+
+
+
+
+
+
+
+ dimension of the diameter of a cylindrical portion of a tool item or an
+ adaptive item that can participate in a connection.
+
+
+
+
+
+
+ dimension of the height of the shank.
+
+
+
+
+
+
+
+
+
+ dimension of the height of the shank.
+
+
+
+
+
+
+ dimension of the length of the shank.
+
+
+
+
+
+
+
+
+
+ dimension of the length of the shank.
+
+
+
+
+
+
+ maximum length of a cutting tool that can be used in a particular
+ cutting operation including the non-cutting portions of the tool.
+
+
+
+
+
+
+
+
+
+ maximum length of a cutting tool that can be used in a particular
+ cutting operation including the non-cutting portions of the tool.
+
+
+
+
+
+
+ Abstract cutter life
+
+
+
+
+
+
+
+ One of time, part count, or wear
+
+
+
+
+
+
+ The count up or count down
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision
+ and may become hazardous if no action is taken.
+
+
+
+
+
+
+ Maximum tool life
+
+
+
+
+
+
+ The life when the tool is new
+
+
+
+
+
+
+
+
+
+ A collection of assembly measurements
+
+
+
+
+
+
+
+
+
+
+ diameter of a circle on which the defined point Pk located on this
+ cutting tool. The normal of the machined peripheral surface points
+ towards the axis of the cutting tool.
+
+
+
+
+
+
+
+
+
+ diameter of a circle on which the defined point Pk located on this
+ cutting tool. The normal of the machined peripheral surface points
+ towards the axis of the cutting tool.
+
+
+
+
+
+
+ nominal radius of a rounded corner measured in the X Y-plane.
+
+
+
+
+
+
+
+
+
+ nominal radius of a rounded corner measured in the X Y-plane.
+
+
+
+
+
+
+ theoretical length of the cutting edge of a cutting item over sharp
+ corners.
+
+
+
+
+
+
+
+
+
+ theoretical length of the cutting edge of a cutting item over sharp
+ corners.
+
+
+
+
+
+
+ distance from the basal plane of the tool item to the cutting point.
+
+
+
+
+
+
+
+
+
+ distance from the basal plane of the tool item to the cutting point.
+
+
+
+
+
+
+ theoretical sharp point of the cutting tool from which the major
+ functional dimensions are taken.
+
+
+
+
+
+
+
+
+
+ theoretical sharp point of the cutting tool from which the major
+ functional dimensions are taken.
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+ distance between the cutting reference point and the rear backing
+ surface of a turning tool or the axis of a boring bar.
+
+
+
+
+
+
+
+
+
+ distance between the cutting reference point and the rear backing
+ surface of a turning tool or the axis of a boring bar.
+
+
+
+
+
+
+ angle between the tool rake plane and a plane parallel to the xy-plane
+ measured in the tool cutting edge plane
+
+
+
+
+
+
+
+
+
+ angle between the tool rake plane and a plane parallel to the xy-plane
+ measured in the tool cutting edge plane
+
+
+
+
+
+
+ diameter of a circle to which all edges of a equilateral and round
+ regular insert are tangential.
+
+
+
+
+
+
+
+
+
+ diameter of a circle to which all edges of a equilateral and round
+ regular insert are tangential.
+
+
+
+
+
+
+ angle between the major cutting edge and the same cutting edge rotated
+ by 180 degrees about the tool axis.
+
+
+
+
+
+
+
+
+
+ angle between the major cutting edge and the same cutting edge rotated
+ by 180 degrees about the tool axis.
+
+
+
+
+
+
+ length of a portion of a stepped tool that is related to a corresponding
+ cutting diameter measured from the cutting reference point of that
+ cutting diameter to the point on the next cutting edge at which the
+ diameter starts to change.
+
+
+
+
+
+
+
+
+
+ length of a portion of a stepped tool that is related to a corresponding
+ cutting diameter measured from the cutting reference point of that
+ cutting diameter to the point on the next cutting edge at which the
+ diameter starts to change.
+
+
+
+
+
+
+ angle between a major edge on a step of a stepped tool and the same
+ cutting edge rotated 180 degrees about its tool axis.
+
+
+
+
+
+
+
+
+
+ angle between a major edge on a step of a stepped tool and the same
+ cutting edge rotated 180 degrees about its tool axis.
+
+
+
+
+
+
+ angle between the tool cutting edge plane and the tool feed plane
+ measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+
+
+
+ angle between the tool cutting edge plane and the tool feed plane
+ measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+ angle between the tool cutting edge plane and a plane perpendicular to
+ the tool feed plane measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+
+
+
+ angle between the tool cutting edge plane and a plane perpendicular to
+ the tool feed plane measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+ measure of the length of a wiper edge of a cutting item.
+
+
+
+
+
+
+
+
+
+ measure of the length of a wiper edge of a cutting item.
+
+
+
+
+
+
+ angle of the tool with respect to the workpiece for a given process. The
+ value is application specific.
+
+
+
+
+
+
+
+
+
+ angle between the driving mechanism locator on a tool item and the main
+ cutting edge.
+
+
+
+
+
+
+
+
+
+ The location of the cutting item - not yet restricted.
+
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}} for
+ more detail.
+
+
+
+
+
+
+ part of of the tool that physically removes the material from the
+ workpiece by shear deformation.
+
+
+
+
+
+
+
+ The number of edges
+
+
+
+
+
+
+
+ part of of the tool that physically removes the material from the
+ workpiece by shear deformation.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED`
+ and `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is
+ `EXPIRED`, `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be
+ `AVAILABLE`.
+
+
+
+
+
+
+ free form description of the location on the cutting tool. For
+ clarity, the words `FLUTE`, `INSERT`, and `CARTRIDGE` **SHOULD** be
+ used to assist in noting the location of a {{block(CuttingItem)}}.
+ {{property(CuttingItem::Locus)}} **MAY** be any free form string,
+ but **SHOULD** adhere to the following rules: * The location
+ numbering **SHOULD** start at the furthest {{block(CuttingItem)}}
+ and work it’s way back to the {{block(CuttingItem)}} closest to the
+ gauge line. * Flutes **SHOULD** be identified as such using the word
+ `FLUTE`:. For example: `FLUTE`: 1, `INSERT`: 2 - would indicate the
+ first flute and the second furthest insert from the end of the tool
+ on that flute. * Other designations such as `CARTRIDGE` **MAY** be
+ included, but should be identified using upper case and followed by
+ a colon (:).
+
+
+
+
+
+
+ life of a {{block(CuttingItem)}}.
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ Any additional properties
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+ The unique identifier of this insert in this assembly
+
+
+
+
+
+
+ The manufacturer identifier of this cutting item
+
+
+
+
+
+
+ The material used for the cutting item
+
+
+
+
+
+
+ The manufacturer of this asset
+
+
+
+
+
+
+
+ The version of the file
+
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+
+ The size in bytes of the file
+
+
+
+
+
+
+
+ The name of the file
+
+
+
+
+
+
+
+ Extended tyoe for The category of application that will use this file
+
+
+
+
+
+
+
+
+
+ The category of application that will use this file
+
+
+
+
+
+
+ Files regarding the fully assembled product
+
+
+
+
+
+
+ Device related files
+
+
+
+
+
+
+ Files relating to the handling of material
+
+
+
+
+
+
+ File relating to equipment maintenance
+
+
+
+
+
+
+ Files relating to a part
+
+
+
+
+
+
+ Files related to the manufacturing process
+
+
+
+
+
+
+ Files related to the quality inspection
+
+
+
+
+
+
+ Files related to the setup of a process
+
+
+
+
+
+
+
+
+ The category of application that will use this file
+
+
+
+
+
+
+
+ Extended tyoe for The type classification of a file
+
+
+
+
+
+
+
+
+
+ The type classification of a file
+
+
+
+
+
+
+ Computer aided design files or drawings
+
+
+
+
+
+
+ Generic data
+
+
+
+
+
+
+ Documentation regarding a category of file
+
+
+
+
+
+
+ User instructions regarding the execution of a task
+
+
+
+
+
+
+ The data related to the history of a machine or process
+
+
+
+
+
+
+ Machine instructions to perform a process
+
+
+
+
+
+
+
+
+ The type classification of a file
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information common to all
+ versions of a file.
+
+
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more
+ {{block(FileProperty)}} entities for a {{block(File)}}. See
+ {{sect(FileProperty)}}.
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more
+ {{block(FileComment)}} entities for a {{block(File)}}. See
+ {{sect(FileComment)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+ The classification of this file
+
+
+
+
+
+
+ The sub classification of this file
+
+
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information common to all
+ versions of a file.
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more {{block(FileProperty)}}
+ entities for a {{block(File)}}. See {{sect(FileProperty)}}.
+
+
+
+
+
+
+ key-value pair providing additional metadata about a
+ {{block(File)}}.
+
+
+
+
+
+
+
+
+ The value of a file property
+
+
+
+
+
+
+
+ key-value pair providing additional metadata about a {{block(File)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+
+
+ File state
+
+
+
+
+
+
+ used for processes other than production or otherwise defined.
+
+
+
+
+
+
+ used for production processes
+
+
+
+
+
+
+ the content is modified from PRODUCTION or EXPERIMENTAL (Note: To
+ capture northbound changes. execution -> prod engineering)
+
+
+
+
+
+
+
+
+ An X501 Public Key
+
+
+
+
+
+
+
+ A secure hash
+
+
+
+
+
+
+
+ A file time
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information about the
+ {{block(File)}} instance and its {{term(URL)}}.
+
+
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more
+ {{block(FileProperty)}} entities for a {{block(File)}}. See
+ {{sect(FileProperty)}}.
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more
+ {{block(FileComment)}} entities for a {{block(File)}}. See
+ {{sect(FileComment)}}.
+
+
+
+
+
+
+ {{term(URL)}} reference to the file location.
+
+
+
+
+
+
+ secure hash of the file.
+
+
+
+
+
+
+ public key used to verify the signature.
+
+
+
+
+
+
+ {{block(Destinations)}} groups one or more
+ {{block(Destination)}} entities. See {{sect(Destination)}}.
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ time the file was modified.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+ The classification of this file
+
+
+
+
+
+
+ The sub classification of this file
+
+
+
+
+
+
+ The size in bytes
+
+
+
+
+
+
+ The version identifier
+
+
+
+
+
+
+ The file state
+
+
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information about the
+ {{block(File)}} instance and its {{term(URL)}}.
+
+
+
+
+
+
+ {{term(URL)}} reference to the file location.
+
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Organizes file destinations
+
+
+
+
+
+
+ reference to the target {{block(Device)}} for this {{block(File)}}.
+
+
+
+
+
+
+
+
+ The Destination is a reference to the target Device for this File
+
+
+
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more {{block(FileComment)}}
+ entities for a {{block(File)}}. See {{sect(FileComment)}}.
+
+
+
+
+
+
+ remark or interpretation for human interpretation associated with a
+ {{block(File)}} or {{block(FileArchetype)}}.
+
+
+
+
+
+
+
+
+ the text of the comment
+
+
+
+
+
+
+
+ remark or interpretation for human interpretation associated with a
+ {{block(File)}} or {{block(FileArchetype)}}.
+
+
+
+
+
+
+
+ The time the comment was made
+
+
+
+
+
+
+
+
+
+ Extended tyoe for contained QIF Document type as defined in the QIF
+ Standard.
+
+
+
+
+
+
+
+
+
+ contained QIF Document type as defined in the QIF Standard.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ contained QIF Document type as defined in the QIF Standard.
+
+
+
+
+
+
+
+ {{block(Asset)}} that carries the QIF Document.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The unique identifier for the material
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that carries the QIF Document.
+
+
+
+
+
+
+
+
+
+
+
+ any element
+
+
+
+
+
+
+
+
+ The type of the material container.
+
+
+
+
+
+
+
+ The serial number of the material container
+
+
+
+
+
+
+
+ The ISO process type supported by this {{term(raw material)}}
+
+
+
+
+
+
+
+ The type of material.
+
+
+
+
+
+
+
+ The name of the raw feed stock manufacturer.
+
+
+
+
+
+
+
+ The manufacturing date of the raw feed stock from the feed stock
+ manufacturer.
+
+
+
+
+
+
+
+ The lot code of the raw feed stock from the feed stock manufacturer.
+
+
+
+
+
+
+
+ The ASTM standard code that the material complies with.
+
+
+
+
+
+
+
+ The lot code of the material contained within the material container.
+
+
+
+
+
+
+
+ The form of the material in the material container.
+
+
+
+
+
+
+
+ The date when the material container was first used.
+
+
+
+
+
+
+
+ The date when the material container was last used.
+
+
+
+
+
+
+
+ The amount of material initially placed in the material container when
+ manufactured.
+
+
+
+
+
+
+
+ The dimension of material initially placed in the material container
+ when manufactured.
+
+
+
+
+
+
+
+ The quantity of material initially placed in the material container when
+ manufactured.
+
+
+
+
+
+
+
+ The quantity of material currently contained in the material container
+
+
+
+
+
+
+
+ The dimension of material currently contained in the material container
+
+
+
+
+
+
+
+ The quantity of material currently contained in the material container
+
+
+
+
+
+
+
+ Extended tyoe for form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+ material used as the {{block(RawMaterial)}}
+
+
+
+
+
+
+ manufacturer's lot code of the material.
+
+
+
+
+
+
+ name of the material manufacturer.
+
+
+
+
+
+
+ manufacturing date of the material from the material manufacturer.
+
+
+
+
+
+
+ lot code of the raw feed stock for the material, from the feed stock
+ manufacturer.
+
+
+
+
+
+
+ {{term(ASTM)}} standard code that the material complies with.
+
+
+
+
+
+
+
+ The unique identifier for the material
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of material.
+
+
+
+
+
+
+
+ {{block(Asset)}} that represents {{term(raw material)}}.
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+ {{block(Material)}} has existing usable volume.
+
+
+
+
+
+
+ manufacturing date of the material from the material
+ manufacturer.
+
+
+
+
+
+
+ date {{term(raw material)}} was first used.
+
+
+
+
+
+
+ date {{term(raw material)}} was last used.
+
+
+
+
+
+
+ amount of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ dimension of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ quantity of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ amount of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ dimension of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ quantity of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts,
+ materials, or other types of goods.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of container holding the {{term(raw material)}}.
+
+
+
+
+
+
+ The ISO process type supported by this {{term(raw material)}}.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that represents {{term(raw material)}}.
+
+
+
+
+
+
+ property that determines the characteristic or behavior of an entity.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST NOT**
+ be used in conjunction with any other {{block(Constraint)}}
+ elements.
+
+
+
+
+
+
+
+ The identifier of the parameter
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ {{block(Parameters)}} groups one or more {{block(Parameter)}} entities.
+ See {{sect(Parameter)}}.
+
+
+
+
+
+
+ property that determines the characteristic or behavior of an
+ entity.
+
+
+
+
+
+
+
+
+ set of {{block(Parameter)}}s.
+
+
+
+
+
+
+ {{block(Parameters)}} groups one or more {{block(Parameter)}}
+ entities. See {{sect(Parameter)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ {{block(ParameterSets)}} groups one or more {{block(ParameterSet)}}
+ entities. See {{sect(ParameterSet)}}.
+
+
+
+
+
+
+ set of {{block(Parameter)}}s.
+
+
+
+
+
+
+
+
+ set of {{block(ParameterSet)}}s that govern the functionality of the
+ related {{block(Component)}}.
+
+
+
+
+
+
+
+
+ {{block(ParameterSets)}} groups one or more
+ {{block(ParameterSet)}} entities. See {{sect(ParameterSet)}}.
+
+
+
+
+
+
+
+
+
+
+ set of {{block(ParameterSet)}}s that govern the functionality of the
+ related {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The number of significant digits
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The native units for the measurement, if different from units
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more
+ {{block(Measurement)}} subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more
+ {{block(Measurement)}} subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectAssets_2.5_1.0.xsd b/schemas/MTConnectAssets_2.5_1.0.xsd
new file mode 100644
index 000000000..f0d004744
--- /dev/null
+++ b/schemas/MTConnectAssets_2.5_1.0.xsd
@@ -0,0 +1,17463 @@
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectAssets Response Document)}} that
+ contains the {{term(Asset Information Model)}} of {{block(Asset)}}
+ types. {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectAssets)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the
+ normative model.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectAssets Response Document)}} that
+ contains the {{term(Asset Information Model)}} of {{block(Asset)}}
+ types. {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectAssets)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(Assets)}} groups one or more {{block(Asset)}} types. See
+ {{package(Asset Information Model)}} for more details.
+
+
+
+
+
+
+
+
+ A URI reference
+
+
+
+
+
+
+
+ The description of an asset, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ {{block(Assets)}} groups one or more {{block(Asset)}} types. See
+ {{package(Asset Information Model)}} for more details.
+
+
+
+
+
+
+
+
+
+ {{term(asset)}} that is used by the manufacturing process to perform
+ tasks. > Note 1 to entry: An {{term(Asset)}} relies upon an
+ {{term(Device)}} to provide {{termplural(observation)}} and information
+ about itself and the {{term(Device)}} revises the information to reflect
+ changes to the {{term(Asset)}} during their interaction. Examples of
+ {{termplural(Asset)}} are cutting tools, Part Information, Manufacturing
+ Processes, Fixtures, and Files. > Note 2 to entry: A singular
+ {{property(Asset::assetId)}} uniquely identifies an {{term(Asset)}}
+ throughout its lifecycle and is used to track and relate the
+ {{term(Asset)}} to other {{termplural(Device)}} and entities. > Note
+ 3 to entry: {{termplural(Asset)}} are temporally associated with a
+ device and can be removed from the device without damage or alteration
+ to its primary functions.
+
+
+
+
+
+ The unique identifier of the asset
+
+
+
+
+
+
+ The time asset information was recorded
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ The asset has been marked as removed
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ {{term(asset)}} that is used by the manufacturing process to perform
+ tasks. > Note 1 to entry: An {{term(Asset)}} relies upon an
+ {{term(Device)}} to provide {{termplural(observation)}} and information
+ about itself and the {{term(Device)}} revises the information to reflect
+ changes to the {{term(Asset)}} during their interaction. Examples of
+ {{termplural(Asset)}} are cutting tools, Part Information, Manufacturing
+ Processes, Fixtures, and Files. > Note 2 to entry: A singular
+ {{property(Asset::assetId)}} uniquely identifies an {{term(Asset)}}
+ throughout its lifecycle and is used to track and relate the
+ {{term(Asset)}} to other {{termplural(Device)}} and entities. > Note
+ 3 to entry: {{termplural(Asset)}} are temporally associated with a
+ device and can be removed from the device without damage or alteration
+ to its primary functions.
+
+
+
+
+
+
+ The interval between adjacent sampleing of data
+
+
+
+
+
+
+
+ The frequency a measurement is sampled
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ An idref to the component id
+
+
+
+
+
+
+
+ An idref to the data item id
+
+
+
+
+
+
+
+ The item's reference to the data item or specificatiton
+
+
+
+
+
+
+
+ The name of a related component
+
+
+
+
+
+
+
+ The id reference for the coordinate system associated with this data
+ item
+
+
+
+
+
+
+
+ An discrete event
+
+
+
+
+
+
+
+ The description of a data item, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ The minimum limit on the change in a value
+
+
+
+
+
+
+
+ The measurement sampling type
+
+
+
+
+
+
+ An event represents a change in state occurs at a point in time.
+ Note: An event does not occur at predefined frequencies.
+
+
+
+
+
+
+ A sample is a data point for continuous data items, that is, the
+ value of a data item at a point in time.
+
+
+
+
+
+
+ The condition of the device
+
+
+
+
+
+
+
+
+ The multiplier for the native value. Conversion divides by this value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ series of sampled data. The data is reported for a specified number
+ of samples and each sample is reported with a fixed period.
+
+
+
+
+
+
+ measured value of the sample data. If no
+ {{property(DataItem::representation)}} is specified for a data item,
+ the {{property(DataItem::representation)}} **MUST** be determined to
+ be `VALUE`.
+
+
+
+
+
+
+ reported value(s) are represented as a set of {{termplural(key-value
+ pair)}}. Each reported value in the {{term(data set)}} **MUST** have
+ a unique key.
+
+
+
+
+
+
+ **DEPRECATED** as {{property(DataItem::representation)}} type in
+ *MTConnect Version 1.5*. Replaced by the
+ {{property(DataItem::discrete)}}.
+
+
+
+
+
+
+ two dimensional set of {{termplural(key-value pair)}} where the
+ {{block(Entry)}} represents a row, and the value is a set of
+ {{term(key-value pair)}} {{block(Cell)}} elements. A {{term(table)}}
+ follows the same behavior as the {{term(data set)}} for change
+ tracking, clearing, and history. When an {{block(Entry)}} changes,
+ all {{block(Cell)}} elements update as a single unit following the
+ behavior of a {{term(data set)}}. > Note: It is best to use
+ {{block(Variable)}} if the {{block(Cell)}} entities represent
+ multiple semantic types. Each {{block(Entry)}} in the
+ {{term(table)}} **MUST** have a unique key. Each {{block(Cell)}} of
+ each {{block(Entry)}} in the {{term(table)}} **MUST** have a unique
+ key. See {{block(Representation)}} in {{package(Observation
+ Information Model)}}, for a description of {{block(Entry)}} and
+ {{block(Cell)}} elements.
+
+
+
+
+
+
+
+
+ The type of filter
+
+
+
+
+
+
+ new value **MUST NOT** be reported for a data item unless the
+ measured value has changed from the last reported value by at least
+ the delta given as the value of this element. The value of
+ {{block(Filter)}} **MUST** be an absolute value using the same units
+ as the reported data.
+
+
+
+
+
+
+ data reported for a data item is provided on a periodic basis. The
+ `PERIOD` for reporting data is defined in the value of the
+ {{block(Filter)}}. The value of {{block(Filter)}} **MUST** be an
+ absolute value reported in seconds representing the time between
+ reported samples of the value of the data item.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+ {{termplural(organize)}} a set of expected values that can be
+ reported for a {{block(DataItem)}}.
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ starting value for a {{block(DataItem)}} as well as the value to be
+ set for the {{block(DataItem)}} after a reset event.
+
+
+
+
+
+
+ type of event that may cause a reset to occur.
+
+
+
+
+
+
+ defines the meaning of {{block(Entry)}} and {{block(Cell)}} entities
+ when the associated {{property(DataItem::representation)}} is either
+ `DATA_SET` or `TABLE`.
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The category of the data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The coordinate system reference to a particular coordinate system
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ Used as the default sample rate for waveforms
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The number of significant digits for this data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ A set of limits for a data item
+
+
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST
+ NOT** be used in conjunction with any other
+ {{block(Constraint)}} elements.
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ A starting point for a data item
+
+
+
+
+
+
+
+
+
+ The value element
+
+
+
+
+
+
+
+
+
+ The filter for the data item
+
+
+
+
+
+
+
+ The type of filter, ABSOLUTE or PERCENT
+
+
+
+
+
+
+
+
+
+ A native data source
+
+
+
+
+
+
+
+ The optional data item within the source component that provides
+ the underlying data
+
+
+
+
+
+
+ The component that is collecting the data associated with this
+ data item
+
+
+
+
+
+
+ The optional composition identifier for the source of this data
+ item
+
+
+
+
+
+
+
+
+
+ The DataItem Definition
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+ unique key
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more {{block(CellDefinition)}}
+ entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+
+ Organizes DataItemRelationship and SpecificationRelationship
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ A reference to the related DataItem id.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ A reference to a DataItem that associates the values with an
+ external entity
+
+
+
+
+
+
+ The referenced DataItem provides the id of the effective Coordinate
+ System
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+ The referenced DataItem provides the observed values.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+ An events data
+
+
+
+
+
+
+
+ The item's unique ID that references the data item id from probe
+
+
+
+
+
+
+
+ An Condition code as defined by the component
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with the
+ normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+ observation is not valid against the MTConnect Standard according to
+ the validation capabilities of the MTConnect Agent.
+
+
+
+
+
+
+ observation cannot be validated.
+
+
+
+
+
+
+ observation is valid against the MTConnect Standard.
+
+
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}} entities.
+ See {{package(Observation Information Model)}} for more detail.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}}
+ for the {{block(ComponentStream)}} model. > Note 1 to entry: In
+ the {{term(XML)}} representation, {{block(ComponentStream)}}
+ entities **MUST NOT** appear in the {{term(MTConnectDevices Response
+ Document)}}. > Note 2 to entry: In the {{term(XML)}}
+ representation, {{block(ComponentStream)}} entities **MUST** appear
+ only in the {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unque identifier for this device
+
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}} for
+ the {{block(ComponentStream)}} model. > Note 1 to entry: In the
+ {{term(XML)}} representation, {{block(ComponentStream)}} entities **MUST
+ NOT** appear in the {{term(MTConnectDevices Response Document)}}. >
+ Note 2 to entry: In the {{term(XML)}} representation,
+ {{block(ComponentStream)}} entities **MUST** appear only in the
+ {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities.
+ See {{sect(Sample)}}.
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The unque identifier for this component
+
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities. See
+ {{sect(Sample)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+
+
+
+ A collection of conditions
+
+
+
+
+
+
+
+
+
+ The observation value for indeterminent data
+
+
+
+
+
+
+ Data is unavailable
+
+
+
+
+
+
+
+
+
+ The events sequence number
+
+
+
+
+
+
+ The event subtype corresponding to the measurement subtype
+
+
+
+
+
+
+ The time the event occurred or recorded
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unique identifier of the item being produced
+
+
+
+
+
+
+ The identifier of the sub-element this result is in reference to
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with
+ the normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ String event value
+
+
+
+
+
+
+
+ DateTime String event value
+
+
+
+
+
+
+
+ A list of axis names
+
+
+
+
+
+
+
+
+
+
+
+ A list of axis for an event
+
+
+
+
+
+
+
+ Common floating point event value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Controlled vocabulary for ActuatorState
+
+
+
+
+
+
+ {{block(Actuator)}} is operating.
+
+
+
+
+
+
+ {{block(Actuator)}} is not operating.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Controlled vocabulary for Availability
+
+
+
+
+
+
+ data source is active and capable of providing data.
+
+
+
+
+
+
+ data source is either inactive or not capable of providing data.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisCoupling
+
+
+
+
+
+
+ axes are physically connected to each other and operate as a single
+ unit.
+
+
+
+
+
+
+ axes are not physically connected to each other but are operating
+ together in lockstep.
+
+
+
+
+
+
+ axis is the master of the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ axis is a slave to the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisInterlock
+
+
+
+
+
+
+ axis lockout function is activated, power has been removed from the
+ axis, and the axis is allowed to move freely.
+
+
+
+
+
+
+ axis lockout function has not been activated, the axis may be
+ powered, and the axis is capable of being controlled by another
+ component.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisState
+
+
+
+
+
+
+ axis is in its home position.
+
+
+
+
+
+
+ axis is in motion.
+
+
+
+
+
+
+ axis has been moved to a fixed position and is being maintained in
+ that position either electrically or mechanically. Action is
+ required to release the axis from this position.
+
+
+
+
+
+
+ axis is stopped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckInterlock
+
+
+
+
+
+
+ chuck cannot be unclamped.
+
+
+
+
+
+
+ chuck can be unclamped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckState
+
+
+
+
+
+
+ {{block(Chuck)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerMode
+
+
+
+
+
+
+ {{block(Controller)}} is configured to automatically execute a
+ program.
+
+
+
+
+
+
+ {{block(Controller)}} is not executing an active program. It is
+ capable of receiving instructions from an external source –
+ typically an operator. The {{block(Controller)}} executes operations
+ based on the instructions received from the external source.
+
+
+
+
+
+
+ operator can enter a series of operations for the
+ {{block(Controller)}} to perform. The {{block(Controller)}} will
+ execute this specific series of operations and then stop.
+
+
+
+
+
+
+ {{block(Controller)}} is operating in a mode that restricts the
+ active program from processing its next process step without
+ operator intervention.
+
+
+
+
+
+
+ {{block(Controller)}} is currently functioning as a programming
+ device and is not capable of executing an active program.
+
+
+
+
+
+
+ axes of the device are commanded to stop, but the spindle continues
+ to function.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerModeOverride
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `ON` state and the mode
+ override is active.
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `OFF` state and the mode
+ override is inactive.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Controlled vocabulary for Direction
+
+
+
+
+
+
+ clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+ counter-clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for DoorState
+
+
+
+
+
+
+ {{block(Door)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for EmergencyStop
+
+
+
+
+
+
+ emergency stop circuit is complete and the piece of equipment,
+ component, or composition is allowed to operate.
+
+
+
+
+
+
+ operation of the piece of equipment, component, or composition is
+ inhibited.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Controlled vocabulary for EndOfBar
+
+
+
+
+
+
+ {{block(EndOfBar)}} has been reached.
+
+
+
+
+
+
+ {{block(EndOfBar)}} has not been reached.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Controlled vocabulary for EquipmentMode
+
+
+
+
+
+
+ equipment is functioning in the mode designated by the `subType`.
+
+
+
+
+
+
+ equipment is not functioning in the mode designated by the
+ `subType`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for Execution
+
+
+
+
+
+
+ {{block(Component)}} is ready to execute instructions. It is
+ currently idle.
+
+
+
+
+
+
+ {{block(Component)}} is actively executing an instruction.
+
+
+
+
+
+
+ {{block(Component)}} suspends the execution of the program due to an
+ external signal. Action is required to resume execution.
+
+
+
+
+
+
+ motion of the active axes are commanded to stop at their current
+ position.
+
+
+
+
+
+
+ {{block(Component)}} program is not `READY` to execute.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ The {{block(Component)}} **MAY** have another state that indicates
+ if the execution is interrupted or the execution ignores the
+ interrupt instruction.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ Action is required to resume execution.
+
+
+
+
+
+
+ program completed execution.
+
+
+
+
+
+
+ {{block(Component)}} suspends execution while a secondary operation
+ executes. Execution resumes automatically once the secondary
+ operation completes.
+
+
+
+
+
+
+ program has been intentionally optionally stopped using an M01 or
+ similar code. **DEPRECATED** in *version 1.4* and replaced with
+ `OPTIONAL_STOP`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for FunctionalMode
+
+
+
+
+
+
+ {{block(Component)}} is currently producing product, ready to
+ produce product, or its current intended use is to be producing
+ product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is being
+ prepared or modified to begin production of product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. Typically,
+ it has completed the production of a product and is being modified
+ or returned to a neutral state such that it may then be prepared to
+ begin production of a different product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is
+ currently being repaired, waiting to be repaired, or has not yet
+ been returned to a normal production status after maintenance has
+ been performed.
+
+
+
+
+
+
+ {{block(Component)}} is being used to prove-out a new process,
+ testing of equipment or processes, or any other active use that does
+ not result in the production of product.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartDetect
+
+
+
+
+
+
+ part or work piece is detected or is present.
+
+
+
+
+
+
+ part or work piece is not detected or is not present.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PathMode
+
+
+
+
+
+
+ path is operating independently and without the influence of another
+ path.
+
+
+
+
+
+
+ path provides information or state values that influences the
+ operation of other {{block(DataItem)}} of similar type.
+
+
+
+
+
+
+ physical or logical parts which are not physically connected to each
+ other but are operating together.
+
+
+
+
+
+
+ axes associated with the path are mirroring the motion of the
+ `MASTER` path.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerState
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is present and
+ active.
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is not present
+ or is disconnected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerStatus
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramEdit
+
+
+
+
+
+
+ {{block(Controller)}} is in the program edit mode.
+
+
+
+
+
+
+ {{block(Controller)}} is capable of entering the program edit mode
+ and no function is inhibiting a change to that mode.
+
+
+
+
+
+
+ {{block(Controller)}} is being inhibited by a function from entering
+ the program edit mode.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramLocationType
+
+
+
+
+
+
+ managed by the controller.
+
+
+
+
+
+
+ not managed by the controller.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Controlled vocabulary for RotaryMode
+
+
+
+
+
+
+ axis is functioning as a spindle.
+
+
+
+
+
+
+ axis is configured to index.
+
+
+
+
+
+
+ position of the axis is being interpolated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Controlled vocabulary for SpindleInterlock
+
+
+
+
+
+
+ power has been removed and the spindle cannot be operated.
+
+
+
+
+
+
+ spindle has not been deactivated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Controlled vocabulary for WaitState
+
+
+
+
+
+
+ execution is waiting while the equipment is powering up and is not
+ currently available to begin producing parts or products.
+
+
+
+
+
+
+ execution is waiting while the equipment is powering down but has
+ not fully reached a stopped state.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ loaded.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ unloaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being loaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being unloaded.
+
+
+
+
+
+
+ execution is waiting while material is being loaded.
+
+
+
+
+
+
+ execution is waiting while material is being unloaded.
+
+
+
+
+
+
+ execution is waiting while another process is completed before the
+ execution can resume.
+
+
+
+
+
+
+ execution is waiting while the equipment is pausing but the piece of
+ equipment has not yet reached a fully paused state.
+
+
+
+
+
+
+ execution is waiting while the equipment is resuming the production
+ cycle but has not yet resumed execution.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartStatus
+
+
+
+
+
+
+ part conforms to given requirements.
+
+
+
+
+
+
+ part does not conform to some given requirements.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ConnectionStatus
+
+
+
+
+
+
+ no connection at all.
+
+
+
+
+
+
+ {{term(agent)}} is waiting for a connection request from an
+ {{term(adapter)}}.
+
+
+
+
+
+
+ open connection. The normal state for the data transfer phase of the
+ connection.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartProcessingState
+
+
+
+
+
+
+ part occurrence is not actively being processed, but the processing
+ has not ended. Processing requirements exist that have not yet been
+ fulfilled. This is the default entry state when the part occurrence
+ is originally received. In some cases, the part occurrence may
+ return to this state while it waits for additional processing to be
+ performed.
+
+
+
+
+
+
+ part occurrence is actively being processed.
+
+
+
+
+
+
+ part occurrence is no longer being processed. A general state when
+ the reason for termination is unknown.
+
+
+
+
+
+
+ part occurrence has completed processing successfully.
+
+
+
+
+
+
+ process has been stopped during the processing. The part occurrence
+ will require special treatment.
+
+
+
+
+
+
+ processing of the part occurrence has come to a premature end.
+
+
+
+
+
+
+ terminal state when the part occurrence has been removed from the
+ equipment by an external entity and it no longer exists at the
+ equipment.
+
+
+
+
+
+
+ part occurrence has been skipped for processing on the piece of
+ equipment.
+
+
+
+
+
+
+ part occurrence has been processed completely. However, the
+ processing may have a problem.
+
+
+
+
+
+
+ part occurrence is waiting for transit.
+
+
+
+
+
+
+ part occurrence is being transported to its destination.
+
+
+
+
+
+
+ part occurrence has been placed at its designated destination.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProcessState
+
+
+
+
+
+
+ device is preparing to execute the process occurrence.
+
+
+
+
+
+
+ process occurrence is ready to be executed.
+
+
+
+
+
+
+ process occurrence is actively executing.
+
+
+
+
+
+
+ process occurrence is now finished.
+
+
+
+
+
+
+ process occurrence has been stopped and may be resumed.
+
+
+
+
+
+
+ process occurrence has come to a premature end and cannot be
+ resumed.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ValveState
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is allowed and the aperture is
+ static. > Note: For a binary value, `OPEN` indicates the valve
+ has the maximum possible aperture.
+
+
+
+
+
+
+ valve is transitioning from a `CLOSED` state to an `OPEN` state.
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is not possible, the aperture is
+ static, and the valve is completely shut.
+
+
+
+
+
+
+ valve is transitioning from an `OPEN` state to a `CLOSED` state.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for LockState
+
+
+
+
+
+
+ mechanism is engaged and preventing the associated
+ {{block(Component)}} from being opened or operated.
+
+
+
+
+
+
+ mechanism is disengaged and the associated {{block(Component)}} is
+ able to be opened or operated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for OperatingMode
+
+
+
+
+
+
+ automatically execute instructions from a recipe or program. >
+ Note: Setpoint comes from a recipe.
+
+
+
+
+
+
+ execute instructions from an external agent or person. > Note 1
+ to entry: Valve or switch is manipulated by an agent/person. >
+ Note 2 to entry: Direct control of the PID output. % of the range: A
+ user manually sets the % output, not the setpoint.
+
+
+
+
+
+
+ executes a single instruction from a recipe or program. > Note 1
+ to entry: Setpoint is entered and fixed, but the PID is controlling.
+ > Note 2 to entry: Still goes through the PID control system.
+ > Note 3 to entry: Manual fixed entry from a recipe.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartCountType
+
+
+
+
+
+
+ count is of individual items.
+
+
+
+
+
+
+ pre-specified group of items.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Controlled vocabulary for LeakDetect
+
+
+
+
+
+
+ leak is currently being detected.
+
+
+
+
+
+
+ leak is currently not being detected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Controlled vocabulary for BatteryState
+
+
+
+
+
+
+ {{block(Component)}} is at it's maximum rated charge level.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is increasing.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is decreasing.
+
+
+
+
+
+
+ {{block(Component)}} is at it's minimum charge level.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Controlled vocabulary for CharacteristicStatus
+
+
+
+
+
+
+ measurement is within acceptable tolerances.
+
+
+
+
+
+
+ measurement is not within acceptable tolerances.
+
+
+
+
+
+
+ failed, but acceptable constraints achievable by utilizing
+ additional manufacturing processes.
+
+
+
+
+
+
+ measurement is indeterminate due to an equipment failure.
+
+
+
+
+
+
+ measurement cannot be determined.
+
+
+
+
+
+
+ measurement cannot be evaluated.
+
+
+
+
+
+
+ nominal provided without tolerance limits. {{cite(QIF 3:2018
+ 5.10.2.6)}}
+
+
+
+
+
+
+ status of measurement cannot be determined.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Controlled vocabulary for UncertaintyType
+
+
+
+
+
+
+ {{term(combined standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(standard uncertainty)}} using arithmetic mean or average the
+ observations. {{cite(JCGM 100:2008 4.2)}}
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for InterfaceState
+
+
+
+
+
+
+ {{block(Interface)}} is currently operational and performing as
+ expected.
+
+
+
+
+
+
+ {{block(Interface)}} is currently not operational.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ The target rate a value can be sampled
+
+
+
+
+
+
+
+ The number of items in the list
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The rate the waveform was sampled at, default back to the value given
+ in the data item
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ The number of seconds since the reset of the statistic
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+
+ The number of samples
+
+
+
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ The description of the Condition
+
+
+
+
+
+
+
+ The device's severity
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a piece of
+ equipment
+
+
+
+
+
+
+
+ A qualifier for the condition
+
+
+
+
+
+
+ The value is too high
+
+
+
+
+
+
+ The value is too low
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ An optional attribute that helps qualify the condition
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a
+ piece of equipment
+
+
+
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+ The tool location
+
+
+
+
+
+
+
+ The number referenced in the program for this tool
+
+
+
+
+
+
+
+ The number of times the cutter has been reconditioned
+
+
+
+
+
+
+
+ The code for the connection to the machine
+
+
+
+
+
+
+
+ The tool group associated with the tool
+
+
+
+
+
+
+
+ A speed in RPM or mm/s
+
+
+
+
+
+
+
+
+
+ A measurement value
+
+
+
+
+
+
+
+
+
+ The number of location units required to hold this tool
+
+
+
+
+
+
+
+ A measurement value
+
+
+
+
+
+
+
+ The tool identifier
+
+
+
+
+
+
+
+ The number of cutting edges
+
+
+
+
+
+
+
+ The number of additional locations taken by a tool
+
+
+
+
+
+
+
+ The life of the tool in time, wear, or parts
+
+
+
+
+
+
+
+ An identifier for the insert
+
+
+
+
+
+
+
+ A single or range of indexes. A range can be a comma separated set of
+ individual elements as in "1,2,3,4", or as a inclusive range
+ of values as in "1-10" or multiple ranges "1-4,6-10"
+
+
+
+
+
+
+
+
+
+ A minimum value
+
+
+
+
+
+
+
+ A maximum value
+
+
+
+
+
+
+
+ A nominal value
+
+
+
+
+
+
+
+ The material for a cutting item
+
+
+
+
+
+
+
+ A maximum count value
+
+
+
+
+
+
+
+ A application specific code
+
+
+
+
+
+
+
+ A comman delimited list of manufactures
+
+
+
+
+
+
+
+ A relationship
+
+
+
+
+
+
+
+ The format of the definition
+
+
+
+
+
+
+ The definition will be provided in EXPRESS format
+
+
+
+
+
+
+ The definition will be provided in XML
+
+
+
+
+
+
+ The definition will be provided in uninterpreted TEXT
+
+
+
+
+
+
+ The definition will be provided in an unspecified format
+
+
+
+
+
+
+
+
+ The state of the tool. These can be combined to define the complete
+ cutting tool state
+
+
+
+
+
+
+ The tool is new
+
+
+
+
+
+
+ The cutting tool is available for use
+
+
+
+
+
+
+ The cutting tool is unavailable for use
+
+
+
+
+
+
+ The cutting tool is assigned to this proces
+
+
+
+
+
+
+ The cutting tool is NOT assigned to this device
+
+
+
+
+
+
+ The tool has been measured
+
+
+
+
+
+
+ An unregisterd state
+
+
+
+
+
+
+ The tool is being reconditioned
+
+
+
+
+
+
+ The tool is used
+
+
+
+
+
+
+ The tool is dead
+
+
+
+
+
+
+ The tool is currently out being reconditioned or sharpened
+
+
+
+
+
+
+ The tool is broken
+
+
+
+
+
+
+ The status of this cutter is undetermined
+
+
+
+
+
+
+
+
+ The direction of tool life count
+
+
+
+
+
+
+ The tool life counts up from the 0 to maximum
+
+
+
+
+
+
+ The tool life counts down from maximum to 0
+
+
+
+
+
+
+
+
+ The direction of tool life count
+
+
+
+
+
+
+ The tool life measured in minutes
+
+
+
+
+
+
+ The tool life measured in parts made
+
+
+
+
+
+
+ Measurement of tool life in tool wear
+
+
+
+
+
+
+
+
+ The type of tool location
+
+
+
+
+
+
+ A location in a tool magazine. updated
+
+
+
+
+
+
+ A location in a turret, tool bar, or tool rack. updated
+
+
+
+
+
+
+ A location within a tool crib. updated
+
+
+
+
+
+
+ A location associated with a spindle
+
+
+
+
+
+
+ A location for a tool awaiting transfer from a tool magazine to
+ spindle or a turret
+
+
+
+
+
+
+ A location for a tool removed from a spindle or turret and awaiting
+ return to a tool magazine
+
+
+
+
+
+
+ A location for a tool awaiting transfer to a tool magazine or turret
+ from outside of the piece of equipment.
+
+
+
+
+
+
+ A location for a tool removed from a tool magazine or turret
+ awaiting transfer to a location outside of the piece of equipment.
+
+
+
+
+
+
+ A location for a tool that is no longer useable and is awaiting
+ removal from a tool magazine or turret.
+
+
+
+
+
+
+ A location associated with an end effector
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static during its
+ lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+ identifies the expected representation of the enclosed data.
+
+
+
+
+
+
+
+ {{block(Asset)}} that physically removes the material from the workpiece
+ by shear deformation.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static
+ during its lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine
+ tool, presetter) and statistical process control
+ applications. Life cycle data will not remain static, but
+ will change periodically when a tool is used or measured.
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine tool,
+ presetter) and statistical process control applications. Life
+ cycle data will not remain static, but will change
+ periodically when a tool is used or measured.
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ The manufacturer of this asset
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that physically removes the material from the workpiece
+ by shear deformation.
+
+
+
+
+
+
+ {{block(Asset)}} that describes the static cutting tool geometries and
+ nominal values as one would expect from a tool catalog.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+ detailed structure of the cutting tool which is static
+ during its lifecycle. {{cite(ISO 13399)}}.
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine
+ tool, presetter) and statistical process control
+ applications. Life cycle data will not remain static, but
+ will change periodically when a tool is used or measured.
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data
+ is provided by various pieces of equipment (i.e. machine tool,
+ presetter) and statistical process control applications. Life
+ cycle data will not remain static, but will change
+ periodically when a tool is used or measured.
+
+
+
+
+
+
+
+
+ identifier for a class of cutting tools.
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that describes the static cutting tool geometries and
+ nominal values as one would expect from a tool catalog.
+
+
+
+
+
+
+ A archetypical cutting tool life cycle definition
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+ The life of the cutting tool assembly
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ number of the tool as referenced in the part program.
+
+
+
+
+
+
+ constrained process spindle speed for the tool in
+ revolutions/minute. The {{property(ProcessSpindleSpeed::value)}}
+ **MAY** contain the nominal process target spindle speed if
+ available. If {{block(ProcessSpindleSpeed)}} is provided, at least
+ one value of {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal
+ process target feed rate if available. If {{block(ProcessFeedRate)}}
+ is provided, at least one value of
+ {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ identifier for the capability to connect any component of the
+ cutting tool together, except Assembly Items, on the machine side.
+ Code: `CCMS`
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}}
+ for more detail.
+
+
+
+
+
+
+
+
+ data regarding the application or use of the tool. This data is provided
+ by various pieces of equipment (i.e. machine tool, presetter) and
+ statistical process control applications. Life cycle data will not
+ remain static, but will change periodically when a tool is used or
+ measured.
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED`
+ and `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is
+ `EXPIRED`, `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be
+ `AVAILABLE`.
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ number of the tool as referenced in the part program.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ constrained process spindle speed for the tool in
+ revolutions/minute. The {{property(ProcessSpindleSpeed::value)}}
+ **MAY** contain the nominal process target spindle speed if
+ available. If {{block(ProcessSpindleSpeed)}} is provided, at least
+ one value of {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal
+ process target feed rate if available. If {{block(ProcessFeedRate)}}
+ is provided, at least one value of
+ {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+ identifier for the capability to connect any component of the
+ cutting tool together, except Assembly Items, on the machine side.
+ Code: `CCMS`
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}}
+ for more detail.
+
+
+
+
+
+
+
+
+ reference information about the {{property(Asset::assetId)}} and/or the
+ URL of the data source of {{block(CuttingToolArchetype)}}.
+
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED` and
+ `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is `EXPIRED`,
+ `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be `AVAILABLE`.
+
+
+
+
+
+
+ status of the cutting tool.
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The type of location
+
+
+
+
+
+
+ number of locations at lower index values from this location.
+
+
+
+
+
+
+ number of locations at higher index value from this location.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The tool bar associated with a tool
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ number of times the cutter has been reconditioned.
+
+
+
+
+
+
+
+ The maximum number of times this tool can be reconditioned
+
+
+
+
+
+
+
+
+
+ constrained process spindle speed for the tool in revolutions/minute.
+ The {{property(ProcessSpindleSpeed::value)}} **MAY** contain the nominal
+ process target spindle speed if available. If
+ {{block(ProcessSpindleSpeed)}} is provided, at least one value of
+ {{property(ProcessSpindleSpeed::maximum)}},
+ {{property(ProcessSpindleSpeed::nominal)}}, or
+ {{property(ProcessSpindleSpeed::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ constrained process feed rate for the tool in mm/s. The
+ {{property(ProcessFeedRate::value)}} **MAY** contain the nominal process
+ target feed rate if available. If {{block(ProcessFeedRate)}} is
+ provided, at least one value of {{property(ProcessFeedRate::maximum)}},
+ {{property(ProcessFeedRate::nominal)}}, or
+ {{property(ProcessFeedRate::minimum)}} **MUST** be specified.
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The number of significant digits
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The native units for the measurement, if different from units
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Measurements for both the assembly and the cutting item
+
+
+
+
+
+
+
+
+
+ Measurements for both the assembly and the cutting item
+
+
+
+
+
+
+ Measurements for the assembly
+
+
+
+
+
+
+
+
+
+ Measurements for the assembly
+
+
+
+
+
+
+ Measurements for the cutting item
+
+
+
+
+
+
+
+
+
+ Measurements for the cutting item
+
+
+
+
+
+
+ A collection of assembly measurements
+
+
+
+
+
+
+
+
+
+
+ dimension from the yz-plane to the furthest point of the tool item or
+ adaptive item measured in the -X direction.
+
+
+
+
+
+
+
+
+
+ dimension from the yz-plane to the furthest point of the tool item or
+ adaptive item measured in the -X direction.
+
+
+
+
+
+
+ total weight of the cutting tool in grams. The force exerted by the mass
+ of the cutting tool.
+
+
+
+
+
+
+
+
+
+ total weight of the cutting tool in grams. The force exerted by the mass
+ of the cutting tool.
+
+
+
+
+
+
+ distance from the gauge plane or from the end of the shank to the
+ furthest point on the tool, if a gauge plane does not exist, to the
+ cutting reference point determined by the main function of the tool. The
+ {{block(CuttingTool)}} functional length will be the length of the
+ entire tool, not a single cutting item. Each {{block(CuttingItem)}} can
+ have an independent {{block(FunctionalLength)}} represented in its
+ measurements.
+
+
+
+
+
+
+
+
+
+ distance from the gauge plane or from the end of the shank to the
+ furthest point on the tool, if a gauge plane does not exist, to the
+ cutting reference point determined by the main function of the tool. The
+ {{block(CuttingTool)}} functional length will be the length of the
+ entire tool, not a single cutting item. Each {{block(CuttingItem)}} can
+ have an independent {{block(FunctionalLength)}} represented in its
+ measurements.
+
+
+
+
+
+
+ largest diameter of the body of a tool item.
+
+
+
+
+
+
+
+
+
+ largest diameter of the body of a tool item.
+
+
+
+
+
+
+ distance measured along the X axis from that point of the item closest
+ to the workpiece, including the cutting item for a tool item but
+ excluding a protruding locking mechanism for an adaptive item, to either
+ the front of the flange on a flanged body or the beginning of the
+ connection interface feature on the machine side for cylindrical or
+ prismatic shanks.
+
+
+
+
+
+
+
+
+
+ distance measured along the X axis from that point of the item closest
+ to the workpiece, including the cutting item for a tool item but
+ excluding a protruding locking mechanism for an adaptive item, to either
+ the front of the flange on a flanged body or the beginning of the
+ connection interface feature on the machine side for cylindrical or
+ prismatic shanks.
+
+
+
+
+
+
+ maximum diameter of a circle on which the defined point Pk of each of
+ the master inserts is located on a tool item. The normal of the machined
+ peripheral surface points towards the axis of the cutting tool.
+
+
+
+
+
+
+
+
+
+ maximum diameter of a circle on which the defined point Pk of each of
+ the master inserts is located on a tool item. The normal of the machined
+ peripheral surface points towards the axis of the cutting tool.
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+ maximum engagement of the cutting edge or edges with the workpiece
+ measured perpendicular to the feed motion.
+
+
+
+
+
+
+
+
+
+ maximum engagement of the cutting edge or edges with the workpiece
+ measured perpendicular to the feed motion.
+
+
+
+
+
+
+ largest length dimension of the cutting tool including the master insert
+ where applicable.
+
+
+
+
+
+
+
+
+
+ largest length dimension of the cutting tool including the master insert
+ where applicable.
+
+
+
+
+
+
+ dimension of the diameter of a cylindrical portion of a tool item or an
+ adaptive item that can participate in a connection.
+
+
+
+
+
+
+
+
+
+ dimension of the diameter of a cylindrical portion of a tool item or an
+ adaptive item that can participate in a connection.
+
+
+
+
+
+
+ dimension of the height of the shank.
+
+
+
+
+
+
+
+
+
+ dimension of the height of the shank.
+
+
+
+
+
+
+ dimension of the length of the shank.
+
+
+
+
+
+
+
+
+
+ dimension of the length of the shank.
+
+
+
+
+
+
+ maximum length of a cutting tool that can be used in a particular
+ cutting operation including the non-cutting portions of the tool.
+
+
+
+
+
+
+
+
+
+ maximum length of a cutting tool that can be used in a particular
+ cutting operation including the non-cutting portions of the tool.
+
+
+
+
+
+
+ Abstract cutter life
+
+
+
+
+
+
+
+ One of time, part count, or wear
+
+
+
+
+
+
+ The count up or count down
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision
+ and may become hazardous if no action is taken.
+
+
+
+
+
+
+ Maximum tool life
+
+
+
+
+
+
+ The life when the tool is new
+
+
+
+
+
+
+
+
+
+ A collection of assembly measurements
+
+
+
+
+
+
+
+
+
+
+ diameter of a circle on which the defined point Pk located on this
+ cutting tool. The normal of the machined peripheral surface points
+ towards the axis of the cutting tool.
+
+
+
+
+
+
+
+
+
+ diameter of a circle on which the defined point Pk located on this
+ cutting tool. The normal of the machined peripheral surface points
+ towards the axis of the cutting tool.
+
+
+
+
+
+
+ nominal radius of a rounded corner measured in the X Y-plane.
+
+
+
+
+
+
+
+
+
+ nominal radius of a rounded corner measured in the X Y-plane.
+
+
+
+
+
+
+ theoretical length of the cutting edge of a cutting item over sharp
+ corners.
+
+
+
+
+
+
+
+
+
+ theoretical length of the cutting edge of a cutting item over sharp
+ corners.
+
+
+
+
+
+
+ distance from the basal plane of the tool item to the cutting point.
+
+
+
+
+
+
+
+
+
+ distance from the basal plane of the tool item to the cutting point.
+
+
+
+
+
+
+ theoretical sharp point of the cutting tool from which the major
+ functional dimensions are taken.
+
+
+
+
+
+
+
+
+
+ theoretical sharp point of the cutting tool from which the major
+ functional dimensions are taken.
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+
+
+
+ dimension between two parallel tangents on the outside edge of a flange.
+
+
+
+
+
+
+ distance between the cutting reference point and the rear backing
+ surface of a turning tool or the axis of a boring bar.
+
+
+
+
+
+
+
+
+
+ distance between the cutting reference point and the rear backing
+ surface of a turning tool or the axis of a boring bar.
+
+
+
+
+
+
+ angle between the tool rake plane and a plane parallel to the xy-plane
+ measured in the tool cutting edge plane
+
+
+
+
+
+
+
+
+
+ angle between the tool rake plane and a plane parallel to the xy-plane
+ measured in the tool cutting edge plane
+
+
+
+
+
+
+ diameter of a circle to which all edges of a equilateral and round
+ regular insert are tangential.
+
+
+
+
+
+
+
+
+
+ diameter of a circle to which all edges of a equilateral and round
+ regular insert are tangential.
+
+
+
+
+
+
+ angle between the major cutting edge and the same cutting edge rotated
+ by 180 degrees about the tool axis.
+
+
+
+
+
+
+
+
+
+ angle between the major cutting edge and the same cutting edge rotated
+ by 180 degrees about the tool axis.
+
+
+
+
+
+
+ length of a portion of a stepped tool that is related to a corresponding
+ cutting diameter measured from the cutting reference point of that
+ cutting diameter to the point on the next cutting edge at which the
+ diameter starts to change.
+
+
+
+
+
+
+
+
+
+ length of a portion of a stepped tool that is related to a corresponding
+ cutting diameter measured from the cutting reference point of that
+ cutting diameter to the point on the next cutting edge at which the
+ diameter starts to change.
+
+
+
+
+
+
+ angle between a major edge on a step of a stepped tool and the same
+ cutting edge rotated 180 degrees about its tool axis.
+
+
+
+
+
+
+
+
+
+ angle between a major edge on a step of a stepped tool and the same
+ cutting edge rotated 180 degrees about its tool axis.
+
+
+
+
+
+
+ angle between the tool cutting edge plane and the tool feed plane
+ measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+
+
+
+ angle between the tool cutting edge plane and the tool feed plane
+ measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+ angle between the tool cutting edge plane and a plane perpendicular to
+ the tool feed plane measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+
+
+
+ angle between the tool cutting edge plane and a plane perpendicular to
+ the tool feed plane measured in a plane parallel the xy-plane.
+
+
+
+
+
+
+ measure of the length of a wiper edge of a cutting item.
+
+
+
+
+
+
+
+
+
+ measure of the length of a wiper edge of a cutting item.
+
+
+
+
+
+
+ angle of the tool with respect to the workpiece for a given process. The
+ value is application specific.
+
+
+
+
+
+
+
+
+
+ angle between the driving mechanism locator on a tool item and the main
+ cutting edge.
+
+
+
+
+
+
+
+
+
+ The location of the cutting item - not yet restricted.
+
+
+
+
+
+
+
+ {{block(CuttingItems)}} groups one or more {{block(CuttingItem)}}
+ entities. See {{sect(CuttingItem)}} and {{package(Cutting Item)}} for
+ more detail.
+
+
+
+
+
+
+ part of of the tool that physically removes the material from the
+ workpiece by shear deformation.
+
+
+
+
+
+
+
+ The number of edges
+
+
+
+
+
+
+
+ part of of the tool that physically removes the material from the
+ workpiece by shear deformation.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CutterStatus)}} provides the status of the assembly and
+ {{term(organize)}} one or more {{block(Status)}} entities. See
+ {{sect(Status)}}. The following combinations of {{block(Status)}}
+ entities **MUST NOT** occur for a {{block(CutterStatus)}}: * `NEW`
+ **MUST NOT** be used with `USED`, `RECONDITIONED`, or `EXPIRED`. *
+ `UNKNOWN` **MUST NOT** be used with any other status. * `ALLOCATED`
+ and `UNALLOCATED` **MUST NOT** be used together. * `AVAILABLE` and
+ `UNAVAILABLE` **MUST NOT** be used together. * If the tool is
+ `EXPIRED`, `BROKEN`, or `NOT_REGISTERED` it **MUST NOT** be
+ `AVAILABLE`.
+
+
+
+
+
+
+ free form description of the location on the cutting tool. For
+ clarity, the words `FLUTE`, `INSERT`, and `CARTRIDGE` **SHOULD** be
+ used to assist in noting the location of a {{block(CuttingItem)}}.
+ {{property(CuttingItem::Locus)}} **MAY** be any free form string,
+ but **SHOULD** adhere to the following rules: * The location
+ numbering **SHOULD** start at the furthest {{block(CuttingItem)}}
+ and work it’s way back to the {{block(CuttingItem)}} closest to the
+ gauge line. * Flutes **SHOULD** be identified as such using the word
+ `FLUTE`:. For example: `FLUTE`: 1, `INSERT`: 2 - would indicate the
+ first flute and the second furthest insert from the end of the tool
+ on that flute. * Other designations such as `CARTRIDGE` **MAY** be
+ included, but should be identified using upper case and followed by
+ a colon (:).
+
+
+
+
+
+
+ life of a {{block(CuttingItem)}}.
+
+
+
+
+
+
+ tool group this tool is assigned in the part program.
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more {{block(Measurement)}}
+ subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+ The unique identifier of this insert in this assembly
+
+
+
+
+
+
+ The manufacturer identifier of this cutting item
+
+
+
+
+
+
+ The material used for the cutting item
+
+
+
+
+
+
+ The manufacturer of this asset
+
+
+
+
+
+
+
+ The version of the file
+
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+
+ The size in bytes of the file
+
+
+
+
+
+
+
+ The name of the file
+
+
+
+
+
+
+
+ Extended tyoe for The category of application that will use this file
+
+
+
+
+
+
+
+
+
+ The category of application that will use this file
+
+
+
+
+
+
+ Files regarding the fully assembled product
+
+
+
+
+
+
+ Device related files
+
+
+
+
+
+
+ Files relating to the handling of material
+
+
+
+
+
+
+ File relating to equipment maintenance
+
+
+
+
+
+
+ Files relating to a part
+
+
+
+
+
+
+ Files related to the manufacturing process
+
+
+
+
+
+
+ Files related to the quality inspection
+
+
+
+
+
+
+ Files related to the setup of a process
+
+
+
+
+
+
+
+
+ The category of application that will use this file
+
+
+
+
+
+
+
+ Extended tyoe for The type classification of a file
+
+
+
+
+
+
+
+
+
+ The type classification of a file
+
+
+
+
+
+
+ Computer aided design files or drawings
+
+
+
+
+
+
+ Generic data
+
+
+
+
+
+
+ Documentation regarding a category of file
+
+
+
+
+
+
+ User instructions regarding the execution of a task
+
+
+
+
+
+
+ The data related to the history of a machine or process
+
+
+
+
+
+
+ Machine instructions to perform a process
+
+
+
+
+
+
+
+
+ The type classification of a file
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information common to all
+ versions of a file.
+
+
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more
+ {{block(FileProperty)}} entities for a {{block(File)}}. See
+ {{sect(FileProperty)}}.
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more
+ {{block(FileComment)}} entities for a {{block(File)}}. See
+ {{sect(FileComment)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+ The classification of this file
+
+
+
+
+
+
+ The sub classification of this file
+
+
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information common to all
+ versions of a file.
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more {{block(FileProperty)}}
+ entities for a {{block(File)}}. See {{sect(FileProperty)}}.
+
+
+
+
+
+
+ key-value pair providing additional metadata about a
+ {{block(File)}}.
+
+
+
+
+
+
+
+
+ The value of a file property
+
+
+
+
+
+
+
+ key-value pair providing additional metadata about a {{block(File)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+
+
+ File state
+
+
+
+
+
+
+ used for processes other than production or otherwise defined.
+
+
+
+
+
+
+ used for production processes
+
+
+
+
+
+
+ the content is modified from PRODUCTION or EXPERIMENTAL (Note: To
+ capture northbound changes. execution -> prod engineering)
+
+
+
+
+
+
+
+
+ An X501 Public Key
+
+
+
+
+
+
+
+ A secure hash
+
+
+
+
+
+
+
+ A file time
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information about the
+ {{block(File)}} instance and its {{term(URL)}}.
+
+
+
+
+
+
+
+
+ {{block(FileProperties)}} groups one or more
+ {{block(FileProperty)}} entities for a {{block(File)}}. See
+ {{sect(FileProperty)}}.
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more
+ {{block(FileComment)}} entities for a {{block(File)}}. See
+ {{sect(FileComment)}}.
+
+
+
+
+
+
+ {{term(URL)}} reference to the file location.
+
+
+
+
+
+
+ secure hash of the file.
+
+
+
+
+
+
+ public key used to verify the signature.
+
+
+
+
+
+
+ {{block(Destinations)}} groups one or more
+ {{block(Destination)}} entities. See {{sect(Destination)}}.
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ time the file was modified.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The mime type of the file
+
+
+
+
+
+
+ The classification of this file
+
+
+
+
+
+
+ The sub classification of this file
+
+
+
+
+
+
+ The size in bytes
+
+
+
+
+
+
+ The version identifier
+
+
+
+
+
+
+ The file state
+
+
+
+
+
+
+
+
+
+ {{block(AbstractFile)}} type that provides information about the
+ {{block(File)}} instance and its {{term(URL)}}.
+
+
+
+
+
+
+ {{term(URL)}} reference to the file location.
+
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Organizes file destinations
+
+
+
+
+
+
+ reference to the target {{block(Device)}} for this {{block(File)}}.
+
+
+
+
+
+
+
+
+ The Destination is a reference to the target Device for this File
+
+
+
+
+
+
+
+
+
+ {{block(FileComments)}} groups one or more {{block(FileComment)}}
+ entities for a {{block(File)}}. See {{sect(FileComment)}}.
+
+
+
+
+
+
+ remark or interpretation for human interpretation associated with a
+ {{block(File)}} or {{block(FileArchetype)}}.
+
+
+
+
+
+
+
+
+ the text of the comment
+
+
+
+
+
+
+
+ remark or interpretation for human interpretation associated with a
+ {{block(File)}} or {{block(FileArchetype)}}.
+
+
+
+
+
+
+
+ The time the comment was made
+
+
+
+
+
+
+
+
+
+ Extended tyoe for contained QIF Document type as defined in the QIF
+ Standard.
+
+
+
+
+
+
+
+
+
+ contained QIF Document type as defined in the QIF Standard.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ contained QIF Document type as defined in the QIF Standard.
+
+
+
+
+
+
+
+ {{block(Asset)}} that carries the QIF Document.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The unique identifier for the material
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that carries the QIF Document.
+
+
+
+
+
+
+
+
+
+
+
+ any element
+
+
+
+
+
+
+
+
+ The type of the material container.
+
+
+
+
+
+
+
+ The serial number of the material container
+
+
+
+
+
+
+
+ The ISO process type supported by this {{term(raw material)}}
+
+
+
+
+
+
+
+ The type of material.
+
+
+
+
+
+
+
+ The name of the raw feed stock manufacturer.
+
+
+
+
+
+
+
+ The manufacturing date of the raw feed stock from the feed stock
+ manufacturer.
+
+
+
+
+
+
+
+ The lot code of the raw feed stock from the feed stock manufacturer.
+
+
+
+
+
+
+
+ The ASTM standard code that the material complies with.
+
+
+
+
+
+
+
+ The lot code of the material contained within the material container.
+
+
+
+
+
+
+
+ The form of the material in the material container.
+
+
+
+
+
+
+
+ The date when the material container was first used.
+
+
+
+
+
+
+
+ The date when the material container was last used.
+
+
+
+
+
+
+
+ The amount of material initially placed in the material container when
+ manufactured.
+
+
+
+
+
+
+
+ The dimension of material initially placed in the material container
+ when manufactured.
+
+
+
+
+
+
+
+ The quantity of material initially placed in the material container when
+ manufactured.
+
+
+
+
+
+
+
+ The quantity of material currently contained in the material container
+
+
+
+
+
+
+
+ The dimension of material currently contained in the material container
+
+
+
+
+
+
+
+ The quantity of material currently contained in the material container
+
+
+
+
+
+
+
+ Extended tyoe for form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+
+ material used as the {{block(RawMaterial)}}
+
+
+
+
+
+
+ manufacturer's lot code of the material.
+
+
+
+
+
+
+ name of the material manufacturer.
+
+
+
+
+
+
+ manufacturing date of the material from the material manufacturer.
+
+
+
+
+
+
+ lot code of the raw feed stock for the material, from the feed stock
+ manufacturer.
+
+
+
+
+
+
+ {{term(ASTM)}} standard code that the material complies with.
+
+
+
+
+
+
+
+ The unique identifier for the material
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of material.
+
+
+
+
+
+
+
+ {{block(Asset)}} that represents {{term(raw material)}}.
+
+
+
+
+
+
+
+
+ form of the {{term(raw material)}}.
+
+
+
+
+
+
+ {{block(Material)}} has existing usable volume.
+
+
+
+
+
+
+ manufacturing date of the material from the material
+ manufacturer.
+
+
+
+
+
+
+ date {{term(raw material)}} was first used.
+
+
+
+
+
+
+ date {{term(raw material)}} was last used.
+
+
+
+
+
+
+ amount of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ dimension of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ quantity of material initially placed in {{term(raw material)}}
+ when manufactured.
+
+
+
+
+
+
+ amount of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ dimension of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ quantity of material currently in {{term(raw material)}}.
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts,
+ materials, or other types of goods.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of container holding the {{term(raw material)}}.
+
+
+
+
+
+
+ The ISO process type supported by this {{term(raw material)}}.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{block(Asset)}} that represents {{term(raw material)}}.
+
+
+
+
+
+
+ property that determines the characteristic or behavior of an entity.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST NOT**
+ be used in conjunction with any other {{block(Constraint)}}
+ elements.
+
+
+
+
+
+
+
+ The identifier of the parameter
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ {{block(Parameters)}} groups one or more {{block(Parameter)}} entities.
+ See {{sect(Parameter)}}.
+
+
+
+
+
+
+ property that determines the characteristic or behavior of an
+ entity.
+
+
+
+
+
+
+
+
+ set of {{block(Parameter)}}s.
+
+
+
+
+
+
+ {{block(Parameters)}} groups one or more {{block(Parameter)}}
+ entities. See {{sect(Parameter)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ {{block(ParameterSets)}} groups one or more {{block(ParameterSet)}}
+ entities. See {{sect(ParameterSet)}}.
+
+
+
+
+
+
+ set of {{block(Parameter)}}s.
+
+
+
+
+
+
+
+
+ set of {{block(ParameterSet)}}s that govern the functionality of the
+ related {{block(Component)}}.
+
+
+
+
+
+
+
+
+ {{block(ParameterSets)}} groups one or more
+ {{block(ParameterSet)}} entities. See {{sect(ParameterSet)}}.
+
+
+
+
+
+
+
+
+
+
+ set of {{block(ParameterSet)}}s that govern the functionality of the
+ related {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ The number of significant digits
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The native units for the measurement, if different from units
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more
+ {{block(Measurement)}} subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Measurements)}} groups one or more
+ {{block(Measurement)}} subtypes. See {{sect(Measurement)}}.
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectDevices_2.5.xsd b/schemas/MTConnectDevices_2.5.xsd
new file mode 100644
index 000000000..9181ea791
--- /dev/null
+++ b/schemas/MTConnectDevices_2.5.xsd
@@ -0,0 +1,10437 @@
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectDevices Response Document)}} that
+ contains the {{term(Device Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectDevices)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ {{block(AssetCounts)}} groups {{block(AssetCount)}} entities.
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(AssetCounts)}} groups {{block(AssetCount)}} entities.
+
+
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectDevices Response Document)}} that
+ contains the {{term(Device Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectDevices)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ This section provides semantic information for the {{block(Device)}}
+ types.
+
+
+
+
+
+
+
+
+ The station id for this device
+
+
+
+
+
+
+
+ The ISO 841 classification for the device
+
+
+
+
+
+
+
+ The model name
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(Device)}}
+ types.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ technical information about an entity describing its physical
+ layout, functional characteristics, and relationships with other
+ entities.
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Components)}} groups one or more {{block(Component)}}
+ entities.
+
+
+
+
+
+
+ Compositions Model
+
+
+
+
+
+
+ References Model
+
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ The rate at which the data is sampled from the component
+
+
+
+
+
+
+ DEPRECATED: The rate at which the data is sampled from the component
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The descriptive information. This can be manufacturer specific
+
+
+
+
+
+
+ The content of the description can text or XML elements
+
+
+
+
+
+
+
+ name of the material manufacturer.
+
+
+
+
+
+
+ The model
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location
+ for a tool associated with a {{block(Turret)}},
+ {{block(GangToolBar)}}, or {{block(ToolRack)}}.
+
+
+
+
+
+
+
+ An abstract component that has an optional uuid
+
+
+
+
+
+
+
+ The component's universally unique id.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+
+
+ An abstract component that has an optional uuid
+
+
+
+
+
+
+ {{block(Components)}} groups one or more {{block(Component)}} entities.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ DEPRECATED: The device's ISO-841 classification
+
+
+
+
+
+
+ The components universally unique id. This can be composed of the
+ manufactures id or name and the serial number.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ MTConnect version of the {{term(Device Information Model)}} used
+ to configure the information to be published for a piece of
+ equipment in an {{term(MTConnect Response Document)}}.
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of removable part(s) of a piece
+ of equipment that provides supplementary or extended functionality.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of removable part(s) of a piece
+ of equipment that provides supplementary or extended functionality.
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+ {{block(Loader)}} that delivers bar stock to a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Loader)}} that delivers bar stock to a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ that remove heat from a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ that remove heat from a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Component)}} that observes the surroundings of another
+ {{block(Component)}}. > Note: {{block(Environmental)}} **SHOULD** be
+ organized by {{block(Auxillaries)}}, {{block(Systems)}} or
+ {{block(Parts)}} depending on the relationship to the
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that observes the surroundings of another
+ {{block(Component)}}. > Note: {{block(Environmental)}} **SHOULD** be
+ organized by {{block(Auxillaries)}}, {{block(Systems)}} or
+ {{block(Parts)}} depending on the relationship to the
+ {{block(Component)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that provides movement and distribution of pressurized
+ liquid throughout the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides movement and distribution of pressurized
+ liquid throughout the piece of equipment.
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides prismatic motion along a
+ fixed axis.
+
+
+
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides prismatic motion along a
+ fixed axis.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that provides movement and distribution of
+ materials, parts, tooling, and other items to or from a piece of
+ equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that provides movement and distribution of
+ materials, parts, tooling, and other items to or from a piece of
+ equipment.
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ used to lubricate portions of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ used to lubricate portions of the piece of equipment.
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Resource)}} composed of an individual or individuals who either
+ control, support, or otherwise interface with a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of an individual or individuals who either
+ control, support, or otherwise interface with a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Power)}} was **DEPRECATED** in *MTConnect Version 1.1* and was
+ replaced by {{block(Availability)}} data item type.
+
+
+
+
+
+
+
+
+
+ {{block(Power)}} was **DEPRECATED** in *MTConnect Version 1.1* and was
+ replaced by {{block(Availability)}} data item type.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of material or personnel involved
+ in a manufacturing process.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of material or personnel involved
+ in a manufacturing process.
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides rotation about a fixed
+ axis.
+
+
+
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides rotation about a fixed
+ axis.
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(SensorConfiguration)}} entity. {{term(sensor)}} is a unique type
+ of a piece of equipment. A {{term(sensor)}} is typically comprised of
+ two major components: a {{term(sensor unit)}} that provides signal
+ processing, conversion, and communications and the {{termplural(sensing
+ element)}} that provides a signal or measured value. The {{term(sensor
+ unit)}} is modeled as a {{term(lower level)}} {{block(Component)}}
+ called {{block(Sensor)}}. The {{term(sensing element)}} may be modeled
+ as a {{block(Composition)}} element of a {{block(Sensor)}} element and
+ the measured value would be modeled as a {{block(DataItem)}} (See
+ {{sect(DataItems)}} for more information on {{block(DataItem)}}
+ elements). Each {{term(sensor unit)}} may have multiple
+ {{termplural(sensing element)}}; each representing the data for a
+ variety of measured values. {: width="0.8"} > Note: See {{lst(example-of-sensing-element-provided-as-data-item-associated-with-a-component)}} for an {{term(XML)}} example. When a {{term(sensor unit)}} is modeled as a {{block(Component)}} or as a separate piece of equipment, it may provide additional configuration information for the {{termplural(sensor element)}} and the {{term(sensor unit)}} itself. {: width="0.8"} > Note: If a {{block(Sensor)}} provides vibration measurement data for the spindle on a piece of equipment, it could be modeled as a {{block(Sensor)}} for rotary axis named `C`. See {{lst(example-of-sensor-for-rotary-axis)}} for an {{term(XML)}} example. {: width="0.8"} > Note: If a {{block(Sensor)}} provides measurement data for multiple {{block(Component)}} elements within a piece of equipment and is not associated with any particular {{block(Component)}}, it **MAY** be modeled as an independent {{block(Component)}} and the data associated with measurements are associated with their associated {{block(Component)}} entities. See {{lst(example-of-sensor-unit-with-sensing-element)}} for an {{term(XML)}} example. {{block(Configuration)}} data provides information required for maintenance and support of the sensor. When {{block(Sensor)}} represents the {{term(sensor unit)}} for multiple {{term(sensing element)}}(s), each sensing element is represented by a {{block(Channel)}}. The {{term(sensor unit)}} itself and each {{block(Channel)}} representing one {{term(sensing element)}} **MAY** have its own configuration data. {: width="0.8"} > Note: See {{lst(example-of-configuration-data-for-sensor)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(SensorConfiguration)}} entity. {{term(sensor)}} is a unique type
+ of a piece of equipment. A {{term(sensor)}} is typically comprised of
+ two major components: a {{term(sensor unit)}} that provides signal
+ processing, conversion, and communications and the {{termplural(sensing
+ element)}} that provides a signal or measured value. The {{term(sensor
+ unit)}} is modeled as a {{term(lower level)}} {{block(Component)}}
+ called {{block(Sensor)}}. The {{term(sensing element)}} may be modeled
+ as a {{block(Composition)}} element of a {{block(Sensor)}} element and
+ the measured value would be modeled as a {{block(DataItem)}} (See
+ {{sect(DataItems)}} for more information on {{block(DataItem)}}
+ elements). Each {{term(sensor unit)}} may have multiple
+ {{termplural(sensing element)}}; each representing the data for a
+ variety of measured values. {: width="0.8"} > Note: See {{lst(example-of-sensing-element-provided-as-data-item-associated-with-a-component)}} for an {{term(XML)}} example. When a {{term(sensor unit)}} is modeled as a {{block(Component)}} or as a separate piece of equipment, it may provide additional configuration information for the {{termplural(sensor element)}} and the {{term(sensor unit)}} itself. {: width="0.8"} > Note: If a {{block(Sensor)}} provides vibration measurement data for the spindle on a piece of equipment, it could be modeled as a {{block(Sensor)}} for rotary axis named `C`. See {{lst(example-of-sensor-for-rotary-axis)}} for an {{term(XML)}} example. {: width="0.8"} > Note: If a {{block(Sensor)}} provides measurement data for multiple {{block(Component)}} elements within a piece of equipment and is not associated with any particular {{block(Component)}}, it **MAY** be modeled as an independent {{block(Component)}} and the data associated with measurements are associated with their associated {{block(Component)}} entities. See {{lst(example-of-sensor-unit-with-sensing-element)}} for an {{term(XML)}} example. {{block(Configuration)}} data provides information required for maintenance and support of the sensor. When {{block(Sensor)}} represents the {{term(sensor unit)}} for multiple {{term(sensing element)}}(s), each sensing element is represented by a {{block(Channel)}}. The {{term(sensor unit)}} itself and each {{block(Channel)}} representing one {{term(sensing element)}} **MAY** have its own configuration data. {: width="0.8"} > Note: See {{lst(example-of-configuration-data-for-sensor)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} that is permanently integrated into the
+ piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} that is permanently integrated into the
+ piece of equipment.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that manages, positions, stores, and delivers
+ tooling within a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that manages, positions, stores, and delivers
+ tooling within a piece of equipment.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that removes manufacturing byproducts from a piece
+ of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that removes manufacturing byproducts from a piece
+ of equipment.
+
+
+
+
+
+
+ {{block(Component)}} composed of part(s) comprising the rigid bodies of
+ the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of part(s) comprising the rigid bodies of
+ the piece of equipment.
+
+
+
+
+
+
+ {{block(Structure)}} that provides a connection between
+ {{block(Component)}} entities.
+
+
+
+
+
+
+
+
+
+ {{block(Structure)}} that provides a connection between
+ {{block(Component)}} entities.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a manufacturing process being
+ executed on a piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a manufacturing process being
+ executed on a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that evacuates gases and liquids from an enclosed and
+ sealed space to a controlled negative pressure or a molecular density
+ below the prevailing atmospheric level.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that evacuates gases and liquids from an enclosed and
+ sealed space to a controlled negative pressure or a molecular density
+ below the prevailing atmospheric level.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a {{term(part)}} being
+ processed by a piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a {{term(part)}} being
+ processed by a piece of equipment.
+
+
+
+
+
+
+ {{block(Component)}} that physically prohibits a {{block(Device)}} or
+ {{block(Component)}} from opening or operating.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that physically prohibits a {{block(Device)}} or
+ {{block(Component)}} from opening or operating.
+
+
+
+
+
+
+ {{block(Component)}} that provides an axis of rotation for the purpose
+ of rapidly rotating a part or a tool to provide sufficient surface speed
+ for cutting operations. {{block(Spindle)}} was **DEPRECATED** in
+ *MTConnect Version 1.1* and was replaced by {{block(RotaryMode)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that provides an axis of rotation for the purpose
+ of rapidly rotating a part or a tool to provide sufficient surface speed
+ for cutting operations. {{block(Spindle)}} was **DEPRECATED** in
+ *MTConnect Version 1.1* and was replaced by {{block(RotaryMode)}}.
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ temperature. {{block(Thermostat)}} was **DEPRECATED** in *MTConnect
+ Version 1.2* and was replaced by {{block(Temperature)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ temperature. {{block(Thermostat)}} was **DEPRECATED** in *MTConnect
+ Version 1.2* and was replaced by {{block(Temperature)}}.
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ the amount and/or frequency of vibration within a system.
+ {{block(Vibration)}} was **DEPRECATED** in *MTConnect Version 1.2* and
+ was replaced by {{block(Displacement)}}, {{block(Frequency)}} etc.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ the amount and/or frequency of vibration within a system.
+ {{block(Vibration)}} was **DEPRECATED** in *MTConnect Version 1.2* and
+ was replaced by {{block(Displacement)}}, {{block(Frequency)}} etc.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism that holds a part or
+ stock material in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism that holds a part or
+ stock material in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that produces a current of air.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that produces a current of air.
+
+
+
+
+
+
+ leaf {{block(Component)}} that flattens or spreading materials.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that flattens or spreading materials.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism or wheel that turns in
+ a frame or block and serves to change the direction of or to transmit
+ force.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism or wheel that turns in
+ a frame or block and serves to change the direction of or to transmit
+ force.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer from a {{block(ToolMagazine)}} to {{term(spindle)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer from a {{block(ToolMagazine)}} to {{term(spindle)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides power to electric mechanisms.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides power to electric mechanisms.
+
+
+
+
+
+
+ leaf {{block(Component)}} that allows material to flow for the purpose
+ of drainage from, for example, a vessel or tank.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that allows material to flow for the purpose
+ of drainage from, for example, a vessel or tank.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense the
+ gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense the
+ gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+ leaf {{block(Component)}} that turns on or off an electric current or
+ makes or breaks a circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that turns on or off an electric current or
+ makes or breaks a circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides or applies a stretch or strain
+ to another mechanism.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides or applies a stretch or strain
+ to another mechanism.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of $$H_2 O$$.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of $$H_2 O$$.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides a signal or measured value.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides a signal or measured value.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a heat exchange system that uses a
+ fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a heat exchange system that uses a
+ fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ to be removed from a {{block(ToolMagazine)}} or {{block(Turret)}} to a
+ location outside of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ to be removed from a {{block(ToolMagazine)}} or {{block(Turret)}} to a
+ location outside of the piece of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} that holds a part, stock material, or any
+ other item in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that holds a part, stock material, or any
+ other item in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer to a {{block(ToolMagazine)}} or {{block(Turret)}} from
+ outside of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer to a {{block(ToolMagazine)}} or {{block(Turret)}} from
+ outside of the piece of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} that slows or stops a moving object by the
+ absorption or transfer of the energy of momentum, usually by means of
+ friction, electrical force, or magnetic force.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that slows or stops a moving object by the
+ absorption or transfer of the energy of momentum, usually by means of
+ friction, electrical force, or magnetic force.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location for
+ a tool associated with a {{block(Turret)}}, {{block(GangToolBar)}}, or
+ {{block(ToolRack)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location for
+ a tool associated with a {{block(Turret)}}, {{block(GangToolBar)}}, or
+ {{block(ToolRack)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a chamber or bin in which
+ materials are stored temporarily, typically being filled through the top
+ and dispensed through the bottom.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a chamber or bin in which
+ materials are stored temporarily, typically being filled through the top
+ and dispensed through the bottom.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+ leaf {{block(Component)}} that physically moves a tool from one location
+ to another.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that physically moves a tool from one location
+ to another.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ been removed from {{term(spindle)}} or {{block(Turret)}} and awaiting
+ for return to a {{block(ToolMagazine)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ been removed from {{term(spindle)}} or {{block(Turret)}} and awaiting
+ for return to a {{block(ToolMagazine)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of interconnected series of objects
+ that band together and are used to transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of interconnected series of objects
+ that band together and are used to transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electronic component or circuit
+ that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electronic component or circuit
+ that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an open container.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an open container.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is no
+ longer usable for removal from a {{block(ToolMagazine)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is no
+ longer usable for removal from a {{block(ToolMagazine)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a viscous liquid.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a viscous liquid.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a surface for holding an object or
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a surface for holding an object or
+ material.
+
+
+
+
+
+
+ leaf {{block(Component)}} that breaks material into smaller pieces.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that breaks material into smaller pieces.
+
+
+
+
+
+
+ leaf {{block(Component)}} that halts or controls the flow of a liquid,
+ gas, or other material through a passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that halts or controls the flow of a liquid,
+ gas, or other material through a passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a tool storage location associated
+ with a {{block(ToolMagazine)}} or {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a tool storage location associated
+ with a {{block(ToolMagazine)}} or {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that transforms electric energy from a source
+ to a secondary circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that transforms electric energy from a source
+ to a secondary circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that emits a type of radiation.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that emits a type of radiation.
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an enclosed container.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an enclosed container.
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures position.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures position.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of one or more cells in which
+ chemical energy is converted into electricity and used as a source of
+ power.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of one or more cells in which
+ chemical energy is converted into electricity and used as a source of
+ power.
+
+
+
+
+
+
+ leaf {{block(Component)}} that interrupts an electric circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that interrupts an electric circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that converts electrical, pneumatic, or
+ hydraulic energy into mechanical energy.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that converts electrical, pneumatic, or
+ hydraulic energy into mechanical energy.
+
+
+
+
+
+
+ leaf {{block(Component)}} that dispenses liquid or powered materials.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that dispenses liquid or powered materials.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electromechanical actuator that
+ produces deflection of a beam of light or energy in response to electric
+ current through its coil in a magnetic field.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electromechanical actuator that
+ produces deflection of a beam of light or energy in response to electric
+ current through its coil in a magnetic field.
+
+
+
+
+
+
+ leaf {{block(Component)}} that raises, drives, exhausts, or compresses
+ fluids or gases by means of a piston, plunger, or set of rotating vanes.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that raises, drives, exhausts, or compresses
+ fluids or gases by means of a piston, plunger, or set of rotating vanes.
+
+
+
+
+
+
+ leaf {{block(Component)}} that strengthens, support, or fastens objects
+ in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that strengthens, support, or fastens objects
+ in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures linear motion or position.
+ **DEPRECATION WARNING** : May be deprecated in the future. Recommend
+ using {{block(Encoder)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures linear motion or position.
+ **DEPRECATION WARNING** : May be deprecated in the future. Recommend
+ using {{block(Encoder)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Component)}} that provides information related to an individual
+ {{term(feature)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that provides information related to an individual
+ {{term(feature)}}.
+
+
+
+
+
+
+ system that circulates air or regulates airflow without altering
+ temperature or humidity.
+
+
+
+
+
+
+
+
+
+ system that circulates air or regulates airflow without altering
+ temperature or humidity.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Structure)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Structure)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Interface)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Interface)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Auxiliary)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Auxiliary)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(System)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(System)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Adapter)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Adapter)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Resource)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Resource)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Component
+ Types::Axis)}} types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Component
+ Types::Axis)}} types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Process)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Process)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Part)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Part)}}
+ types.
+
+
+
+
+
+
+ {{block(Resources)}} that {{termplural(organize)}} {{block(Material)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Resources)}} that {{termplural(organize)}} {{block(Material)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Controller)}}
+ entities.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Controller)}}
+ entities.
+
+
+
+
+
+
+ Compositions Model
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Extended tyoe for The vocab for the type of composition
+
+
+
+
+
+
+
+
+
+ The vocab for the type of composition
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that moves or
+ controls a mechanical part of a piece of equipment. It takes energy
+ usually provided by air, electric current, or liquid and converts
+ the energy into some kind of motion.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an electronic component or
+ circuit that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that slows down or
+ stops a moving object by the absorption or transfer of the energy of
+ momentum, usually by means of friction, electrical force, or
+ magnetic force.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an interconnected series of
+ objects that band together and transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that breaks material
+ into smaller pieces.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that holds a part,
+ stock material, or any other item in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that interrupts an
+ electric circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that strengthens,
+ supports, or fastens objects in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense
+ the gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanical mechanism or closure
+ that covers a physical access portal into a piece of equipment
+ allowing or restricting access to other parts of the equipment.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that allows material
+ to flow for the purpose of drainage from, for example, a vessel or
+ tank.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that measures rotary
+ position.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that emits a type of
+ radiation.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that dispenses liquid
+ or powered materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that produces a
+ current of air.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a substance or structure that
+ allows liquids or gases to pass through to remove suspended
+ impurities or to recover solids.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an electromechanical actuator
+ that produces deflection of a beam of light or energy in response to
+ electric current through its coil in a magnetic field.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that holds a part,
+ stock material, or any other item in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a chamber or bin that stores
+ materials temporarily, typically being filled through the top and
+ dispensed through the bottom.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that measures linear
+ motion or position.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that converts
+ electrical, pneumatic, or hydraulic energy into mechanical energy.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a viscous liquid.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a unit that provides power to
+ electric mechanisms.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism or wheel that turns
+ in a frame or block and serves to change the direction of or to
+ transmit force.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an apparatus that raises, drives,
+ exhausts, or compresses fluids or gases by means of a piston,
+ plunger, or set of rotating vanes.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that provides a
+ signal or measured value.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that flattens or
+ spreads materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of one or more cells that converts
+ chemical energy to electricity and serves as a source of power.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that turns on or off
+ an electric current or makes or breaks a circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a surface that holds an object or
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a receptacle or container that
+ holds material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that provides or
+ applies a stretch or strain to another mechanism.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that transforms
+ electric energy from a source to a secondary circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that halts or
+ controls the flow of a liquid, gas, or other material through a
+ passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a container for liquid or
+ powdered materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a fluid.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a string like piece or filament
+ of relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a heat exchange system that uses
+ a fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a tool storage location
+ associated with a {{block(ToolMagazine)}} or
+ {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a storage or mounting location
+ for a tool associated with a {{block(Turret)}},
+ {{block(GangToolBar)}}, or {{block(ToolRack)}}.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that physically moves
+ a tool from one location to another.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool awaiting transfer from a
+ {{block(ToolMagazine)}} to {{term(spindle)}} or {{block(Turret)}}.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool removed from {{term(spindle)}} or
+ {{block(Turret)}} and awaiting for return to a
+ {{block(ToolMagazine)}}.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool awaiting transfer to a
+ {{block(ToolMagazine)}} or {{block(Turret)}} from outside of the
+ piece of equipment.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool to be removed from a
+ {{block(ToolMagazine)}} or {{block(Turret)}} to a location outside
+ of the piece of equipment.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool that is no longer usable for removal from
+ a {{block(ToolMagazine)}} or {{block(Turret)}}.
+
+
+
+
+
+
+
+
+ The vocab for the type of composition
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ technical information about an entity describing its physical
+ layout, functional characteristics, and relationships with other
+ entities.
+
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The composition's universally unique id.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of composition
+
+
+
+
+
+
+
+ A reference to an identifier
+
+
+
+
+
+
+
+ References Model
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ A reference to an id in the MTConnectDevices model
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ data type of Entry value
+
+
+
+
+
+
+
+ Abstract configuration
+
+
+
+
+
+
+ Abstract configuration
+
+
+
+
+
+
+ The configuration data associated with this component.
+
+
+
+
+
+
+
+
+
+ An entry for a configuration element with three dimensional values
+
+
+
+
+
+
+
+ the key
+
+
+
+
+
+
+
+
+
+ A Configuration element with three dimensional value for 'X Y
+ Z'
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+
+ A Configuration element with three dimensional value for 'A B
+ C'
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+
+ The time the calibration was preformed
+
+
+
+
+
+
+
+ The time the next calibration should be preformed
+
+
+
+
+
+
+
+ The initials of the person doing the calibration
+
+
+
+
+
+
+
+ The firmware version of this sensor
+
+
+
+
+
+
+
+ The channel number
+
+
+
+
+
+
+
+ See {{block(SensorConfiguration)}}.
+
+
+
+
+
+
+
+
+ Version number for the sensor unit as specified by the
+ manufacturer.
+
+
+
+
+
+
+ Date upon which the {{term(sensor unit)}} was last calibrated to
+ the {{term(sensor element)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor element)}} is next scheduled
+ to be calibrated with the {{term(sensor unit)}}.
+
+
+
+
+
+
+ The initials of the person verifying the validity of the
+ calibration data.
+
+
+
+
+
+
+ Any additional properties
+
+
+
+
+
+
+ {{block(Channels)}} groups one or more {{block(Channel)}}
+ entities. See {{block(Channel)}}.
+
+
+
+
+
+
+
+
+
+
+ See {{block(SensorConfiguration)}}.
+
+
+
+
+
+
+ {{block(Channels)}} groups one or more {{block(Channel)}} entities. See
+ {{block(Channel)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor unit)}} was last calibrated to the
+ {{term(sensor element)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor element)}} is next scheduled to be
+ calibrated with the {{term(sensor unit)}}.
+
+
+
+
+
+
+ The initials of the person verifying the validity of the calibration
+ data.
+
+
+
+
+
+
+
+ The channel id
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ The peak value
+
+
+
+
+
+
+
+ {{block(Specifications)}} groups one or more {{block(Specification)}}
+ entities. See {{package(Specifications)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Specifications)}} groups one or more {{block(Specification)}}
+ entities. See {{package(Specifications)}}.
+
+
+
+
+
+
+ Extended tyoe for A reference to the creator of the Specification
+
+
+
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+ The manufacturer of a piece of equipment or component.
+
+
+
+
+
+
+ The owner or implementer of a piece of equipment or component.
+
+
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+
+ A specification
+
+
+
+
+
+ The identity of the Specificaiton
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The optional data item identifier
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ The optional coordinate system identifier
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ A specification
+
+
+
+
+
+
+ design characteristics for a piece of equipment.
+
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may
+ be required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may
+ be required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+
+
+ design characteristics for a piece of equipment.
+
+
+
+
+
+
+ The limit of a constraint
+
+
+
+
+
+
+
+
+
+ The limit of a constraint
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+ {{block(Specification)}} that provides information used to assess the
+ conformance of a variable to process requirements.
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+ {{block(Specification)}} that provides information used to assess the
+ conformance of a variable to process requirements.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+ The list of possible association types
+
+
+
+
+
+
+ The related entity is a parent
+
+
+
+
+
+
+ The related entity is a child
+
+
+
+
+
+
+ The related entity is a peer
+
+
+
+
+
+
+
+
+ device relationships
+
+
+
+
+
+
+ a system
+
+
+
+
+
+
+ an auxiliary
+
+
+
+
+
+
+
+
+ The criticality
+
+
+
+
+
+
+ critical
+
+
+
+
+
+
+ Not critical
+
+
+
+
+
+
+
+
+ A relationship between this component and something else
+
+
+
+
+
+ The relationship identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The assciation type
+
+
+
+
+
+
+ Criticality
+
+
+
+
+
+
+
+ A relationship between this component and something else
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two components within a piece of equipment that function
+ independently but together perform a capability or service within a
+ piece of equipment.
+
+
+
+
+
+
+
+ A reference to the device uuid
+
+
+
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two components within a piece of equipment that function
+ independently but together perform a capability or service within a
+ piece of equipment.
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two pieces of equipment that function independently but together
+ perform a manufacturing operation.
+
+
+
+
+
+
+
+ A reference to the device uuid
+
+
+
+
+
+
+ The type of relatiship
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two pieces of equipment that function independently but together
+ perform a manufacturing operation.
+
+
+
+
+
+
+ The type of coordinate system
+
+
+
+
+
+
+ The world
+
+
+
+
+
+
+ The base of the manipulator chain
+
+
+
+
+
+
+ The object
+
+
+
+
+
+
+ The current task
+
+
+
+
+
+
+ The last joint in the chain
+
+
+
+
+
+
+ The tool's coord
+
+
+
+
+
+
+ The platform
+
+
+
+
+
+
+ For machine tools, the coordinate system in the work area
+
+
+
+
+
+
+ For machine tools, the coordinate system in the work area
+
+
+
+
+
+
+
+
+ {{block(CoordinateSystems)}} groups one or more
+ {{block(CoordinateSystem)}} entities. See
+ {{package(CoordinateSystems)}}.
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+ {{block(CoordinateSystems)}} groups one or more
+ {{block(CoordinateSystem)}} entities. See
+ {{package(CoordinateSystems)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+ The location (no parent) as DataSet
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ The coordinate system identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The optional name of the coordinate system
+
+
+
+
+
+
+ The parent of the coordinate system
+
+
+
+
+
+
+ The coordinate system type
+
+
+
+
+
+
+ uuid
+
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ An offset applied first
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ A quaternion transform applied second
+
+
+
+
+
+
+
+
+
+ The types of motion
+
+
+
+
+
+
+ Rotates around an axis with a fixed range of motion
+
+
+
+
+
+
+ Revolves around an axis with a continuous range of motion
+
+
+
+
+
+
+ Sliding linear motion along an axis with a fixed range of motion
+
+
+
+
+
+
+ The axis does not move.
+
+
+
+
+
+
+
+
+ The actuation of this component
+
+
+
+
+
+
+ The movement is initiated by the component.
+
+
+
+
+
+
+ The motion is computed and is used for expressing an imaginary
+ movement.
+
+
+
+
+
+
+ There is no actuation of this Axis.
+
+
+
+
+
+
+
+
+ The unit vector along which the motion occurs
+
+
+
+
+
+
+
+
+
+ The description of the motion
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ See {{sect(Motion)}}.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+ The location (no parent)
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+
+ The axis motion
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+
+
+ The coordinate system identifier
+
+
+
+
+
+
+ The parent of the coordinate system
+
+
+
+
+
+
+ The identifier of the coordinate system that this motion is
+ relative to
+
+
+
+
+
+
+ The motion type
+
+
+
+
+
+
+ The actuation method
+
+
+
+
+
+
+
+
+
+ See {{sect(Motion)}}.
+
+
+
+
+
+
+ A reference to another model
+
+
+
+
+
+
+
+ A reference to an item in a model
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ The unit vector to scale the model
+
+
+
+
+
+
+
+
+
+ See {{sect(SolidModel)}}.
+
+
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ See {{sect(Scale)}}.
+
+
+
+
+
+
+ Scaling vector for the model
+
+
+
+
+
+
+
+
+ the unique identifier for this entity within the MTConnectDevices
+ document
+
+
+
+
+
+
+ The associated model file if an item reference is used
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The reference to the item within the model within the related
+ geometry. A modelIdRef MUST be given.
+
+
+
+
+
+
+ The format of the referenced document
+
+
+
+
+
+
+ The identifier of the coordinate system that this motion is
+ relative to
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+
+
+
+ See {{sect(SolidModel)}}.
+
+
+
+
+
+
+ Extended tyoe for Solid model media types
+
+
+
+
+
+
+
+
+
+ Solid model media types
+
+
+
+
+
+
+ ISO 10303 STEP AP203 or AP242 format
+
+
+
+
+
+
+ Stereolithography file format
+
+
+
+
+
+
+ Geometry Description Markup Language
+
+
+
+
+
+
+ Wavefront OBJ file format
+
+
+
+
+
+
+ ISO 17506
+
+
+
+
+
+
+ Initial Graphics Exchange Specification
+
+
+
+
+
+
+ Autodesk file format
+
+
+
+
+
+
+ Dassault file format
+
+
+
+
+
+
+ Parasolid XT Siemens data interchange format
+
+
+
+
+
+
+
+
+ Solid model media types
+
+
+
+
+
+
+
+ url of an image file
+
+
+
+
+
+
+
+ mime type
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(ImageFile)}}
+ entity.
+
+
+
+
+
+
+
+
+ reference to a file containing an image of the
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(ImageFile)}}
+ entity.
+
+
+
+
+
+
+ reference to a file containing an image of the {{block(Component)}}.
+
+
+
+
+
+
+
+ identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ URL of image file
+
+
+
+
+
+
+ mime type of image file
+
+
+
+
+
+
+
+
+
+ The item's reference to the component
+
+
+
+
+
+
+
+ The name of the power source
+
+
+
+
+
+
+
+ The order of precedence for a given power source
+
+
+
+
+
+
+
+ The type of power source
+
+
+
+
+
+
+ main or principle
+
+
+
+
+
+
+ alternate or not primary
+
+
+
+
+
+
+ held near at hand and ready for use and is uninterruptible
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(PowerSource)}} entity. {: width="0.8"}
+
+
+
+
+
+
+
+
+ potential energy sources for the {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(PowerSource)}} entity. {: width="0.8"}
+
+
+
+
+
+
+ potential energy sources for the {{block(Component)}}.
+
+
+
+
+
+
+ optional precedence for a given power source
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST NOT**
+ be used in conjunction with any other {{block(Constraint)}}
+ elements.
+
+
+
+
+
+
+
+ type of power source
+
+
+
+
+
+
+ identifier
+
+
+
+
+
+
+ reference to component
+
+
+
+
+
+
+
+ The interval between adjacent sampleing of data
+
+
+
+
+
+
+
+ The frequency a measurement is sampled
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ An idref to the component id
+
+
+
+
+
+
+
+ An idref to the data item id
+
+
+
+
+
+
+
+ The item's reference to the data item or specificatiton
+
+
+
+
+
+
+
+ The name of a related component
+
+
+
+
+
+
+
+ The id reference for the coordinate system associated with this data
+ item
+
+
+
+
+
+
+
+ An discrete event
+
+
+
+
+
+
+
+ The description of a data item, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ The minimum limit on the change in a value
+
+
+
+
+
+
+
+ The measurement sampling type
+
+
+
+
+
+
+ An event represents a change in state occurs at a point in time.
+ Note: An event does not occur at predefined frequencies.
+
+
+
+
+
+
+ A sample is a data point for continuous data items, that is, the
+ value of a data item at a point in time.
+
+
+
+
+
+
+ The condition of the device
+
+
+
+
+
+
+
+
+ The multiplier for the native value. Conversion divides by this value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ series of sampled data. The data is reported for a specified number
+ of samples and each sample is reported with a fixed period.
+
+
+
+
+
+
+ measured value of the sample data. If no
+ {{property(DataItem::representation)}} is specified for a data item,
+ the {{property(DataItem::representation)}} **MUST** be determined to
+ be `VALUE`.
+
+
+
+
+
+
+ reported value(s) are represented as a set of {{termplural(key-value
+ pair)}}. Each reported value in the {{term(data set)}} **MUST** have
+ a unique key.
+
+
+
+
+
+
+ **DEPRECATED** as {{property(DataItem::representation)}} type in
+ *MTConnect Version 1.5*. Replaced by the
+ {{property(DataItem::discrete)}}.
+
+
+
+
+
+
+ two dimensional set of {{termplural(key-value pair)}} where the
+ {{block(Entry)}} represents a row, and the value is a set of
+ {{term(key-value pair)}} {{block(Cell)}} elements. A {{term(table)}}
+ follows the same behavior as the {{term(data set)}} for change
+ tracking, clearing, and history. When an {{block(Entry)}} changes,
+ all {{block(Cell)}} elements update as a single unit following the
+ behavior of a {{term(data set)}}. > Note: It is best to use
+ {{block(Variable)}} if the {{block(Cell)}} entities represent
+ multiple semantic types. Each {{block(Entry)}} in the
+ {{term(table)}} **MUST** have a unique key. Each {{block(Cell)}} of
+ each {{block(Entry)}} in the {{term(table)}} **MUST** have a unique
+ key. See {{block(Representation)}} in {{package(Observation
+ Information Model)}}, for a description of {{block(Entry)}} and
+ {{block(Cell)}} elements.
+
+
+
+
+
+
+
+
+ The type of filter
+
+
+
+
+
+
+ new value **MUST NOT** be reported for a data item unless the
+ measured value has changed from the last reported value by at least
+ the delta given as the value of this element. The value of
+ {{block(Filter)}} **MUST** be an absolute value using the same units
+ as the reported data.
+
+
+
+
+
+
+ data reported for a data item is provided on a periodic basis. The
+ `PERIOD` for reporting data is defined in the value of the
+ {{block(Filter)}}. The value of {{block(Filter)}} **MUST** be an
+ absolute value reported in seconds representing the time between
+ reported samples of the value of the data item.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+ {{termplural(organize)}} a set of expected values that can be
+ reported for a {{block(DataItem)}}.
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ starting value for a {{block(DataItem)}} as well as the value to be
+ set for the {{block(DataItem)}} after a reset event.
+
+
+
+
+
+
+ type of event that may cause a reset to occur.
+
+
+
+
+
+
+ defines the meaning of {{block(Entry)}} and {{block(Cell)}} entities
+ when the associated {{property(DataItem::representation)}} is either
+ `DATA_SET` or `TABLE`.
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The category of the data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The coordinate system reference to a particular coordinate system
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ Used as the default sample rate for waveforms
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The number of significant digits for this data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ A set of limits for a data item
+
+
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST
+ NOT** be used in conjunction with any other
+ {{block(Constraint)}} elements.
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ A starting point for a data item
+
+
+
+
+
+
+
+
+
+ The value element
+
+
+
+
+
+
+
+
+
+ The filter for the data item
+
+
+
+
+
+
+
+ The type of filter, ABSOLUTE or PERCENT
+
+
+
+
+
+
+
+
+
+ A native data source
+
+
+
+
+
+
+
+ The optional data item within the source component that provides
+ the underlying data
+
+
+
+
+
+
+ The component that is collecting the data associated with this
+ data item
+
+
+
+
+
+
+ The optional composition identifier for the source of this data
+ item
+
+
+
+
+
+
+
+
+
+ The DataItem Definition
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+ unique key
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more {{block(CellDefinition)}}
+ entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+
+ Organizes DataItemRelationship and SpecificationRelationship
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ A reference to the related DataItem id.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ A reference to a DataItem that associates the values with an
+ external entity
+
+
+
+
+
+
+ The referenced DataItem provides the id of the effective Coordinate
+ System
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+ The referenced DataItem provides the observed values.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectDevices_2.5_1.0.xsd b/schemas/MTConnectDevices_2.5_1.0.xsd
new file mode 100644
index 000000000..a2321cc7e
--- /dev/null
+++ b/schemas/MTConnectDevices_2.5_1.0.xsd
@@ -0,0 +1,10430 @@
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectDevices Response Document)}} that
+ contains the {{term(Device Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectDevices)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ {{block(AssetCounts)}} groups {{block(AssetCount)}} entities.
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(AssetCounts)}} groups {{block(AssetCount)}} entities.
+
+
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectDevices Response Document)}} that
+ contains the {{term(Device Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectDevices)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ This section provides semantic information for the {{block(Device)}}
+ types.
+
+
+
+
+
+
+
+
+ The station id for this device
+
+
+
+
+
+
+
+ The ISO 841 classification for the device
+
+
+
+
+
+
+
+ The model name
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(Device)}}
+ types.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ technical information about an entity describing its physical
+ layout, functional characteristics, and relationships with other
+ entities.
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Components)}} groups one or more {{block(Component)}}
+ entities.
+
+
+
+
+
+
+ Compositions Model
+
+
+
+
+
+
+ References Model
+
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ The rate at which the data is sampled from the component
+
+
+
+
+
+
+ DEPRECATED: The rate at which the data is sampled from the component
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The descriptive information. This can be manufacturer specific
+
+
+
+
+
+
+ The content of the description can text or XML elements
+
+
+
+
+
+
+
+ name of the material manufacturer.
+
+
+
+
+
+
+ The model
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location
+ for a tool associated with a {{block(Turret)}},
+ {{block(GangToolBar)}}, or {{block(ToolRack)}}.
+
+
+
+
+
+
+
+ An abstract component that has an optional uuid
+
+
+
+
+
+
+
+ The component's universally unique id.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+
+
+ An abstract component that has an optional uuid
+
+
+
+
+
+
+ {{block(Components)}} groups one or more {{block(Component)}} entities.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ DEPRECATED: The device's ISO-841 classification
+
+
+
+
+
+
+ The components universally unique id. This can be composed of the
+ manufactures id or name and the serial number.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ MTConnect version of the {{term(Device Information Model)}} used
+ to configure the information to be published for a piece of
+ equipment in an {{term(MTConnect Response Document)}}.
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of removable part(s) of a piece
+ of equipment that provides supplementary or extended functionality.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of removable part(s) of a piece
+ of equipment that provides supplementary or extended functionality.
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+ {{block(Loader)}} that delivers bar stock to a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Loader)}} that delivers bar stock to a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ that remove heat from a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ that remove heat from a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Component)}} that observes the surroundings of another
+ {{block(Component)}}. > Note: {{block(Environmental)}} **SHOULD** be
+ organized by {{block(Auxillaries)}}, {{block(Systems)}} or
+ {{block(Parts)}} depending on the relationship to the
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that observes the surroundings of another
+ {{block(Component)}}. > Note: {{block(Environmental)}} **SHOULD** be
+ organized by {{block(Auxillaries)}}, {{block(Systems)}} or
+ {{block(Parts)}} depending on the relationship to the
+ {{block(Component)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that provides movement and distribution of pressurized
+ liquid throughout the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides movement and distribution of pressurized
+ liquid throughout the piece of equipment.
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides prismatic motion along a
+ fixed axis.
+
+
+
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides prismatic motion along a
+ fixed axis.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that provides movement and distribution of
+ materials, parts, tooling, and other items to or from a piece of
+ equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that provides movement and distribution of
+ materials, parts, tooling, and other items to or from a piece of
+ equipment.
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ used to lubricate portions of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that provides distribution and management of fluids
+ used to lubricate portions of the piece of equipment.
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Resource)}} composed of an individual or individuals who either
+ control, support, or otherwise interface with a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of an individual or individuals who either
+ control, support, or otherwise interface with a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Power)}} was **DEPRECATED** in *MTConnect Version 1.1* and was
+ replaced by {{block(Availability)}} data item type.
+
+
+
+
+
+
+
+
+
+ {{block(Power)}} was **DEPRECATED** in *MTConnect Version 1.1* and was
+ replaced by {{block(Availability)}} data item type.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of material or personnel involved
+ in a manufacturing process.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of material or personnel involved
+ in a manufacturing process.
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides rotation about a fixed
+ axis.
+
+
+
+
+
+
+
+
+
+ {{block(Component Types::Axis)}} that provides rotation about a fixed
+ axis.
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(SensorConfiguration)}} entity. {{term(sensor)}} is a unique type
+ of a piece of equipment. A {{term(sensor)}} is typically comprised of
+ two major components: a {{term(sensor unit)}} that provides signal
+ processing, conversion, and communications and the {{termplural(sensing
+ element)}} that provides a signal or measured value. The {{term(sensor
+ unit)}} is modeled as a {{term(lower level)}} {{block(Component)}}
+ called {{block(Sensor)}}. The {{term(sensing element)}} may be modeled
+ as a {{block(Composition)}} element of a {{block(Sensor)}} element and
+ the measured value would be modeled as a {{block(DataItem)}} (See
+ {{sect(DataItems)}} for more information on {{block(DataItem)}}
+ elements). Each {{term(sensor unit)}} may have multiple
+ {{termplural(sensing element)}}; each representing the data for a
+ variety of measured values. {: width="0.8"} > Note: See {{lst(example-of-sensing-element-provided-as-data-item-associated-with-a-component)}} for an {{term(XML)}} example. When a {{term(sensor unit)}} is modeled as a {{block(Component)}} or as a separate piece of equipment, it may provide additional configuration information for the {{termplural(sensor element)}} and the {{term(sensor unit)}} itself. {: width="0.8"} > Note: If a {{block(Sensor)}} provides vibration measurement data for the spindle on a piece of equipment, it could be modeled as a {{block(Sensor)}} for rotary axis named `C`. See {{lst(example-of-sensor-for-rotary-axis)}} for an {{term(XML)}} example. {: width="0.8"} > Note: If a {{block(Sensor)}} provides measurement data for multiple {{block(Component)}} elements within a piece of equipment and is not associated with any particular {{block(Component)}}, it **MAY** be modeled as an independent {{block(Component)}} and the data associated with measurements are associated with their associated {{block(Component)}} entities. See {{lst(example-of-sensor-unit-with-sensing-element)}} for an {{term(XML)}} example. {{block(Configuration)}} data provides information required for maintenance and support of the sensor. When {{block(Sensor)}} represents the {{term(sensor unit)}} for multiple {{term(sensing element)}}(s), each sensing element is represented by a {{block(Channel)}}. The {{term(sensor unit)}} itself and each {{block(Channel)}} representing one {{term(sensing element)}} **MAY** have its own configuration data. {: width="0.8"} > Note: See {{lst(example-of-configuration-data-for-sensor)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(SensorConfiguration)}} entity. {{term(sensor)}} is a unique type
+ of a piece of equipment. A {{term(sensor)}} is typically comprised of
+ two major components: a {{term(sensor unit)}} that provides signal
+ processing, conversion, and communications and the {{termplural(sensing
+ element)}} that provides a signal or measured value. The {{term(sensor
+ unit)}} is modeled as a {{term(lower level)}} {{block(Component)}}
+ called {{block(Sensor)}}. The {{term(sensing element)}} may be modeled
+ as a {{block(Composition)}} element of a {{block(Sensor)}} element and
+ the measured value would be modeled as a {{block(DataItem)}} (See
+ {{sect(DataItems)}} for more information on {{block(DataItem)}}
+ elements). Each {{term(sensor unit)}} may have multiple
+ {{termplural(sensing element)}}; each representing the data for a
+ variety of measured values. {: width="0.8"} > Note: See {{lst(example-of-sensing-element-provided-as-data-item-associated-with-a-component)}} for an {{term(XML)}} example. When a {{term(sensor unit)}} is modeled as a {{block(Component)}} or as a separate piece of equipment, it may provide additional configuration information for the {{termplural(sensor element)}} and the {{term(sensor unit)}} itself. {: width="0.8"} > Note: If a {{block(Sensor)}} provides vibration measurement data for the spindle on a piece of equipment, it could be modeled as a {{block(Sensor)}} for rotary axis named `C`. See {{lst(example-of-sensor-for-rotary-axis)}} for an {{term(XML)}} example. {: width="0.8"} > Note: If a {{block(Sensor)}} provides measurement data for multiple {{block(Component)}} elements within a piece of equipment and is not associated with any particular {{block(Component)}}, it **MAY** be modeled as an independent {{block(Component)}} and the data associated with measurements are associated with their associated {{block(Component)}} entities. See {{lst(example-of-sensor-unit-with-sensing-element)}} for an {{term(XML)}} example. {{block(Configuration)}} data provides information required for maintenance and support of the sensor. When {{block(Sensor)}} represents the {{term(sensor unit)}} for multiple {{term(sensing element)}}(s), each sensing element is represented by a {{block(Channel)}}. The {{term(sensor unit)}} itself and each {{block(Channel)}} representing one {{term(sensing element)}} **MAY** have its own configuration data. {: width="0.8"} > Note: See {{lst(example-of-configuration-data-for-sensor)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} that is permanently integrated into the
+ piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} that is permanently integrated into the
+ piece of equipment.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that manages, positions, stores, and delivers
+ tooling within a piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that manages, positions, stores, and delivers
+ tooling within a piece of equipment.
+
+
+
+
+
+
+ {{block(Auxiliary)}} that removes manufacturing byproducts from a piece
+ of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Auxiliary)}} that removes manufacturing byproducts from a piece
+ of equipment.
+
+
+
+
+
+
+ {{block(Component)}} composed of part(s) comprising the rigid bodies of
+ the piece of equipment.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of part(s) comprising the rigid bodies of
+ the piece of equipment.
+
+
+
+
+
+
+ {{block(Structure)}} that provides a connection between
+ {{block(Component)}} entities.
+
+
+
+
+
+
+
+
+
+ {{block(Structure)}} that provides a connection between
+ {{block(Component)}} entities.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a manufacturing process being
+ executed on a piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a manufacturing process being
+ executed on a piece of equipment.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(System)}} that evacuates gases and liquids from an enclosed and
+ sealed space to a controlled negative pressure or a molecular density
+ below the prevailing atmospheric level.
+
+
+
+
+
+
+
+
+
+ {{block(System)}} that evacuates gases and liquids from an enclosed and
+ sealed space to a controlled negative pressure or a molecular density
+ below the prevailing atmospheric level.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a {{term(part)}} being
+ processed by a piece of equipment.
+
+
+
+
+
+
+
+
+
+ abstract {{block(Component)}} composed of a {{term(part)}} being
+ processed by a piece of equipment.
+
+
+
+
+
+
+ {{block(Component)}} that physically prohibits a {{block(Device)}} or
+ {{block(Component)}} from opening or operating.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that physically prohibits a {{block(Device)}} or
+ {{block(Component)}} from opening or operating.
+
+
+
+
+
+
+ {{block(Component)}} that provides an axis of rotation for the purpose
+ of rapidly rotating a part or a tool to provide sufficient surface speed
+ for cutting operations. {{block(Spindle)}} was **DEPRECATED** in
+ *MTConnect Version 1.1* and was replaced by {{block(RotaryMode)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that provides an axis of rotation for the purpose
+ of rapidly rotating a part or a tool to provide sufficient surface speed
+ for cutting operations. {{block(Spindle)}} was **DEPRECATED** in
+ *MTConnect Version 1.1* and was replaced by {{block(RotaryMode)}}.
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ temperature. {{block(Thermostat)}} was **DEPRECATED** in *MTConnect
+ Version 1.2* and was replaced by {{block(Temperature)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ temperature. {{block(Thermostat)}} was **DEPRECATED** in *MTConnect
+ Version 1.2* and was replaced by {{block(Temperature)}}.
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ the amount and/or frequency of vibration within a system.
+ {{block(Vibration)}} was **DEPRECATED** in *MTConnect Version 1.2* and
+ was replaced by {{block(Displacement)}}, {{block(Frequency)}} etc.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} composed of a sensor or an instrument that measures
+ the amount and/or frequency of vibration within a system.
+ {{block(Vibration)}} was **DEPRECATED** in *MTConnect Version 1.2* and
+ was replaced by {{block(Displacement)}}, {{block(Frequency)}} etc.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism that holds a part or
+ stock material in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism that holds a part or
+ stock material in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that produces a current of air.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that produces a current of air.
+
+
+
+
+
+
+ leaf {{block(Component)}} that flattens or spreading materials.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that flattens or spreading materials.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism or wheel that turns in
+ a frame or block and serves to change the direction of or to transmit
+ force.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanism or wheel that turns in
+ a frame or block and serves to change the direction of or to transmit
+ force.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer from a {{block(ToolMagazine)}} to {{term(spindle)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer from a {{block(ToolMagazine)}} to {{term(spindle)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides power to electric mechanisms.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides power to electric mechanisms.
+
+
+
+
+
+
+ leaf {{block(Component)}} that allows material to flow for the purpose
+ of drainage from, for example, a vessel or tank.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that allows material to flow for the purpose
+ of drainage from, for example, a vessel or tank.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense the
+ gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense the
+ gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+ leaf {{block(Component)}} that turns on or off an electric current or
+ makes or breaks a circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that turns on or off an electric current or
+ makes or breaks a circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides or applies a stretch or strain
+ to another mechanism.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides or applies a stretch or strain
+ to another mechanism.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of $$H_2 O$$.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of $$H_2 O$$.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides a signal or measured value.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that provides a signal or measured value.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a heat exchange system that uses a
+ fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a heat exchange system that uses a
+ fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ to be removed from a {{block(ToolMagazine)}} or {{block(Turret)}} to a
+ location outside of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ to be removed from a {{block(ToolMagazine)}} or {{block(Turret)}} to a
+ location outside of the piece of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} that holds a part, stock material, or any
+ other item in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that holds a part, stock material, or any
+ other item in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer to a {{block(ToolMagazine)}} or {{block(Turret)}} from
+ outside of the piece of equipment.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is
+ awaiting transfer to a {{block(ToolMagazine)}} or {{block(Turret)}} from
+ outside of the piece of equipment.
+
+
+
+
+
+
+ leaf {{block(Component)}} that slows or stops a moving object by the
+ absorption or transfer of the energy of momentum, usually by means of
+ friction, electrical force, or magnetic force.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that slows or stops a moving object by the
+ absorption or transfer of the energy of momentum, usually by means of
+ friction, electrical force, or magnetic force.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location for
+ a tool associated with a {{block(Turret)}}, {{block(GangToolBar)}}, or
+ {{block(ToolRack)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a storage or mounting location for
+ a tool associated with a {{block(Turret)}}, {{block(GangToolBar)}}, or
+ {{block(ToolRack)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a chamber or bin in which
+ materials are stored temporarily, typically being filled through the top
+ and dispensed through the bottom.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a chamber or bin in which
+ materials are stored temporarily, typically being filled through the top
+ and dispensed through the bottom.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+ leaf {{block(Component)}} that physically moves a tool from one location
+ to another.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that physically moves a tool from one location
+ to another.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ been removed from {{term(spindle)}} or {{block(Turret)}} and awaiting
+ for return to a {{block(ToolMagazine)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that has
+ been removed from {{term(spindle)}} or {{block(Turret)}} and awaiting
+ for return to a {{block(ToolMagazine)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of interconnected series of objects
+ that band together and are used to transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of interconnected series of objects
+ that band together and are used to transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electronic component or circuit
+ that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electronic component or circuit
+ that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an open container.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an open container.
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is no
+ longer usable for removal from a {{block(ToolMagazine)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that is a {{block(Pot)}} for a tool that is no
+ longer usable for removal from a {{block(ToolMagazine)}} or
+ {{block(Turret)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a viscous liquid.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a viscous liquid.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a surface for holding an object or
+ material.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a surface for holding an object or
+ material.
+
+
+
+
+
+
+ leaf {{block(Component)}} that breaks material into smaller pieces.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that breaks material into smaller pieces.
+
+
+
+
+
+
+ leaf {{block(Component)}} that halts or controls the flow of a liquid,
+ gas, or other material through a passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that halts or controls the flow of a liquid,
+ gas, or other material through a passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a tool storage location associated
+ with a {{block(ToolMagazine)}} or {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a tool storage location associated
+ with a {{block(ToolMagazine)}} or {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} that transforms electric energy from a source
+ to a secondary circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that transforms electric energy from a source
+ to a secondary circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that emits a type of radiation.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that emits a type of radiation.
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an enclosed container.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} generally composed of an enclosed container.
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures position.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures position.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of one or more cells in which
+ chemical energy is converted into electricity and used as a source of
+ power.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of one or more cells in which
+ chemical energy is converted into electricity and used as a source of
+ power.
+
+
+
+
+
+
+ leaf {{block(Component)}} that interrupts an electric circuit.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that interrupts an electric circuit.
+
+
+
+
+
+
+ leaf {{block(Component)}} that converts electrical, pneumatic, or
+ hydraulic energy into mechanical energy.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that converts electrical, pneumatic, or
+ hydraulic energy into mechanical energy.
+
+
+
+
+
+
+ leaf {{block(Component)}} that dispenses liquid or powered materials.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that dispenses liquid or powered materials.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electromechanical actuator that
+ produces deflection of a beam of light or energy in response to electric
+ current through its coil in a magnetic field.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an electromechanical actuator that
+ produces deflection of a beam of light or energy in response to electric
+ current through its coil in a magnetic field.
+
+
+
+
+
+
+ leaf {{block(Component)}} that raises, drives, exhausts, or compresses
+ fluids or gases by means of a piston, plunger, or set of rotating vanes.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that raises, drives, exhausts, or compresses
+ fluids or gases by means of a piston, plunger, or set of rotating vanes.
+
+
+
+
+
+
+ leaf {{block(Component)}} that strengthens, support, or fastens objects
+ in place.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that strengthens, support, or fastens objects
+ in place.
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures linear motion or position.
+ **DEPRECATION WARNING** : May be deprecated in the future. Recommend
+ using {{block(Encoder)}}.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} that measures linear motion or position.
+ **DEPRECATION WARNING** : May be deprecated in the future. Recommend
+ using {{block(Encoder)}}.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(Component)}} that provides information related to an individual
+ {{term(feature)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that provides information related to an individual
+ {{term(feature)}}.
+
+
+
+
+
+
+ system that circulates air or regulates airflow without altering
+ temperature or humidity.
+
+
+
+
+
+
+
+
+
+ system that circulates air or regulates airflow without altering
+ temperature or humidity.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Structure)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Structure)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Interface)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Interface)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Auxiliary)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Auxiliary)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(System)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(System)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Adapter)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Adapter)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Resource)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Resource)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Component
+ Types::Axis)}} types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Component
+ Types::Axis)}} types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Process)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Process)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Part)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Part)}}
+ types.
+
+
+
+
+
+
+ {{block(Resources)}} that {{termplural(organize)}} {{block(Material)}}
+ types.
+
+
+
+
+
+
+
+
+
+ {{block(Resources)}} that {{termplural(organize)}} {{block(Material)}}
+ types.
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Controller)}}
+ entities.
+
+
+
+
+
+
+
+
+
+ {{block(Component)}} that {{termplural(organize)}} {{block(Controller)}}
+ entities.
+
+
+
+
+
+
+ Compositions Model
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Extended tyoe for The vocab for the type of composition
+
+
+
+
+
+
+
+
+
+ The vocab for the type of composition
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that moves or
+ controls a mechanical part of a piece of equipment. It takes energy
+ usually provided by air, electric current, or liquid and converts
+ the energy into some kind of motion.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an electronic component or
+ circuit that amplifies power, electric current, or voltage.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanical structure that
+ transforms rotary motion into linear motion.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an endless flexible band that
+ transmits motion for a piece of equipment or conveys materials and
+ objects.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that slows down or
+ stops a moving object by the absorption or transfer of the energy of
+ momentum, usually by means of friction, electrical force, or
+ magnetic force.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an interconnected series of
+ objects that band together and transmit motion for a piece of
+ equipment or to convey materials and objects.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that breaks material
+ into smaller pieces.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that holds a part,
+ stock material, or any other item in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an inclined channel that conveys
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that interrupts an
+ electric circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that strengthens,
+ supports, or fastens objects in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a pump or other mechanism that
+ reduces volume and increases pressure of gases in order to condense
+ the gases to drive pneumatically powered pieces of equipment.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanical mechanism or closure
+ that covers a physical access portal into a piece of equipment
+ allowing or restricting access to other parts of the equipment.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that allows material
+ to flow for the purpose of drainage from, for example, a vessel or
+ tank.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that measures rotary
+ position.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that emits a type of
+ radiation.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that dispenses liquid
+ or powered materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that produces a
+ current of air.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a substance or structure that
+ allows liquids or gases to pass through to remove suspended
+ impurities or to recover solids.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an electromechanical actuator
+ that produces deflection of a beam of light or energy in response to
+ electric current through its coil in a magnetic field.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that holds a part,
+ stock material, or any other item in place.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a chamber or bin that stores
+ materials temporarily, typically being filled through the top and
+ dispensed through the bottom.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that measures linear
+ motion or position.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that converts
+ electrical, pneumatic, or hydraulic energy into mechanical energy.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a viscous liquid.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a unit that provides power to
+ electric mechanisms.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism or wheel that turns
+ in a frame or block and serves to change the direction of or to
+ transmit force.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an apparatus that raises, drives,
+ exhausts, or compresses fluids or gases by means of a piston,
+ plunger, or set of rotating vanes.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a rotary storage unit for
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that provides a
+ signal or measured value.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that flattens or
+ spreads materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of one or more cells that converts
+ chemical energy to electricity and serves as a source of power.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that turns on or off
+ an electric current or makes or breaks a circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a surface that holds an object or
+ material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a receptacle or container that
+ holds material.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that provides or
+ applies a stretch or strain to another mechanism.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that transforms
+ electric energy from a source to a secondary circuit.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that halts or
+ controls the flow of a liquid, gas, or other material through a
+ passage, pipe, inlet, or outlet.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a container for liquid or
+ powdered materials.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a fluid.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a string like piece or filament
+ of relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{block(Composition)}} composed of an object or material on which a
+ form of work is performed.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a heat exchange system that uses
+ a fluid to transfer heat to the atmosphere.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a tool storage location
+ associated with a {{block(ToolMagazine)}} or
+ {{block(AutomaticToolChanger)}}.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a storage or mounting location
+ for a tool associated with a {{block(Turret)}},
+ {{block(GangToolBar)}}, or {{block(ToolRack)}}.
+
+
+
+
+
+
+ {{block(Composition)}} composed of a mechanism that physically moves
+ a tool from one location to another.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool awaiting transfer from a
+ {{block(ToolMagazine)}} to {{term(spindle)}} or {{block(Turret)}}.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool removed from {{term(spindle)}} or
+ {{block(Turret)}} and awaiting for return to a
+ {{block(ToolMagazine)}}.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool awaiting transfer to a
+ {{block(ToolMagazine)}} or {{block(Turret)}} from outside of the
+ piece of equipment.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool to be removed from a
+ {{block(ToolMagazine)}} or {{block(Turret)}} to a location outside
+ of the piece of equipment.
+
+
+
+
+
+
+ {{block(Pot)}} for a tool that is no longer usable for removal from
+ a {{block(ToolMagazine)}} or {{block(Turret)}}.
+
+
+
+
+
+
+
+
+ The vocab for the type of composition
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ technical information about an entity describing its physical
+ layout, functional characteristics, and relationships with other
+ entities.
+
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The composition's universally unique id.
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The type of composition
+
+
+
+
+
+
+
+ A reference to an identifier
+
+
+
+
+
+
+
+ References Model
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ A reference to an id in the MTConnectDevices model
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ data type of Entry value
+
+
+
+
+
+
+
+ Abstract configuration
+
+
+
+
+
+
+ Abstract configuration
+
+
+
+
+
+
+ The configuration data associated with this component.
+
+
+
+
+
+
+
+
+
+ An entry for a configuration element with three dimensional values
+
+
+
+
+
+
+
+ the key
+
+
+
+
+
+
+
+
+
+ A Configuration element with three dimensional value for 'X Y
+ Z'
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+
+ A Configuration element with three dimensional value for 'A B
+ C'
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+
+ The time the calibration was preformed
+
+
+
+
+
+
+
+ The time the next calibration should be preformed
+
+
+
+
+
+
+
+ The initials of the person doing the calibration
+
+
+
+
+
+
+
+ The firmware version of this sensor
+
+
+
+
+
+
+
+ The channel number
+
+
+
+
+
+
+
+ See {{block(SensorConfiguration)}}.
+
+
+
+
+
+
+
+
+ Version number for the sensor unit as specified by the
+ manufacturer.
+
+
+
+
+
+
+ Date upon which the {{term(sensor unit)}} was last calibrated to
+ the {{term(sensor element)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor element)}} is next scheduled
+ to be calibrated with the {{term(sensor unit)}}.
+
+
+
+
+
+
+ The initials of the person verifying the validity of the
+ calibration data.
+
+
+
+
+
+
+ {{block(Channels)}} groups one or more {{block(Channel)}}
+ entities. See {{block(Channel)}}.
+
+
+
+
+
+
+
+
+
+
+ See {{block(SensorConfiguration)}}.
+
+
+
+
+
+
+ {{block(Channels)}} groups one or more {{block(Channel)}} entities. See
+ {{block(Channel)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor unit)}} was last calibrated to the
+ {{term(sensor element)}}.
+
+
+
+
+
+
+ Date upon which the {{term(sensor element)}} is next scheduled to be
+ calibrated with the {{term(sensor unit)}}.
+
+
+
+
+
+
+ The initials of the person verifying the validity of the calibration
+ data.
+
+
+
+
+
+
+
+ The channel id
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+
+ The peak value
+
+
+
+
+
+
+
+ {{block(Specifications)}} groups one or more {{block(Specification)}}
+ entities. See {{package(Specifications)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Specifications)}} groups one or more {{block(Specification)}}
+ entities. See {{package(Specifications)}}.
+
+
+
+
+
+
+ Extended tyoe for A reference to the creator of the Specification
+
+
+
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+ The manufacturer of a piece of equipment or component.
+
+
+
+
+
+
+ The owner or implementer of a piece of equipment or component.
+
+
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+
+ A specification
+
+
+
+
+
+ The identity of the Specificaiton
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ A reference to the creator of the Specification
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The optional data item identifier
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ The optional coordinate system identifier
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ A specification
+
+
+
+
+
+
+ design characteristics for a piece of equipment.
+
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may
+ be required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may
+ be required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+
+
+ design characteristics for a piece of equipment.
+
+
+
+
+
+
+ The limit of a constraint
+
+
+
+
+
+
+
+
+
+ The limit of a constraint
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate concern
+ or action may be required.
+
+
+
+
+
+
+ {{block(Specification)}} that provides information used to assess the
+ conformance of a variable to process requirements.
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+ {{block(Specification)}} that provides information used to assess the
+ conformance of a variable to process requirements.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ upper boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower boundary indicating increased concern and supervision may be
+ required.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ upper conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+ lower conformance boundary for a variable. > Note: immediate
+ concern or action may be required.
+
+
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+ The list of possible association types
+
+
+
+
+
+
+ The related entity is a parent
+
+
+
+
+
+
+ The related entity is a child
+
+
+
+
+
+
+ The related entity is a peer
+
+
+
+
+
+
+
+
+ device relationships
+
+
+
+
+
+
+ a system
+
+
+
+
+
+
+ an auxiliary
+
+
+
+
+
+
+
+
+ The criticality
+
+
+
+
+
+
+ critical
+
+
+
+
+
+
+ Not critical
+
+
+
+
+
+
+
+
+ A relationship between this component and something else
+
+
+
+
+
+ The relationship identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The assciation type
+
+
+
+
+
+
+ Criticality
+
+
+
+
+
+
+
+ A relationship between this component and something else
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two components within a piece of equipment that function
+ independently but together perform a capability or service within a
+ piece of equipment.
+
+
+
+
+
+
+
+ A reference to the device uuid
+
+
+
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two components within a piece of equipment that function
+ independently but together perform a capability or service within a
+ piece of equipment.
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two pieces of equipment that function independently but together
+ perform a manufacturing operation.
+
+
+
+
+
+
+
+ A reference to the device uuid
+
+
+
+
+
+
+ The type of relatiship
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ {{block(ConfigurationRelationship)}} that describes the association
+ between two pieces of equipment that function independently but together
+ perform a manufacturing operation.
+
+
+
+
+
+
+ The type of coordinate system
+
+
+
+
+
+
+ The world
+
+
+
+
+
+
+ The base of the manipulator chain
+
+
+
+
+
+
+ The object
+
+
+
+
+
+
+ The current task
+
+
+
+
+
+
+ The last joint in the chain
+
+
+
+
+
+
+ The tool's coord
+
+
+
+
+
+
+ The platform
+
+
+
+
+
+
+ For machine tools, the coordinate system in the work area
+
+
+
+
+
+
+ For machine tools, the coordinate system in the work area
+
+
+
+
+
+
+
+
+ {{block(CoordinateSystems)}} groups one or more
+ {{block(CoordinateSystem)}} entities. See
+ {{package(CoordinateSystems)}}.
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+ {{block(CoordinateSystems)}} groups one or more
+ {{block(CoordinateSystem)}} entities. See
+ {{package(CoordinateSystems)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+ The location (no parent) as DataSet
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ The coordinate system identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The optional name of the coordinate system
+
+
+
+
+
+
+ The parent of the coordinate system
+
+
+
+
+
+
+ The coordinate system type
+
+
+
+
+
+
+ uuid
+
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ An offset applied first
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ A quaternion transform applied second
+
+
+
+
+
+
+
+
+
+ The types of motion
+
+
+
+
+
+
+ Rotates around an axis with a fixed range of motion
+
+
+
+
+
+
+ Revolves around an axis with a continuous range of motion
+
+
+
+
+
+
+ Sliding linear motion along an axis with a fixed range of motion
+
+
+
+
+
+
+ The axis does not move.
+
+
+
+
+
+
+
+
+ The actuation of this component
+
+
+
+
+
+
+ The movement is initiated by the component.
+
+
+
+
+
+
+ The motion is computed and is used for expressing an imaginary
+ movement.
+
+
+
+
+
+
+ There is no actuation of this Axis.
+
+
+
+
+
+
+
+
+ The unit vector along which the motion occurs
+
+
+
+
+
+
+
+
+
+ The description of the motion
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ See {{sect(Motion)}}.
+
+
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+ The location (no parent)
+
+
+
+
+
+
+ See {{sect(Origin)}}.
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+
+ The axis motion
+
+
+
+
+
+
+ See {{sect(Axis)}}.
+
+
+
+
+
+
+
+
+ The coordinate system identifier
+
+
+
+
+
+
+ The parent of the coordinate system
+
+
+
+
+
+
+ The identifier of the coordinate system that this motion is
+ relative to
+
+
+
+
+
+
+ The motion type
+
+
+
+
+
+
+ The actuation method
+
+
+
+
+
+
+
+
+
+ See {{sect(Motion)}}.
+
+
+
+
+
+
+ A reference to another model
+
+
+
+
+
+
+
+ A reference to an item in a model
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ The unit vector to scale the model
+
+
+
+
+
+
+
+
+
+ See {{sect(SolidModel)}}.
+
+
+
+
+
+
+
+
+ See {{sect(Transformation)}}.
+
+
+
+
+
+
+
+ See {{sect(Scale)}}.
+
+
+
+
+
+
+ Scaling vector for the model
+
+
+
+
+
+
+
+
+ the unique identifier for this entity within the MTConnectDevices
+ document
+
+
+
+
+
+
+ The associated model file if an item reference is used
+
+
+
+
+
+
+ {{term(URL)}} giving the location of the image file.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The reference to the item within the model within the related
+ geometry. A modelIdRef MUST be given.
+
+
+
+
+
+
+ The format of the referenced document
+
+
+
+
+
+
+ The identifier of the coordinate system that this motion is
+ relative to
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+
+
+
+ See {{sect(SolidModel)}}.
+
+
+
+
+
+
+ Extended tyoe for Solid model media types
+
+
+
+
+
+
+
+
+
+ Solid model media types
+
+
+
+
+
+
+ ISO 10303 STEP AP203 or AP242 format
+
+
+
+
+
+
+ Stereolithography file format
+
+
+
+
+
+
+ Geometry Description Markup Language
+
+
+
+
+
+
+ Wavefront OBJ file format
+
+
+
+
+
+
+ ISO 17506
+
+
+
+
+
+
+ Initial Graphics Exchange Specification
+
+
+
+
+
+
+ Autodesk file format
+
+
+
+
+
+
+ Dassault file format
+
+
+
+
+
+
+ Parasolid XT Siemens data interchange format
+
+
+
+
+
+
+
+
+ Solid model media types
+
+
+
+
+
+
+
+ url of an image file
+
+
+
+
+
+
+
+ mime type
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(ImageFile)}}
+ entity.
+
+
+
+
+
+
+
+
+ reference to a file containing an image of the
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the {{block(ImageFile)}}
+ entity.
+
+
+
+
+
+
+ reference to a file containing an image of the {{block(Component)}}.
+
+
+
+
+
+
+
+ identifier
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ URL of image file
+
+
+
+
+
+
+ mime type of image file
+
+
+
+
+
+
+
+
+
+ The item's reference to the component
+
+
+
+
+
+
+
+ The name of the power source
+
+
+
+
+
+
+
+ The order of precedence for a given power source
+
+
+
+
+
+
+
+ The type of power source
+
+
+
+
+
+
+ main or principle
+
+
+
+
+
+
+ alternate or not primary
+
+
+
+
+
+
+ held near at hand and ready for use and is uninterruptible
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(PowerSource)}} entity. {: width="0.8"}
+
+
+
+
+
+
+
+
+ potential energy sources for the {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+ This section provides semantic information for the
+ {{block(PowerSource)}} entity. {: width="0.8"}
+
+
+
+
+
+
+ potential energy sources for the {{block(Component)}}.
+
+
+
+
+
+
+ optional precedence for a given power source
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST NOT**
+ be used in conjunction with any other {{block(Constraint)}}
+ elements.
+
+
+
+
+
+
+
+ type of power source
+
+
+
+
+
+
+ identifier
+
+
+
+
+
+
+ reference to component
+
+
+
+
+
+
+
+ The interval between adjacent sampleing of data
+
+
+
+
+
+
+
+ The frequency a measurement is sampled
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ The constrained value for this data item
+
+
+
+
+
+
+
+ An idref to the component id
+
+
+
+
+
+
+
+ An idref to the data item id
+
+
+
+
+
+
+
+ The item's reference to the data item or specificatiton
+
+
+
+
+
+
+
+ The name of a related component
+
+
+
+
+
+
+
+ The id reference for the coordinate system associated with this data
+ item
+
+
+
+
+
+
+
+ An discrete event
+
+
+
+
+
+
+
+ The description of a data item, can be free form text or elements
+
+
+
+
+
+
+ Any elements
+
+
+
+
+
+
+
+
+ The minimum limit on the change in a value
+
+
+
+
+
+
+
+ The measurement sampling type
+
+
+
+
+
+
+ An event represents a change in state occurs at a point in time.
+ Note: An event does not occur at predefined frequencies.
+
+
+
+
+
+
+ A sample is a data point for continuous data items, that is, the
+ value of a data item at a point in time.
+
+
+
+
+
+
+ The condition of the device
+
+
+
+
+
+
+
+
+ The multiplier for the native value. Conversion divides by this value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ series of sampled data. The data is reported for a specified number
+ of samples and each sample is reported with a fixed period.
+
+
+
+
+
+
+ measured value of the sample data. If no
+ {{property(DataItem::representation)}} is specified for a data item,
+ the {{property(DataItem::representation)}} **MUST** be determined to
+ be `VALUE`.
+
+
+
+
+
+
+ reported value(s) are represented as a set of {{termplural(key-value
+ pair)}}. Each reported value in the {{term(data set)}} **MUST** have
+ a unique key.
+
+
+
+
+
+
+ **DEPRECATED** as {{property(DataItem::representation)}} type in
+ *MTConnect Version 1.5*. Replaced by the
+ {{property(DataItem::discrete)}}.
+
+
+
+
+
+
+ two dimensional set of {{termplural(key-value pair)}} where the
+ {{block(Entry)}} represents a row, and the value is a set of
+ {{term(key-value pair)}} {{block(Cell)}} elements. A {{term(table)}}
+ follows the same behavior as the {{term(data set)}} for change
+ tracking, clearing, and history. When an {{block(Entry)}} changes,
+ all {{block(Cell)}} elements update as a single unit following the
+ behavior of a {{term(data set)}}. > Note: It is best to use
+ {{block(Variable)}} if the {{block(Cell)}} entities represent
+ multiple semantic types. Each {{block(Entry)}} in the
+ {{term(table)}} **MUST** have a unique key. Each {{block(Cell)}} of
+ each {{block(Entry)}} in the {{term(table)}} **MUST** have a unique
+ key. See {{block(Representation)}} in {{package(Observation
+ Information Model)}}, for a description of {{block(Entry)}} and
+ {{block(Cell)}} elements.
+
+
+
+
+
+
+
+
+ The type of filter
+
+
+
+
+
+
+ new value **MUST NOT** be reported for a data item unless the
+ measured value has changed from the last reported value by at least
+ the delta given as the value of this element. The value of
+ {{block(Filter)}} **MUST** be an absolute value using the same units
+ as the reported data.
+
+
+
+
+
+
+ data reported for a data item is provided on a periodic basis. The
+ `PERIOD` for reporting data is defined in the value of the
+ {{block(Filter)}}. The value of {{block(Filter)}} **MUST** be an
+ absolute value reported in seconds representing the time between
+ reported samples of the value of the data item.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+
+
+ information reported about a piece of equipment.
+
+
+
+
+
+
+ identifies the {{block(Component)}}, {{block(DataItem)}}, or
+ {{block(Composition)}} from which a measured value originates.
+
+
+
+
+
+
+ {{termplural(organize)}} a set of expected values that can be
+ reported for a {{block(DataItem)}}.
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ starting value for a {{block(DataItem)}} as well as the value to be
+ set for the {{block(DataItem)}} after a reset event.
+
+
+
+
+
+
+ type of event that may cause a reset to occur.
+
+
+
+
+
+
+ defines the meaning of {{block(Entry)}} and {{block(Cell)}} entities
+ when the associated {{property(DataItem::representation)}} is either
+ `DATA_SET` or `TABLE`.
+
+
+
+
+
+
+ {{block(Relationships)}} groups one or more
+ {{block(ConfigurationRelationship)}} types. See
+ {{package(Relationships)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ unique identifier for the power source.
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The units as expressed by the machine
+
+
+
+
+
+
+ The category of the data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The coordinate system reference to a particular coordinate system
+
+
+
+
+
+
+ The optional composition identifier
+
+
+
+
+
+
+ Used as the default sample rate for waveforms
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The number of significant digits for this data item
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ A set of limits for a data item
+
+
+
+
+
+
+
+
+ single data value that is expected to be reported for a
+ {{block(DataItem)}}. {{property(Constraints::Value)}} **MUST
+ NOT** be used in conjunction with any other
+ {{block(Constraint)}} elements.
+
+
+
+
+
+
+
+
+ numeric lower constraint.
+
+
+
+
+
+
+ numeric upper constraint.
+
+
+
+
+
+
+ numeric target or expected value.
+
+
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ {{block(Filters)}} groups one or more {{block(Filter)}} entities
+ associated with the {{block(DataItem)}}.
+
+
+
+
+
+
+ **DEPRECATED** in *MTConnect Version 1.4*. Moved to the
+ {{block(Filters)}}. See {{package(Properties of DataItem)}}.
+
+
+
+
+
+
+
+
+ A starting point for a data item
+
+
+
+
+
+
+
+
+
+ The value element
+
+
+
+
+
+
+
+
+
+ The filter for the data item
+
+
+
+
+
+
+
+ The type of filter, ABSOLUTE or PERCENT
+
+
+
+
+
+
+
+
+
+ A native data source
+
+
+
+
+
+
+
+ The optional data item within the source component that provides
+ the underlying data
+
+
+
+
+
+
+ The component that is collecting the data associated with this
+ data item
+
+
+
+
+
+
+ The optional composition identifier for the source of this data
+ item
+
+
+
+
+
+
+
+
+
+ The DataItem Definition
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+ {{block(EntryDefinitions)}} groups one or more
+ {{block(EntryDefinition)}} entities. See {{sect(EntryDefinition)}}.
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+ unique key
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The type of measurement
+
+
+
+
+
+
+ The sub type for the measurement
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device
+ Information Model)}}.
+
+
+
+
+
+
+
+ semantic definition of an {{block(Entry)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more
+ {{block(CellDefinition)}} entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+
+
+
+ {{block(CellDefinitions)}} groups one or more {{block(CellDefinition)}}
+ entities. See {{sect(CellDefinition)}}.
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+
+
+ semantic definition of a {{block(Cell)}}.
+
+
+
+
+
+
+ See {{sect(Description)}}.
+
+
+
+
+
+
+
+
+
+ Organizes DataItemRelationship and SpecificationRelationship
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ A reference to the related DataItem id.
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ A reference to a DataItem that associates the values with an
+ external entity
+
+
+
+
+
+
+ The referenced DataItem provides the id of the effective Coordinate
+ System
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+ The referenced DataItem provides the observed values.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(DataItem)}} described by
+ {{property(DataItemRelationship::type)}}.
+
+
+
+
+
+
+ How the data items are related
+
+
+
+
+
+
+ The referenced DataItem provides process limits.
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+
+
+
+ {{block(AbstractDataItemRelationship)}} that provides a semantic
+ reference to another {{block(Specification)}} described by
+ {{property(SpecificationRelationship::type)}} and
+ {{property(SpecificationRelationship::idRef)}}.
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectError_2.5.xsd b/schemas/MTConnectError_2.5.xsd
new file mode 100644
index 000000000..de131d2a5
--- /dev/null
+++ b/schemas/MTConnectError_2.5.xsd
@@ -0,0 +1,4667 @@
+
+
+
+
+
+
+ root entity of an {{term(MTConnectErrors Response Document)}} that
+ contains the {{term(Error Information Model)}}.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectError)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectErrors Response Document)}} that
+ contains the {{term(Error Information Model)}}.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectError)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+ {{block(Errors)}} groups one or more {{block(Error)}} entities.
+ See {{sect(Error)}}. > Note: When compatibility with Version
+ 1.0.1 and earlier of the MTConnect Standard is required for an
+ implementation, the {{term(MTConnectErrors Response Document)}}
+ contains only a single {{block(Error)}} entity and the
+ {{block(Errors)}} entity **MUST NOT** appear in the document.
+
+
+
+
+
+
+
+
+
+ {{block(Errors)}} groups one or more {{block(Error)}} entities. See
+ {{sect(Error)}}. > Note: When compatibility with Version 1.0.1 and
+ earlier of the MTConnect Standard is required for an implementation, the
+ {{term(MTConnectErrors Response Document)}} contains only a single
+ {{block(Error)}} entity and the {{block(Errors)}} entity **MUST NOT**
+ appear in the document.
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+
+
+ The text description of the error
+
+
+
+
+
+
+
+ The error code
+
+
+
+
+
+
+ The request did not have sufficient permissions to perform the
+ request.
+
+
+
+
+
+
+ The device specified in the URI could not be found.
+
+
+
+
+
+
+ The sequence number was beyond the end of the buffer.
+
+
+
+
+
+
+ The count given is too large.
+
+
+
+
+
+
+ The URI provided was incorrect.
+
+
+
+
+
+
+ The request was not one of the three specified requests.
+
+
+
+
+
+
+ Contact the software provider, the agent did not behave correctly.
+
+
+
+
+
+
+ The xpath could not be parsed. Invalid syntax.
+
+
+
+
+
+
+ The request is not supported by this implementation
+
+
+
+
+
+
+ The asset ID cannot be found
+
+
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+
+ The error code
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectError_2.5_1.0.xsd b/schemas/MTConnectError_2.5_1.0.xsd
new file mode 100644
index 000000000..0f659c0a7
--- /dev/null
+++ b/schemas/MTConnectError_2.5_1.0.xsd
@@ -0,0 +1,4667 @@
+
+
+
+
+
+
+ root entity of an {{term(MTConnectErrors Response Document)}} that
+ contains the {{term(Error Information Model)}}.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectError)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectErrors Response Document)}} that
+ contains the {{term(Error Information Model)}}.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectError)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+ {{block(Errors)}} groups one or more {{block(Error)}} entities.
+ See {{sect(Error)}}. > Note: When compatibility with Version
+ 1.0.1 and earlier of the MTConnect Standard is required for an
+ implementation, the {{term(MTConnectErrors Response Document)}}
+ contains only a single {{block(Error)}} entity and the
+ {{block(Errors)}} entity **MUST NOT** appear in the document.
+
+
+
+
+
+
+
+
+
+ {{block(Errors)}} groups one or more {{block(Error)}} entities. See
+ {{sect(Error)}}. > Note: When compatibility with Version 1.0.1 and
+ earlier of the MTConnect Standard is required for an implementation, the
+ {{term(MTConnectErrors Response Document)}} contains only a single
+ {{block(Error)}} entity and the {{block(Errors)}} entity **MUST NOT**
+ appear in the document.
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+
+
+ The text description of the error
+
+
+
+
+
+
+
+ The error code
+
+
+
+
+
+
+ The request did not have sufficient permissions to perform the
+ request.
+
+
+
+
+
+
+ The device specified in the URI could not be found.
+
+
+
+
+
+
+ The sequence number was beyond the end of the buffer.
+
+
+
+
+
+
+ The count given is too large.
+
+
+
+
+
+
+ The URI provided was incorrect.
+
+
+
+
+
+
+ The request was not one of the three specified requests.
+
+
+
+
+
+
+ Contact the software provider, the agent did not behave correctly.
+
+
+
+
+
+
+ The xpath could not be parsed. Invalid syntax.
+
+
+
+
+
+
+ The request is not supported by this implementation
+
+
+
+
+
+
+ The asset ID cannot be found
+
+
+
+
+
+
+
+
+ error encountered by an {{term(agent)}} when responding to a
+ {{term(request)}}.
+
+
+
+
+
+
+
+ The error code
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectStreams_2.5.xsd b/schemas/MTConnectStreams_2.5.xsd
new file mode 100644
index 000000000..8fc89d234
--- /dev/null
+++ b/schemas/MTConnectStreams_2.5.xsd
@@ -0,0 +1,46228 @@
+
+
+
+
+
+
+ root entity of an {{term(MTConnectStreams Response Document)}} that
+ contains the {{term(Observation Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectStreams)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ The station id for this device
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+ The next sequence number for subsequent requests
+
+
+
+
+
+
+ The last sequence number available from the agent
+
+
+
+
+
+
+ The first sequence number available from the agent
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the
+ normative model.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectStreams Response Document)}} that
+ contains the {{term(Observation Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectStreams)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}}
+ entities. See {{package(Observation Information Model)}} for more
+ detail.
+
+
+
+
+
+
+
+
+ An events data
+
+
+
+
+
+
+
+ The item's unique ID that references the data item id from probe
+
+
+
+
+
+
+
+ An Condition code as defined by the component
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with the
+ normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+ observation is not valid against the MTConnect Standard according to
+ the validation capabilities of the MTConnect Agent.
+
+
+
+
+
+
+ observation cannot be validated.
+
+
+
+
+
+
+ observation is valid against the MTConnect Standard.
+
+
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}} entities.
+ See {{package(Observation Information Model)}} for more detail.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}}
+ for the {{block(ComponentStream)}} model. > Note 1 to entry: In
+ the {{term(XML)}} representation, {{block(ComponentStream)}}
+ entities **MUST NOT** appear in the {{term(MTConnectDevices Response
+ Document)}}. > Note 2 to entry: In the {{term(XML)}}
+ representation, {{block(ComponentStream)}} entities **MUST** appear
+ only in the {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unque identifier for this device
+
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}} for
+ the {{block(ComponentStream)}} model. > Note 1 to entry: In the
+ {{term(XML)}} representation, {{block(ComponentStream)}} entities **MUST
+ NOT** appear in the {{term(MTConnectDevices Response Document)}}. >
+ Note 2 to entry: In the {{term(XML)}} representation,
+ {{block(ComponentStream)}} entities **MUST** appear only in the
+ {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities.
+ See {{sect(Sample)}}.
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The unque identifier for this component
+
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities. See
+ {{sect(Sample)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+
+
+
+ A collection of conditions
+
+
+
+
+
+
+
+
+
+ The observation value for indeterminent data
+
+
+
+
+
+
+ Data is unavailable
+
+
+
+
+
+
+
+
+
+ The events sequence number
+
+
+
+
+
+
+ The event subtype corresponding to the measurement subtype
+
+
+
+
+
+
+ The time the event occurred or recorded
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unique identifier of the item being produced
+
+
+
+
+
+
+ The identifier of the sub-element this result is in reference to
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with
+ the normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+
+ The target rate a value can be sampled
+
+
+
+
+
+
+
+ The number of items in the list
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The rate the waveform was sampled at, default back to the value given
+ in the data item
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ The number of seconds since the reset of the statistic
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+
+ The number of samples
+
+
+
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ String event value
+
+
+
+
+
+
+
+ DateTime String event value
+
+
+
+
+
+
+
+ A list of axis names
+
+
+
+
+
+
+
+
+
+
+
+ A list of axis for an event
+
+
+
+
+
+
+
+ Common floating point event value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Controlled vocabulary for ActuatorState
+
+
+
+
+
+
+ {{block(Actuator)}} is operating.
+
+
+
+
+
+
+ {{block(Actuator)}} is not operating.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Controlled vocabulary for Availability
+
+
+
+
+
+
+ data source is active and capable of providing data.
+
+
+
+
+
+
+ data source is either inactive or not capable of providing data.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisCoupling
+
+
+
+
+
+
+ axes are physically connected to each other and operate as a single
+ unit.
+
+
+
+
+
+
+ axes are not physically connected to each other but are operating
+ together in lockstep.
+
+
+
+
+
+
+ axis is the master of the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ axis is a slave to the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisInterlock
+
+
+
+
+
+
+ axis lockout function is activated, power has been removed from the
+ axis, and the axis is allowed to move freely.
+
+
+
+
+
+
+ axis lockout function has not been activated, the axis may be
+ powered, and the axis is capable of being controlled by another
+ component.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisState
+
+
+
+
+
+
+ axis is in its home position.
+
+
+
+
+
+
+ axis is in motion.
+
+
+
+
+
+
+ axis has been moved to a fixed position and is being maintained in
+ that position either electrically or mechanically. Action is
+ required to release the axis from this position.
+
+
+
+
+
+
+ axis is stopped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckInterlock
+
+
+
+
+
+
+ chuck cannot be unclamped.
+
+
+
+
+
+
+ chuck can be unclamped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckState
+
+
+
+
+
+
+ {{block(Chuck)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerMode
+
+
+
+
+
+
+ {{block(Controller)}} is configured to automatically execute a
+ program.
+
+
+
+
+
+
+ {{block(Controller)}} is not executing an active program. It is
+ capable of receiving instructions from an external source –
+ typically an operator. The {{block(Controller)}} executes operations
+ based on the instructions received from the external source.
+
+
+
+
+
+
+ operator can enter a series of operations for the
+ {{block(Controller)}} to perform. The {{block(Controller)}} will
+ execute this specific series of operations and then stop.
+
+
+
+
+
+
+ {{block(Controller)}} is operating in a mode that restricts the
+ active program from processing its next process step without
+ operator intervention.
+
+
+
+
+
+
+ {{block(Controller)}} is currently functioning as a programming
+ device and is not capable of executing an active program.
+
+
+
+
+
+
+ axes of the device are commanded to stop, but the spindle continues
+ to function.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerModeOverride
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `ON` state and the mode
+ override is active.
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `OFF` state and the mode
+ override is inactive.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Controlled vocabulary for Direction
+
+
+
+
+
+
+ clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+ counter-clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for DoorState
+
+
+
+
+
+
+ {{block(Door)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for EmergencyStop
+
+
+
+
+
+
+ emergency stop circuit is complete and the piece of equipment,
+ component, or composition is allowed to operate.
+
+
+
+
+
+
+ operation of the piece of equipment, component, or composition is
+ inhibited.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Controlled vocabulary for EndOfBar
+
+
+
+
+
+
+ {{block(EndOfBar)}} has been reached.
+
+
+
+
+
+
+ {{block(EndOfBar)}} has not been reached.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Controlled vocabulary for EquipmentMode
+
+
+
+
+
+
+ equipment is functioning in the mode designated by the `subType`.
+
+
+
+
+
+
+ equipment is not functioning in the mode designated by the
+ `subType`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for Execution
+
+
+
+
+
+
+ {{block(Component)}} is ready to execute instructions. It is
+ currently idle.
+
+
+
+
+
+
+ {{block(Component)}} is actively executing an instruction.
+
+
+
+
+
+
+ {{block(Component)}} suspends the execution of the program due to an
+ external signal. Action is required to resume execution.
+
+
+
+
+
+
+ motion of the active axes are commanded to stop at their current
+ position.
+
+
+
+
+
+
+ {{block(Component)}} program is not `READY` to execute.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ The {{block(Component)}} **MAY** have another state that indicates
+ if the execution is interrupted or the execution ignores the
+ interrupt instruction.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ Action is required to resume execution.
+
+
+
+
+
+
+ program completed execution.
+
+
+
+
+
+
+ {{block(Component)}} suspends execution while a secondary operation
+ executes. Execution resumes automatically once the secondary
+ operation completes.
+
+
+
+
+
+
+ program has been intentionally optionally stopped using an M01 or
+ similar code. **DEPRECATED** in *version 1.4* and replaced with
+ `OPTIONAL_STOP`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for FunctionalMode
+
+
+
+
+
+
+ {{block(Component)}} is currently producing product, ready to
+ produce product, or its current intended use is to be producing
+ product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is being
+ prepared or modified to begin production of product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. Typically,
+ it has completed the production of a product and is being modified
+ or returned to a neutral state such that it may then be prepared to
+ begin production of a different product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is
+ currently being repaired, waiting to be repaired, or has not yet
+ been returned to a normal production status after maintenance has
+ been performed.
+
+
+
+
+
+
+ {{block(Component)}} is being used to prove-out a new process,
+ testing of equipment or processes, or any other active use that does
+ not result in the production of product.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartDetect
+
+
+
+
+
+
+ part or work piece is detected or is present.
+
+
+
+
+
+
+ part or work piece is not detected or is not present.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PathMode
+
+
+
+
+
+
+ path is operating independently and without the influence of another
+ path.
+
+
+
+
+
+
+ path provides information or state values that influences the
+ operation of other {{block(DataItem)}} of similar type.
+
+
+
+
+
+
+ physical or logical parts which are not physically connected to each
+ other but are operating together.
+
+
+
+
+
+
+ axes associated with the path are mirroring the motion of the
+ `MASTER` path.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerState
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is present and
+ active.
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is not present
+ or is disconnected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerStatus
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramEdit
+
+
+
+
+
+
+ {{block(Controller)}} is in the program edit mode.
+
+
+
+
+
+
+ {{block(Controller)}} is capable of entering the program edit mode
+ and no function is inhibiting a change to that mode.
+
+
+
+
+
+
+ {{block(Controller)}} is being inhibited by a function from entering
+ the program edit mode.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramLocationType
+
+
+
+
+
+
+ managed by the controller.
+
+
+
+
+
+
+ not managed by the controller.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Controlled vocabulary for RotaryMode
+
+
+
+
+
+
+ axis is functioning as a spindle.
+
+
+
+
+
+
+ axis is configured to index.
+
+
+
+
+
+
+ position of the axis is being interpolated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Controlled vocabulary for SpindleInterlock
+
+
+
+
+
+
+ power has been removed and the spindle cannot be operated.
+
+
+
+
+
+
+ spindle has not been deactivated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Controlled vocabulary for WaitState
+
+
+
+
+
+
+ execution is waiting while the equipment is powering up and is not
+ currently available to begin producing parts or products.
+
+
+
+
+
+
+ execution is waiting while the equipment is powering down but has
+ not fully reached a stopped state.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ loaded.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ unloaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being loaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being unloaded.
+
+
+
+
+
+
+ execution is waiting while material is being loaded.
+
+
+
+
+
+
+ execution is waiting while material is being unloaded.
+
+
+
+
+
+
+ execution is waiting while another process is completed before the
+ execution can resume.
+
+
+
+
+
+
+ execution is waiting while the equipment is pausing but the piece of
+ equipment has not yet reached a fully paused state.
+
+
+
+
+
+
+ execution is waiting while the equipment is resuming the production
+ cycle but has not yet resumed execution.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartStatus
+
+
+
+
+
+
+ part conforms to given requirements.
+
+
+
+
+
+
+ part does not conform to some given requirements.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ConnectionStatus
+
+
+
+
+
+
+ no connection at all.
+
+
+
+
+
+
+ {{term(agent)}} is waiting for a connection request from an
+ {{term(adapter)}}.
+
+
+
+
+
+
+ open connection. The normal state for the data transfer phase of the
+ connection.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartProcessingState
+
+
+
+
+
+
+ part occurrence is not actively being processed, but the processing
+ has not ended. Processing requirements exist that have not yet been
+ fulfilled. This is the default entry state when the part occurrence
+ is originally received. In some cases, the part occurrence may
+ return to this state while it waits for additional processing to be
+ performed.
+
+
+
+
+
+
+ part occurrence is actively being processed.
+
+
+
+
+
+
+ part occurrence is no longer being processed. A general state when
+ the reason for termination is unknown.
+
+
+
+
+
+
+ part occurrence has completed processing successfully.
+
+
+
+
+
+
+ process has been stopped during the processing. The part occurrence
+ will require special treatment.
+
+
+
+
+
+
+ processing of the part occurrence has come to a premature end.
+
+
+
+
+
+
+ terminal state when the part occurrence has been removed from the
+ equipment by an external entity and it no longer exists at the
+ equipment.
+
+
+
+
+
+
+ part occurrence has been skipped for processing on the piece of
+ equipment.
+
+
+
+
+
+
+ part occurrence has been processed completely. However, the
+ processing may have a problem.
+
+
+
+
+
+
+ part occurrence is waiting for transit.
+
+
+
+
+
+
+ part occurrence is being transported to its destination.
+
+
+
+
+
+
+ part occurrence has been placed at its designated destination.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProcessState
+
+
+
+
+
+
+ device is preparing to execute the process occurrence.
+
+
+
+
+
+
+ process occurrence is ready to be executed.
+
+
+
+
+
+
+ process occurrence is actively executing.
+
+
+
+
+
+
+ process occurrence is now finished.
+
+
+
+
+
+
+ process occurrence has been stopped and may be resumed.
+
+
+
+
+
+
+ process occurrence has come to a premature end and cannot be
+ resumed.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ValveState
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is allowed and the aperture is
+ static. > Note: For a binary value, `OPEN` indicates the valve
+ has the maximum possible aperture.
+
+
+
+
+
+
+ valve is transitioning from a `CLOSED` state to an `OPEN` state.
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is not possible, the aperture is
+ static, and the valve is completely shut.
+
+
+
+
+
+
+ valve is transitioning from an `OPEN` state to a `CLOSED` state.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for LockState
+
+
+
+
+
+
+ mechanism is engaged and preventing the associated
+ {{block(Component)}} from being opened or operated.
+
+
+
+
+
+
+ mechanism is disengaged and the associated {{block(Component)}} is
+ able to be opened or operated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for OperatingMode
+
+
+
+
+
+
+ automatically execute instructions from a recipe or program. >
+ Note: Setpoint comes from a recipe.
+
+
+
+
+
+
+ execute instructions from an external agent or person. > Note 1
+ to entry: Valve or switch is manipulated by an agent/person. >
+ Note 2 to entry: Direct control of the PID output. % of the range: A
+ user manually sets the % output, not the setpoint.
+
+
+
+
+
+
+ executes a single instruction from a recipe or program. > Note 1
+ to entry: Setpoint is entered and fixed, but the PID is controlling.
+ > Note 2 to entry: Still goes through the PID control system.
+ > Note 3 to entry: Manual fixed entry from a recipe.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartCountType
+
+
+
+
+
+
+ count is of individual items.
+
+
+
+
+
+
+ pre-specified group of items.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Controlled vocabulary for LeakDetect
+
+
+
+
+
+
+ leak is currently being detected.
+
+
+
+
+
+
+ leak is currently not being detected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Controlled vocabulary for BatteryState
+
+
+
+
+
+
+ {{block(Component)}} is at it's maximum rated charge level.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is increasing.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is decreasing.
+
+
+
+
+
+
+ {{block(Component)}} is at it's minimum charge level.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Controlled vocabulary for CharacteristicStatus
+
+
+
+
+
+
+ measurement is within acceptable tolerances.
+
+
+
+
+
+
+ measurement is not within acceptable tolerances.
+
+
+
+
+
+
+ failed, but acceptable constraints achievable by utilizing
+ additional manufacturing processes.
+
+
+
+
+
+
+ measurement is indeterminate due to an equipment failure.
+
+
+
+
+
+
+ measurement cannot be determined.
+
+
+
+
+
+
+ measurement cannot be evaluated.
+
+
+
+
+
+
+ nominal provided without tolerance limits. {{cite(QIF 3:2018
+ 5.10.2.6)}}
+
+
+
+
+
+
+ status of measurement cannot be determined.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Controlled vocabulary for UncertaintyType
+
+
+
+
+
+
+ {{term(combined standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(standard uncertainty)}} using arithmetic mean or average the
+ observations. {{cite(JCGM 100:2008 4.2)}}
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for InterfaceState
+
+
+
+
+
+
+ {{block(Interface)}} is currently operational and performing as
+ expected.
+
+
+
+
+
+
+ {{block(Interface)}} is currently not operational.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+ the key
+
+
+
+
+
+
+ an indicatore that the entry has been removed
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ A cell of a table
+
+
+
+
+
+ the key
+
+
+
+
+
+
+
+ A cell of a table
+
+
+
+
+
+
+ {{term(key-value pair)}} published as part of a {{block(Table)}}. >
+ Note: In the {{term(XML)}} representation, {{block(TableEntry)}}
+ **MUST** appear as {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{term(key-value pair)}} published as part of a {{block(Table)}}. >
+ Note: In the {{term(XML)}} representation, {{block(TableEntry)}}
+ **MUST** appear as {{block(Entry)}}.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{block(Resource)}} composed of material that is consumed
+ or used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{block(Resource)}} composed of material that is consumed
+ or used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Cell of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Table of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial
+ value is not defined, the nesting level associated with the highest or
+ initial nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial
+ value is not defined, the nesting level associated with the highest or
+ initial nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Table of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Table Entry of leaf {{block(Component)}} composed of a string like piece
+ or filament of relatively rigid or flexible material provided in a
+ variety of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of leaf {{block(Component)}} composed of a string like piece
+ or filament of relatively rigid or flexible material provided in a
+ variety of diameters.
+
+
+
+
+
+
+ Cell of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ Table of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Table Entry of rotations about X, Y, and Z axes are expressed in A, B,
+ and C respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of rotations about X, Y, and Z axes are expressed in A, B,
+ and C respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Cell of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table Entry of translations along X, Y, and Z axes are expressed as x,y,
+ and z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of translations along X, Y, and Z axes are expressed as x,y,
+ and z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Cell of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Table of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Cell of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Table of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Cell of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Table of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Table Entry of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Table Entry of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Table Entry of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Table Entry of Example
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of Example
+
+
+
+
+
+
+ Cell of Example
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of Example
+
+
+
+
+
+
+ Table of Example
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of Example
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Table Entry of Description
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of Description
+
+
+
+
+
+
+ Cell of Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of Description
+
+
+
+
+
+
+ Table of Description
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of Description
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table Entry of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Cell of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Table of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ The description of the Condition
+
+
+
+
+
+
+
+ The device's severity
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a piece of
+ equipment
+
+
+
+
+
+
+
+ A qualifier for the condition
+
+
+
+
+
+
+ The value is too high
+
+
+
+
+
+
+ The value is too low
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ An optional attribute that helps qualify the condition
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a
+ piece of equipment
+
+
+
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+ DEPRECATED: An Notifcation code as defined by the component
+
+
+
+
+
+
+
+ DEPRECATED: Types of Notifcations
+
+
+
+
+
+
+ A failure
+
+
+
+
+
+
+ A fault occurred
+
+
+
+
+
+
+ A spindle crash
+
+
+
+
+
+
+ A component has jammed
+
+
+
+
+
+
+ The component has been overloaded
+
+
+
+
+
+
+ E-Stop was pushed
+
+
+
+
+
+
+ A material failure has occurred
+
+
+
+
+
+
+ An operators message. Used with INFO severity
+
+
+
+
+
+
+ Another Notifcation type
+
+
+
+
+
+
+
+
+ DEPRECATED: The active or cleared state of the notification
+
+
+
+
+
+
+ The notification is active
+
+
+
+
+
+
+ The notification has been cleared
+
+
+
+
+
+
+
+
+ level of severity on a scale of 1-10.
+
+
+
+
+
+
+ The notification is critical
+
+
+
+
+
+
+ An error has occurred
+
+
+
+
+
+
+ A medium level notification that should be observed
+
+
+
+
+
+
+ This notification is for information purposes only
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM)}}
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ level of severity on a scale of 1-10.
+
+
+
+
+
+
+ The state
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM)}}
+
+
+
+
+
+
+ The possible values for an interface event
+
+
+
+
+
+
+ The value is unavailable
+
+
+
+
+
+
+ The interface is not ready
+
+
+
+
+
+
+ The interface is ready
+
+
+
+
+
+
+ The interface is actively executing
+
+
+
+
+
+
+ The interface has completed the action
+
+
+
+
+
+
+ The interface action has failed
+
+
+
+
+
+
+
+
+ An abstract interface event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An abstract interface event
+
+
+
+
+
+
+ The state of the interface
+
+
+
+
+
+
+ The value is unavailable
+
+
+
+
+
+
+ The interface is enabled
+
+
+
+
+
+
+ The interface is disabled
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/MTConnectStreams_2.5_1.0.xsd b/schemas/MTConnectStreams_2.5_1.0.xsd
new file mode 100644
index 000000000..ceb4b0d21
--- /dev/null
+++ b/schemas/MTConnectStreams_2.5_1.0.xsd
@@ -0,0 +1,46228 @@
+
+
+
+
+
+
+ root entity of an {{term(MTConnectStreams Response Document)}} that
+ contains the {{term(Observation Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectStreams)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+
+ The date and time the document was created
+
+
+
+
+
+
+
+ A sequence number
+
+
+
+
+
+
+
+
+
+
+ A debugging flag for testing.
+
+
+
+
+
+
+
+ The instance number of the agent, used for fault tolerance
+
+
+
+
+
+
+
+
+
+
+ The size of the agents buffer
+
+
+
+
+
+
+
+
+
+
+ The time the sample was reported
+
+
+
+
+
+
+
+ The time a sample occurred
+
+
+
+
+
+
+
+ A version number
+
+
+
+
+
+
+
+ A short name for any element
+
+
+
+
+
+
+
+ A universally unique id that uniquely identifies the element for
+ it's entire life
+
+
+
+
+
+
+
+ A serial number for a piece of equipment
+
+
+
+
+
+
+
+ The measurement source
+
+
+
+
+
+
+
+ A sample rate in milliseconds per sample
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+
+ An identifier
+
+
+
+
+
+
+
+ The number significant digits
+
+
+
+
+
+
+
+ The item's reference to the Device model composition
+
+
+
+
+
+
+
+ A length of time in seconds
+
+
+
+
+
+
+
+ A flag indicating the item has been removed
+
+
+
+
+
+
+
+ The key for adata set
+
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device information
+ for any device
+
+
+
+
+
+
+
+ The unique id of the asset
+
+
+
+
+
+
+
+ An asset type
+
+
+
+
+
+
+
+ The maximum number of assets
+
+
+
+
+
+
+
+
+
+
+ The number of assets
+
+
+
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+ The limit of a value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+
+
+
+
+ A three dimensional value 'X Y Z' or 'A B C'
+
+
+
+
+
+
+
+
+
+
+ A description
+
+
+
+
+
+
+
+ Extended tyoe for The types of measurements available
+
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+ positive rate of change of velocity.
+
+
+
+
+
+
+ accumulated time for an activity or event.
+
+
+
+
+
+
+ strength of electrical current. **DEPRECATED** in *Version 1.6*.
+ Replaced by `AMPERAGE_AC` and `AMPERAGE_DC`.
+
+
+
+
+
+
+ angular position.
+
+
+
+
+
+
+ positive rate of change of angular velocity.
+
+
+
+
+
+
+ rate of change of angular position.
+
+
+
+
+
+
+ feedrate of a linear axis.
+
+
+
+
+
+
+ fluid capacity of an object or container.
+
+
+
+
+
+
+ geometric capacity of an object or container.
+
+
+
+
+
+
+ percentage of one component within a mixture of components.
+
+
+
+
+
+
+ ability of a material to conduct electricity.
+
+
+
+
+
+
+ speed difference (relative velocity) between the cutting mechanism
+ and the surface of the workpiece it is operating on.
+
+
+
+
+
+
+ volumetric mass of a material per unit volume of that material.
+
+
+
+
+
+
+ rate of change in spatial volume of material deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ density of the material deposited in an additive manufacturing
+ process per unit of volume.
+
+
+
+
+
+
+ mass of the material deposited in an additive manufacturing process.
+
+
+
+
+
+
+ rate at which a spatial volume of material is deposited in an
+ additive manufacturing process.
+
+
+
+
+
+
+ spatial volume of material to be deposited in an additive
+ manufacturing process.
+
+
+
+
+
+
+ change in position of an object.
+
+
+
+
+
+
+ {{block(Wattage)}} used or generated by a component over an interval
+ of time.
+
+
+
+
+
+
+ amount of time a piece of equipment or a sub-part of a piece of
+ equipment has performed specific activities.
+
+
+
+
+
+
+ amount of a substance remaining compared to the planned maximum
+ amount of that substance.
+
+
+
+
+
+
+ rate of flow of a fluid.
+
+
+
+
+
+
+ number of occurrences of a repeating event per unit time.
+
+
+
+
+
+
+ position in three-dimensional space. **DEPRECATED** in Version 1.1.
+
+
+
+
+
+
+ length of an object.
+
+
+
+
+
+
+ level of a resource. **DEPRECATED** in *Version 1.2*. See
+ `FILL_LEVEL`.
+
+
+
+
+
+
+ {{term(force)}} applied to a mass in one direction only.
+
+
+
+
+
+
+ actual versus the standard rating of a piece of equipment.
+
+
+
+
+
+
+ mass of an object(s) or an amount of material.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis, associated with a
+ {{block(Path)}} component.
+
+
+
+
+
+
+ feedrate for the axes, or a single axis.
+
+
+
+
+
+
+ position of a control point associated with a {{block(Controller)}}
+ or a {{block(Path)}}.
+
+
+
+
+
+
+ acidity or alkalinity of a solution.
+
+
+
+
+
+
+ point along an axis in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ ratio of real power flowing to a load to the apparent power in that
+ AC circuit.
+
+
+
+
+
+
+ force per unit area measured relative to atmospheric pressure.
+ Commonly referred to as gauge pressure.
+
+
+
+
+
+
+ amount of time a piece of equipment has performed different types of
+ activities associated with the process being performed at that piece
+ of equipment.
+
+
+
+
+
+
+ degree to which a substance opposes the passage of an electric
+ current.
+
+
+
+
+
+
+ rotational speed of a rotary axis.
+
+
+
+
+
+
+ sound level or sound pressure level relative to atmospheric
+ pressure.
+
+
+
+
+
+
+ rotational speed of the rotary axis. **DEPRECATED** in *Version
+ 1.2*. Replaced by `ROTARY_VELOCITY`.
+
+
+
+
+
+
+ amount of deformation per unit length of an object when a load is
+ applied.
+
+
+
+
+
+
+ degree of hotness or coldness measured on a definite scale.
+
+
+
+
+
+
+ force that stretches or elongates an object.
+
+
+
+
+
+
+ angular displacement.
+
+
+
+
+
+
+ turning force exerted on an object or by an object.
+
+
+
+
+
+
+ rate of change of position of a {{block(Component)}}.
+
+
+
+
+
+
+ fluid's resistance to flow.
+
+
+
+
+
+
+ electrical potential between two points. **DEPRECATED** in *Version
+ 1.6*. Replaced by `VOLTAGE_AC` and `VOLTAGE_DC`.
+
+
+
+
+
+
+ apparent power in an electrical circuit, equal to the product of
+ root-mean-square (RMS) voltage and RMS current (commonly referred to
+ as VA).
+
+
+
+
+
+
+ reactive power in an AC electrical circuit (commonly referred to as
+ VAR).
+
+
+
+
+
+
+ fluid volume of an object or container.
+
+
+
+
+
+
+ geometric volume of an object or container.
+
+
+
+
+
+
+ power flowing through or dissipated by an electrical circuit or
+ piece of equipment.
+
+
+
+
+
+
+ electrical current that reverses direction at regular short
+ intervals.
+
+
+
+
+
+
+ electric current flowing in one direction only.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current periodically reverses direction.
+
+
+
+
+
+
+ electrical potential between two points in an electrical circuit in
+ which the current is unidirectional.
+
+
+
+
+
+
+ dimension of an entity relative to the X direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Y direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of an entity relative to the Z direction of the referenced
+ coordinate system.
+
+
+
+
+
+
+ dimension of a diameter.
+
+
+
+
+
+
+ angular position of a plane or vector relative to a {{term(cartesian
+ coordinate system)}}
+
+
+
+
+
+
+ amount of water vapor present expressed as a percent to reach
+ saturation at the same temperature.
+
+
+
+
+
+
+ amount of water vapor expressed in grams per cubic meter.
+
+
+
+
+
+
+ ratio of the water vapor present over the total weight of the water
+ vapor and air present expressed as a percent.
+
+
+
+
+
+
+ average rate of change of values for data items in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ average rate of change of values for assets in the MTConnect
+ streams. The average is computed over a rolling window defined by
+ the implementation.
+
+
+
+
+
+
+ change of pressure per unit time.
+
+
+
+
+
+
+ negative rate of change of velocity.
+
+
+
+
+
+
+ negative rate of change of angular velocity.
+
+
+
+
+
+
+ force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ percentage open where 100% is fully open and 0% is fully closed.
+
+
+
+
+
+
+ temperature at which moisture begins to condense, corresponding to
+ saturation for a given absolute humidity.
+
+
+
+
+
+
+ force relative to earth's gravity.
+
+
+
+
+
+
+ acceleration relative to Earth's gravity of 9.80665
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ maximum rated charge a battery is capable of maintaining based on
+ the battery discharging at a specified current over a specified time
+ period.
+
+
+
+
+
+
+ value of current being drawn from the {{block(Component)}}.
+
+
+
+
+
+
+ value of the current being supplied to the {{block(Component)}} for
+ the purpose of charging.
+
+
+
+
+
+
+ value of the battery's present capacity expressed as a
+ percentage of the battery's maximum rated capacity.
+
+
+
+
+
+
+ difference between actual and commanded position at the end of a
+ motion.
+
+
+
+
+
+
+ difference between actual and commanded position at any specific
+ point in time during a motion.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position, and the
+ actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position,
+ and the actual encoder/resolver position when motion is complete.
+
+
+
+
+
+
+ difference between the commanded encoder/resolver position and the
+ actual encoder/resolver position at any specified point in time
+ during a motion.
+
+
+
+
+
+
+ angular difference between the commanded encoder/resolver position
+ and the actual encoder/resolver position at any specified point in
+ time during a motion.
+
+
+
+
+
+
+ absolute value of the change in position along a vector.
+
+
+
+
+
+
+ absolute value of the change in angular position around a vector
+
+
+
+
+
+
+ point in a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ set of axes currently associated with a {{block(Path)}} or
+ {{block(Controller)}}.
+
+
+
+
+
+
+ operational state of an apparatus for moving or controlling a
+ mechanism or system.
+
+
+
+
+
+
+ **DEPRECATED:** Replaced with `CONDITION` category data items in
+ Version 1.1.0.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been added or
+ changed.
+
+
+
+
+
+
+ {{block(assetId)}} of the {{term(Asset)}} that has been removed.
+
+
+
+
+
+
+ {{term(agent)}}'s ability to communicate with the data source.
+
+
+
+
+
+
+ describes the way the axes will be associated to each other. This is
+ used in conjunction with `COUPLED_AXES` to indicate the way they are
+ interacting.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate of an
+ individual linear type axis.
+
+
+
+
+
+
+ state of the axis lockout function when power has been removed and
+ the axis is allowed to move freely.
+
+
+
+
+
+
+ state of a {{block(Linear)}} or {{block(Rotary)}} component
+ representing an axis.
+
+
+
+
+
+
+ line of code or command being executed by a {{block(Controller)}}
+ entity.
+
+
+
+
+
+
+ total count of the number of blocks of program code that have been
+ executed since execution started.
+
+
+
+
+
+
+ state of an interlock function or control logic state intended to
+ prevent the associated {{block(Chuck)}} component from being
+ operated.
+
+
+
+
+
+
+ operating state of a mechanism that holds a part or stock material
+ during a manufacturing process. It may also represent a mechanism
+ that holds any other mechanism in place within a piece of equipment.
+
+
+
+
+
+
+ programmatic code being executed. **DEPRECATED** in *Version 1.1*.
+
+
+
+
+
+
+ operating state of a mechanism represented by a
+ {{block(Composition)}} entity.
+
+
+
+
+
+
+ current mode of the {{block(Controller)}} component.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of a piece
+ of equipment.
+
+
+
+
+
+
+ set of associated axes.
+
+
+
+
+
+
+ time and date code associated with a material or other physical
+ item.
+
+
+
+
+
+
+ identifier of another piece of equipment that is temporarily
+ associated with a component of this piece of equipment to perform a
+ particular function.
+
+
+
+
+
+
+ direction of motion.
+
+
+
+
+
+
+ operational state of a {{block(Door)}} component or composition
+ element.
+
+
+
+
+
+
+ state of the emergency stop signal for a piece of equipment,
+ controller path, or any other component or subsystem of a piece of
+ equipment.
+
+
+
+
+
+
+ indication of whether the end of a piece of bar stock being feed by
+ a bar feeder has been reached.
+
+
+
+
+
+
+ indication that a piece of equipment, or a sub-part of a piece of
+ equipment, is performing specific types of activities.
+
+
+
+
+
+
+ operating state of a {{block(Component)}}.
+
+
+
+
+
+
+ current intended production status of the {{block(Component)}}.
+
+
+
+
+
+
+ hardness of a material.
+
+
+
+
+
+
+ current line of code being executed. **DEPRECATED** in *Version
+ 1.4.0*.
+
+
+
+
+
+
+ identifier for a {{block(Block)}} of code in a {{block(Program)}}.
+
+
+
+
+
+
+ position of a block of program code within a control program.
+
+
+
+
+
+
+ identifier of a material used or consumed in the manufacturing
+ process.
+
+
+
+
+
+
+ identifies the layers of material applied to a part or product as
+ part of an additive manufacturing process.
+
+
+
+
+
+
+ information to be transferred from a piece of equipment to a client
+ software application.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ identifier for a pallet.
+
+
+
+
+
+
+ aggregate count of parts.
+
+
+
+
+
+
+ indication designating whether a part or work piece has been
+ detected or is present.
+
+
+
+
+
+
+ identifier of a part in a manufacturing operation.
+
+
+
+
+
+
+ identifier of a part or product moving through the manufacturing
+ process. **DEPRECATED** in *Version 1.7*. `PART_NUMBER` is now a
+ `subType` of `PART_KIND_ID`.
+
+
+
+
+
+
+ value of a signal or calculation issued to adjust the feedrate for
+ the axes associated with a {{block(Path)}} component that may
+ represent a single axis or the coordinated movement of multiple
+ axes.
+
+
+
+
+
+
+ describes the operational relationship between a {{block(Path)}}
+ entity and another {{block(Path)}} entity for pieces of equipment
+ comprised of multiple logical groupings of controlled axes or other
+ logical operations.
+
+
+
+
+
+
+ indication of the status of the source of energy for an entity to
+ allow it to perform its intended function or the state of an
+ enabling signal providing permission for the entity to perform its
+ functions.
+
+
+
+
+
+
+ status of the {{block(Component)}}. **DEPRECATED** in *Version
+ 1.1.0*.
+
+
+
+
+
+
+ time and date associated with an activity or event.
+
+
+
+
+
+
+ name of the logic or motion program being executed by the
+ {{block(Controller)}} component.
+
+
+
+
+
+
+ comment or non-executable statement in the control program.
+
+
+
+
+
+
+ indication of the status of the {{block(Controller)}} components
+ program editing mode. A program may be edited while another is
+ executed.
+
+
+
+
+
+
+ name of the program being edited. This is used in conjunction with
+ {{block(ProgramEdit)}} when in `ACTIVE` state.
+
+
+
+
+
+
+ non-executable header section of the control program.
+
+
+
+
+
+
+ {{term(URI)}} for the source file associated with
+ {{block(Program)}}.
+
+
+
+
+
+
+ defines whether the logic or motion program defined by
+ {{block(Program)}} is being executed from the local memory of the
+ controller or from an outside source.
+
+
+
+
+
+
+ indication of the nesting level within a control program that is
+ associated with the code or instructions that is currently being
+ executed.
+
+
+
+
+
+
+ current operating mode for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ percentage change to the velocity of the programmed velocity for a
+ {{block(Rotary)}} axis.
+
+
+
+
+
+
+ serial number associated with a {{block(Component)}},
+ {{block(Asset)}}, or {{block(Device)}}.
+
+
+
+
+
+
+ indication of the status of the spindle for a piece of equipment
+ when power has been removed and it is free to rotate.
+
+
+
+
+
+
+ identifier of an individual tool asset.
+
+
+
+
+
+
+ identifier for the tool group associated with a specific tool.
+ Commonly used to designate spare tools.
+
+
+
+
+
+
+ identifier of the tool currently in use for a given `Path`.
+ **DEPRECATED** in *Version 1.2.0*. See `TOOL_ASSET_ID`.
+
+
+
+
+
+
+ identifier assigned by the {{block(Controller)}} component to a
+ cutting tool when in use by a piece of equipment.
+
+
+
+
+
+
+ reference to the tool offset variables applied to the active cutting
+ tool.
+
+
+
+
+
+
+ identifier of the person currently responsible for operating the
+ piece of equipment.
+
+
+
+
+
+
+ data whose meaning may change over time due to changes in the
+ operation of a piece of equipment or the process being executed on
+ that piece of equipment.
+
+
+
+
+
+
+ indication of the reason that {{block(Execution)}} is reporting a
+ value of `WAIT`.
+
+
+
+
+
+
+ identifier for the type of wire used as the cutting mechanism in
+ Electrical Discharge Machining or similar processes.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment. **DEPRECATION WARNING**: Recommend using
+ `FIXTURE_ID` instead.
+
+
+
+
+
+
+ reference to offset variables for a work piece or part.
+
+
+
+
+
+
+ Operating System (OS) of a {{block(Component)}}.
+
+
+
+
+
+
+ embedded software of a {{block(Component)}} .
+
+
+
+
+
+
+ application on a {{block(Component)}}.
+
+
+
+
+
+
+ software library on a {{block(Component)}}
+
+
+
+
+
+
+ hardware of a {{block(Component)}}.
+
+
+
+
+
+
+ network details of a {{block(Component)}}.
+
+
+
+
+
+
+ three space angular displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ three space linear displacement of an object or coordinate system
+ relative to a {{term(cartesian coordinate system)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of new device added to an {{term(MTConnect Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of a device removed from an {{term(MTConnect
+ Agent)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the device whose {{term(metadata)}} has changed.
+
+
+
+
+
+
+ status of the connection between an {{term(adapter)}} and an
+ {{term(agent)}}.
+
+
+
+
+
+
+ originator’s software version of the {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(URI)}} of the {{term(adapter)}}.
+
+
+
+
+
+
+ reference version of the MTConnect Standard supported by the
+ {{term(adapter)}}.
+
+
+
+
+
+
+ {{term(attachment)}} between a sensor and an entity.
+
+
+
+
+
+
+ state or condition of a part.
+
+
+
+
+
+
+ identifier of a process being executed by the device.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a group of
+ related occurrences, such as a process step in a process plan.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ processes or process definition.
+
+
+
+
+
+
+ identifier given to a collection of individual parts.
+
+
+
+
+
+
+ identifier given to link the individual occurrence to a class of
+ parts, typically distinguished by a particular part design.
+
+
+
+
+
+
+ identifier given to a distinguishable, individual part.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control. **DEPRECATION WARNING**. Recommend using
+ `CONTROL_LIMITS`.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable. **DEPRECATION WARNING**. Recommend using
+ `SPECIFICATION_LIMITS`.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+ **DEPRECATION WARNING**. Recommend using `ALARM_LIMITS`.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, load materials, parts, or other items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, unload materials, parts, or other
+ items.
+
+
+
+
+
+
+ accumulation of the number of times an operation has attempted to,
+ or is planned to attempt to, transfer materials, parts, or other
+ items from one location to another.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, activate or be performed.
+
+
+
+
+
+
+ accumulation of the number of times a function has attempted to, or
+ is planned to attempt to, deactivate or cease.
+
+
+
+
+
+
+ accumulation of the number of times a cyclic function has attempted
+ to, or is planned to attempt to execute.
+
+
+
+
+
+
+ state of a valve is one of open, closed, or transitioning between
+ the states.
+
+
+
+
+
+
+ state or operating mode of a {{block(Lock)}}.
+
+
+
+
+
+
+ particular condition of the process occurrence at a specific time.
+
+
+
+
+
+
+ particular condition of the part occurrence at a specific time.
+
+
+
+
+
+
+ state of {{block(Component)}} or {{block(Composition)}} that
+ describes the automatic or manual operation of the entity.
+
+
+
+
+
+
+ {{term(data set)}} of the number of {{termplural(Asset)}} of a given
+ type for a {{term(Device)}}.
+
+
+
+
+
+
+ actions or activities to be performed in support of a piece of
+ equipment.
+
+
+
+
+
+
+ identifier for the current workholding or part clamp in use by a
+ piece of equipment.
+
+
+
+
+
+
+ interpretation of `PART_COUNT`.
+
+
+
+
+
+
+ time provided by a timing device at a specific point in time.
+
+
+
+
+
+
+ name of the host computer supplying data.
+
+
+
+
+
+
+ number of the TCP/IP or UDP/IP port for the connection endpoint.
+
+
+
+
+
+
+ indication designating whether a leak has been detected.
+
+
+
+
+
+
+ present status of the battery.
+
+
+
+
+
+
+ {{term(UUID)}} of a {{term(feature)}}. {{cite(ISO 10303 AP
+ 242/239)}}.
+
+
+
+
+
+
+ detection result of a sensor.
+
+
+
+
+
+
+ {{block(Event)}} that represents a {{block(Component)}} where the
+ {{block(EntryDefinition)}} identifies the {{block(Component)}} and
+ the {{block(CellDefinition)}}s define the
+ {{block(Component)}}'s observed {{block(DataItem)}}s.
+
+
+
+
+
+
+ properties of each addressable work offset.
+
+
+
+
+
+
+ properties of each addressable tool offset.
+
+
+
+
+
+
+ assessing elements of a {{term(feature)}}.
+
+
+
+
+
+
+ {{term(UUID)}} of the {{term(characteristic)}}.
+
+
+
+
+
+
+ class of measurement being performed. {{cite(QIF 3:2018 Section
+ 6.3)}}
+
+
+
+
+
+
+ measurement based on the measurement type.
+
+
+
+
+
+
+ engineering units of the measurement.
+
+
+
+
+
+
+ pass/fail result of the measurement.
+
+
+
+
+
+
+ method used to compute {{term(standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(uncertainty)}} specified by {{block(UncertaintyType)}}.
+
+
+
+
+
+
+ set of limits defining a range of values designating acceptable
+ performance for a variable.
+
+
+
+
+
+
+ set of limits used to indicate whether a process variable is stable
+ and in control.
+
+
+
+
+
+
+ set of limits used to trigger warning or alarm indicators.
+
+
+
+
+
+
+ references the {{block(CuttingToolLifeCycle)}}
+ {{block(CuttingItem)}} index related to the
+ {{property(CuttingItem::indices)}} of the currently active cutting
+ tool edge.
+
+
+
+
+
+
+ structured information that allows the unambiguous determination of
+ an object for purposes of identification and location. {{cite(ISO
+ 19160-4:2017)}}
+
+
+
+
+
+
+ active energy source for the {{block(Component)}}.
+
+
+
+
+
+
+ textual description of the location of an object or activity.
+
+
+
+
+
+
+ dimension between two surfaces of an object, usually the dimension
+ of smallest measure, for example an additive layer, or a depth of
+ cut.
+
+
+
+
+
+
+ absolute geographic location defined by two coordinates, longitude
+ and latitude and an elevation.
+
+
+
+
+
+
+ indication that the piece of equipment has experienced a
+ communications failure.
+
+
+
+
+
+
+ indication that the value of the data associated with a measured
+ value or a calculation is outside of an expected range.
+
+
+
+
+
+
+ indication that an error occurred in the logic program or
+ programmable logic controller (PLC) associated with a piece of
+ equipment.
+
+
+
+
+
+
+ indication that an error occurred in the motion program associated
+ with a piece of equipment.
+
+
+
+
+
+
+ general purpose indication associated with an electronic component
+ of a piece of equipment or a controller that represents a fault that
+ is not associated with the operator, program, or hardware.
+
+
+
+
+
+
+ indication of a fault associated with an actuator.
+
+
+
+
+
+
+ operational state of an {{block(Interface)}}.
+
+
+
+
+
+
+ operating state of the service to advance material or feed product
+ to a piece of equipment from a continuous or bulk source.
+
+
+
+
+
+
+ operating state of the service to change the type of material or
+ product being loaded or fed to a piece of equipment.
+
+
+
+
+
+
+ operating state of the service to remove or retract material or
+ product.
+
+
+
+
+
+
+ operating state of the service to change the part or product
+ associated with a piece of equipment to a different part or product.
+
+
+
+
+
+
+ operating state of the service to load a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to unload a piece of material or
+ product.
+
+
+
+
+
+
+ operating state of the service to open a chuck.
+
+
+
+
+
+
+ operating state of the service to open a door.
+
+
+
+
+
+
+ operating state of the service to close a chuck.
+
+
+
+
+
+
+ operating state of the service to close a door.
+
+
+
+
+
+
+ A user variable
+
+
+
+
+
+
+
+
+ The types of measurements available
+
+
+
+
+
+
+
+ Extended tyoe for The sub-types for a measurement
+
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+ relating to or derived in the simplest manner from the fundamental
+ units or measurements.
+
+
+
+
+
+
+ indication of the operating state of a mechanism.
+
+
+
+
+
+
+ measured or reported value of an {{term(observation)}}.
+
+
+
+
+
+
+ all actions, items, or activities being counted independent of the
+ outcome.
+
+
+
+
+
+
+ measurement of alternating voltage or current. If not specified
+ further in statistic, defaults to RMS voltage. **DEPRECATED** in
+ *Version 1.6*.
+
+
+
+
+
+
+ A-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ when multiple locations on a piece of bar stock being feed by a bar
+ feeder are referenced as the indication of whether the end of that
+ piece of bar stock has been reached.
+
+
+
+
+
+
+ actions, items, or activities being counted that do not conform to
+ specification or expectation.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ B-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ directive value including adjustments such as an offset or
+ overrides.
+
+
+
+
+
+
+ amount of material consumed from an object or container during a
+ manufacturing process.
+
+
+
+
+
+
+ state of the enabling signal or control logic that enables or
+ disables the function or operation of the entity.
+
+
+
+
+
+
+ C-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ elapsed time of a temporary halt of action.
+
+
+
+
+
+
+ DC current or voltage. **DEPRECATED** in *Version 1.6*.
+
+
+
+
+
+
+ setting or operator selection used to execute a test mode to confirm
+ the execution of machine functions.
+
+
+
+
+
+
+ D-Scale weighting factor on the frequency scale.
+
+
+
+
+
+
+ relating to the expiration or end of useful life for a material or
+ other physical item.
+
+
+
+
+
+
+ relating to the first use of a material or other physical item.
+
+
+
+
+
+
+ actions, items, or activities being counted that conform to
+ specification or expectation.
+
+
+
+
+
+
+ relating to or derived from the last {{term(observation)}}.
+
+
+
+
+
+
+ relating to momentary activation of a function or a movement.
+ **DEPRECATION WARNING**: May be deprecated in the future.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a lateral
+ direction.
+
+
+
+
+
+
+ scale to measure the elasticity of a surface.
+
+
+
+
+
+
+ reference to a length type tool offset variable.
+
+
+
+
+
+
+ state of the power source.
+
+
+
+
+
+
+ direction of motion of a linear motion.
+
+
+
+
+
+
+ indication that the subparts of a piece of equipment are under load.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ relating to the primary logic or motion program currently being
+ executed.
+
+
+
+
+
+
+ relating to maintenance on the piece of equipment.
+
+
+
+
+
+
+ indication of the state of an operator controlled interlock that can
+ inhibit the ability to initiate an unclamp action of an
+ electronically controlled chuck.
+
+
+
+
+
+
+ related to the production of a material or other physical item.
+
+
+
+
+
+
+ maximum value.
+
+
+
+
+
+
+ minimum value.
+
+
+
+
+
+
+ scale to measure the resistance to scratching of a surface.
+
+
+
+
+
+
+ indication of the open or closed state of a mechanism.
+
+
+
+
+
+
+ no weighting factor on the frequency scale.
+
+
+
+
+
+
+ piece of equipment that is powered or performing any activity.
+
+
+
+
+
+
+ relating to the person currently responsible for operating the piece
+ of equipment.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ overridden value.
+
+
+
+
+
+
+ piece of equipment is powered and functioning or
+ {{block(Component)}} that are required to remain on are powered.
+
+
+
+
+
+
+ main or principle.
+
+
+
+
+
+
+ position provided by a measurement probe. **DEPRECATION WARNING**:
+ May be deprecated in the future.
+
+
+
+
+
+
+ relating to production of a part or product on a piece of equipment.
+
+
+
+
+
+
+ directive value without offsets and adjustments.
+
+
+
+
+
+
+ reference to a radial type tool offset variable.
+
+
+
+
+
+
+ performing an operation faster or in less time than nominal rate.
+
+
+
+
+
+
+ remaining measure or count of an action, object or activity.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ direction of a rotary motion using the right hand rule convention.
+
+
+
+
+
+
+ identity of a control program that is used to specify the order of
+ execution of other programs.
+
+
+
+
+
+
+ relating to the preparation of a piece of equipment for production
+ or restoring the piece of equipment to a neutral state after
+ production.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ standard measure of an object or an action.
+
+
+
+
+
+
+ boundary when an activity or an event commences.
+
+
+
+
+
+
+ indication of the activation state of a mechanism represented by a
+ {{block(Composition)}}.
+
+
+
+
+
+
+ goal of the operation or process.
+
+
+
+
+
+
+ relating to the end or completion of an activity or event.
+
+
+
+
+
+
+ setting or operator selection that changes the behavior of the
+ controller on a piece of equipment.
+
+
+
+
+
+
+ remaining usable measure of an object or action.
+
+
+
+
+
+
+ indication of the position of a mechanism that may move in a
+ vertical direction.
+
+
+
+
+
+
+ scale to measure the resistance to deformation of a surface.
+
+
+
+
+
+
+ piece of equipment performing any activity, the equipment is active
+ and performing a function under load or not.
+
+
+
+
+
+
+ IPV4 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ IPV6 network address of the {{block(Component)}}.
+
+
+
+
+
+
+ Gateway for the {{block(Component)}} network.
+
+
+
+
+
+
+ SubNet mask for the {{block(Component)}} network.
+
+
+
+
+
+
+ layer2 Virtual Local Network (VLAN) ID for the {{block(Component)}}
+ network.
+
+
+
+
+
+
+ Media Access Control Address. The unique physical address of the
+ network hardware.
+
+
+
+
+
+
+ identifies whether the connection type is wireless.
+
+
+
+
+
+
+ license code to validate or activate the hardware or software.
+
+
+
+
+
+
+ version of the hardware or software.
+
+
+
+
+
+
+ date the hardware or software was released for general use.
+
+
+
+
+
+
+ date the hardware or software was installed.
+
+
+
+
+
+
+ corporate identity for the maker of the hardware or software.
+
+
+
+
+
+
+ universally unique identifier as specified in ISO 11578 or RFC 4122.
+
+
+
+
+
+
+ serial number that uniquely identifies a specific part.
+
+
+
+
+
+
+ material that is used to produce parts.
+
+
+
+
+
+
+ group of parts tracked as a lot.
+
+
+
+
+
+
+ group of parts produced in a batch.
+
+
+
+
+
+
+ material heat number.
+
+
+
+
+
+
+ particular part design or model.
+
+
+
+
+
+
+ group of parts having similarities in geometry, manufacturing
+ process, and/or functions.
+
+
+
+
+
+
+ word or set of words by which a part is known, addressed, or
+ referred to.
+
+
+
+
+
+
+ step in the process plan that this occurrence corresponds to.
+
+
+
+
+
+
+ process plan that a process occurrence belongs to.
+
+
+
+
+
+
+ authorization of a process occurrence.
+
+
+
+
+
+
+ word or set of words by which a process being executed (process
+ occurrence) by the device is known, addressed, or referred to.
+
+
+
+
+
+
+ reference to a ISO 10303 Executable.
+
+
+
+
+
+
+ associated with the completion of an activity or event.
+
+
+
+
+
+
+ relating to logic or motion program currently executing.
+
+
+
+
+
+
+ actions or activities that were attempted , but failed to complete
+ or resulted in an unexpected or unacceptable outcome.
+
+
+
+
+
+
+ actions or activities that were attempted, but terminated before
+ they could be completed.
+
+
+
+
+
+
+ boundary when an activity or an event terminates.
+
+
+
+
+
+
+ amount discarded.
+
+
+
+
+
+
+ amount included in the {{term(part)}}.
+
+
+
+
+
+
+ {{term(request)}} by an {{block(Interface)}} for a task.
+
+
+
+
+
+
+ {{term(response)}} by an {{block(Interface)}} to a {{term(request)}}
+ for a task.
+
+
+
+
+
+
+ phase or segment of a recipe or program.
+
+
+
+
+
+
+ phase of a recipe process.
+
+
+
+
+
+
+ process as part of product production; can be a subprocess of a
+ larger process.
+
+
+
+
+
+
+ step of a discrete manufacturing process.
+
+
+
+
+
+
+ observed as a binary data type.
+
+
+
+
+
+
+ observed as a boolean data type.
+
+
+
+
+
+
+ observed as a set containing a restricted number of discrete values
+ where each discrete value is named and unique. {{cite(ISO
+ 21961:2003, 013)}}
+
+
+
+
+
+
+ indicated by the presence or existence of something.
+
+
+
+
+
+
+ model info of the hardware or software.
+
+
+
+
+
+
+
+
+ The sub-types for a measurement
+
+
+
+
+
+
+
+ Extended tyoe for Statistical operations on data
+
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+ mathematical average value calculated for the data item during the
+ calculation period.
+
+
+
+
+
+
+ **DEPRECATED** in *Version 1.6*. ~~A measure of the
+ "peakedness" of a probability distribution; i.e., the
+ shape of the distribution curve.~~
+
+
+
+
+
+
+ maximum or peak value recorded for the data item during the
+ calculation period.
+
+
+
+
+
+
+ middle number of a series of numbers.
+
+
+
+
+
+
+ minimum value recorded for the data item during the calculation
+ period.
+
+
+
+
+
+
+ number in a series of numbers that occurs most often.
+
+
+
+
+
+
+ difference between the maximum and minimum value of a data item
+ during the calculation period. Also represents Peak-to-Peak
+ measurement in a waveform.
+
+
+
+
+
+
+ mathematical Root Mean Square (RMS) value calculated for the data
+ item during the calculation period.
+
+
+
+
+
+
+ statistical Standard Deviation value calculated for the data item
+ during the calculation period.
+
+
+
+
+
+
+
+
+ Statistical operations on data
+
+
+
+
+
+
+
+ Extended tyoe for same as {{property(DataItem::units)}}. See
+ {{package(Device Information Model)}}.
+
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+
+
+ same as {{property(DataItem::units)}}. See {{package(Device Information
+ Model)}}.
+
+
+
+
+
+
+
+ Extended tyoe for The units supported for the source equipment that can
+ be converted into MTC Units.
+
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+ amps.
+
+
+
+
+
+
+ degrees Celsius.
+
+
+
+
+
+
+ count of something.
+
+
+
+
+
+
+ sound level.
+
+
+
+
+
+
+ angle in degrees.
+
+
+
+
+
+
+ space-delimited, floating-point representation of the angular
+ rotation in degrees around the X, Y, and Z axes relative to a
+ cartesian coordinate system respectively in order as A, B, and C. If
+ any of the rotations is not known, it **MUST** be zero (0).
+
+
+
+
+
+
+ angular degrees per second.
+
+
+
+
+
+
+ angular acceleration in degrees per second squared.
+
+
+
+
+
+
+ frequency measured in cycles per second.
+
+
+
+
+
+
+ measurement of energy.
+
+
+
+
+
+
+ kilograms.
+
+
+
+
+
+
+ measurement of volume of a fluid.
+
+
+
+
+
+
+ liters per second.
+
+
+
+
+
+
+ measurement of tilt.
+
+
+
+
+
+
+ millimeters.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in millimeters.
+
+
+
+
+
+
+ millimeters per revolution.
+
+
+
+
+
+
+ millimeters per second.
+
+
+
+
+
+
+ acceleration in millimeters per second squared.
+
+
+
+
+
+
+ force in Newtons.
+
+
+
+
+
+
+ torque, a unit for force times distance.
+
+
+
+
+
+
+ measure of electrical resistance.
+
+
+
+
+
+
+ pressure in Newtons per square meter.
+
+
+
+
+
+
+ measurement of viscosity.
+
+
+
+
+
+
+ percentage.
+
+
+
+
+
+
+ measure of the acidity or alkalinity of a solution.
+
+
+
+
+
+
+ revolutions per minute.
+
+
+
+
+
+
+ measurement of time.
+
+
+
+
+
+
+ measurement of electrical conductivity.
+
+
+
+
+
+
+ volts.
+
+
+
+
+
+
+ measurement of the apparent power in an electrical circuit, equal to
+ the product of root-mean-square (RMS) voltage and RMS current
+ (commonly referred to as VA).
+
+
+
+
+
+
+ measurement of reactive power in an AC electrical circuit (commonly
+ referred to as VAR).
+
+
+
+
+
+
+ watts.
+
+
+
+
+
+
+ measurement of electrical energy, equal to one Joule.
+
+
+
+
+
+
+ gram per cubic meter.
+
+
+
+
+
+
+ geometric volume in millimeters.
+
+
+
+
+
+
+ change of geometric volume per second.
+
+
+
+
+
+
+ change in geometric volume per second squared.
+
+
+
+
+
+
+ milligram.
+
+
+
+
+
+
+ milligram per cubic millimeter.
+
+
+
+
+
+
+ milliliter.
+
+
+
+
+
+
+ counts per second.
+
+
+
+
+
+
+ pascal per second.
+
+
+
+
+
+
+ 3D Unit Vector. Space delimited list of three floating point
+ numbers.
+
+
+
+
+
+
+ revolutions per second squared.
+
+
+
+
+
+
+ rotational velocity in revolution per second.
+
+
+
+
+
+
+ gram.
+
+
+
+
+
+
+ acceleration in meters per second squared.
+
+
+
+
+
+
+ electric charge in coulombs (C).
+
+
+
+
+
+
+ geometric volume in meters.
+
+
+
+
+
+
+ geometric area in millimeters.
+
+
+
+
+
+
+ measure of viscosity.
+
+
+
+
+
+
+ rotational velocity in degrees per minute.
+
+
+
+
+
+
+ temperature in Fahrenheit.
+
+
+
+
+
+
+ feet.
+
+
+
+
+
+
+ feet per minute.
+
+
+
+
+
+
+ feet per second.
+
+
+
+
+
+
+ acceleration in feet per second squared.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in feet.
+
+
+
+
+
+
+ gallons per minute.
+
+
+
+
+
+
+ measurement of time in hours.
+
+
+
+
+
+
+ inches.
+
+
+
+
+
+
+ inches per minute.
+
+
+
+
+
+
+ inches per second.
+
+
+
+
+
+
+ acceleration in inches per second squared.
+
+
+
+
+
+
+ measure of torque in inch pounds.
+
+
+
+
+
+
+ point in space identified by X, Y, and Z positions and represented
+ by a space-delimited set of numbers each expressed in inches.
+
+
+
+
+
+
+ measurement of temperature.
+
+
+
+
+
+
+ measurement in kilowatt.
+
+
+
+
+
+
+ kilowatt hours which is 3.6 mega joules.
+
+
+
+
+
+
+ measurement of rate of flow of a fluid.
+
+
+
+
+
+
+ velocity in millimeters per minute.
+
+
+
+
+
+
+ measurement of time in minutes.
+
+
+
+
+
+
+ unsupported unit.
+
+
+
+
+
+
+ US pounds.
+
+
+
+
+
+
+ pressure in pounds per square inch (PSI).
+
+
+
+
+
+
+ angle in radians.
+
+
+
+
+
+
+ velocity in radians per minute.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ rotational acceleration in radian per second squared.
+
+
+
+
+
+
+ pressure in Bar.
+
+
+
+
+
+
+ pressure in Torr.
+
+
+
+
+
+
+ pressure in Millimeter of Mercury (mmHg).
+
+
+
+
+
+
+ pascal per minute.
+
+
+
+
+
+
+ $$MASS\times GRAVITATIONAL_ACCELERATION$$ (g) given in
+ `METER/SECOND^2`.
+
+
+
+
+
+
+ acceleration relative to earth's gravity given in
+ `METER/SECOND^2`. > Note 1 to entry: At different points on
+ Earth's surface, the free-fall acceleration ranges from 9.764
+ to 9.834 m/s2 (Wikipedia: Gravitational Acceleration). The constant
+ can be customized depending on the location in the universe. >
+ Note 2 to entry: In the standard, it is assumed that Earth's
+ average value of gravitational acceleration is 9.90665 m/s2.
+
+
+
+
+
+
+ electric charge in ampere hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per hour.
+
+
+
+
+
+
+ change of geometric volume in cubic foot per minute.
+
+
+
+
+
+
+ geometric area in inches.
+
+
+
+
+
+
+ geometric volume in feet.
+
+
+
+
+
+
+ inch per revolution.
+
+
+
+
+
+
+
+
+ The units supported for the source equipment that can be converted into
+ MTC Units.
+
+
+
+
+
+
+
+ The coordinate system to be used for the position
+
+
+
+
+
+
+ unchangeable coordinate system that has machine zero as its origin.
+
+
+
+
+
+
+ coordinate system that represents the working area for a particular
+ workpiece whose origin is shifted within the `MACHINE` coordinate
+ system. If the `WORK` coordinates are not currently defined in the
+ piece of equipment, the `MACHINE` coordinates will be used.
+
+
+
+
+
+
+
+
+ Extended tyoe for The reset intervals
+
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} that is measuring
+ an action or operation is to be reset upon completion of that action
+ or operation.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 12-month period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 24-hour period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is not reset and
+ accumulates for the entire life of the piece of equipment.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset upon
+ completion of a maintenance event.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a monthly period.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset when
+ power was applied to the piece of equipment after a planned or
+ unplanned interruption of power has occurred.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a work shift.
+
+
+
+
+
+
+ {{term(observation)}} of the {{block(DataItem)}} is to be reset at
+ the end of a 7-day period.
+
+
+
+
+
+
+
+
+ The reset intervals
+
+
+
+
+
+
+
+
+ The document version
+
+
+
+
+
+
+ time the file was created.
+
+
+
+
+
+
+ Indicates that this was a test document
+
+
+
+
+
+
+ The unique instance identifier of this agent process
+
+
+
+
+
+
+ The sender of the message
+
+
+
+
+
+
+ A timestamp in 8601 format of the last update of the Device
+ information for any device
+
+
+
+
+
+
+
+ The station id for this device
+
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the normative
+ model.
+
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the data
+ management within the {{term(agent)}}.
+
+
+
+
+
+
+
+
+ The size of the agent's buffer.
+
+
+
+
+
+
+ The next sequence number for subsequent requests
+
+
+
+
+
+
+ The last sequence number available from the agent
+
+
+
+
+
+
+ The first sequence number available from the agent
+
+
+
+
+
+
+ indicates if the MTConnect Agent is validating against the
+ normative model.
+
+
+
+
+
+
+
+
+
+ root entity of an {{term(MTConnectStreams Response Document)}} that
+ contains the {{term(Observation Information Model)}} of one or more
+ {{block(Device)}} entities.
+ {: width="0.8"} > Note:
+ Additional properties of {{block(MTConnectStreams)}} **MAY** be defined
+ for schema and namespace declaration. See {{sect(Schema and Namespace
+ Declaration Information)}} for an {{term(XML)}} example.
+
+
+
+
+
+
+ provides information from an {{term(agent)}} defining version
+ information, storage capacity, and parameters associated with the
+ data management within the {{term(agent)}}.
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}}
+ entities. See {{package(Observation Information Model)}} for more
+ detail.
+
+
+
+
+
+
+
+
+ An events data
+
+
+
+
+
+
+
+ The item's unique ID that references the data item id from probe
+
+
+
+
+
+
+
+ An Condition code as defined by the component
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with the
+ normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+ observation is not valid against the MTConnect Standard according to
+ the validation capabilities of the MTConnect Agent.
+
+
+
+
+
+
+ observation cannot be validated.
+
+
+
+
+
+
+ observation is valid against the MTConnect Standard.
+
+
+
+
+
+
+
+
+ {{block(Streams)}} groups one or more {{block(DeviceStream)}} entities.
+ See {{package(Observation Information Model)}} for more detail.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}}
+ for the {{block(ComponentStream)}} model. > Note 1 to entry: In
+ the {{term(XML)}} representation, {{block(ComponentStream)}}
+ entities **MUST NOT** appear in the {{term(MTConnectDevices Response
+ Document)}}. > Note 2 to entry: In the {{term(XML)}}
+ representation, {{block(ComponentStream)}} entities **MUST** appear
+ only in the {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unque identifier for this device
+
+
+
+
+
+
+
+ {{block(ComponentStream)}} {{termplural(organize)}} the
+ {{block(Observation)}} entities associated with the
+ {{block(Component)}}. See {{package(Observation Information Model)}} for
+ the {{block(ComponentStream)}} model. > Note 1 to entry: In the
+ {{term(XML)}} representation, {{block(ComponentStream)}} entities **MUST
+ NOT** appear in the {{term(MTConnectDevices Response Document)}}. >
+ Note 2 to entry: In the {{term(XML)}} representation,
+ {{block(ComponentStream)}} entities **MUST** appear only in the
+ {{term(MTConnectStreams Response Document)}}.
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities.
+ See {{sect(Sample)}}.
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+ The id of the component (maps to the id from probe)
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The device manufacturer component name
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The unque identifier for this component
+
+
+
+
+
+
+
+ {{block(Samples)}} groups one or more {{block(Sample)}} entities. See
+ {{sect(Sample)}}.
+
+
+
+
+
+
+
+
+
+ {{block(Events)}} groups one or more {{block(Event)}} entities. See
+ {{sect(Event)}}.
+
+
+
+
+
+
+
+
+
+ A collection of conditions
+
+
+
+
+
+
+
+
+
+ The observation value for indeterminent data
+
+
+
+
+
+
+ Data is unavailable
+
+
+
+
+
+
+
+
+
+ The events sequence number
+
+
+
+
+
+
+ The event subtype corresponding to the measurement subtype
+
+
+
+
+
+
+ The time the event occurred or recorded
+
+
+
+
+
+
+ identifier of the maintenance activity.
+
+
+
+
+
+
+ The unique identifier of the item being produced
+
+
+
+
+
+
+ The identifier of the sub-element this result is in reference to
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been deprecated in the MTConnect Standard.
+
+
+
+
+
+
+ indicates if the Observation has any property or controlled vocabulary
+ that has been extended and cannot be validated.
+
+
+
+
+
+
+ indicates if the Observation is verifiable and is in accordance with
+ the normative definitions within the MTConnect Standard.
+
+
+
+
+
+
+
+ The target rate a value can be sampled
+
+
+
+
+
+
+
+ The number of items in the list
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Common floating point sample value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ The rate the waveform was sampled at, default back to the value given
+ in the data item
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+ The number of seconds since the reset of the statistic
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a single floating point value
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A sample with a three tuple floating point value
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+
+ The number of samples
+
+
+
+
+
+
+
+
+
+ The abstract waveform
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+
+
+
+ Example
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+ Time series of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The displacement
+ vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+ Time series of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+ {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ Integer event value
+
+
+
+
+
+
+
+ String event value
+
+
+
+
+
+
+
+ DateTime String event value
+
+
+
+
+
+
+
+ A list of axis names
+
+
+
+
+
+
+
+
+
+
+
+ A list of axis for an event
+
+
+
+
+
+
+
+ Common floating point event value
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An optional indicator that the event or sample was reset
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted string event
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An unfaceted datetime event
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with an integer value
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An event with a three tuple floating point value
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Controlled vocabulary for ActuatorState
+
+
+
+
+
+
+ {{block(Actuator)}} is operating.
+
+
+
+
+
+
+ {{block(Actuator)}} is not operating.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+ The type of asset
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Controlled vocabulary for Availability
+
+
+
+
+
+
+ data source is active and capable of providing data.
+
+
+
+
+
+
+ data source is either inactive or not capable of providing data.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisCoupling
+
+
+
+
+
+
+ axes are physically connected to each other and operate as a single
+ unit.
+
+
+
+
+
+
+ axes are not physically connected to each other but are operating
+ together in lockstep.
+
+
+
+
+
+
+ axis is the master of the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ axis is a slave to the {{block(CoupledAxes)}}.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisInterlock
+
+
+
+
+
+
+ axis lockout function is activated, power has been removed from the
+ axis, and the axis is allowed to move freely.
+
+
+
+
+
+
+ axis lockout function has not been activated, the axis may be
+ powered, and the axis is capable of being controlled by another
+ component.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for AxisState
+
+
+
+
+
+
+ axis is in its home position.
+
+
+
+
+
+
+ axis is in motion.
+
+
+
+
+
+
+ axis has been moved to a fixed position and is being maintained in
+ that position either electrically or mechanically. Action is
+ required to release the axis from this position.
+
+
+
+
+
+
+ axis is stopped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckInterlock
+
+
+
+
+
+
+ chuck cannot be unclamped.
+
+
+
+
+
+
+ chuck can be unclamped.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for ChuckState
+
+
+
+
+
+
+ {{block(Chuck)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Chuck)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerMode
+
+
+
+
+
+
+ {{block(Controller)}} is configured to automatically execute a
+ program.
+
+
+
+
+
+
+ {{block(Controller)}} is not executing an active program. It is
+ capable of receiving instructions from an external source –
+ typically an operator. The {{block(Controller)}} executes operations
+ based on the instructions received from the external source.
+
+
+
+
+
+
+ operator can enter a series of operations for the
+ {{block(Controller)}} to perform. The {{block(Controller)}} will
+ execute this specific series of operations and then stop.
+
+
+
+
+
+
+ {{block(Controller)}} is operating in a mode that restricts the
+ active program from processing its next process step without
+ operator intervention.
+
+
+
+
+
+
+ {{block(Controller)}} is currently functioning as a programming
+ device and is not capable of executing an active program.
+
+
+
+
+
+
+ axes of the device are commanded to stop, but the spindle continues
+ to function.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ControllerModeOverride
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `ON` state and the mode
+ override is active.
+
+
+
+
+
+
+ {{block(ControllerModeOverride)}} is in the `OFF` state and the mode
+ override is inactive.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Controlled vocabulary for Direction
+
+
+
+
+
+
+ clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+ counter-clockwise rotation using the right-hand rule.
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for DoorState
+
+
+
+
+
+
+ {{block(Door)}} is open to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is closed to the point of a positive confirmation.
+
+
+
+
+
+
+ {{block(Door)}} is not closed to the point of a positive
+ confirmation and not open to the point of a positive confirmation.
+ It is in an intermediate position.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for EmergencyStop
+
+
+
+
+
+
+ emergency stop circuit is complete and the piece of equipment,
+ component, or composition is allowed to operate.
+
+
+
+
+
+
+ operation of the piece of equipment, component, or composition is
+ inhibited.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Controlled vocabulary for EndOfBar
+
+
+
+
+
+
+ {{block(EndOfBar)}} has been reached.
+
+
+
+
+
+
+ {{block(EndOfBar)}} has not been reached.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Controlled vocabulary for EquipmentMode
+
+
+
+
+
+
+ equipment is functioning in the mode designated by the `subType`.
+
+
+
+
+
+
+ equipment is not functioning in the mode designated by the
+ `subType`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for Execution
+
+
+
+
+
+
+ {{block(Component)}} is ready to execute instructions. It is
+ currently idle.
+
+
+
+
+
+
+ {{block(Component)}} is actively executing an instruction.
+
+
+
+
+
+
+ {{block(Component)}} suspends the execution of the program due to an
+ external signal. Action is required to resume execution.
+
+
+
+
+
+
+ motion of the active axes are commanded to stop at their current
+ position.
+
+
+
+
+
+
+ {{block(Component)}} program is not `READY` to execute.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ The {{block(Component)}} **MAY** have another state that indicates
+ if the execution is interrupted or the execution ignores the
+ interrupt instruction.
+
+
+
+
+
+
+ command from the program has intentionally interrupted execution.
+ Action is required to resume execution.
+
+
+
+
+
+
+ program completed execution.
+
+
+
+
+
+
+ {{block(Component)}} suspends execution while a secondary operation
+ executes. Execution resumes automatically once the secondary
+ operation completes.
+
+
+
+
+
+
+ program has been intentionally optionally stopped using an M01 or
+ similar code. **DEPRECATED** in *version 1.4* and replaced with
+ `OPTIONAL_STOP`.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Controlled vocabulary for FunctionalMode
+
+
+
+
+
+
+ {{block(Component)}} is currently producing product, ready to
+ produce product, or its current intended use is to be producing
+ product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is being
+ prepared or modified to begin production of product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. Typically,
+ it has completed the production of a product and is being modified
+ or returned to a neutral state such that it may then be prepared to
+ begin production of a different product.
+
+
+
+
+
+
+ {{block(Component)}} is not currently producing product. It is
+ currently being repaired, waiting to be repaired, or has not yet
+ been returned to a normal production status after maintenance has
+ been performed.
+
+
+
+
+
+
+ {{block(Component)}} is being used to prove-out a new process,
+ testing of equipment or processes, or any other active use that does
+ not result in the production of product.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+
+
+
+ {{block(Resource)}} composed of material that is consumed or used by the
+ piece of equipment for production of parts, materials, or other types of
+ goods.
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartDetect
+
+
+
+
+
+
+ part or work piece is detected or is present.
+
+
+
+
+
+
+ part or work piece is not detected or is not present.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PathMode
+
+
+
+
+
+
+ path is operating independently and without the influence of another
+ path.
+
+
+
+
+
+
+ path provides information or state values that influences the
+ operation of other {{block(DataItem)}} of similar type.
+
+
+
+
+
+
+ physical or logical parts which are not physically connected to each
+ other but are operating together.
+
+
+
+
+
+
+ axes associated with the path are mirroring the motion of the
+ `MASTER` path.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerState
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is present and
+ active.
+
+
+
+
+
+
+ source of energy for an entity or the enabling signal providing
+ permission for the entity to perform its function(s) is not present
+ or is disconnected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for PowerStatus
+
+
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramEdit
+
+
+
+
+
+
+ {{block(Controller)}} is in the program edit mode.
+
+
+
+
+
+
+ {{block(Controller)}} is capable of entering the program edit mode
+ and no function is inhibiting a change to that mode.
+
+
+
+
+
+
+ {{block(Controller)}} is being inhibited by a function from entering
+ the program edit mode.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProgramLocationType
+
+
+
+
+
+
+ managed by the controller.
+
+
+
+
+
+
+ not managed by the controller.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is not
+ defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Controlled vocabulary for RotaryMode
+
+
+
+
+
+
+ axis is functioning as a spindle.
+
+
+
+
+
+
+ axis is configured to index.
+
+
+
+
+
+
+ position of the axis is being interpolated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command represents a
+ percentage change to the velocity calculated by a logic or motion
+ program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Controlled vocabulary for SpindleInterlock
+
+
+
+
+
+
+ power has been removed and the spindle cannot be operated.
+
+
+
+
+
+
+ spindle has not been deactivated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Controlled vocabulary for WaitState
+
+
+
+
+
+
+ execution is waiting while the equipment is powering up and is not
+ currently available to begin producing parts or products.
+
+
+
+
+
+
+ execution is waiting while the equipment is powering down but has
+ not fully reached a stopped state.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ loaded.
+
+
+
+
+
+
+ execution is waiting while one or more discrete workpieces are being
+ unloaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being loaded.
+
+
+
+
+
+
+ execution is waiting while a tool or tooling is being unloaded.
+
+
+
+
+
+
+ execution is waiting while material is being loaded.
+
+
+
+
+
+
+ execution is waiting while material is being unloaded.
+
+
+
+
+
+
+ execution is waiting while another process is completed before the
+ execution can resume.
+
+
+
+
+
+
+ execution is waiting while the equipment is pausing but the piece of
+ equipment has not yet reached a fully paused state.
+
+
+
+
+
+
+ execution is waiting while the equipment is resuming the production
+ cycle but has not yet resumed execution.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WAIT_STATE)}} When {{property(Execution::result)}} is
+ not `WAIT`, {{property(Observation::isUnavailable)}} of
+ {{block(WaitState)}} **MUST** be `true`.
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+
+
+
+ leaf {{block(Component)}} composed of a string like piece or filament of
+ relatively rigid or flexible material provided in a variety of
+ diameters.
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+ translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartStatus
+
+
+
+
+
+
+ part conforms to given requirements.
+
+
+
+
+
+
+ part does not conform to some given requirements.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_STATUS)}} If unique identifier is given, part
+ status is for that individual. If group identifier is given without a
+ unique identifier, then the status is assumed to be for the whole group.
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_KIND_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Controlled vocabulary for ConnectionStatus
+
+
+
+
+
+
+ no connection at all.
+
+
+
+
+
+
+ {{term(agent)}} is waiting for a connection request from an
+ {{term(adapter)}}.
+
+
+
+
+
+
+ open connection. The normal state for the data transfer phase of the
+ connection.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+ condensed message digest from a secure one-way hash function.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_GROUP_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_UNIQUE_ID)}} If no {{property(DataItem::subType)}}
+ is specified, `UUID` is default.
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartProcessingState
+
+
+
+
+
+
+ part occurrence is not actively being processed, but the processing
+ has not ended. Processing requirements exist that have not yet been
+ fulfilled. This is the default entry state when the part occurrence
+ is originally received. In some cases, the part occurrence may
+ return to this state while it waits for additional processing to be
+ performed.
+
+
+
+
+
+
+ part occurrence is actively being processed.
+
+
+
+
+
+
+ part occurrence is no longer being processed. A general state when
+ the reason for termination is unknown.
+
+
+
+
+
+
+ part occurrence has completed processing successfully.
+
+
+
+
+
+
+ process has been stopped during the processing. The part occurrence
+ will require special treatment.
+
+
+
+
+
+
+ processing of the part occurrence has come to a premature end.
+
+
+
+
+
+
+ terminal state when the part occurrence has been removed from the
+ equipment by an external entity and it no longer exists at the
+ equipment.
+
+
+
+
+
+
+ part occurrence has been skipped for processing on the piece of
+ equipment.
+
+
+
+
+
+
+ part occurrence has been processed completely. However, the
+ processing may have a problem.
+
+
+
+
+
+
+ part occurrence is waiting for transit.
+
+
+
+
+
+
+ part occurrence is being transported to its destination.
+
+
+
+
+
+
+ part occurrence has been placed at its designated destination.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ProcessState
+
+
+
+
+
+
+ device is preparing to execute the process occurrence.
+
+
+
+
+
+
+ process occurrence is ready to be executed.
+
+
+
+
+
+
+ process occurrence is actively executing.
+
+
+
+
+
+
+ process occurrence is now finished.
+
+
+
+
+
+
+ process occurrence has been stopped and may be resumed.
+
+
+
+
+
+
+ process occurrence has come to a premature end and cannot be
+ resumed.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for ValveState
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is allowed and the aperture is
+ static. > Note: For a binary value, `OPEN` indicates the valve
+ has the maximum possible aperture.
+
+
+
+
+
+
+ valve is transitioning from a `CLOSED` state to an `OPEN` state.
+
+
+
+
+
+
+ {{block(ValveState)}} where flow is not possible, the aperture is
+ static, and the valve is completely shut.
+
+
+
+
+
+
+ valve is transitioning from an `OPEN` state to a `CLOSED` state.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Controlled vocabulary for LockState
+
+
+
+
+
+
+ mechanism is engaged and preventing the associated
+ {{block(Component)}} from being opened or operated.
+
+
+
+
+
+
+ mechanism is disengaged and the associated {{block(Component)}} is
+ able to be opened or operated.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Controlled vocabulary for OperatingMode
+
+
+
+
+
+
+ automatically execute instructions from a recipe or program. >
+ Note: Setpoint comes from a recipe.
+
+
+
+
+
+
+ execute instructions from an external agent or person. > Note 1
+ to entry: Valve or switch is manipulated by an agent/person. >
+ Note 2 to entry: Direct control of the PID output. % of the range: A
+ user manually sets the % output, not the setpoint.
+
+
+
+
+
+
+ executes a single instruction from a recipe or program. > Note 1
+ to entry: Setpoint is entered and fixed, but the PID is controlling.
+ > Note 2 to entry: Still goes through the PID control system.
+ > Note 3 to entry: Manual fixed entry from a recipe.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Controlled vocabulary for PartCountType
+
+
+
+
+
+
+ count is of individual items.
+
+
+
+
+
+
+ pre-specified group of items.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Controlled vocabulary for LeakDetect
+
+
+
+
+
+
+ leak is currently being detected.
+
+
+
+
+
+
+ leak is currently not being detected.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Controlled vocabulary for BatteryState
+
+
+
+
+
+
+ {{block(Component)}} is at it's maximum rated charge level.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is increasing.
+
+
+
+
+
+
+ {{block(Component)}}'s charge is decreasing.
+
+
+
+
+
+
+ {{block(Component)}} is at it's minimum charge level.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+ tabular {{def(EventEnum::COMPONENT_DATA)}} If the {{block(Component)}}
+ multiplicity can be determined, the device model **MUST** use a fixed
+ set of {{block(Component)}}s. {{block(ComponentData)}} **MUST** provide
+ a {{block(DataItem)}} {{block(Definition)}}.
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+ tabular representation of {{def(EventEnum::FEATURE_MEASUREMENT)}}
+ {{block(FeatureMeasurement)}} **MAY** include a {{term(characteristic)}}
+ in which case it **MAY** include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`, `RADIUS`,
+ `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Controlled vocabulary for CharacteristicStatus
+
+
+
+
+
+
+ measurement is within acceptable tolerances.
+
+
+
+
+
+
+ measurement is not within acceptable tolerances.
+
+
+
+
+
+
+ failed, but acceptable constraints achievable by utilizing
+ additional manufacturing processes.
+
+
+
+
+
+
+ measurement is indeterminate due to an equipment failure.
+
+
+
+
+
+
+ measurement cannot be determined.
+
+
+
+
+
+
+ measurement cannot be evaluated.
+
+
+
+
+
+
+ nominal provided without tolerance limits. {{cite(QIF 3:2018
+ 5.10.2.6)}}
+
+
+
+
+
+
+ status of measurement cannot be determined.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Controlled vocabulary for UncertaintyType
+
+
+
+
+
+
+ {{term(combined standard uncertainty)}}.
+
+
+
+
+
+
+ {{term(standard uncertainty)}} using arithmetic mean or average the
+ observations. {{cite(JCGM 100:2008 4.2)}}
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+ See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Controlled vocabulary for InterfaceState
+
+
+
+
+
+
+ {{block(Interface)}} is currently operational and performing as
+ expected.
+
+
+
+
+
+
+ {{block(Interface)}} is currently not operational.
+
+
+
+
+
+
+ Value is indeterminate
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+ Discrete of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+ the key
+
+
+
+
+
+
+ an indicatore that the entry has been removed
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of translations along X, Y, and Z axes are expressed as x,y, and
+ z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of Example
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of Description
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ DataSet of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ A cell of a table
+
+
+
+
+
+ the key
+
+
+
+
+
+
+
+ A cell of a table
+
+
+
+
+
+
+ {{term(key-value pair)}} published as part of a {{block(Table)}}. >
+ Note: In the {{term(XML)}} representation, {{block(TableEntry)}}
+ **MUST** appear as {{block(Entry)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{term(key-value pair)}} published as part of a {{block(Table)}}. >
+ Note: In the {{term(XML)}} representation, {{block(TableEntry)}}
+ **MUST** appear as {{block(Entry)}}.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_AXES)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTUATOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_CHANGED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_REMOVED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AVAILABILITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_COUPLING)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::AXIS_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BLOCK_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHUCK_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::COMPOSITION_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROLLER_MODE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::COUPLED_AXES)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DATE_CODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_UUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DIRECTION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DOOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EMERGENCY_STOP)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::END_OF_BAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EQUIPMENT_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::EXECUTION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FUNCTIONAL_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_LABEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LINE_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{block(Resource)}} composed of material that is consumed
+ or used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{block(Resource)}} composed of material that is consumed
+ or used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Cell of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Table of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{block(Resource)}} composed of material that is consumed or
+ used by the piece of equipment for production of parts, materials, or
+ other types of goods.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MATERIAL_LAYER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MESSAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATOR_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PALLET_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_DETECT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_FEEDRATE_OVERRIDE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PATH_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::POWER_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_COMMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_EDIT_NAME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_HEADER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_LOCATION_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial
+ value is not defined, the nesting level associated with the highest or
+ initial nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial
+ value is not defined, the nesting level associated with the highest or
+ initial nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROGRAM_NEST_LEVEL)}} If an initial value is
+ not defined, the nesting level associated with the highest or initial
+ nesting level of the program **MUST** default to zero (0).
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ROTARY_VELOCITY_OVERRIDE)}} This command
+ represents a percentage change to the velocity calculated by a logic or
+ motion program or set by a switch for a {{block(Rotary)}} type axis.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SERIAL_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPINDLE_INTERLOCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ASSET_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_GROUP)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_NUMBER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_OFFSET)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::USER)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::VARIABLE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Table of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WAIT_STATE)}} When
+ {{property(Execution::result)}} is not `WAIT`,
+ {{property(Observation::isUnavailable)}} of {{block(WaitState)}}
+ **MUST** be `true`.
+
+
+
+
+
+
+ Table Entry of leaf {{block(Component)}} composed of a string like piece
+ or filament of relatively rigid or flexible material provided in a
+ variety of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of leaf {{block(Component)}} composed of a string like piece
+ or filament of relatively rigid or flexible material provided in a
+ variety of diameters.
+
+
+
+
+
+
+ Cell of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ Table of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of leaf {{block(Component)}} composed of a string like piece or
+ filament of relatively rigid or flexible material provided in a variety
+ of diameters.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORKHOLDING_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::WORK_OFFSET)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_SYSTEM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIRMWARE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::APPLICATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LIBRARY)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HARDWARE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK)}}
+
+
+
+
+
+
+ Table Entry of rotations about X, Y, and Z axes are expressed in A, B,
+ and C respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of rotations about X, Y, and Z axes are expressed in A, B,
+ and C respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Cell of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of rotations about X, Y, and Z axes are expressed in A, B, and C
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table Entry of translations along X, Y, and Z axes are expressed as x,y,
+ and z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of translations along X, Y, and Z axes are expressed as x,y,
+ and z respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Cell of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of translations along X, Y, and Z axes are expressed as x,y, and z
+ respectively within a 3-dimensional vector.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_KIND_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_STATUS)}} If unique identifier is
+ given, part status is for that individual. If group identifier is given
+ without a unique identifier, then the status is assumed to be for the
+ whole group.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_STATUS)}} If unique identifier is given,
+ part status is for that individual. If group identifier is given without
+ a unique identifier, then the status is assumed to be for the whole
+ group.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ALARM_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_AGGREGATE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_KIND_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_URI)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_REMOVED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_CHANGED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SPECIFICATION_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONNECTION_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ADAPTER_SOFTWARE_VERSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_ATTACHMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CONTROL_LIMIT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEVICE_ADDED)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MTCONNECT_VERSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_OCCURRENCE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_GROUP_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_UNIQUE_ID)}} If no
+ {{property(DataItem::subType)}} is specified, `UUID` is default.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::DEACTIVATION_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TRANSFER_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOAD_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_PROCESSING_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PROCESS_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::VALVE_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCK_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNLOAD_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CYCLE_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::OPERATING_MODE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ASSET_COUNT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Table of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MAINTENANCE_LIST)}} If
+ {{property(MaintenanceList::result::Interval)}} `key` is not provided,
+ it is assumed `ABSOLUTE`. If
+ {{property(MaintenanceList::result::Direction)}} `key` is not provided,
+ it is assumed `UP`. If {{property(MaintenanceList::result::Units)}}
+ `key` is not provided, it is assumed to be `COUNT`.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FIXTURE_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::PART_COUNT_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CLOCK_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::NETWORK_PORT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::HOST_NAME)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LEAK_DETECT)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::BATTERY_STATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::FEATURE_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::SENSOR_STATE)}}
+
+
+
+
+
+
+ Table Entry of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Cell of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Table of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular {{def(EventEnum::COMPONENT_DATA)}} If the
+ {{block(Component)}} multiplicity can be determined, the device model
+ **MUST** use a fixed set of {{block(Component)}}s.
+ {{block(ComponentData)}} **MUST** provide a {{block(DataItem)}}
+ {{block(Definition)}}.
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::WORK_OFFSETS)}}
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of {{def(EventEnum::TOOL_OFFSETS)}}
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Cell of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Table of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of tabular representation of
+ {{def(EventEnum::FEATURE_MEASUREMENT)}} {{block(FeatureMeasurement)}}
+ **MAY** include a {{term(characteristic)}} in which case it **MAY**
+ include a `CHARACTERISTIC_STATUS`.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_PERSISTENT_ID)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_TYPE)}} Examples: `POINT`,
+ `RADIUS`, `ANGLE`, `LENGTH`, etc.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_VALUE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::MEASUREMENT_UNITS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::CHARACTERISTIC_STATUS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY_TYPE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::UNCERTAINTY)}}
+
+
+
+
+
+
+ Table Entry of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(AlarmLimits)}}.
+
+
+
+
+
+
+ Table Entry of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(ControlLimits)}}.
+
+
+
+
+
+
+ Table Entry of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Cell of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Table of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of See {{sect(SpecificationLimits)}}.
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::TOOL_CUTTING_ITEM)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_ADDRESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::ACTIVE_POWER_SOURCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_NARRATIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::THICKNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(EventEnum::LOCATION_SPATIAL_GEOGRAPHIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_FEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_CHANGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_RETRACT)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_LOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::MATERIAL_UNLOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_CHUCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::OPEN_DOOR)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::PART_CHANGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_DOOR)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::CLOSE_CHUCK)}}
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(InterfaceEventEnum::INTERFACE_STATE)}} When the
+ {{block(InterfaceState)}} is `DISABLED`, the state of all data items
+ that are specific for the {{term(interaction model)}} associated with
+ that {{block(Interface)}} **MUST** be set to `NOT_READY`.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ACCUMULATED_TIME)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGLE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AXIS_FEEDRATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_FLUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CAPACITY_SPATIAL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONCENTRATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CONDUCTIVITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CUTTING_SPEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DENSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_ACCELERATION_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_DENSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_MASS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_RATE_VOLUMETRIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEPOSITION_VOLUME)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ELECTRICAL_ENERGY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::EQUIPMENT_TIMER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FILL_LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FLOW)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FREQUENCY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GLOBAL_POSITION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LENGTH)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LINEAR_FORCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::LOAD)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::MASS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PATH_FEEDRATE_PER_REVOLUTION)}}
+
+
+
+
+
+
+ Table Entry of Example
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of Example
+
+
+
+
+
+
+ Cell of Example
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of Example
+
+
+
+
+
+
+ Table of Example
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of Example
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PH)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POWER_FACTOR)}}
+
+
+
+
+
+
+ Table Entry of Description
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of Description
+
+
+
+
+
+
+ Cell of Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of Description
+
+
+
+
+
+
+ Table of Description
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of Description
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PROCESS_TIMER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::RESISTANCE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ROTARY_VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SOUND_LEVEL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SPINDLE_SPEED)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::STRAIN)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TEMPERATURE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TILT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::TORQUE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VELOCITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VISCOSITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLT_AMPERE_REACTIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_FLUID)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLUME_SPATIAL)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::WATTAGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_DC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::AMPERAGE_AC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_AC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::VOLTAGE_DC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::X_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Y_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::Z_DIMENSION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DIAMETER)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ORIENTATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_RELATIVE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_ABSOLUTE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::HUMIDITY_SPECIFIC)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::PRESSURIZATION_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DECELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ASSET_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::ANGULAR_DECELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OBSERVATION_UPDATE_RATE)}}
+
+
+
+
+
+
+ Table Entry of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Cell of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Table of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of The force per unit area measured relative to a vacuum.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::OPENNESS)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DEW_POINT)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note: $$Mass\times
+ GravitationalAcceleration$$
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_FORCE)}} > Note:
+ $$Mass\times GravitationalAcceleration$$
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::GRAVITATIONAL_ACCELERATION)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CAPACITY)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISCHARGE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::CHARGE_RATE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::BATTERY_CHARGE)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::SETTLING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_ANGULAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::FOLLOWING_ERROR_LINEAR)}}
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_LINEAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::DISPLACEMENT_ANGULAR)}} > Note: The
+ displacement vector **MAY** be defined by the motion of the owning
+ {{block(Component)}}.
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Cell Values
+
+
+
+
+
+
+
+
+
+
+ Table Entry of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Cell of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+
+
+ Constraints for Entry Values
+
+
+
+
+
+
+
+ The number of entries
+
+
+
+
+
+
+
+
+
+ Table of {{def(SampleEnum::POSITION_CARTESIAN)}}
+
+
+
+
+
+
+ The description of the Condition
+
+
+
+
+
+
+
+ The device's severity
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a piece of
+ equipment
+
+
+
+
+
+
+
+ A qualifier for the condition
+
+
+
+
+
+
+ The value is too high
+
+
+
+
+
+
+ The value is too low
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type of the power source.
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+ An optional attribute that helps qualify the condition
+
+
+
+
+
+
+ The statistical operation on this data
+
+
+
+
+
+
+
+
+
+ Description
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+
+ Identifier of an individual condition activation provided by a
+ piece of equipment
+
+
+
+
+
+
+
+
+
+ Condition that has transitioned from Normal to either Warning or Fault
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+
+
+
+ The conditon can not be determined.
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that indicates operation within specified
+ limits.
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires concern and supervision and may
+ become hazardous if no action is taken.
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+
+
+
+ {{term(condition state)}} that requires intervention to continue
+ operation to function properly.
+
+
+
+
+
+
+ DEPRECATED: An Notifcation code as defined by the component
+
+
+
+
+
+
+
+ DEPRECATED: Types of Notifcations
+
+
+
+
+
+
+ A failure
+
+
+
+
+
+
+ A fault occurred
+
+
+
+
+
+
+ A spindle crash
+
+
+
+
+
+
+ A component has jammed
+
+
+
+
+
+
+ The component has been overloaded
+
+
+
+
+
+
+ E-Stop was pushed
+
+
+
+
+
+
+ A material failure has occurred
+
+
+
+
+
+
+ An operators message. Used with INFO severity
+
+
+
+
+
+
+ Another Notifcation type
+
+
+
+
+
+
+
+
+ DEPRECATED: The active or cleared state of the notification
+
+
+
+
+
+
+ The notification is active
+
+
+
+
+
+
+ The notification has been cleared
+
+
+
+
+
+
+
+
+ level of severity on a scale of 1-10.
+
+
+
+
+
+
+ The notification is critical
+
+
+
+
+
+
+ An error has occurred
+
+
+
+
+
+
+ A medium level notification that should be observed
+
+
+
+
+
+
+ This notification is for information purposes only
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM)}}
+
+
+
+
+
+
+
+ {{def(EventEnum::CODE)}}
+
+
+
+
+
+
+ level of severity on a scale of 1-10.
+
+
+
+
+
+
+ The state
+
+
+
+
+
+
+ The component specific Notifcation code
+
+
+
+
+
+
+
+
+
+ {{def(EventEnum::ALARM)}}
+
+
+
+
+
+
+ The possible values for an interface event
+
+
+
+
+
+
+ The value is unavailable
+
+
+
+
+
+
+ The interface is not ready
+
+
+
+
+
+
+ The interface is ready
+
+
+
+
+
+
+ The interface is actively executing
+
+
+
+
+
+
+ The interface has completed the action
+
+
+
+
+
+
+ The interface action has failed
+
+
+
+
+
+
+
+
+ An abstract interface event
+
+
+
+
+
+
+
+
+
+
+
+
+
+ An abstract interface event
+
+
+
+
+
+
+ The state of the interface
+
+
+
+
+
+
+ The value is unavailable
+
+
+
+
+
+
+ The interface is enabled
+
+
+
+
+
+
+ The interface is disabled
+
+
+
+
+
+
\ No newline at end of file
diff --git a/schemas/readme.md b/schemas/readme.md
index a5c9052b3..b934c924f 100644
--- a/schemas/readme.md
+++ b/schemas/readme.md
@@ -1,4 +1,4 @@
-MTConnect Schema Files Versions 1.0 - 2.3
+MTConnect Schema Files Versions 1.0 - 2.5
===
Files are named with respect to the section of the standard they apply.
@@ -20,6 +20,8 @@ The files included in this directory are as follows:
* Version 2.1 (With XSD 1.0 compatible files)
* Version 2.2 (With XSD 1.0 compatible files)
* Version 2.3 (With XSD 1.0 compatible files)
+* Version 2.4 (With XSD 1.0 compatible files)
+* Version 2.5 (With XSD 1.0 compatible files)
The schemas are replicated to http://schemas.mtconnect.org
diff --git a/src/mtconnect/agent.cpp b/src/mtconnect/agent.cpp
index a14c15cb9..49182279c 100644
--- a/src/mtconnect/agent.cpp
+++ b/src/mtconnect/agent.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -46,6 +46,8 @@
#include "mtconnect/asset/component_configuration_parameters.hpp"
#include "mtconnect/asset/cutting_tool.hpp"
#include "mtconnect/asset/file_asset.hpp"
+#include "mtconnect/asset/fixture.hpp"
+#include "mtconnect/asset/pallet.hpp"
#include "mtconnect/asset/qif_document.hpp"
#include "mtconnect/asset/raw_material.hpp"
#include "mtconnect/configuration/config_options.hpp"
@@ -58,6 +60,7 @@
#include "mtconnect/sink/rest_sink/file_cache.hpp"
#include "mtconnect/sink/rest_sink/session.hpp"
#include "mtconnect/utilities.hpp"
+#include "mtconnect/validation/observations.hpp"
#include "mtconnect/version.h"
using namespace std;
@@ -85,7 +88,8 @@ namespace mtconnect {
m_deviceXmlPath(deviceXmlPath),
m_circularBuffer(GetOption(options, config::BufferSize).value_or(17),
GetOption(options, config::CheckpointFrequency).value_or(1000)),
- m_pretty(IsOptionSet(options, mtconnect::configuration::Pretty))
+ m_pretty(IsOptionSet(options, mtconnect::configuration::Pretty)),
+ m_validation(IsOptionSet(options, mtconnect::configuration::Validation))
{
using namespace asset;
@@ -96,6 +100,8 @@ namespace mtconnect {
RawMaterial::registerAsset();
QIFDocumentWrapper::registerAsset();
ComponentConfigurationParameters::registerAsset();
+ Pallet::registerAsset();
+ Fixture::registerAsset();
m_assetStorage = make_unique(
GetOption(options, mtconnect::configuration::MaxAssets).value_or(1024));
@@ -106,8 +112,8 @@ namespace mtconnect {
uint32_t(GetOption(options, mtconnect::configuration::JsonVersion).value_or(2));
// Create the Printers
- m_printers["xml"] = make_unique(m_pretty);
- m_printers["json"] = make_unique(jsonVersion, m_pretty);
+ m_printers["xml"] = make_unique(m_pretty, m_validation);
+ m_printers["json"] = make_unique(jsonVersion, m_pretty, m_validation);
if (m_schemaVersion)
{
@@ -170,6 +176,14 @@ namespace mtconnect {
if (!m_observationsInitialized)
{
+ if (m_intSchemaVersion < SCHEMA_VERSION(2, 5) &&
+ IsOptionSet(m_options, mtconnect::configuration::Validation))
+ {
+ m_validation = false;
+ for (auto &printer : m_printers)
+ printer.second->setValidation(false);
+ }
+
for (auto device : m_deviceIndex)
initializeDataItems(device);
@@ -232,7 +246,7 @@ namespace mtconnect {
// Start all the sources
for (auto source : m_sources)
source->start();
-
+
m_afterStartHooks.exec(*this);
}
catch (std::runtime_error &e)
@@ -570,7 +584,7 @@ namespace mtconnect {
LOG(error) << "Device does not have a name: " << *device->getUuid();
return false;
}
-
+
verifyDevice(device);
createUniqueIds(device);
diff --git a/src/mtconnect/agent.hpp b/src/mtconnect/agent.hpp
index 9179c8ce9..3556d02b4 100644
--- a/src/mtconnect/agent.hpp
+++ b/src/mtconnect/agent.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -112,7 +112,7 @@ namespace mtconnect {
/// @brief Hooks to run when before the agent starts all the soures and sinks
/// @return configuration::HookManager&
auto &beforeStartHooks() { return m_beforeStartHooks; }
-
+
/// @brief Hooks to run when after the agent starts all the soures and sinks
/// @return configuration::HookManager&
auto &afterStartHooks() { return m_afterStartHooks; }
@@ -546,6 +546,9 @@ namespace mtconnect {
// For debugging
bool m_pretty;
+ // validation
+ bool m_validation {false};
+
// Agent hooks
configuration::HookManager m_beforeInitializeHooks;
configuration::HookManager m_afterInitializeHooks;
@@ -660,7 +663,7 @@ namespace mtconnect {
}
buffer::CircularBuffer &getCircularBuffer() override { return m_agent->getCircularBuffer(); }
-
+
configuration::HookManager &getHooks(HookType type) override
{
using namespace sink;
@@ -669,7 +672,7 @@ namespace mtconnect {
case BEFORE_START:
return m_agent->beforeStartHooks();
break;
-
+
case AFTER_START:
return m_agent->afterStartHooks();
break;
@@ -677,33 +680,32 @@ namespace mtconnect {
case BEFORE_STOP:
return m_agent->beforeStopHooks();
break;
-
+
case BEFORE_DEVICE_XML_UPDATE:
return m_agent->beforeDeviceXmlUpdateHooks();
break;
-
+
case AFTER_DEVICE_XML_UPDATE:
return m_agent->afterDeviceXmlUpdateHooks();
break;
-
+
case BEFORE_INITIALIZE:
return m_agent->beforeInitializeHooks();
break;
-
+
case AFTER_INITIALIZE:
return m_agent->afterInitializeHooks();
break;
}
-
+
LOG(error) << "getHooks: Bad hook manager type given to sink contract";
throw std::runtime_error("getHooks: Bad hook manager type");
-
+
// Never gets here.
static configuration::HookManager NullHooks;
return NullHooks;
}
-
protected:
Agent *m_agent;
};
diff --git a/src/mtconnect/asset/asset.cpp b/src/mtconnect/asset/asset.cpp
index ecda782de..ac51d0cd9 100644
--- a/src/mtconnect/asset/asset.cpp
+++ b/src/mtconnect/asset/asset.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/asset.hpp b/src/mtconnect/asset/asset.hpp
index aea57917d..6d9fdc096 100644
--- a/src/mtconnect/asset/asset.hpp
+++ b/src/mtconnect/asset/asset.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/asset_buffer.hpp b/src/mtconnect/asset/asset_buffer.hpp
index b4aa75bff..662780745 100644
--- a/src/mtconnect/asset/asset_buffer.hpp
+++ b/src/mtconnect/asset/asset_buffer.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/asset_storage.hpp b/src/mtconnect/asset/asset_storage.hpp
index dcccae645..ff90e49a4 100644
--- a/src/mtconnect/asset/asset_storage.hpp
+++ b/src/mtconnect/asset/asset_storage.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/component_configuration_parameters.cpp b/src/mtconnect/asset/component_configuration_parameters.cpp
index 100652671..d341b6d8c 100644
--- a/src/mtconnect/asset/component_configuration_parameters.cpp
+++ b/src/mtconnect/asset/component_configuration_parameters.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/component_configuration_parameters.hpp b/src/mtconnect/asset/component_configuration_parameters.hpp
index ef45675fb..fc40d3449 100644
--- a/src/mtconnect/asset/component_configuration_parameters.hpp
+++ b/src/mtconnect/asset/component_configuration_parameters.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/cutting_tool.cpp b/src/mtconnect/asset/cutting_tool.cpp
index 579350bcb..245f0b2a6 100644
--- a/src/mtconnect/asset/cutting_tool.cpp
+++ b/src/mtconnect/asset/cutting_tool.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -53,18 +53,7 @@ namespace mtconnect {
Requirement("nominal", ValueType::DOUBLE, false),
Requirement("VALUE", ValueType::DOUBLE, false)}));
- static auto measurement = make_shared(Requirements(
- {Requirement("significantDigits", ValueType::INTEGER, false),
- Requirement("units", false), Requirement("nativeUnits", false),
- Requirement("code", false), Requirement("maximum", ValueType::DOUBLE, false),
- Requirement("minimum", ValueType::DOUBLE, false),
- Requirement("nominal", ValueType::DOUBLE, false),
- Requirement("VALUE", ValueType::DOUBLE, false)}));
-
- static auto measurements = make_shared(Requirements({Requirement(
- "Measurement", ValueType::ENTITY, measurement, 1, Requirement::Infinite)}));
- measurements->registerMatchers();
- measurements->registerFactory(regex(".+"), measurement);
+ static auto measurements = PhysicalAsset::getMeasurementsFactory()->deepCopy();
static auto ext = make_shared();
ext->registerFactory(regex(".+"), ext);
@@ -83,7 +72,6 @@ namespace mtconnect {
item->registerFactory(regex(".+"), ext);
item->setAny(true);
- measurements->registerMatchers();
item->setOrder({"Description", "CutterStatus", "Locus", "ItemLife", "ProgramToolGroup",
"Measurements"});
diff --git a/src/mtconnect/asset/cutting_tool.hpp b/src/mtconnect/asset/cutting_tool.hpp
index 1c3e820c9..969a01270 100644
--- a/src/mtconnect/asset/cutting_tool.hpp
+++ b/src/mtconnect/asset/cutting_tool.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
@@ -22,6 +22,7 @@
#include
#include "asset.hpp"
+#include "mtconnect/asset/physical_asset.hpp"
#include "mtconnect/config.hpp"
#include "mtconnect/utilities.hpp"
diff --git a/src/mtconnect/asset/file_asset.cpp b/src/mtconnect/asset/file_asset.cpp
index 222b97f97..b001c86ca 100644
--- a/src/mtconnect/asset/file_asset.cpp
+++ b/src/mtconnect/asset/file_asset.cpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/file_asset.hpp b/src/mtconnect/asset/file_asset.hpp
index 380f26bcb..9c5ea9797 100644
--- a/src/mtconnect/asset/file_asset.hpp
+++ b/src/mtconnect/asset/file_asset.hpp
@@ -1,5 +1,5 @@
//
-// Copyright Copyright 2009-2022, AMT – The Association For Manufacturing Technology (“AMT”)
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/src/mtconnect/asset/fixture.cpp b/src/mtconnect/asset/fixture.cpp
new file mode 100644
index 000000000..16bf509a8
--- /dev/null
+++ b/src/mtconnect/asset/fixture.cpp
@@ -0,0 +1,54 @@
+//
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
+// All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#include "fixture.hpp"
+
+using namespace std;
+
+namespace mtconnect::asset {
+ using namespace entity;
+
+ FactoryPtr Fixture::getFactory()
+ {
+ static FactoryPtr factory;
+ if (!factory)
+ {
+ factory = make_shared(*PhysicalAsset::getFactory());
+ factory->addRequirements(Requirements {{"FixtureId", ValueType::STRING, false},
+ {"FixtureNumber", ValueType::INTEGER, false},
+ {"ClampingMethod", ValueType::STRING, false},
+ {"MountingMethod", ValueType::STRING, false}});
+
+ factory->setOrder({"ManufactureDate", "CalibrationDate", "InspectionDate",
+ "NextInspectionDate", "Measurements", "FixtureId", "FixtureNumber",
+ "ClampingMethod", "MountingMethod"});
+ }
+
+ return factory;
+ }
+
+ void Fixture::registerAsset()
+ {
+ static bool once {true};
+ if (once)
+ {
+ Asset::registerAssetType("Fixture", getFactory());
+ once = false;
+ }
+ }
+
+} // namespace mtconnect::asset
diff --git a/src/mtconnect/asset/fixture.hpp b/src/mtconnect/asset/fixture.hpp
new file mode 100644
index 000000000..5823f9432
--- /dev/null
+++ b/src/mtconnect/asset/fixture.hpp
@@ -0,0 +1,37 @@
+//
+// Copyright Copyright 2009-2024, AMT – The Association For Manufacturing Technology (“AMT”)
+// All rights reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#pragma once
+
+#include