From ed1e4c15f2a1e378061392a47afb26d48d27dc62 Mon Sep 17 00:00:00 2001
From: Anders Nilsson <anders.nilsson@cs.lth.se>
Date: Thu, 30 Nov 2006 16:21:47 +0100
Subject: [PATCH] Added version V08a ontology. Modified compiler so that both
 the meta compiler and the generated one can be run directly on the unmodified
 ontology

---
 Types.jrag              |    3 +-
 owl.ast                 |    5 +-
 owl.jjt                 |   40 +-
 siaras/Siaras.jjt       |    5 +-
 testontologies/v08a.owl | 8340 +++++++++++++++++++++++++++++++++++++++
 5 files changed, 8382 insertions(+), 11 deletions(-)
 create mode 100644 testontologies/v08a.owl

diff --git a/Types.jrag b/Types.jrag
index df86642..7484a6e 100644
--- a/Types.jrag
+++ b/Types.jrag
@@ -31,7 +31,8 @@ aspect Types {
     eq OwlClassUse.decl() {
 		ComplexElement top = getTopElement();
 		for (int i=0; i<top.getNumElement(); i++) {
-			if (getId().equals(((ComplexElement) top.getElement(i)).getId())) {
+			if ((top.getElement(i) instanceof ComplexElement) &&
+				getId().equals(((ComplexElement) top.getElement(i)).getId())) {
 				return (OwlClassDecl) top.getElement(i);
 			}
 		}
diff --git a/owl.ast b/owl.ast
index 63d1dfd..f1a604a 100644
--- a/owl.ast
+++ b/owl.ast
@@ -31,6 +31,7 @@ OwlClass : ComplexElement;
 OwlDataRange : ComplexElement;
 OwlDatatypeProperty : ComplexElement;
 OwlDisjointWith : ComplexElement;
+OwlDistinctMembers: ComplexElement;
 OwlEquivalentClass : ComplexElement;
 OwlFunctionalProperty : OwlProperty;
 OwlImports : ComplexElement;
@@ -67,8 +68,10 @@ XmlnsXsd : Attribute;
 XmlnsRdfs : Attribute;
 XmlnsOwl : Attribute;
 
-Value ::= <STRING_LITERAL>;
+DiscardedElement : Element ::= Identifier Attribute* Element*;
 
+Value ::= <STRING_LITERAL>;
+Identifier ::= <IDENTIFIER>;
 
 // Types used by rewrite rules
 abstract OClass : ComplexElement ::= <Id:String>;
diff --git a/owl.jjt b/owl.jjt
index f855234..e151acc 100644
--- a/owl.jjt
+++ b/owl.jjt
@@ -1,3 +1,4 @@
+/* -*-Java-*- */
 
 /* 
  * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
@@ -13,6 +14,9 @@ options {
     NODE_PREFIX                 = "";
     JAVA_UNICODE_ESCAPE         = true;
     STATIC                      = false;
+//  	DEBUG_PARSER                = true;
+// 	DEBUG_LOOKAHEAD             = true;
+//  	DEBUG_TOKEN_MANAGER         = true;
 } // options
 
 
@@ -69,6 +73,7 @@ SPECIAL_TOKEN : /* COMMENTS */
   | < OWL_DATARANGE         : "owl:DataRange" >
   | < OWL_DATATYPEPROPERTY  : "owl:DatatypeProperty" >
   | < OWL_DISJOINTWITH      : "owl:disjointWith" >
+  | < OWL_DISTINCTMEMBERS      : "owl:distinctMembers" >
   | < OWL_EQUIVALENTCLASS   : "owl:equivalentClass" >
   | < OWL_FUNCTIONALPROPERTY : "owl:FunctionalProperty" >
   | < OWL_IMPORTS            : "owl:imports" >
@@ -223,8 +228,8 @@ SPECIAL_TOKEN : /* COMMENTS */
     | < LBRACKET             : "["    >
     | < RBRACKET             : "]"    >
     | < SEMICOLON            : ";"    >
-//     | < COMMA                : ","    >
-//     | < DOT                  : "."    >
+    | < COMMA                : ","    >
+    | < DOT                  : "."    >
 }// SEPARATORS
 
 
@@ -236,7 +241,7 @@ SPECIAL_TOKEN : /* COMMENTS */
 //     | < BANG                 : "!"    >
 //     | < TILDE                : "~"    >
 //     | < HOOK                 : "?"    >
-//     | < COLON                : ":"    >
+     | < COLON                : ":"    >
 //     | < EQ                   : "=="   >
 //     | < LE                   : "<="   >
 //     | < GE                   : ">="   >
@@ -245,10 +250,10 @@ SPECIAL_TOKEN : /* COMMENTS */
 //     | < SC_AND               : "&&"   >
 //     | < INCR                 : "++"   >
 //     | < DECR                 : "--"   >
-//     | < PLUS                 : "+"    >
-//     | < MINUS                : "-"    >
+     | < PLUS                 : "+"    >
+     | < MINUS                : "-"    >
 //     | < STAR                 : "*"    >
-//     | < SLASH                : "/"    >
+     | < SLASH                : "/"    >
 //     | < BIT_AND              : "&"    >
 //     | < BIT_OR               : "|"    >
 //     | < XOR                  : "^"    >
@@ -313,10 +318,23 @@ void Element() : {}
 {
     ( "<" ( OwlElement()
 	    | RdfElement()
+		| DiscardedElement()
 	    ))
 	| SimpleElement()
 }
 
+void DiscardedElement() #DiscardedElement : {}
+{
+	Identifier() AttributeList() 
+	(">" ElementList() "</" <IDENTIFIER> ">" | ElementList() "/>")
+}
+
+void Identifier() #Identifier : {Token t;}
+{
+	t = <IDENTIFIER>
+	{jjtThis.setIDENTIFIER(t.image);}
+}
+
 void SimpleElement() : {}
 {
     IntElement()
@@ -338,7 +356,8 @@ void FloatElement() #FloatElement : { Token t; }
 
 void StringElement() #StringElement : { Token t; }
 {
-    t = <IDENTIFIER>
+    t = <IDENTIFIER> | t = <COMMA> | t = <MINUS> | t = <DOT> | t = <PLUS> | t = <SLASH>
+		| t = <COLON>
 	{jjtThis.setIDENTIFIER(t.image);}
 }
 
@@ -352,6 +371,7 @@ void OwlElement() : {}
 	| OwlDataRange()
 	| OwlDatatypeProperty()
 	| OwlDisjointWith()
+	| OwlDistinctMembers()
 	| OwlEquivalentClass()
 	| OwlFunctionalProperty()
 	| OwlImports()
@@ -414,6 +434,12 @@ void OwlDisjointWith() #OwlDisjointWith : {}
 	(">" ElementList() "</" <OWL_DISJOINTWITH> ">" | ElementList() "/>")
 }
 
+void OwlDistinctMembers() #OwlDistinctMembers : {}
+{
+    <OWL_DISTINCTMEMBERS> AttributeList() 
+	(">" ElementList() "</" <OWL_DISTINCTMEMBERS> ">" | ElementList() "/>")
+}
+
 void OwlEquivalentClass() #OwlEquivalentClass : {}
 {
     <OWL_EQUIVALENTCLASS> AttributeList() 
diff --git a/siaras/Siaras.jjt b/siaras/Siaras.jjt
index 044ec09..3e51e0d 100644
--- a/siaras/Siaras.jjt
+++ b/siaras/Siaras.jjt
@@ -1,3 +1,4 @@
+/* -*-Java-*- */
 
 /* 
  * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
@@ -225,7 +226,7 @@ SPECIAL_TOKEN : /* COMMENTS */
     | < RBRACKET             : "]"    >
     | < SEMICOLON            : ";"    >
 	| < COMMA                : ","    >
-//     | < DOT                  : "."    >
+    | < DOT                  : "."    >
 }// SEPARATORS
 
 
@@ -312,7 +313,7 @@ void Identifier() #OwlIdentifier : {Token t;}
 
 void OtherToken() #OwlIdentifier : {Token t;}
 {
-	t=<PLUS> | t=<MINUS> | t=<SLASH> | t=<COMMA>
+	t=<PLUS> | t=<MINUS> | t=<SLASH> | t=<COMMA> | t=<DOT>
 		{jjtThis.setIDENTIFIER(t.image);}
 }
 
diff --git a/testontologies/v08a.owl b/testontologies/v08a.owl
new file mode 100644
index 0000000..56f4577
--- /dev/null
+++ b/testontologies/v08a.owl
@@ -0,0 +1,8340 @@
+<?xml version="1.0"?>
+<rdf:RDF
+    xmlns="http://www.owl-ontologies.com/siaras.owl#"
+    xmlns:protege="http://protege.stanford.edu/plugins/owl/protege#"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+    xmlns:owl="http://www.w3.org/2002/07/owl#"
+    xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
+    xmlns:p1="http://www.owl-ontologies.com/assert.owl#"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+  xml:base="http://www.owl-ontologies.com/siaras.owl">
+  <owl:Ontology rdf:about=""/>
+  <owl:Class rdf:ID="HexapodRobot">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ArticulatedRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SpecialKinematicRobot"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Robot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SimpleKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ParallelKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CartesianRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ScaraRobot"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Very precise kinematic, but small working area. This is used for special applications.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:ID="Read2DMatrixCode">
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Read"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ReadBarCode"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ReadOpticalCharacters"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:ID="LightType">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LaserClass"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxMeasurementRange"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LightSpotSize"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ScanningDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MinMeasurementRange"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxScanAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="FieldOfView"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="PhysicalPropertiesSensor"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="Arrange">
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Move"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Pan"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Feed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Position"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Pass"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Convey"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Displace"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Orient"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from an undefined to a well-defined orientation and position.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Turn"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="NumberOfClaws">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaximumVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TypeOfMagnet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ShapeOfClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Reach"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="NumberOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DiameterOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="NumberOfMovableClaws"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="DetectContrast">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:ID="isSkillOf"/>
+        </owl:onProperty>
+        <owl:someValuesFrom>
+          <owl:Class rdf:ID="OpticContrastScanner"/>
+        </owl:someValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:11
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 3</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DetectObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DetectCollision"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Detect"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DetectLuminescence"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DetectColor"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Arrangement">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Timing"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Cost"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Communication"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Property"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ToolInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="QualityCriteria"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PhysicalProperties"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Identifier"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="MeasureArea">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureOrientationOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureTorque"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureSpeed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureAcceleration"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MeasureDiameter"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Roll">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Bend"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Crush"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Stretch-Form"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Extrude"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Deep-Draw"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is a malleable procedure. The material is feed between at least two rotating rolls. There are various types of rollling.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Forge"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="True"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxMeasurementRange">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinMeasurementRange"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LightType"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScanningDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LaserClass"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >In mm.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxScanAngle"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightSpotSize"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Hone">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Smooth finishing of metallic surfaces, mostly wholes to increase size, shape or surface performance.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Drill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Broach"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Grind"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Separate"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Lap"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Rub"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Saw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="File"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Thrust"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureTemperature">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAcceleration"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureOrientationOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureSpeed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureTorque"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAngle"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#DetectColor">
+    <owl:disjointWith rdf:resource="#DetectContrast"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectLuminescence"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectObject"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Detect"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 4</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:ID="OpticColorSensor"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectCollision"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="AdjustCurrentToRelease">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:allValuesFrom>
+          <owl:Class rdf:ID="MagnetGripper"/>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="AdjustVacuumToRelease"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpenFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpenClaws"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Release"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="MagneticSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CapacitveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="InductiveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TactileSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="UltrasonicSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="EncoderSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TorqueForceSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpticSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Sensor"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="Age">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Anneal"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="ModifyWorkpieceProperties"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Improve the mechanical resistivity by modifying the crystal structure. This is done by heating and fast cooling down.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Temper"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Reach">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaximumVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ShapeOfClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfMagnet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DiameterOfGripper"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Property">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Device"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Task"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Skill"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureOrientationOfObject">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureTorque"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureSpeed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAcceleration"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="ManufacturingFunction">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SensorFunction"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="MainFunction"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ManipulationAndHandlingFunction"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#DetectLuminescence">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectObject"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 5</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectCollision"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DetectContrast"/>
+    <owl:disjointWith rdf:resource="#DetectColor"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:ID="OpticLuminescenceScanner"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Detect"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Read">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Check"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ImageAnalysis"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Measure"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Classify"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Scan"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Detect"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#SensorFunction"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="VacuumGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MagnetGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:ID="AdjustVacuumToGrip"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:ID="hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PincerGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#AdjustVacuumToRelease"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="FingerGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Gripper"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticLuminescenceScanner">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="VisionSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpticSwitch"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticColorSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LaserScanner2D"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpticDistanceSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SmartCamera"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 5</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:ID="CheckPresence">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CheckPosition"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Count"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Check"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CheckSurfaceForIrregularities"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#ModifyWorkpieceProperties">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Coat"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Separate"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Modify some physical properties of the workpiece.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Form"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Join"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Mold"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Anneal">
+    <rdfs:subClassOf rdf:resource="#ModifyWorkpieceProperties"/>
+    <owl:disjointWith rdf:resource="#Age"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Temper"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Set specific material properties by heating, holding the heat for a specific time and cooling down.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#ReadBarCode">
+    <owl:disjointWith rdf:resource="#Read2DMatrixCode"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ReadOpticalCharacters"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Read"/>
+  </owl:Class>
+  <owl:Class rdf:about="#SmartCamera">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticSwitch"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LaserScanner2D"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticDistanceSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticColorSensor"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 7</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureAngle">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureTorque"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAcceleration"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureSpeed"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Extrude">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is mainly used to create profiles, tubes and wires.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Forge"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Stretch-Form"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#True"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bend"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Crush"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="CoordinateReferenceSystem">
+    <rdfs:subClassOf rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MountedDeviceOrientation"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="WorkCoordinates"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MountedDevicePosition"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="WorkFrame"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#SpecialKinematicRobot">
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Robot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CartesianRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ArticulatedRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScaraRobot"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Everything else which cannot be sorted in one of the other categories.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ParallelKinematicRobot"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Cast">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Mold"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >From fluid metallic material a solid workpiece is created.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Sinter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ElectrolyticSegregate"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Crush">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Stretch-Form"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Relative change of length by pressure force.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#True"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bend"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Forge"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+  </owl:Class>
+  <owl:Class rdf:ID="BlobAnalysis">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SegmentImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DecompressImageData"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="TransformImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CalibrateImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ExtractEdges"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ImageAnalysis"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CompressImageData"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="FilterImage"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#LaserScanner2D">
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticSwitch"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticColorSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticDistanceSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="Store">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ManipulationAndHandlingFunction"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Secure"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Move"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ModifyAmount"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#AdjustVacuumToRelease">
+    <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpenClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpenFingers"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Release"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#VacuumGripper"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Forge">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bend"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The workpiece is heated, the whole profile is plasticised. In doing so the crystal structure of the workpiece changes and the workpiece becomes softer.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#True"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Stretch-Form"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#SensorFunction">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:allValuesFrom>
+          <owl:Class rdf:about="#Sensor"/>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:6-7
+(breakdown of properties)</rdfs:comment>
+    <owl:disjointWith rdf:resource="#ManufacturingFunction"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#MainFunction"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ManipulationAndHandlingFunction"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureSpeed">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAcceleration"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureTorque"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Pan">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Pass"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Position"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Displace"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from one to another orientation and position by rotation around an axis which does not intersect with the part.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Convey"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Orient"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Solder">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Assemble"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Fill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Clinch"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Join"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is a thermic procedure to connect workpieces. Then, a fluid phase is created by melting solder (additional material).</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Weld"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Glue"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Bolt"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Rivet"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Rub">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#File"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Drill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Saw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create wholes and increase the fitting quality.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Broach"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lap"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="ClassifyObject">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Classify"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SortObjects"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureTorque">
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureAcceleration"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#FingerGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PincerGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Gripper"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:ID="CloseFingers"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MagnetGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#OpenFingers"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#VacuumGripper"/>
+  </owl:Class>
+  <owl:Class rdf:ID="Worm">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="WormDiameter"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="MechanicalConnector"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Can be inside or outside.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#MountedDeviceOrientation">
+    <rdfs:subClassOf rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#WorkFrame"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#WorkCoordinates"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MountedDevicePosition"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="ResponseTime">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Timing"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SwitchingFrequency"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CycleTime"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in seconds</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:ID="PlaybackCtrl">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="NumericalCtrl"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Capability of replaying preteached sequences and commands.
+This includes as well very simple controllers like Pick-and-Placers. They are capable of replaying a pick sequence.</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="IntelligentCtrl"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SimpleControl"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#DiameterOfGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfMagnet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ShapeOfClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaximumVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Count">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CheckSurfaceForIrregularities"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CheckPosition"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Check"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#CheckPresence"/>
+  </owl:Class>
+  <owl:Class rdf:about="#DetectObject">
+    <owl:disjointWith rdf:resource="#DetectLuminescence"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Detect"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#DetectContrast"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 2</rdfs:comment>
+    <owl:disjointWith rdf:resource="#DetectColor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DetectCollision"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MaximumVacuum">
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfMagnet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ShapeOfClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Skill">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:allValuesFrom>
+          <owl:Class rdf:about="#Device"/>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Device"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <owl:disjointWith rdf:resource="#Property"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Task"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+(Breakdown of Skills)</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Stretch-Form">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#True"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bend"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#NumberOfFingers">
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfMagnet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ShapeOfClaws"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="CloseClaws">
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="Grasp"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#AdjustVacuumToGrip"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="AdjustCurrentToGrip"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CloseFingers"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#PincerGripper"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#TypeOfMagnet">
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ShapeOfClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+  </owl:Class>
+  <owl:Class rdf:ID="WheelEncoder">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LinearEncoder"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="WireDrawEncoder"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#CycleTime">
+    <owl:disjointWith rdf:resource="#ResponseTime"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Timing"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in seconds</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SwitchingFrequency"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Weld">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bolt"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Clinch"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assemble"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Join"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Glue"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is a permanent connection of workpieces by using heat and/or pressure. The material keeps its properties when welded.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:ID="ElectricalInterface">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Communication"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="BusInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CommunicationProtocol"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#DetectCollision">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Detect"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#DetectColor"/>
+    <owl:disjointWith rdf:resource="#DetectLuminescence"/>
+    <owl:disjointWith rdf:resource="#DetectObject"/>
+    <owl:disjointWith rdf:resource="#DetectContrast"/>
+  </owl:Class>
+  <owl:Class rdf:ID="Accuracy">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Precision"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Repeatability"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Resolution"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PathVelocityFluctuation"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="MinVoltageSupply">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DegreesOfFreedom"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Height"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in volts</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Length"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Width"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Temper">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Influence the mechanical stresses of the workpiece. The material is given a regular structure.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#ModifyWorkpieceProperties"/>
+    <owl:disjointWith rdf:resource="#Age"/>
+    <owl:disjointWith rdf:resource="#Anneal"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MainFunction">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="AdditionalFunction"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Skill"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+(Breakdown of Skills)</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="DiagnosticFunction"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Lap">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Broach"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Saw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#File"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Flatten surfaces while keeping very low tolerances. Moveable, rolling grains are used between the lapping plate and the workpiece.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Drill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#PhysicalPropertiesGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DegreesOfFreedom"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Width"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Length"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticSwitch">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticColorSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticDistanceSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#AdjustVacuumToGrip">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CloseFingers"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Grasp"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#CloseClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#AdjustCurrentToGrip"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#VacuumGripper"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Width">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DegreesOfFreedom"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Length"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Varnish">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Coat"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Powder-coat"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Electroplate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Hot-galvanise"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Put colour or any other material onto the surface, either by spraying or painting.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Sensor">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Timing"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:ID="hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#SensorFunction"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Cost"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Communication"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Identifier"/>
+        </owl:someValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Device"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#QualityCriteria"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ManipulationAndHandling"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#Arrangement"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Manufacturing"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticColorSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticDistanceSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 4</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#AdditionalFunction">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+(Breakdown of Skills)</rdfs:comment>
+    <owl:disjointWith rdf:resource="#MainFunction"/>
+    <rdfs:subClassOf rdf:resource="#Skill"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#DiagnosticFunction"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="BarcodeReader">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#DiagnosticFunction">
+    <owl:disjointWith rdf:resource="#AdditionalFunction"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+(Breakdown of Skills)</rdfs:comment>
+    <owl:disjointWith rdf:resource="#MainFunction"/>
+    <rdfs:subClassOf rdf:resource="#Skill"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CloseFingers">
+    <owl:disjointWith rdf:resource="#AdjustVacuumToGrip"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Grasp"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#FingerGripper"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#CloseClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#AdjustCurrentToGrip"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Saw">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Drill"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A steel plate with teeth attached to it removes thin chippings by moving into the material. This is widely used for wood, stone, metal, plastics and other solid materials.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#File"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Broach"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpenFingers">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Release"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#FingerGripper"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#AdjustVacuumToRelease"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpenClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Broach">
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The workpiece is given the tool's contour. This is used where contours are necessary which cannot be created by milling or lathing.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Drill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#File"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Coat">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Form"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Join"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Put a permanent layer of formless material onto the workpiece.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mold"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/>
+  </owl:Class>
+  <owl:Class rdf:ID="TypeOfActuation">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Reachability"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="NumberOfJoints"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Drill">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#File"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create a circular whole in the workpiece.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#DegreesOfFreedom">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Length"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Bend">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#True"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Put a bending moment to the material which causes a malleable, i.e. permanent deformation.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureAcceleration">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureMotionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Orient">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Pass"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Displace"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Convey"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Position"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from an undefined to a well-defined orientation. The part's position is not important here.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#File">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Grind"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The workpiece is fixed while a metal plate performs a cutting movement and a feed motion. This is done manually very often.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Separate"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#WormDiameter">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Worm"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#MechanicalConnector"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Length">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+  </owl:Class>
+  <owl:Class rdf:about="#WorkFrame">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MountedDevicePosition"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/>
+    <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/>
+    <rdfs:subClassOf rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#WorkCoordinates"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Separate">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Form"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Coat"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Modify the workpiece by breaking the coherence at some location.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Join"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mold"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="CollectStatisticalData">
+    <rdfs:subClassOf rdf:resource="#DiagnosticFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="PerformSelfTest"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureMotionOfObject">
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="OpticProximitySwitch">
+    <rdfs:subClassOf rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpticReflexSwitch"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="OpticThroughBeamSwitch"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#SwitchingFrequency">
+    <owl:disjointWith rdf:resource="#ResponseTime"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in Kilohertz</rdfs:comment>
+    <owl:disjointWith rdf:resource="#CycleTime"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Timing"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#PhysicalPropertiesSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticDistanceSensor">
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#VisionSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#OpticColorSensor"/>
+    <owl:disjointWith rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#NumericalCtrl">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#PlaybackCtrl"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Capability of setting up movements via numerical positions instead of functions.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleControl"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#IntelligentCtrl"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="Calibrate">
+    <rdfs:subClassOf rdf:resource="#AdditionalFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SetParameterValue"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="SaveParameterSet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Reset"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LoadParameterSet"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Electroplate">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Powder-coat"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Hot-galvanise"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Coat"/>
+    <owl:disjointWith rdf:resource="#Varnish"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Put the material to the surface with the help of some electrochemical processes.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#PincerGripper">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Gripper"/>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#CloseClaws"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#FingerGripper"/>
+    <owl:disjointWith rdf:resource="#VacuumGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MagnetGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#OpenClaws"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Repeatability">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Precision"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PathVelocityFluctuation"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Resolution"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Accuracy"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Detect">
+    <owl:disjointWith rdf:resource="#Read"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Classify"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Measure"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Scan"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 2-5</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Check"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ImageAnalysis"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Convey">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Displace"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part (or transported material) from one undefined to another undefined position. The trajectory and the orientation of the parts while moved are not necessarily defined.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Position"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Pass"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+  </owl:Class>
+  <owl:Class rdf:ID="Circular">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="AsFastAsPossible"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Feed"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Karthesian"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#ShapeOfClaws">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StiffnessOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxAmbientTemperature">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Shape"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in degrees celsius</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Shape">
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Height"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#SortObjects">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Classify"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#ClassifyObject"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ManipulationAndHandling">
+    <owl:disjointWith rdf:resource="#Sensor"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#ManipulationAndHandlingFunction"/>
+        </owl:someValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Device"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Manufacturing"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Grind">
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Increase the surface performance, flatten the surface.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thermal-Separate"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Drill"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Classify">
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith rdf:resource="#Detect"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ImageAnalysis"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Read"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Scan"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Measure"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Check"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#BusInterface">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CommunicationProtocol"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ElectricalInterface"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Communication"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Cost">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Identifier"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Timing"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ToolInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Communication"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in euros</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+  </owl:Class>
+  <owl:Class rdf:about="#SetParameterValue">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Reset"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#AdditionalFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LoadParameterSet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SaveParameterSet"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Calibrate"/>
+  </owl:Class>
+  <owl:Class rdf:about="#StiffnessOfGripper">
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfVacuum"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Height">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalProperties"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Material"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#PhysicalProperties">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Timing"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Communication"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Identifier"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ToolInterface"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Material">
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Diameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+  </owl:Class>
+  <owl:Class rdf:about="#LoadParameterSet">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Reset"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#SetParameterValue"/>
+    <owl:disjointWith rdf:resource="#Calibrate"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SaveParameterSet"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#AdditionalFunction"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureDistance">
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MagnetGripper">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#AdjustCurrentToGrip"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#AdjustCurrentToRelease"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Gripper"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#FingerGripper"/>
+    <owl:disjointWith rdf:resource="#VacuumGripper"/>
+    <owl:disjointWith rdf:resource="#PincerGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#True">
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Flang"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Machine finishing after e.g. folding</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#TorqueForceSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#UltrasonicSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InductiveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Timing">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Communication"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ToolInterface"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Identifier"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Flang">
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Deep-Draw"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Orthogonal bending up of the border of metal sheets. This is used for creating pipe connections and is widely used in the manufacturing of air channels.</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith rdf:resource="#True"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ReadOpticalCharacters">
+    <owl:disjointWith rdf:resource="#ReadBarCode"/>
+    <owl:disjointWith rdf:resource="#Read2DMatrixCode"/>
+    <rdfs:subClassOf rdf:resource="#Read"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Diameter">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalInterface"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Bolt">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Join"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Weld"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Glue"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Clinch"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Bolts are removable elements to create a connection between two or more workpieces.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assemble"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Gripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Robot"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ManipulationAndHandling"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#PhysicalPropertiesGripper"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#Cost"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Communication"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#Identifier"/>
+        </owl:someValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#Arrangement"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#ControlSystem"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:ID="StorePartlyOrdered">
+    <rdfs:subClassOf rdf:resource="#Store"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="StoreUnOrdered"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="StoreInOrder"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Save workpieces which are geometrically defined in a well-defined position and/or orientation. This means position and orientation are only defined in some of their degrees of freedom.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#PhysicalInterface">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxCurrentConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Deep-Draw">
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith rdf:resource="#Flang"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Change the shape of a sheet metal or plate by pressing into a hollow piece. 
+This is one of the most important procedures in mass production and small series production.</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Form"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fold"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <owl:disjointWith rdf:resource="#True"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Glue">
+    <owl:disjointWith rdf:resource="#Bolt"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Clinch"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Join"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assemble"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Weld"/>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Connect workpieces with the help of a glue. This is done by physical interaction of the glue at the workpieces' interfaces.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#ManipulationAndHandlingFunction">
+    <owl:disjointWith rdf:resource="#ManufacturingFunction"/>
+    <rdfs:subClassOf rdf:resource="#MainFunction"/>
+    <owl:disjointWith rdf:resource="#SensorFunction"/>
+  </owl:Class>
+  <owl:Class rdf:about="#OpenClaws">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#PincerGripper"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/>
+    <owl:disjointWith rdf:resource="#OpenFingers"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Release"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#AdjustVacuumToRelease"/>
+  </owl:Class>
+  <owl:Class rdf:about="#VisionSensor">
+    <owl:disjointWith rdf:resource="#OpticDistanceSensor"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticContrastScanner"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith rdf:resource="#OpticColorSensor"/>
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+  </owl:Class>
+  <owl:Class rdf:about="#AsFastAsPossible">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Feed"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Circular"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Karthesian"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Pass">
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from one to another positition along an undefined trajectory. The part's orientation remains unchanged.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Convey"/>
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Displace"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Position"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Form">
+    <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Join"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mold"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Separate"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create workpieces from solid raw pieces. The shape is permanently modified. The volumina remains the same.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Coat"/>
+  </owl:Class>
+  <owl:Class rdf:about="#TypeOfVacuum">
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWeight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Join">
+    <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is the creation of a long-term connection of workpieces with a geometrically defined, fixed shape or with formless-parts.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Form"/>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith rdf:resource="#Coat"/>
+    <owl:disjointWith rdf:resource="#Separate"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mold"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Resolution">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Accuracy"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PathVelocityFluctuation"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Repeatability"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Precision"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#CartesianRobot">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ParallelKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#SpecialKinematicRobot"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Robot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ArticulatedRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >These machines move along the cartesian axes, i.e. they don't have revolute joints. Sometimes, there is a kind of portal where they move in. They are usually used for packing, palletizing and so on where they move heavy loads.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScaraRobot"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureForce">
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureDistance"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasurePositionOfObject"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticContrastScanner">
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LightGrid"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#VisionSensor"/>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 3</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith rdf:resource="#OpticDistanceSensor"/>
+    <owl:disjointWith rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith rdf:resource="#OpticColorSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CheckSurfaceForIrregularities">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Task and Skills of Optical Sensors v1.1
+part:7</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CheckPosition"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Count"/>
+    <owl:disjointWith rdf:resource="#CheckPresence"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Check"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Powder-coat">
+    <owl:disjointWith rdf:resource="#Varnish"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The powder becomes electrostatically charged and sprayed to the workpiece. Then it is burned into the workpiece.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#Coat"/>
+    <owl:disjointWith rdf:resource="#Electroplate"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Hot-galvanise"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#LightSpotSize">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScanningDistance"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LaserClass"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Diameter in mm.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxScanAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinMeasurementRange"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LightType"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Assemble">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Putting together two workpieces.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fill"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Glue"/>
+    <owl:disjointWith rdf:resource="#Bolt"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Clinch"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Join"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith rdf:resource="#Weld"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxLiftWeight">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfMovableClaws"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in kg</rdfs:comment>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+  </owl:Class>
+  <owl:Class rdf:ID="Part">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create a subset of a defined size from a superset.
+Separating is a special case of parting with size 1.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Merge"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Assign"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Divide"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Unify"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Branch"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ModifyAmount"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasurePositionOfObject">
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Measure"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+    <owl:disjointWith rdf:resource="#MeasureForce"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureDiameter"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MeasureDistance"/>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:ID="GeneralParallelGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="LineParallelGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="CircularParallelGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:ID="ParallelGripper"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#MinMeasurementRange">
+    <owl:disjointWith rdf:resource="#LightType"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxScanAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LaserClass"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LightSpotSize"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >In mm.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScanningDistance"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxCurrentConsumption">
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in amperes</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Weight"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MountedDevicePosition">
+    <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/>
+    <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#WorkCoordinates"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Arrangement"/>
+    <owl:disjointWith rdf:resource="#WorkFrame"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Thermal-Separate">
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Cut a contour with the help of a laser, a plasma cutter or a cutting torch.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Mill"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#File"/>
+  </owl:Class>
+  <owl:Class rdf:about="#NumberOfMovableClaws">
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#InsideOrOutsidePicking"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ToolInterface">
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith rdf:resource="#Timing"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Identifier"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >How to connect a tool to a robot.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Communication"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Secure">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Move"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ModifyAmount"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/>
+    <owl:disjointWith rdf:resource="#Store"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Divide">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Merge"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ModifyAmount"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assign"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Unify"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Part"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Branch"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create a subset from a superset. 
+The size of source and target sets does not necessarily have to be defined.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#LaserClass">
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+    <owl:disjointWith rdf:resource="#LightSpotSize"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScanningDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxScanAngle"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LightType"/>
+    <owl:disjointWith rdf:resource="#MinMeasurementRange"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Mold">
+    <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/>
+    <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/>
+    <owl:disjointWith rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Coat"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >From a formless material a workpiece is created. The original material can be in either form like gaseous, vaporous, fluid, solid (powderous, grainy), papescent, paste-like, ...</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Join"/>
+    <owl:disjointWith rdf:resource="#Form"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Weight">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in kg</rdfs:comment>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxForce"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Merge">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Unify"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Branch"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Combine subflows of material to a superflow.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Divide"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assign"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Part"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ModifyAmount"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Identifier">
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#Timing"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ToolInterface"/>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Communication"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Clinch">
+    <owl:disjointWith rdf:resource="#Assemble"/>
+    <rdfs:subClassOf rdf:resource="#Join"/>
+    <owl:disjointWith rdf:resource="#Weld"/>
+    <owl:disjointWith rdf:resource="#Glue"/>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith rdf:resource="#Bolt"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Fill"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is a connection of metal sheets without any additional material. The workpieces are deformed between a stamp and a template to generate a pushbutton-like shape.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#ImageAnalysis">
+    <owl:disjointWith rdf:resource="#Detect"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Measure"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Classify"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Scan"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Check"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith rdf:resource="#Read"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Fill">
+    <owl:disjointWith rdf:resource="#Assemble"/>
+    <owl:disjointWith rdf:resource="#Bolt"/>
+    <owl:disjointWith rdf:resource="#Clinch"/>
+    <owl:disjointWith rdf:resource="#Glue"/>
+    <owl:disjointWith rdf:resource="#Weld"/>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Rivet"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Fill a workpiece with a cubic capacity.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#Join"/>
+  </owl:Class>
+  <owl:Class rdf:ID="TactileProximitySwitch">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#WireDrawEncoder">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#WheelEncoder"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LinearEncoder"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >distanceMeasurements.pdf
+SICK
+pag 4</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Precision">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Accuracy"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PathVelocityFluctuation"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Resolution"/>
+    <owl:disjointWith rdf:resource="#Repeatability"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Rivet">
+    <rdfs:subClassOf rdf:resource="#Join"/>
+    <owl:disjointWith rdf:resource="#Glue"/>
+    <owl:disjointWith rdf:resource="#Assemble"/>
+    <owl:disjointWith rdf:resource="#Solder"/>
+    <owl:disjointWith rdf:resource="#Fill"/>
+    <owl:disjointWith rdf:resource="#Bolt"/>
+    <owl:disjointWith rdf:resource="#Weld"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Connect workpieces with the help of a deformed, cylindrical connection element.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Clinch"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Communication">
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#ToolInterface"/>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Timing"/>
+    <owl:disjointWith rdf:resource="#Identifier"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Cost"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Mill">
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The tool moves over the workpiece to remove chipping. The tool is fed in a linear motion over the workpiece while the tool is rotating.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Thrust"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+  </owl:Class>
+  <owl:Class rdf:about="#IntelligentCtrl">
+    <owl:disjointWith rdf:resource="#NumericalCtrl"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#PlaybackCtrl"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleControl"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This includes calculating up functions for setting positions and trajectories.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Grasp">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+Keep a workpiece temporarily in a given position and orientation.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#Secure"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Release"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Branch">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Divide a material flow into subflows.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Divide"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ModifyAmount"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Unify"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Merge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Assign"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Part"/>
+  </owl:Class>
+  <owl:Class rdf:ID="ElectricalConnector">
+    <rdfs:subClassOf rdf:resource="#ToolInterface"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalConnector"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >How to connect a tool electrically.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#SaveParameterSet">
+    <owl:disjointWith rdf:resource="#SetParameterValue"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Reset"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#AdditionalFunction"/>
+    <owl:disjointWith rdf:resource="#LoadParameterSet"/>
+    <owl:disjointWith rdf:resource="#Calibrate"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxForce">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in Newton</rdfs:comment>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Payload"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Thrust">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Lathe"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Mill"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The tool performs a cutting movement and a reverse movement.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#CircularParallelGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#LineParallelGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#GeneralParallelGripper"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ParallelGripper"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#Sinter">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >By using powder material, a workpiece is formed. By heating the workpiece is hardened by avoiding a fluid phase.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Cast"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ElectrolyticSegregate"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Mold"/>
+  </owl:Class>
+  <owl:Class rdf:about="#SimpleControl">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#ControlSystem"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#NumericalCtrl"/>
+    <owl:disjointWith rdf:resource="#IntelligentCtrl"/>
+    <owl:disjointWith rdf:resource="#PlaybackCtrl"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Reachability">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#NumberOfJoints"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#TypeOfActuation"/>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticReflexSwitch">
+    <rdfs:subClassOf rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticThroughBeamSwitch"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 2</rdfs:comment>
+    <owl:disjointWith rdf:resource="#OpticProximitySwitch"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Fold">
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith rdf:resource="#True"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <owl:disjointWith rdf:resource="#Deep-Draw"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Form"/>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith rdf:resource="#Flang"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Buckle, squeeze or crop thin, malleable and/or flexible materials like sheet metals and plates.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Press"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#PerformSelfTest">
+    <rdfs:subClassOf rdf:resource="#DiagnosticFunction"/>
+    <owl:disjointWith rdf:resource="#CollectStatisticalData"/>
+  </owl:Class>
+  <owl:Class rdf:about="#LightGrid">
+    <owl:disjointWith rdf:resource="#OpticDistanceSensor"/>
+    <owl:disjointWith rdf:resource="#OpticColorSensor"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#LaserScanner2D"/>
+    <owl:disjointWith rdf:resource="#VisionSensor"/>
+    <owl:disjointWith rdf:resource="#SmartCamera"/>
+    <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/>
+    <owl:disjointWith rdf:resource="#OpticSwitch"/>
+    <owl:disjointWith rdf:resource="#OpticContrastScanner"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Lathe">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >The workpiece turns on a lathe. The cutting movement is performed by its turning movement. The tool is fixed and removes chips from the workpiece. Usually only rotation-symmetric workpieces are handled here.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Mill"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Electro-discharge-machine"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith rdf:resource="#Thrust"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+  </owl:Class>
+  <owl:Class rdf:about="#InductiveSensor">
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#OpticSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#UltrasonicSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#ModifyAmount">
+    <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/>
+    <owl:disjointWith rdf:resource="#Store"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Move"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Secure"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Press">
+    <owl:disjointWith rdf:resource="#Flang"/>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Modify the surface of a solid body with the help of a stamp. The feed rate is very slow, although the pressure is very high.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Bead"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith rdf:resource="#Fold"/>
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith rdf:resource="#Deep-Draw"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+    <rdfs:subClassOf rdf:resource="#Form"/>
+    <owl:disjointWith rdf:resource="#True"/>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+  </owl:Class>
+  <owl:Class rdf:about="#DecompressImageData">
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FilterImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SegmentImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TransformImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ExtractEdges"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CompressImageData"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#CompressImageData">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ExtractEdges"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SegmentImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FilterImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TransformImage"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Hot-galvanise">
+    <owl:disjointWith rdf:resource="#Powder-coat"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A metallic layer is put onto the workpieces by putting them into a smelter. This is mainly done to reduce corrosion.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#Coat"/>
+    <owl:disjointWith rdf:resource="#Electroplate"/>
+    <owl:disjointWith rdf:resource="#Varnish"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Position">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from an undefined to a well-defined position. The part's orientation is not important here.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith rdf:resource="#Convey"/>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <owl:disjointWith rdf:resource="#Pass"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Displace"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#InductiveSensor"/>
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#UltrasonicSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#OpticThroughBeamSwitch">
+    <owl:disjointWith rdf:resource="#OpticReflexSwitch"/>
+    <rdfs:subClassOf rdf:resource="#OpticSwitch"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 2</rdfs:comment>
+    <owl:disjointWith rdf:resource="#OpticProximitySwitch"/>
+  </owl:Class>
+  <owl:Class rdf:about="#LinearEncoder">
+    <owl:disjointWith rdf:resource="#WireDrawEncoder"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >distanceMeasurements.pdf
+SICK
+pag 4</rdfs:comment>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#WheelEncoder"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Displace">
+    <owl:disjointWith rdf:resource="#Pass"/>
+    <owl:disjointWith rdf:resource="#Position"/>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <owl:disjointWith rdf:resource="#Convey"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move translationally a part along a straight line. The part's orientiation remains unchanged.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Turn"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#ArticulatedRobot">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Robot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#CartesianRobot"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is the standard industrial robot-type with usually 5 to 7 joints.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScaraRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ParallelKinematicRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <owl:disjointWith rdf:resource="#SpecialKinematicRobot"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Turn">
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith rdf:resource="#Position"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from one to another orientation by turning it around an axis which intersects with the part.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Feed"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Move"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <owl:disjointWith rdf:resource="#Pass"/>
+    <owl:disjointWith rdf:resource="#Displace"/>
+    <owl:disjointWith rdf:resource="#Convey"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Check">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Scan"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Read"/>
+    <owl:disjointWith rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#Classify"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+Check if a part fulfils given conditions.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith rdf:resource="#Detect"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Measure"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Payload">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in kg</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxVoltageSupply"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+  </owl:Class>
+  <owl:Class rdf:about="#TransformImage">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SegmentImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ExtractEdges"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FilterImage"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#CompressImageData"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ParallelGripper">
+    <rdfs:subClassOf rdf:resource="#PincerGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="AngleGripper"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#InsideOrOutsidePicking">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TypeOfFingers"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Electro-discharge-machine">
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Thrust"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >A spark removes material from the workpiece.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Mill"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+    <owl:disjointWith rdf:resource="#Lathe"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Cut"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxVoltageSupply">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in volts</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MechanicalResistance"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ControlSystem">
+    <owl:disjointWith rdf:resource="#Identifier"/>
+    <owl:disjointWith rdf:resource="#Communication"/>
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#ToolInterface"/>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <owl:disjointWith rdf:resource="#Timing"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Assign">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create subsets of defined size or amount and move these subsets to a defined location.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Merge"/>
+    <owl:disjointWith rdf:resource="#Part"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Unify"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Branch"/>
+    <rdfs:subClassOf rdf:resource="#ModifyAmount"/>
+    <owl:disjointWith rdf:resource="#Divide"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Task">
+    <owl:disjointWith rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#Skill"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Device"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Robot">
+    <owl:disjointWith rdf:resource="#Gripper"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Introdution to Robotics
+(Analysis, System, Applications)
+Saeed B. Niku</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="#ManipulationAndHandling"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#Cost"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#WorkCoordinates"/>
+        </owl:someValuesFrom>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#ToolInterface"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom>
+          <owl:Class rdf:about="#QualityCriteria"/>
+        </owl:someValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#Identifier"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#ControlSystem"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#Arrangement"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#Communication"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#WorkFrame"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#PathVelocityFluctuation">
+    <owl:disjointWith rdf:resource="#Repeatability"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#QualityCriteria"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Precision"/>
+    <owl:disjointWith rdf:resource="#Accuracy"/>
+    <owl:disjointWith rdf:resource="#Resolution"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CommunicationProtocol">
+    <rdfs:subClassOf rdf:resource="#Communication"/>
+    <owl:disjointWith rdf:resource="#BusInterface"/>
+    <owl:disjointWith rdf:resource="#ElectricalInterface"/>
+  </owl:Class>
+  <owl:Class rdf:about="#LineParallelGripper">
+    <owl:disjointWith rdf:resource="#CircularParallelGripper"/>
+    <owl:disjointWith rdf:resource="#GeneralParallelGripper"/>
+    <rdfs:subClassOf rdf:resource="#ParallelGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxScanAngle">
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ScanningDistance"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LaserClass"/>
+    <owl:disjointWith rdf:resource="#MinMeasurementRange"/>
+    <owl:disjointWith rdf:resource="#LightSpotSize"/>
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#LightType"/>
+  </owl:Class>
+  <owl:Class rdf:ID="UltrasonicDistanceSensor">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#UltrasonicSensor"/>
+    </rdfs:subClassOf>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >distanceMeasurements.pdf
+SICK
+pag 4</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#StoreUnOrdered">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#StoreInOrder"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Save workpieces which are geometrically defined in an undefined position and orientation.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#StorePartlyOrdered"/>
+    <rdfs:subClassOf rdf:resource="#Store"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Bead">
+    <owl:disjointWith rdf:resource="#Flang"/>
+    <owl:disjointWith rdf:resource="#Stretch-Form"/>
+    <owl:disjointWith rdf:resource="#Bend"/>
+    <owl:disjointWith rdf:resource="#Deep-Draw"/>
+    <owl:disjointWith rdf:resource="#True"/>
+    <owl:disjointWith rdf:resource="#Crush"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create channel-shaped deepenings which are meant to increase the stiffness.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Forge"/>
+    <owl:disjointWith rdf:resource="#Extrude"/>
+    <rdfs:subClassOf rdf:resource="#Form"/>
+    <owl:disjointWith rdf:resource="#Fold"/>
+    <owl:disjointWith rdf:resource="#Press"/>
+    <owl:disjointWith rdf:resource="#Roll"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MechanicalResistance">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#MaxVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PowerConsumption"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+  </owl:Class>
+  <owl:Class rdf:about="#TypeOfFingers">
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaterialOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Device">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:8</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Task"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:someValuesFrom rdf:resource="#PhysicalProperties"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Property"/>
+    <owl:disjointWith rdf:resource="#Skill"/>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+        <owl:allValuesFrom rdf:resource="#Skill"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#MainFunction"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:allValuesFrom rdf:resource="#Property"/>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasProperty"/>
+        </owl:onProperty>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:Class rdf:about="#MaterialOfGripper">
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#TypeOfFingers"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SizeOfGripper"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ScaraRobot">
+    <owl:disjointWith rdf:resource="#ArticulatedRobot"/>
+    <owl:disjointWith rdf:resource="#SpecialKinematicRobot"/>
+    <owl:disjointWith rdf:resource="#CartesianRobot"/>
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SimpleKinematicRobot"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Robot"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ParallelKinematicRobot"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Industrial type, but special kinematic arrangement. Well-known manufacturer: Bosch-Rexrodt.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#SimpleKinematicRobot">
+    <rdfs:subClassOf rdf:resource="#Robot"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Simple, sometimes small machines with reduced capabilities, e.g. with only 1 DOF. These can be devices which are arranged to more complex machines.
+Sometimes, the tool is already included in the robot, e.g. a gripper is already connected.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#ScaraRobot"/>
+    <owl:disjointWith rdf:resource="#SpecialKinematicRobot"/>
+    <owl:disjointWith rdf:resource="#CartesianRobot"/>
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <owl:disjointWith rdf:resource="#ArticulatedRobot"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ParallelKinematicRobot"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#StoreInOrder">
+    <owl:disjointWith rdf:resource="#StorePartlyOrdered"/>
+    <owl:disjointWith rdf:resource="#StoreUnOrdered"/>
+    <rdfs:subClassOf rdf:resource="#Store"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Save workpieces which are geometrically defined in a well-defined position and/or orientation.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Cut">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Divide a workpiece into two parts.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Mill"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Plane"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+    <owl:disjointWith rdf:resource="#Electro-discharge-machine"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Thrust"/>
+    <owl:disjointWith rdf:resource="#Lathe"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+  </owl:Class>
+  <owl:Class rdf:about="#UltrasonicSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EncoderSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith rdf:resource="#InductiveSensor"/>
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith rdf:resource="#OpticSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ExtractEdges">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SegmentImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#TransformImage"/>
+    <owl:disjointWith rdf:resource="#CompressImageData"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FilterImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+  </owl:Class>
+  <owl:Class rdf:about="#AngleGripper">
+    <owl:disjointWith rdf:resource="#ParallelGripper"/>
+    <rdfs:subClassOf rdf:resource="#PincerGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CheckPosition">
+    <owl:disjointWith rdf:resource="#CheckPresence"/>
+    <owl:disjointWith rdf:resource="#Count"/>
+    <rdfs:subClassOf rdf:resource="#Check"/>
+    <owl:disjointWith rdf:resource="#CheckSurfaceForIrregularities"/>
+  </owl:Class>
+  <owl:Class rdf:about="#EncoderSensor">
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#TactileSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#OpticSensor"/>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith rdf:resource="#InductiveSensor"/>
+    <owl:disjointWith rdf:resource="#UltrasonicSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Karthesian">
+    <owl:disjointWith rdf:resource="#AsFastAsPossible"/>
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#Feed"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Circular"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ParallelKinematicRobot">
+    <rdfs:subClassOf rdf:resource="#Robot"/>
+    <owl:disjointWith rdf:resource="#SpecialKinematicRobot"/>
+    <owl:disjointWith rdf:resource="#ArticulatedRobot"/>
+    <owl:disjointWith rdf:resource="#ScaraRobot"/>
+    <owl:disjointWith rdf:resource="#HexapodRobot"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Special kinematic arrangement like the one built in SMErobot.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#CartesianRobot"/>
+    <owl:disjointWith rdf:resource="#SimpleKinematicRobot"/>
+  </owl:Class>
+  <owl:Class rdf:about="#SizeOfGripper">
+    <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+    <owl:disjointWith rdf:resource="#TypeOfFingers"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MaxLiftWay"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#MaterialOfGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Measure">
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith rdf:resource="#Detect"/>
+    <owl:disjointWith rdf:resource="#Check"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+Gather a value as a multiple of a reference value.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Classify"/>
+    <owl:disjointWith rdf:resource="#Read"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Scan"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#ImageAnalysis"/>
+  </owl:Class>
+  <owl:Class rdf:about="#FilterImage">
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+    <owl:disjointWith rdf:resource="#CompressImageData"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#SegmentImage"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+    <owl:disjointWith rdf:resource="#ExtractEdges"/>
+    <owl:disjointWith rdf:resource="#TransformImage"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#SegmentImage">
+    <owl:disjointWith rdf:resource="#TransformImage"/>
+    <owl:disjointWith rdf:resource="#CompressImageData"/>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#FilterImage"/>
+    <owl:disjointWith rdf:resource="#ExtractEdges"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CalibrateImage"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Unify">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Create a superset from subsets.
+The size of source and target sets does not necessarily have to be defined.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Divide"/>
+    <owl:disjointWith rdf:resource="#Merge"/>
+    <rdfs:subClassOf rdf:resource="#ModifyAmount"/>
+    <owl:disjointWith rdf:resource="#Branch"/>
+    <owl:disjointWith rdf:resource="#Assign"/>
+    <owl:disjointWith rdf:resource="#Part"/>
+  </owl:Class>
+  <owl:Class rdf:about="#PowerConsumption">
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#MaxVoltageSupply"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in kVA</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MinAmbientTemperature"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MechanicalResistance"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+  </owl:Class>
+  <owl:Class rdf:ID="ElasticFingerGripper">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="JointFingerGripper"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#FingerGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#NumberOfJoints">
+    <rdfs:subClassOf>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Reachability"/>
+    <owl:disjointWith rdf:resource="#TypeOfActuation"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureDiameter">
+    <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <rdfs:subClassOf rdf:resource="#Measure"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith rdf:resource="#MeasureForce"/>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+    <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureDistance"/>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#MeasureVolume"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#ElectrolyticSegregate">
+    <owl:disjointWith rdf:resource="#Cast"/>
+    <owl:disjointWith rdf:resource="#Sinter"/>
+    <rdfs:subClassOf rdf:resource="#Mold"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Move">
+    <owl:disjointWith rdf:resource="#Secure"/>
+    <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/>
+    <owl:disjointWith rdf:resource="#ModifyAmount"/>
+    <owl:disjointWith rdf:resource="#Store"/>
+  </owl:Class>
+  <owl:Class rdf:about="#QualityCriteria">
+    <owl:disjointWith rdf:resource="#Communication"/>
+    <owl:disjointWith rdf:resource="#Identifier"/>
+    <owl:disjointWith rdf:resource="#Timing"/>
+    <owl:disjointWith rdf:resource="#Arrangement"/>
+    <owl:disjointWith rdf:resource="#ControlSystem"/>
+    <owl:disjointWith rdf:resource="#Cost"/>
+    <owl:disjointWith rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#ToolInterface"/>
+    <rdfs:subClassOf rdf:resource="#Property"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MinAmbientTemperature">
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#EnclosureRatingIP"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#MechanicalResistance"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#MaxVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in degrees celsius</rdfs:comment>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#PowerConsumption"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Feed">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Move a part from one to another position along a given trajectory. The part's orientation is given at each point of the trajectory.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Pass"/>
+    <owl:disjointWith rdf:resource="#Pan"/>
+    <rdfs:subClassOf rdf:resource="#Move"/>
+    <owl:disjointWith rdf:resource="#Displace"/>
+    <owl:disjointWith rdf:resource="#Orient"/>
+    <owl:disjointWith rdf:resource="#Position"/>
+    <owl:disjointWith rdf:resource="#Convey"/>
+    <owl:disjointWith rdf:resource="#Arrange"/>
+    <owl:disjointWith rdf:resource="#Turn"/>
+  </owl:Class>
+  <owl:Class rdf:ID="InductiveProximitySwitch">
+    <rdfs:subClassOf rdf:resource="#InductiveSensor"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Tasks and Skills of Ocptical Sensor 1.1
+Cap: 2</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#Scan">
+    <owl:disjointWith rdf:resource="#Read"/>
+    <owl:disjointWith rdf:resource="#Check"/>
+    <owl:disjointWith rdf:resource="#Detect"/>
+    <owl:disjointWith rdf:resource="#ImageAnalysis"/>
+    <rdfs:subClassOf rdf:resource="#SensorFunction"/>
+    <owl:disjointWith rdf:resource="#Classify"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Measure"/>
+  </owl:Class>
+  <owl:Class rdf:about="#ScanningDistance">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#FieldOfView"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#LaserClass"/>
+    <owl:disjointWith rdf:resource="#MaxScanAngle"/>
+    <owl:disjointWith rdf:resource="#LightSpotSize"/>
+    <owl:disjointWith rdf:resource="#MinMeasurementRange"/>
+    <owl:disjointWith rdf:resource="#LightType"/>
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Manufacturing">
+    <rdfs:subClassOf rdf:resource="#Device"/>
+    <owl:disjointWith rdf:resource="#ManipulationAndHandling"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#hasSkill"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#ManufacturingFunction"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:disjointWith rdf:resource="#Sensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Reset">
+    <rdfs:subClassOf rdf:resource="#AdditionalFunction"/>
+    <owl:disjointWith rdf:resource="#SetParameterValue"/>
+    <owl:disjointWith rdf:resource="#LoadParameterSet"/>
+    <owl:disjointWith rdf:resource="#Calibrate"/>
+    <owl:disjointWith rdf:resource="#SaveParameterSet"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Release">
+    <owl:disjointWith rdf:resource="#Grasp"/>
+    <rdfs:subClassOf rdf:resource="#Secure"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+Invert the grasping.</rdfs:comment>
+  </owl:Class>
+  <owl:Class rdf:about="#JointFingerGripper">
+    <rdfs:subClassOf rdf:resource="#FingerGripper"/>
+    <owl:disjointWith rdf:resource="#ElasticFingerGripper"/>
+  </owl:Class>
+  <owl:Class rdf:about="#EnclosureRatingIP">
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#PowerConsumption"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#MinAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#MaxVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#MechanicalResistance"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#PhysicalPropertiesRobot"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Height"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MeasureVolume">
+    <owl:disjointWith rdf:resource="#MeasureForce"/>
+    <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureOrientationOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureSpeed"/>
+    <owl:disjointWith rdf:resource="#MeasureDistance"/>
+    <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/>
+    <owl:disjointWith rdf:resource="#MeasureArea"/>
+    <owl:disjointWith rdf:resource="#MeasureAcceleration"/>
+    <owl:disjointWith rdf:resource="#MeasureAngle"/>
+    <owl:disjointWith rdf:resource="#MeasureDiameter"/>
+    <owl:disjointWith rdf:resource="#MeasureTorque"/>
+    <owl:disjointWith rdf:resource="#MeasureTemperature"/>
+    <rdfs:subClassOf rdf:resource="#Measure"/>
+  </owl:Class>
+  <owl:Class rdf:about="#TactileSensor">
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#CapacitveSensor"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith rdf:resource="#UltrasonicSensor"/>
+    <owl:disjointWith rdf:resource="#OpticSensor"/>
+    <owl:disjointWith rdf:resource="#InductiveSensor"/>
+    <owl:disjointWith rdf:resource="#EncoderSensor"/>
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CalibrateImage">
+    <owl:disjointWith rdf:resource="#ExtractEdges"/>
+    <owl:disjointWith rdf:resource="#CompressImageData"/>
+    <rdfs:subClassOf rdf:resource="#ImageAnalysis"/>
+    <owl:disjointWith rdf:resource="#TransformImage"/>
+    <owl:disjointWith rdf:resource="#DecompressImageData"/>
+    <owl:disjointWith rdf:resource="#FilterImage"/>
+    <owl:disjointWith rdf:resource="#SegmentImage"/>
+    <owl:disjointWith rdf:resource="#BlobAnalysis"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Plane">
+    <rdfs:subClassOf rdf:resource="#Separate"/>
+    <owl:disjointWith rdf:resource="#Lathe"/>
+    <owl:disjointWith rdf:resource="#Lap"/>
+    <owl:disjointWith rdf:resource="#Hone"/>
+    <owl:disjointWith rdf:resource="#Drill"/>
+    <owl:disjointWith rdf:resource="#Saw"/>
+    <owl:disjointWith rdf:resource="#Rub"/>
+    <owl:disjointWith rdf:resource="#Broach"/>
+    <owl:disjointWith rdf:resource="#Thrust"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >This is mainly used for wooden workpieces to remove chipping from the workpiece.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#File"/>
+    <owl:disjointWith rdf:resource="#Electro-discharge-machine"/>
+    <owl:disjointWith rdf:resource="#Cut"/>
+    <owl:disjointWith rdf:resource="#Grind"/>
+    <owl:disjointWith rdf:resource="#Mill"/>
+    <owl:disjointWith rdf:resource="#Thermal-Separate"/>
+  </owl:Class>
+  <owl:Class rdf:about="#PhysicalPropertiesRobot">
+    <rdfs:subClassOf rdf:resource="#PhysicalProperties"/>
+    <owl:disjointWith rdf:resource="#Width"/>
+    <owl:disjointWith rdf:resource="#MaxVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#Payload"/>
+    <owl:disjointWith rdf:resource="#MechanicalResistance"/>
+    <owl:disjointWith rdf:resource="#PhysicalInterface"/>
+    <owl:disjointWith rdf:resource="#PowerConsumption"/>
+    <owl:disjointWith rdf:resource="#MaxForce"/>
+    <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#Material"/>
+    <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/>
+    <owl:disjointWith rdf:resource="#EnclosureRatingIP"/>
+    <owl:disjointWith rdf:resource="#Shape"/>
+    <owl:disjointWith rdf:resource="#Height"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#DegreesOfFreedom"/>
+    <owl:disjointWith rdf:resource="#Diameter"/>
+    <owl:disjointWith rdf:resource="#Weight"/>
+    <owl:disjointWith rdf:resource="#Length"/>
+    <owl:disjointWith rdf:resource="#MinVoltageSupply"/>
+    <owl:disjointWith rdf:resource="#MinAmbientTemperature"/>
+    <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#FieldOfView">
+    <owl:disjointWith rdf:resource="#MaxMeasurementRange"/>
+    <owl:disjointWith rdf:resource="#ScanningDistance"/>
+    <owl:disjointWith rdf:resource="#LightSpotSize"/>
+    <owl:disjointWith rdf:resource="#LightType"/>
+    <owl:disjointWith rdf:resource="#MinMeasurementRange"/>
+    <owl:disjointWith rdf:resource="#LaserClass"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/>
+    <owl:disjointWith rdf:resource="#MaxScanAngle"/>
+  </owl:Class>
+  <owl:Class rdf:about="#WorkCoordinates">
+    <owl:disjointWith rdf:resource="#MountedDevicePosition"/>
+    <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/>
+    <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/>
+    <owl:disjointWith rdf:resource="#WorkFrame"/>
+    <rdfs:subClassOf rdf:resource="#Arrangement"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MechanicalConnector">
+    <rdfs:subClassOf rdf:resource="#ToolInterface"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >How to connect a tool mechanically.
+This includes the size and is dependent on the Payload.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#ElectricalConnector"/>
+  </owl:Class>
+  <owl:Class rdf:about="#MaxLiftWay">
+    <owl:disjointWith rdf:resource="#TypeOfFingers"/>
+    <owl:disjointWith rdf:resource="#DiameterOfGripper"/>
+    <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/>
+    <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/>
+    <owl:disjointWith rdf:resource="#SizeOfGripper"/>
+    <owl:disjointWith rdf:resource="#MaximumVacuum"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >in mm</rdfs:comment>
+    <owl:disjointWith rdf:resource="#TypeOfMagnet"/>
+    <owl:disjointWith rdf:resource="#ShapeOfClaws"/>
+    <owl:disjointWith rdf:resource="#MaterialOfGripper"/>
+    <owl:disjointWith rdf:resource="#MaxLiftWeight"/>
+    <owl:disjointWith rdf:resource="#StiffnessOfGripper"/>
+    <owl:disjointWith rdf:resource="#NumberOfFingers"/>
+    <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/>
+    <owl:disjointWith rdf:resource="#TypeOfVacuum"/>
+    <owl:disjointWith rdf:resource="#NumberOfClaws"/>
+    <owl:disjointWith rdf:resource="#Reach"/>
+  </owl:Class>
+  <owl:Class rdf:about="#CapacitveSensor">
+    <rdfs:subClassOf rdf:resource="#Sensor"/>
+    <owl:disjointWith rdf:resource="#MagneticSensor"/>
+    <owl:disjointWith rdf:resource="#TactileSensor"/>
+    <owl:disjointWith rdf:resource="#TorqueForceSensor"/>
+    <owl:disjointWith rdf:resource="#EncoderSensor"/>
+    <owl:disjointWith rdf:resource="#OpticSensor"/>
+    <owl:disjointWith rdf:resource="#UltrasonicSensor"/>
+    <owl:disjointWith rdf:resource="#InductiveSensor"/>
+  </owl:Class>
+  <owl:Class rdf:about="#AdjustCurrentToGrip">
+    <rdfs:subClassOf rdf:resource="#Grasp"/>
+    <owl:disjointWith rdf:resource="#CloseFingers"/>
+    <owl:disjointWith rdf:resource="#AdjustVacuumToGrip"/>
+    <owl:disjointWith rdf:resource="#CloseClaws"/>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty>
+          <owl:ObjectProperty rdf:about="#isSkillOf"/>
+        </owl:onProperty>
+        <owl:someValuesFrom rdf:resource="#MagnetGripper"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  <owl:ObjectProperty rdf:ID="canBePerformedBy">
+    <rdfs:domain rdf:resource="#Task"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="#hasSkill">
+    <rdfs:range rdf:resource="#Skill"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >SIARAS (FP6-017146)
+Structured Description of Skills and Device 1.0
+pag:5
+(Breakdown of Skills)</rdfs:comment>
+    <rdfs:domain rdf:resource="#Device"/>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:about="#isSkillOf"/>
+    </owl:inverseOf>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="#hasProperty">
+    <rdfs:range rdf:resource="#Property"/>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <owl:Class rdf:about="#Device"/>
+          <owl:Class rdf:about="#Skill"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:ID="isPropertyOf"/>
+    </owl:inverseOf>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="#isSkillOf">
+    <owl:inverseOf rdf:resource="#hasSkill"/>
+    <rdfs:domain rdf:resource="#Skill"/>
+    <rdfs:range rdf:resource="#Device"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="#isPropertyOf">
+    <owl:inverseOf rdf:resource="#hasProperty"/>
+    <rdfs:domain rdf:resource="#Property"/>
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <owl:Class rdf:about="#Skill"/>
+          <owl:Class rdf:about="#Device"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:ID="value">
+    <rdfs:domain rdf:resource="#Property"/>
+  </owl:DatatypeProperty>
+  <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.2">
+    <isPropertyOf>
+      <LightGrid rdf:ID="Sick_MLG2-0280F511">
+        <hasProperty>
+          <EnclosureRatingIP rdf:ID="EnclosureRatingIP_65">
+            <isPropertyOf>
+              <OpticDistanceSensor rdf:ID="Sick_DME5000-112">
+                <hasProperty>
+                  <BusInterface rdf:ID="BusInterface_Profibus">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                    >Profibus</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </BusInterface>
+                </hasProperty>
+                <hasProperty>
+                  <Accuracy rdf:ID="Accuracy_0.002">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >0.0020</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </Accuracy>
+                </hasProperty>
+                <hasProperty>
+                  <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.3">
+                    <isPropertyOf>
+                      <SmartCamera rdf:ID="VisionComponents-VC4465">
+                        <hasProperty>
+                          <Height rdf:ID="Height_43">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >43.0</value>
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                            <isPropertyOf>
+                              <OpticColorSensor rdf:ID="Sensopart_FL64C">
+                                <hasProperty>
+                                  <MinVoltageSupply rdf:ID="MinVoltageSupply_10.0">
+                                    <isPropertyOf>
+                                      <OpticProximitySwitch rdf:ID="Sick_WT18-3P430">
+                                        <hasProperty>
+                                          <MaxVoltageSupply rdf:ID="MaxVoltageSupply_30.0">
+                                            <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                                            <isPropertyOf>
+                                              <OpticReflexSwitch rdf:ID="Sick_WL18-3P430">
+                                                <hasProperty>
+                                                  <LightSpotSize rdf:ID="LightSpotSize_0.040">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.04</value>
+                                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                  </LightSpotSize>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorPNP">
+                                                    <isPropertyOf>
+                                                      <OpticContrastScanner rdf:ID="Sick_KT10-2P1115">
+                                                        <hasProperty>
+                                                          <Weight rdf:ID="Weight_0.4">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >0.4</value>
+                                                            <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                                            <isPropertyOf>
+                                                              <OpticLuminescenceScanner rdf:ID="Sick_LUT3-610">
+    <hasSkill>
+      <DetectLuminescence rdf:ID="DetectLuminescence_1">
+        <isSkillOf rdf:resource="#Sick_LUT3-610"/>
+      </DetectLuminescence>
+    </hasSkill>
+    <hasProperty>
+      <LightSpotSize rdf:ID="LightSpotSize_0.002x0.006">
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >0.002x0.006</value>
+        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+      </LightSpotSize>
+    </hasProperty>
+    <hasProperty>
+      <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorNPN">
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >open collector NPN</value>
+        <isPropertyOf>
+          <OpticColorSensor rdf:ID="Sick_CSM1-N1114">
+            <hasProperty>
+              <LightType rdf:ID="LightType_LEDgreen">
+                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                <isPropertyOf>
+                  <OpticColorSensor rdf:ID="Sick_CS81-P1112">
+                    <hasProperty>
+                      <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_55">
+                        <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                        >55.0</value>
+                        <isPropertyOf>
+                          <OpticContrastScanner rdf:ID="Sick_KT5W_2P1116D">
+                            <hasProperty>
+                              <ScanningDistance rdf:ID="ScanningDistance_0.01">
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                >0.01</value>
+                                <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                              </ScanningDistance>
+                            </hasProperty>
+                            <hasProperty>
+                              <EnclosureRatingIP rdf:ID="EnclosureRatingIP_67">
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                                >67</value>
+                                <isPropertyOf>
+                                  <GeneralParallelGripper rdf:ID="Schunk_MPG_20">
+                                    <hasProperty>
+                                      <MaxLiftWeight rdf:ID="MaxLiftWeight_0.14">
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >0.14</value>
+                                      </MaxLiftWeight>
+                                    </hasProperty>
+                                    <hasProperty rdf:resource="#Weight_0.4"/>
+                                    <hasProperty>
+                                      <MaxForce rdf:ID="MaximumForce_24">
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >24.0</value>
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                      </MaxForce>
+                                    </hasProperty>
+                                    <hasProperty>
+                                      <Repeatability rdf:ID="Repeatability_0.02">
+                                        <isPropertyOf>
+                                          <GeneralParallelGripper rdf:ID="Schunk_MPG_64">
+                                            <hasProperty rdf:resource="#Repeatability_0.02"/>
+                                            <hasProperty>
+                                              <Repeatability rdf:ID="Repeatability_0.1">
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                                <isPropertyOf>
+                                                  <ArticulatedRobot rdf:ID="ArticulatedRobot_ABB_IRB-4400">
+                                                    <hasProperty>
+                                                      <MaxVoltageSupply rdf:ID="MaxVoltageSupply_600">
+                                                        <value
+                                                         rdf:datatype=
+                                                        "http://www.w3.org/2001/XMLSchema#float"
+                                                        >600.0</value>
+                                                        <isPropertyOf>
+                                                          <ArticulatedRobot rdf:ID="ArticulatedRobot_ABB_IRB-140">
+                                                            <hasProperty>
+                                                              <Reachability rdf:ID="Reachability_810">
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+    >810</value>                                              </Reachability>
+                                                            </hasProperty>
+                                                            <hasProperty>
+                                                              <DegreesOfFreedom rdf:ID="DegreesOfFreedom_4">
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+    <isPropertyOf>
+      <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS40B">
+        <hasProperty>
+          <Weight rdf:ID="Weight_40.5">
+            <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+            <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+            >40.5</value>
+          </Weight>
+        </hasProperty>
+        <hasProperty>
+          <Payload rdf:ID="Payload_2.0">
+            <isPropertyOf>
+              <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS80">
+                <hasProperty>
+                  <EnclosureRatingIP rdf:ID="EnclosureRatingIP_54">
+                    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                    >30</value>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                  </EnclosureRatingIP>
+                </hasProperty>
+                <hasProperty>
+                  <Reachability rdf:ID="Reachability_800">
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+                    >800</value>
+                  </Reachability>
+                </hasProperty>
+                <hasProperty>
+                  <Repeatability rdf:ID="Repeatability_0.01">
+                    <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >0.01</value>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                  </Repeatability>
+                </hasProperty>
+                <hasProperty>
+                  <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_40">
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf>
+                      <VisionSensor rdf:ID="Sick_CVS2-P112">
+                        <hasProperty>
+                          <MinAmbientTemperature rdf:ID="MinAmbientTemperature_0">
+                            <isPropertyOf>
+                              <SmartCamera rdf:ID="Sick_IVC-2DM1111">
+                                <hasProperty>
+                                  <Weight rdf:ID="Weight_0.5">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >0.5</value>
+                                    <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                    <isPropertyOf>
+                                      <SmartCamera rdf:ID="Sick_IVC-2DM1122">
+                                        <hasSkill>
+                                          <MeasureAngle rdf:ID="MeasureAngle_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </MeasureAngle>
+                                        </hasSkill>
+                                        <hasProperty rdf:resource="#MinAmbientTemperature_0"/>
+                                        <hasProperty>
+                                          <Length rdf:ID="Length_161">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >161.0</value>
+                                          </Length>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <ClassifyObject rdf:ID="ClassifyObject_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                          </ClassifyObject>
+                                        </hasSkill>
+                                        <hasProperty rdf:resource="#Weight_0.5"/>
+                                        <hasProperty>
+                                          <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_50">
+                                            <rdfs:comment rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >in degrees celsius</rdfs:comment>
+                                            <isPropertyOf>
+                                              <OpticDistanceSensor rdf:ID="Sick_DT10-P10B5">
+                                                <hasProperty>
+                                                  <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-5Pins">
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+                                                    <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#string"
+                                                    >Connector M12, 5 Pins</value>
+                                                    <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                                    <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                  </ElectricalInterface>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                                                <hasProperty>
+                                                  <Repeatability rdf:ID="Repeatability_0.003">
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.0030</value>
+                                                  </Repeatability>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <Accuracy rdf:ID="Accuracy_0.003">
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.0030</value>
+                                                  </Accuracy>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <SwitchingFrequency rdf:ID="SwitchingFrequency_1000">
+                                                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >1000.0</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <isPropertyOf>
+                                                      <OpticThroughBeamSwitch rdf:ID="Sick_WSWE18-3P430">
+                                                        <hasProperty>
+                                                          <Weight rdf:ID="Weight_0.04">
+                                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                            <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >0.04</value>
+                                                          </Weight>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <MaxMeasurementRange rdf:ID="MaxMeasurementRange_20">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >20.0</value>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </MaxMeasurementRange>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                                                        <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                                        <hasProperty>
+                                                          <MinMeasurementRange rdf:ID="MinMeasurementRange_0">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >0.0</value>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                          </MinMeasurementRange>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#SwitchingFrequency_1000"/>
+                                                        <hasProperty>
+                                                          <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-4Pins">
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#string"
+                                                            >Connector M12, 4 Pins</value>
+                                                          </ElectricalInterface>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <LightSpotSize rdf:ID="LightSpotSize_0.450">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >0.45</value>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </LightSpotSize>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.055">
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >0.055</value>
+                                                          </MaxCurrentConsumption>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_60">
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >60.0</value>
+                                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </MaxAmbientTemperature>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                                                        <hasSkill>
+                                                          <DetectObject rdf:ID="DetectObject_1">
+                                                            <isSkillOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <isSkillOf rdf:resource="#Sick_WT18-3P430"/>
+                                                            <isSkillOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </DetectObject>
+                                                        </hasSkill>
+                                                        <hasProperty>
+                                                          <ResponseTime rdf:ID="ResponseTime_0.0005">
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >5.0E-4</value>
+                                                            <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </ResponseTime>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-40">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >-40.0</value>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                          </MinAmbientTemperature>
+                                                        </hasProperty>
+                                                        <hasProperty>
+                                                          <LightType rdf:ID="LightType_LEDred">
+                                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                                            <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                            <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#string"
+                                                            >LEDred</value>
+                                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                          </LightType>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                                                      </OpticThroughBeamSwitch>
+                                                    </isPropertyOf>
+                                                  </SwitchingFrequency>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <ElectricalInterface rdf:ID="ElectricalInterface_AnalogueOutput4-20mA">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#string"
+                                                    >4...20 mA</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                  </ElectricalInterface>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MinMeasurementRange rdf:ID="MinMeasurementRange_0.05">
+                                                    <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.05</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                  </MinMeasurementRange>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                                                <hasProperty>
+                                                  <ResponseTime rdf:ID="ResponseTime_0.02">
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.02</value>
+                                                  </ResponseTime>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#Weight_0.04"/>
+                                                <hasSkill>
+                                                  <MeasureDistance rdf:ID="MeasureDistance_1">
+                                                    <isSkillOf rdf:resource="#Sick_DME5000-112"/>
+                                                    <isSkillOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                  </MeasureDistance>
+                                                </hasSkill>
+                                                <hasProperty>
+                                                  <LightSpotSize rdf:ID="LightSpotSize_0.02">
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.02</value>
+                                                  </LightSpotSize>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                                                <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                                <hasProperty>
+                                                  <PowerConsumption rdf:ID="PowerConsumption_1.2">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >1.2</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                  </PowerConsumption>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#MaxAmbientTemperature_50"/>
+                                                <hasProperty rdf:resource="#LightType_LEDred"/>
+                                                <hasProperty>
+                                                  <MaxMeasurementRange rdf:ID="MaxMeasurementRange_0.4">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.4</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                  </MaxMeasurementRange>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-25">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >-25.0</value>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+                                                  </MinAmbientTemperature>
+                                                </hasProperty>
+                                              </OpticDistanceSensor>
+                                            </isPropertyOf>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >50.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf>
+                                              <LaserScanner2D rdf:ID="Sick_LMS200-30106">
+                                                <hasProperty>
+                                                  <ResponseTime rdf:ID="ResponseTime_0.026">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.026</value>
+                                                  </ResponseTime>
+                                                </hasProperty>
+                                                <hasSkill>
+                                                  <ClassifyObject rdf:ID="ClassifyObject_2">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </ClassifyObject>
+                                                </hasSkill>
+                                                <hasProperty rdf:resource="#MinAmbientTemperature_0"/>
+                                                <hasProperty>
+                                                  <Resolution rdf:ID="AngleResolution_0.5">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.5</value>
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </Resolution>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <Weight rdf:ID="Weight_4.5">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >4.5</value>
+                                                  </Weight>
+                                                </hasProperty>
+                                                <hasSkill>
+                                                  <Scan rdf:ID="Scan_2D">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </Scan>
+                                                </hasSkill>
+                                                <hasSkill>
+                                                  <MeasurePositionOfObject rdf:ID="DeterminePositionOfObject_1">
+                                                    <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                                    <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MeasurePositionOfObject>
+                                                </hasSkill>
+                                                <hasSkill>
+                                                  <Count rdf:ID="Count_1">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                                    <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                                  </Count>
+                                                </hasSkill>
+                                                <hasProperty>
+                                                  <PowerConsumption rdf:ID="PowerConsumption_20">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >20.0</value>
+                                                  </PowerConsumption>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MaxScanAngle rdf:ID="MaxScanAngle_180">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >180.0</value>
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MaxScanAngle>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MinVoltageSupply rdf:ID="MinVoltageSupply_20.4">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >20.4</value>
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MinVoltageSupply>
+                                                </hasProperty>
+                                                <hasSkill>
+                                                  <MeasureVolume rdf:ID="MeasureVolume_1">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MeasureVolume>
+                                                </hasSkill>
+                                                <hasProperty>
+                                                  <MaxMeasurementRange rdf:ID="MaxMeasurementRange_80">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >80.0</value>
+                                                  </MaxMeasurementRange>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                                <hasProperty>
+                                                  <LaserClass rdf:ID="LaserClass_1">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#string"
+                                                    >1</value>
+                                                  </LaserClass>
+                                                </hasProperty>
+                                                <hasSkill>
+                                                  <DetectCollision rdf:ID="DetectCollision_1">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </DetectCollision>
+                                                </hasSkill>
+                                                <hasProperty>
+                                                  <Resolution rdf:ID="DepthResolution_0.01">
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.01</value>
+                                                  </Resolution>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MaxVoltageSupply rdf:ID="MaxVoltageSupply_27.6">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >27.6</value>
+                                                    <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MaxVoltageSupply>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#MaxAmbientTemperature_50"/>
+                                                <hasSkill>
+                                                  <MeasureDistance rdf:ID="MeasureDistance_2">
+                                                    <isSkillOf rdf:resource="#Sick_LMS200-30106"/>
+                                                  </MeasureDistance>
+                                                </hasSkill>
+                                              </LaserScanner2D>
+                                            </isPropertyOf>
+                                          </MaxAmbientTemperature>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <BusInterface rdf:ID="BusInterface_RS485">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >RS485</value>
+                                          </BusInterface>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <Height rdf:ID="Height_55">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >55.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                          </Height>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <MeasureOrientationOfObject rdf:ID="MeasureOrientationOfObject_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </MeasureOrientationOfObject>
+                                        </hasSkill>
+                                        <hasProperty>
+                                          <MaxMeasurementRange rdf:ID="MaxMeasurementRange_1">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >1.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                          </MaxMeasurementRange>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <IntelligentCtrl rdf:ID="IntelligentCtrl_1">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >yes</value>
+                                            <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </IntelligentCtrl>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <MinVoltageSupply rdf:ID="MinVoltageSupply_19.2">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >19.2</value>
+                                            <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </MinVoltageSupply>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <ReadOpticalCharacters rdf:ID="ReadOpticalCharacters_1">
+                                            <isSkillOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </ReadOpticalCharacters>
+                                        </hasSkill>
+                                        <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                        <hasProperty>
+                                          <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-8Pins">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >Connector M12, 8 Pins</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </ElectricalInterface>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <CheckPresence rdf:ID="CheckPresence_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </CheckPresence>
+                                        </hasSkill>
+                                        <hasProperty>
+                                          <MinMeasurementRange rdf:ID="MinMeasurementRange_0.10">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >0.1</value>
+                                          </MinMeasurementRange>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <Width rdf:ID="Width_60">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >60.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </Width>
+                                        </hasProperty>
+                                        <hasSkill rdf:resource="#Count_1"/>
+                                        <hasSkill rdf:resource="#DeterminePositionOfObject_1"/>
+                                        <hasSkill>
+                                          <MeasureArea rdf:ID="MeasureArea_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                          </MeasureArea>
+                                        </hasSkill>
+                                        <hasProperty>
+                                          <MaxVoltageSupply rdf:ID="MaxVoltageSupply_28.8">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >28.8</value>
+                                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                          </MaxVoltageSupply>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <Resolution rdf:ID="Resolution_1024x768">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >1024x768</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </Resolution>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.4">
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >0.4</value>
+                                          </MaxCurrentConsumption>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <SwitchingFrequency rdf:ID="SwitchingFrequency_30fps">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >30.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </SwitchingFrequency>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <CheckPosition rdf:ID="CheckPosition_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </CheckPosition>
+                                        </hasSkill>
+                                        <hasSkill>
+                                          <ReadBarCode rdf:ID="ReadBarCode_1">
+                                            <isSkillOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </ReadBarCode>
+                                        </hasSkill>
+                                        <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+                                        <hasSkill>
+                                          <Read2DMatrixCode rdf:ID="Read2DMatrixCode_1">
+                                            <isSkillOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </Read2DMatrixCode>
+                                        </hasSkill>
+                                        <hasProperty>
+                                          <BusInterface rdf:ID="BusInterface_FastEthernet">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#string"
+                                            >Fast Ethernet</value>
+                                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                          </BusInterface>
+                                        </hasProperty>
+                                        <hasSkill>
+                                          <MeasureDiameter rdf:ID="MeasureDiameter_1">
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/>
+                                            <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                          </MeasureDiameter>
+                                        </hasSkill>
+                                      </SmartCamera>
+                                    </isPropertyOf>
+                                  </Weight>
+                                </hasProperty>
+                                <hasSkill rdf:resource="#MeasureOrientationOfObject_1"/>
+                                <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+                                <hasSkill rdf:resource="#ClassifyObject_1"/>
+                                <hasSkill rdf:resource="#CheckPresence_1"/>
+                                <hasProperty rdf:resource="#MinAmbientTemperature_0"/>
+                                <hasSkill rdf:resource="#MeasureDiameter_1"/>
+                                <hasSkill rdf:resource="#MeasureAngle_1"/>
+                                <hasProperty rdf:resource="#MaxMeasurementRange_1"/>
+                                <hasSkill rdf:resource="#Count_1"/>
+                                <hasProperty rdf:resource="#IntelligentCtrl_1"/>
+                                <hasSkill rdf:resource="#CheckPosition_1"/>
+                                <hasSkill rdf:resource="#MeasureArea_1"/>
+                                <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-8Pins"/>
+                                <hasProperty rdf:resource="#MaxAmbientTemperature_50"/>
+                                <hasProperty rdf:resource="#Length_161"/>
+                                <hasSkill rdf:resource="#DeterminePositionOfObject_1"/>
+                                <hasProperty rdf:resource="#MaxCurrentConsumption_0.4"/>
+                                <hasProperty rdf:resource="#Width_60"/>
+                                <hasProperty rdf:resource="#BusInterface_FastEthernet"/>
+                                <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/>
+                                <hasProperty rdf:resource="#Height_55"/>
+                                <hasProperty>
+                                  <Resolution rdf:ID="Resolution_640x480">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                                    >640x480</value>
+                                    <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+                                  </Resolution>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#MinMeasurementRange_0.10"/>
+                                <hasProperty rdf:resource="#BusInterface_RS485"/>
+                                <hasProperty rdf:resource="#MinVoltageSupply_19.2"/>
+                                <hasProperty rdf:resource="#SwitchingFrequency_30fps"/>
+                              </SmartCamera>
+                            </isPropertyOf>
+                            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+                            <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >0.0</value>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                            <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >in degrees celsius</rdfs:comment>
+                          </MinAmbientTemperature>
+                        </hasProperty>
+                        <hasProperty>
+                          <FieldOfView rdf:ID="FieldOfView_50x60">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >50x60</value>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                          </FieldOfView>
+                        </hasProperty>
+                        <hasSkill>
+                          <SortObjects rdf:ID="SortObjectColor_15">
+                            <isSkillOf rdf:resource="#Sick_CVS2-P112"/>
+                          </SortObjects>
+                        </hasSkill>
+                        <hasProperty>
+                          <MinVoltageSupply rdf:ID="MinVoltageSupply_12.0">
+                            <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >12.0</value>
+                            <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                          </MinVoltageSupply>
+                        </hasProperty>
+                        <hasProperty>
+                          <ScanningDistance rdf:ID="ScanningDistance_0.24">
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >0.24</value>
+                          </ScanningDistance>
+                        </hasProperty>
+                        <hasProperty>
+                          <ResponseTime rdf:ID="ResponseTime_0.005">
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >0.0050</value>
+                          </ResponseTime>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                        <hasProperty rdf:resource="#MaxCurrentConsumption_0.2"/>
+                        <hasProperty>
+                          <Resolution rdf:ID="Resolution_208x238">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >208x238</value>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                          </Resolution>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#MaxAmbientTemperature_40"/>
+                        <hasProperty>
+                          <MaxVoltageSupply rdf:ID="MaxVoltageSupply_24">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >24.0</value>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                          </MaxVoltageSupply>
+                        </hasProperty>
+                        <hasProperty>
+                          <LightType rdf:ID="LightType_LEDwhite">
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >LEDwhite</value>
+                          </LightType>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                        <hasProperty>
+                          <Weight rdf:ID="Weight_0.18">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >0.18</value>
+                            <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                          </Weight>
+                        </hasProperty>
+                      </VisionSensor>
+                    </isPropertyOf>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >40.0</value>
+                  </MaxAmbientTemperature>
+                </hasProperty>
+                <hasSkill>
+                  <Karthesian rdf:ID="Karthesian_30">
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                  </Karthesian>
+                </hasSkill>
+                <hasProperty>
+                  <TypeOfActuation rdf:ID="TypeOfActuation_Electric">
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                    >Electric</value>
+                  </TypeOfActuation>
+                </hasProperty>
+                <hasSkill>
+                  <Circular rdf:ID="Circular_29">
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                  </Circular>
+                </hasSkill>
+                <hasProperty>
+                  <NumberOfJoints rdf:ID="NumberOfJoints_4">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+                    >4</value>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                  </NumberOfJoints>
+                </hasProperty>
+                <hasSkill>
+                  <AsFastAsPossible rdf:ID="AsFastAsPossible_28">
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                  </AsFastAsPossible>
+                </hasSkill>
+                <hasProperty rdf:resource="#Payload_2.0"/>
+                <hasProperty>
+                  <MinAmbientTemperature rdf:ID="MinAmbientTemperature_5">
+                    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                    <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >5.0</value>
+                  </MinAmbientTemperature>
+                </hasProperty>
+                <hasProperty>
+                  <Weight rdf:ID="Weight_51">
+                    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                    <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >51.0</value>
+                  </Weight>
+                </hasProperty>
+              </ScaraRobot>
+            </isPropertyOf>
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+            >2.0</value>
+            <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+            <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+          </Payload>
+        </hasProperty>
+        <hasProperty rdf:resource="#EnclosureRatingIP_54"/>
+        <hasProperty rdf:resource="#TypeOfActuation_Electric"/>
+        <hasSkill rdf:resource="#Circular_29"/>
+        <hasProperty rdf:resource="#DegreesOfFreedom_4"/>
+        <hasProperty rdf:resource="#Repeatability_0.01"/>
+        <hasProperty>
+          <Reachability rdf:ID="Reachability_400">
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+            >400</value>
+            <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+            <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+            <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/>
+          </Reachability>
+        </hasProperty>
+        <hasProperty rdf:resource="#NumberOfJoints_4"/>
+        <hasSkill rdf:resource="#Karthesian_30"/>
+        <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+        <hasProperty rdf:resource="#MaxAmbientTemperature_40"/>
+        <hasSkill rdf:resource="#AsFastAsPossible_28"/>
+      </ScaraRobot>
+    </isPropertyOf>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+    >4</value>                                                </DegreesOfFreedom>
+                                                            </hasProperty>
+                                                            <hasProperty>
+                                                              <DegreesOfFreedom rdf:ID="DegreesOfFreedom_6">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+    >6</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                              </DegreesOfFreedom>
+                                                            </hasProperty>
+                                                            <hasProperty>
+                                                              <Payload rdf:ID="Payload_5.0">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >5.0</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>             </Payload>
+                                                            </hasProperty>
+                                                            <hasProperty rdf:resource="#IntelligentCtrl_1"/>
+                                                            <hasProperty rdf:resource="#MaxAmbientTemperature_40"/>
+                                                            <hasProperty>
+                                                              <NumberOfJoints rdf:ID="NumberOfJoints_6">
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+    >6</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                              </NumberOfJoints>
+                                                            </hasProperty>
+                                                            <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                                            <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+                                                            <hasProperty>
+                                                              <Reachability rdf:ID="Reachability_1960">
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer"
+    >1960</value>                                             </Reachability>
+                                                            </hasProperty>
+                                                            <hasProperty>
+                                                              <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_45">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >45.0</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                              </MaxAmbientTemperature>
+                                                            </hasProperty>
+                                                            <hasProperty rdf:resource="#Reachability_400"/>
+                                                            <hasProperty>
+                                                              <Repeatability rdf:ID="Repeatability_0.03">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >0.03</value>
+    <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+    <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                                                              </Repeatability>
+                                                            </hasProperty>
+                                                            <hasSkill rdf:resource="#Karthesian_30"/>
+                                                            <hasProperty rdf:resource="#NumberOfJoints_4"/>
+                                                            <hasProperty>
+                                                              <MinVoltageSupply rdf:ID="MinVoltageSupply_200">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >200.0</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                                                              </MinVoltageSupply>
+                                                            </hasProperty>
+                                                            <hasProperty>
+                                                              <PowerConsumption rdf:ID="PowerConsumption_4.5">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >4.5</value>
+    <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                                                              </PowerConsumption>
+                                                            </hasProperty>
+                                                            <hasProperty rdf:resource="#Reachability_800"/>
+                                                            <hasProperty rdf:resource="#MaxVoltageSupply_600"/>
+                                                            <hasProperty rdf:resource="#TypeOfActuation_Electric"/>
+                                                            <hasSkill rdf:resource="#Circular_29"/>
+                                                            <hasSkill rdf:resource="#AsFastAsPossible_28"/>
+                                                          </ArticulatedRobot>
+                                                        </isPropertyOf>
+                                                        <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                      </MaxVoltageSupply>
+                                                    </hasProperty>
+                                                    <hasSkill rdf:resource="#AsFastAsPossible_28"/>
+                                                    <hasProperty rdf:resource="#Reachability_400"/>
+                                                    <hasProperty rdf:resource="#TypeOfActuation_Electric"/>
+                                                    <hasSkill rdf:resource="#Karthesian_30"/>
+                                                    <hasProperty rdf:resource="#Reachability_1960"/>
+                                                    <hasProperty>
+                                                      <Payload rdf:ID="Payload_45.0">
+                                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                        <value
+                                                         rdf:datatype=
+                                                        "http://www.w3.org/2001/XMLSchema#float"
+                                                        >45.0</value>
+                                                        <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                      </Payload>
+                                                    </hasProperty>
+                                                    <hasProperty rdf:resource="#NumberOfJoints_4"/>
+                                                    <hasProperty rdf:resource="#Reachability_800"/>
+                                                    <hasProperty rdf:resource="#MinVoltageSupply_200"/>
+                                                    <hasProperty rdf:resource="#EnclosureRatingIP_54"/>
+                                                    <hasProperty rdf:resource="#DegreesOfFreedom_4"/>
+                                                    <hasProperty rdf:resource="#MaxAmbientTemperature_45"/>
+                                                    <hasProperty rdf:resource="#MaxAmbientTemperature_40"/>
+                                                    <hasProperty rdf:resource="#Repeatability_0.1"/>
+                                                    <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+                                                    <hasSkill rdf:resource="#Circular_29"/>
+                                                    <hasProperty rdf:resource="#NumberOfJoints_6"/>
+                                                    <hasProperty>
+                                                      <Weight rdf:ID="Weight_985">
+                                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                        <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/>
+                                                        <value
+                                                         rdf:datatype=
+                                                        "http://www.w3.org/2001/XMLSchema#float"
+                                                        >985.0</value>
+                                                      </Weight>
+                                                    </hasProperty>
+                                                    <hasProperty rdf:resource="#IntelligentCtrl_1"/>
+                                                    <hasProperty rdf:resource="#DegreesOfFreedom_6"/>
+                                                  </ArticulatedRobot>
+                                                </isPropertyOf>
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >0.1</value>
+                                              </Repeatability>
+                                            </hasProperty>
+                                            <hasProperty>
+                                              <Weight rdf:ID="Weight_0.6">
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >0.6</value>
+                                              </Weight>
+                                            </hasProperty>
+                                            <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                            <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+                                            <hasProperty>
+                                              <Payload rdf:ID="Payload_1.0">
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >1.0</value>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                              </Payload>
+                                            </hasProperty>
+                                            <hasProperty rdf:resource="#Repeatability_0.03"/>
+                                            <hasProperty>
+                                              <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_90">
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >90.0</value>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                              </MaxAmbientTemperature>
+                                            </hasProperty>
+                                            <hasProperty>
+                                              <CycleTime rdf:ID="CycleTime_0.01">
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >0.01</value>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                              </CycleTime>
+                                            </hasProperty>
+                                            <hasSkill>
+                                              <OpenFingers rdf:ID="OpenFingers_1">
+                                                <isSkillOf rdf:resource="#Schunk_MPG_20"/>
+                                                <isSkillOf rdf:resource="#Schunk_MPG_64"/>
+                                              </OpenFingers>
+                                            </hasSkill>
+                                            <hasProperty rdf:resource="#Repeatability_0.01"/>
+                                            <hasProperty>
+                                              <MaxLiftWay rdf:ID="MaxLiftWay_2.0">
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#float"
+                                                >2.0</value>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                              </MaxLiftWay>
+                                            </hasProperty>
+                                            <hasProperty rdf:resource="#EnclosureRatingIP_54"/>
+                                            <hasSkill>
+                                              <CloseFingers rdf:ID="CloseFingers_25">
+                                                <isSkillOf rdf:resource="#Schunk_MPG_64"/>
+                                                <isSkillOf rdf:resource="#Schunk_MPG_20"/>
+                                              </CloseFingers>
+                                            </hasSkill>
+                                            <hasProperty>
+                                              <NumberOfFingers rdf:ID="NumberOfFingers_2">
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#string"
+                                                >2</value>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                              </NumberOfFingers>
+                                            </hasProperty>
+                                            <hasProperty>
+                                              <EnclosureRatingIP rdf:ID="EnclosureRatingIP_30">
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                                <value rdf:datatype=
+                                                "http://www.w3.org/2001/XMLSchema#string"
+                                                >30</value>
+                                              </EnclosureRatingIP>
+                                            </hasProperty>
+                                            <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                          </GeneralParallelGripper>
+                                        </isPropertyOf>
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >0.02</value>
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                      </Repeatability>
+                                    </hasProperty>
+                                    <hasProperty rdf:resource="#Weight_51"/>
+                                    <hasProperty>
+                                      <Payload rdf:ID="Payload_0.14">
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >0.14</value>
+                                      </Payload>
+                                    </hasProperty>
+                                    <hasProperty rdf:resource="#Weight_0.04"/>
+                                    <hasProperty rdf:resource="#MaxLiftWay_2.0"/>
+                                    <hasSkill rdf:resource="#OpenFingers_1"/>
+                                    <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                    <hasProperty rdf:resource="#EnclosureRatingIP_30"/>
+                                    <hasProperty>
+                                      <Weight rdf:ID="Weight_0.038">
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >0.038</value>
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                      </Weight>
+                                    </hasProperty>
+                                    <hasProperty rdf:resource="#Weight_40.5"/>
+                                    <hasProperty rdf:resource="#Payload_2.0"/>
+                                    <hasProperty rdf:resource="#MaxAmbientTemperature_90"/>
+                                    <hasProperty rdf:resource="#Repeatability_0.03"/>
+                                    <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+                                    <hasProperty rdf:resource="#Payload_45.0"/>
+                                    <hasProperty>
+                                      <Weight rdf:ID="Weight_98">
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >98.0</value>
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                      </Weight>
+                                    </hasProperty>
+                                    <hasProperty rdf:resource="#Weight_985"/>
+                                    <hasProperty rdf:resource="#Payload_5.0"/>
+                                    <hasProperty rdf:resource="#EnclosureRatingIP_54"/>
+                                    <hasProperty rdf:resource="#Repeatability_0.01"/>
+                                    <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                    <hasProperty rdf:resource="#NumberOfFingers_2"/>
+                                    <hasSkill rdf:resource="#CloseFingers_25"/>
+                                    <hasProperty rdf:resource="#Repeatability_0.1"/>
+                                    <hasProperty>
+                                      <CycleTime rdf:ID="CycleTime_0.03">
+                                        <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                        >0.03</value>
+                                      </CycleTime>
+                                    </hasProperty>
+                                  </GeneralParallelGripper>
+                                </isPropertyOf>
+                                <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+                                <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                                <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/>
+                              </EnclosureRatingIP>
+                            </hasProperty>
+                            <hasSkill>
+                              <DetectContrast rdf:ID="DetectContrast_1">
+                                <isSkillOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <isSkillOf rdf:resource="#Sick_KT10-2P1115"/>
+                              </DetectContrast>
+                            </hasSkill>
+                            <hasProperty>
+                              <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-10">
+                                <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                                <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                >-10.0</value>
+                                <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                              </MinAmbientTemperature>
+                            </hasProperty>
+                            <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/>
+                            <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                            <hasProperty>
+                              <LightSpotSize rdf:ID="LightSpotSize_0.0012x0.0042">
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                                >0.0012x0.0042</value>
+                              </LightSpotSize>
+                            </hasProperty>
+                            <hasProperty>
+                              <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.13">
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                >0.13</value>
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                              </MaxCurrentConsumption>
+                            </hasProperty>
+                            <hasProperty rdf:resource="#Weight_0.4"/>
+                            <hasProperty>
+                              <ResponseTime rdf:ID="ResponseTime_0.00005">
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                >5.0E-5</value>
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                              </ResponseTime>
+                            </hasProperty>
+                            <hasProperty>
+                              <SwitchingFrequency rdf:ID="SwitchingFrequency_10000">
+                                <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                >10000.0</value>
+                              </SwitchingFrequency>
+                            </hasProperty>
+                            <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+                          </OpticContrastScanner>
+                        </isPropertyOf>
+                        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                        <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                        <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                        <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                        <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+                        <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                      </MaxAmbientTemperature>
+                    </hasProperty>
+                    <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                    <hasProperty>
+                      <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.08">
+                        <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                        <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                        >0.08</value>
+                        <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                        <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                      </MaxCurrentConsumption>
+                    </hasProperty>
+                    <hasSkill>
+                      <DetectColor rdf:ID="DetectColor_1">
+                        <isSkillOf rdf:resource="#Sick_CS81-P1112"/>
+                        <isSkillOf rdf:resource="#Sick_CSM1-N1114"/>
+                      </DetectColor>
+                    </hasSkill>
+                    <hasProperty>
+                      <LightType rdf:ID="LightType_LEDblue">
+                        <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                        <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                        <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                        >LEDblue</value>
+                      </LightType>
+                    </hasProperty>
+                    <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/>
+                    <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                    <hasProperty rdf:resource="#Weight_0.4"/>
+                    <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                    <hasProperty>
+                      <LightSpotSize rdf:ID="LightSpotSize_0.004x0.002">
+                        <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                        >0.004x0.002</value>
+                      </LightSpotSize>
+                    </hasProperty>
+                    <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                    <hasProperty rdf:resource="#LightType_LEDred"/>
+                    <hasProperty rdf:resource="#LightType_LEDgreen"/>
+                    <hasProperty>
+                      <ScanningDistance rdf:ID="ScanningDistance_0.0125">
+                        <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                        >0.0125</value>
+                        <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                      </ScanningDistance>
+                    </hasProperty>
+                    <hasProperty rdf:resource="#MinAmbientTemperature_-10"/>
+                  </OpticColorSensor>
+                </isPropertyOf>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >LEDgreen</value>
+              </LightType>
+            </hasProperty>
+            <hasProperty>
+              <SwitchingFrequency rdf:ID="SwitchingFrequency_1500">
+                <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >1500.0</value>
+              </SwitchingFrequency>
+            </hasProperty>
+            <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+            <hasProperty rdf:resource="#ResponseTime_0.0005"/>
+            <hasProperty rdf:resource="#LightType_LEDred"/>
+            <hasSkill rdf:resource="#DetectColor_1"/>
+            <hasProperty rdf:resource="#MinAmbientTemperature_-10"/>
+            <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+            <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/>
+            <hasProperty rdf:resource="#ScanningDistance_0.0125"/>
+            <hasProperty>
+              <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.035">
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >0.035</value>
+                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+              </MaxCurrentConsumption>
+            </hasProperty>
+            <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/>
+            <hasProperty rdf:resource="#MinVoltageSupply_19.2"/>
+            <hasProperty rdf:resource="#LightType_LEDblue"/>
+            <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+            <hasProperty>
+              <LightSpotSize rdf:ID="LightSpotSize_0.0015x0.0065">
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >0.0015x0.0065</value>
+                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+              </LightSpotSize>
+            </hasProperty>
+            <hasProperty>
+              <Weight rdf:ID="Weight_0.011">
+                <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >0.011</value>
+              </Weight>
+            </hasProperty>
+          </OpticColorSensor>
+        </isPropertyOf>
+        <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+      </ElectricalInterface>
+    </hasProperty>
+    <hasProperty rdf:resource="#SwitchingFrequency_1500"/>
+    <hasProperty rdf:resource="#MinAmbientTemperature_-10"/>
+    <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+    <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+    <hasProperty>
+      <ResponseTime rdf:ID="ResponseTime_0.0003">
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+        >3.0E-4</value>
+        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+      </ResponseTime>
+    </hasProperty>
+    <hasProperty>
+      <LightType rdf:ID="LightType_UV">
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >UV</value>
+        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+      </LightType>
+    </hasProperty>
+    <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+    <hasProperty rdf:resource="#MinVoltageSupply_12.0"/>
+    <hasProperty>
+      <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.06">
+        <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+        >0.06</value>
+        <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+        <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+      </MaxCurrentConsumption>
+    </hasProperty>
+    <hasProperty rdf:resource="#Weight_0.4"/>
+    <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+    <hasProperty rdf:resource="#ScanningDistance_0.01"/>      </OpticLuminescenceScanner>
+                                                            </isPropertyOf>
+                                                            <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                                            <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+                                                            <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                          </Weight>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#LightType_LEDgreen"/>
+                                                        <hasProperty rdf:resource="#MinAmbientTemperature_-10"/>
+                                                        <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/>
+                                                        <hasProperty rdf:resource="#LightType_LEDblue"/>
+                                                        <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                                                        <hasProperty>
+                                                          <ResponseTime rdf:ID="ResponseTime_0.00001">
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >1.0E-5</value>
+                                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                          </ResponseTime>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                                                        <hasProperty>
+                                                          <SwitchingFrequency rdf:ID="SwitchingFrequency_25000">
+                                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#float"
+                                                            >25000.0</value>
+                                                          </SwitchingFrequency>
+                                                        </hasProperty>
+                                                        <hasSkill rdf:resource="#DetectContrast_1"/>
+                                                        <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                                        <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/>
+                                                        <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                                                        <hasProperty>
+                                                          <LightSpotSize rdf:ID="LightSpotSize_0.004x0.0008">
+                                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                                            <value
+                                                             rdf:datatype=
+                                                            "http://www.w3.org/2001/XMLSchema#string"
+                                                            >0.004x0.0008</value>
+                                                          </LightSpotSize>
+                                                        </hasProperty>
+                                                        <hasProperty rdf:resource="#ScanningDistance_0.01"/>
+                                                        <hasProperty rdf:resource="#LightType_LEDred"/>
+                                                        <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+                                                      </OpticContrastScanner>
+                                                    </isPropertyOf>
+                                                    <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#string"
+                                                    >open collector PNP</value>
+                                                    <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                                    <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+                                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                                    <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/>
+                                                    <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                                  </ElectricalInterface>
+                                                </hasProperty>
+                                                <hasProperty>
+                                                  <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.03">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >0.03</value>
+                                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                  </MaxCurrentConsumption>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#MaxAmbientTemperature_60"/>
+                                                <hasSkill rdf:resource="#DetectObject_1"/>
+                                                <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                                <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                                                <hasProperty rdf:resource="#Weight_0.04"/>
+                                                <hasProperty rdf:resource="#MinMeasurementRange_0"/>
+                                                <hasProperty rdf:resource="#ResponseTime_0.0005"/>
+                                                <hasProperty rdf:resource="#LightType_LEDred"/>
+                                                <hasProperty>
+                                                  <MaxMeasurementRange rdf:ID="MaxMeasurementRange_5">
+                                                    <value rdf:datatype=
+                                                    "http://www.w3.org/2001/XMLSchema#float"
+                                                    >5.0</value>
+                                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                                    <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+                                                  </MaxMeasurementRange>
+                                                </hasProperty>
+                                                <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+                                                <hasProperty rdf:resource="#MinAmbientTemperature_-40"/>
+                                                <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                                                <hasProperty rdf:resource="#SwitchingFrequency_1000"/>
+                                              </OpticReflexSwitch>
+                                            </isPropertyOf>
+                                            <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+                                            <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                            <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >30.0</value>
+                                            <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                            <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                            <isPropertyOf rdf:resource="#Sick_LUT3-610"/>
+                                            <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                          </MaxVoltageSupply>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <MaxMeasurementRange rdf:ID="MaxMeasurementRange_0.6">
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >0.6</value>
+                                          </MaxMeasurementRange>
+                                        </hasProperty>
+                                        <hasProperty rdf:resource="#MinVoltageSupply_10.0"/>
+                                        <hasProperty rdf:resource="#MinMeasurementRange_0.05"/>
+                                        <hasProperty rdf:resource="#MinAmbientTemperature_-40"/>
+                                        <hasProperty>
+                                          <ResponseTime rdf:ID="ResponseTime_0.0007">
+                                            <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >7.0E-4</value>
+                                          </ResponseTime>
+                                        </hasProperty>
+                                        <hasProperty rdf:resource="#LightType_LEDred"/>
+                                        <hasProperty rdf:resource="#Weight_0.04"/>
+                                        <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/>
+                                        <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                        <hasProperty>
+                                          <SwitchingFrequency rdf:ID="SwitchingFrequency_700">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >700.0</value>
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                          </SwitchingFrequency>
+                                        </hasProperty>
+                                        <hasProperty>
+                                          <LightSpotSize rdf:ID="LightSpotSize_0.015">
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >0.015</value>
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                          </LightSpotSize>
+                                        </hasProperty>
+                                        <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/>
+                                        <hasProperty rdf:resource="#MaxAmbientTemperature_60"/>
+                                        <hasSkill rdf:resource="#DetectObject_1"/>
+                                        <hasProperty>
+                                          <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.04">
+                                            <isPropertyOf rdf:resource="#Sick_WT18-3P430"/>
+                                            <value rdf:datatype=
+                                            "http://www.w3.org/2001/XMLSchema#float"
+                                            >0.04</value>
+                                          </MaxCurrentConsumption>
+                                        </hasProperty>
+                                      </OpticProximitySwitch>
+                                    </isPropertyOf>
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >10.0</value>
+                                    <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/>
+                                    <isPropertyOf rdf:resource="#Sick_WL18-3P430"/>
+                                    <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <isPropertyOf rdf:resource="#Sick_CS81-P1112"/>
+                                    <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/>
+                                  </MinVoltageSupply>
+                                </hasProperty>
+                                <hasProperty>
+                                  <MaxVoltageSupply rdf:ID="MaxVoltageSupply_26.4">
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >26.4</value>
+                                  </MaxVoltageSupply>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+                                <hasProperty>
+                                  <Length rdf:ID="Length_66.25">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >66.25</value>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                                  </Length>
+                                </hasProperty>
+                                <hasProperty>
+                                  <ResponseTime rdf:ID="ResponseTime_0.0009">
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >9.0E-4</value>
+                                  </ResponseTime>
+                                </hasProperty>
+                                <hasProperty>
+                                  <Height rdf:ID="Height_53">
+                                    <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >53.0</value>
+                                  </Height>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#Height_43"/>
+                                <hasProperty>
+                                  <Material rdf:ID="Material_Polycarbonat">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                                    >Polycarbonat</value>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                  </Material>
+                                </hasProperty>
+                                <hasProperty>
+                                  <LightType rdf:ID="LightType_LED">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                                    >LED</value>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                  </LightType>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/>
+                                <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                                <hasProperty>
+                                  <Width rdf:ID="Width_80">
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >80.0</value>
+                                  </Width>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                                <hasSkill>
+                                  <DetectColor rdf:ID="DetectColor_3">
+                                    <isSkillOf rdf:resource="#VisionComponents-VC4465"/>
+                                    <isSkillOf rdf:resource="#Sensopart_FL64C"/>
+                                  </DetectColor>
+                                </hasSkill>
+                                <hasProperty rdf:resource="#MinAmbientTemperature_5"/>
+                                <hasProperty rdf:resource="#Weight_0.4"/>
+                                <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/>
+                                <hasProperty>
+                                  <Width rdf:ID="Width_12">
+                                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                                    >12.0</value>
+                                    <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+                                  </Width>
+                                </hasProperty>
+                                <hasProperty rdf:resource="#MinVoltageSupply_12.0"/>
+                                <hasProperty rdf:resource="#ResponseTime_0.0007"/>
+                                <hasProperty rdf:resource="#EnclosureRatingIP_67"/>
+                                <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/>
+                              </OpticColorSensor>
+                            </isPropertyOf>
+                          </Height>
+                        </hasProperty>
+                        <hasSkill rdf:resource="#ReadOpticalCharacters_1"/>
+                        <hasSkill rdf:resource="#DetectColor_3"/>
+                        <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/>
+                        <hasProperty>
+                          <Length rdf:ID="Length_30.4">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >30.4</value>
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                          </Length>
+                        </hasProperty>
+                        <hasSkill rdf:resource="#Read2DMatrixCode_1"/>
+                        <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/>
+                        <hasSkill rdf:resource="#ReadBarCode_1"/>
+                        <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/>
+                        <hasProperty rdf:resource="#MaxCurrentConsumption_0.3"/>
+                        <hasProperty>
+                          <Length rdf:ID="Length_120">
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >120.0</value>
+                          </Length>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#Height_53"/>
+                        <hasProperty>
+                          <Weight rdf:ID="Weight_0.25">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >0.25</value>
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                          </Weight>
+                        </hasProperty>
+                        <hasProperty>
+                          <BusInterface rdf:ID="BusInterface_RS232">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >RS232</value>
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                          </BusInterface>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#Length_66.25"/>
+                        <hasProperty rdf:resource="#BusInterface_FastEthernet"/>
+                        <hasProperty>
+                          <Resolution rdf:ID="Resolution_800x600">
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                            >800x600</value>
+                          </Resolution>
+                        </hasProperty>
+                        <hasProperty rdf:resource="#MinVoltageSupply_19.2"/>
+                        <hasProperty>
+                          <Height rdf:ID="Height_50">
+                            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                            >50.0</value>
+                            <isPropertyOf rdf:resource="#VisionComponents-VC4465"/>
+                          </Height>
+                        </hasProperty>
+                      </SmartCamera>
+                    </isPropertyOf>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >0.3</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </MaxCurrentConsumption>
+                </hasProperty>
+                <hasProperty rdf:resource="#EnclosureRatingIP_65"/>
+                <hasSkill rdf:resource="#MeasureDistance_1"/>
+                <hasProperty>
+                  <MaxMeasurementRange rdf:ID="MaxMeasurementRange_70">
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >70.0</value>
+                  </MaxMeasurementRange>
+                </hasProperty>
+                <hasProperty>
+                  <Weight rdf:ID="Weight_1.6">
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >1.6</value>
+                  </Weight>
+                </hasProperty>
+                <hasProperty>
+                  <LightType rdf:ID="LightType_LaserRed">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                    >LaserRed</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </LightType>
+                </hasProperty>
+                <hasProperty>
+                  <LaserClass rdf:ID="LaserClass_2">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                    >2</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </LaserClass>
+                </hasProperty>
+                <hasProperty>
+                  <LightSpotSize rdf:ID="LightSpotSize_0.13">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >0.13</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </LightSpotSize>
+                </hasProperty>
+                <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+                <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+                <hasProperty>
+                  <MinMeasurementRange rdf:ID="MinMeasurementRange_0.15">
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >0.15</value>
+                  </MinMeasurementRange>
+                </hasProperty>
+                <hasProperty>
+                  <Repeatability rdf:ID="Repeatability_0.0005">
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >5.0E-4</value>
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                  </Repeatability>
+                </hasProperty>
+                <hasProperty rdf:resource="#MinAmbientTemperature_-10"/>
+                <hasProperty rdf:resource="#SwitchingFrequency_1000"/>
+                <hasProperty>
+                  <MinVoltageSupply rdf:ID="MinVoltageSupply_18">
+                    <isPropertyOf rdf:resource="#Sick_DME5000-112"/>
+                    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >18.0</value>
+                  </MinVoltageSupply>
+                </hasProperty>
+              </OpticDistanceSensor>
+            </isPropertyOf>
+            <isPropertyOf rdf:resource="#Sensopart_FL64C"/>
+            <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/>
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+            >65</value>
+            <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/>
+            <isPropertyOf rdf:resource="#Schunk_MPG_64"/>
+            <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+            <isPropertyOf rdf:resource="#Schunk_MPG_20"/>
+            <isPropertyOf rdf:resource="#Sick_LMS200-30106"/>
+          </EnclosureRatingIP>
+        </hasProperty>
+        <hasSkill>
+          <DetectObject rdf:ID="DetectObject_15">
+            <isSkillOf rdf:resource="#Sick_MLG2-0280F511"/>
+          </DetectObject>
+        </hasSkill>
+        <hasProperty>
+          <MinVoltageSupply rdf:ID="MinVoltageSupply_15">
+            <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+            >15.0</value>
+          </MinVoltageSupply>
+        </hasProperty>
+        <hasProperty rdf:resource="#MinAmbientTemperature_-25"/>
+        <hasProperty rdf:resource="#MaxCurrentConsumption_0.2"/>
+        <hasProperty rdf:resource="#MaxAmbientTemperature_55"/>
+        <hasProperty rdf:resource="#MaxMeasurementRange_5"/>
+        <hasProperty>
+          <LightType rdf:ID="LightType_LEDinfrared">
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+            >LEDinfrared</value>
+            <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+          </LightType>
+        </hasProperty>
+        <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/>
+        <hasProperty>
+          <ResponseTime rdf:ID="ResponseTime_0.003">
+            <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/>
+            <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+            >0.0030</value>
+          </ResponseTime>
+        </hasProperty>
+        <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/>
+      </LightGrid>
+    </isPropertyOf>
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >0.2</value>
+    <isPropertyOf rdf:resource="#Sick_CVS2-P112"/>
+  </MaxCurrentConsumption>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >outside</rdf:first>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >inside</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >multiple joints</rdf:first>
+        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >elastic</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:AllDifferent/>
+  <VacuumGripper rdf:ID="Schmalz_FSGPL_200_NBR-55_G1-2-IG">
+    <hasProperty>
+      <DiameterOfGripper rdf:ID="DiameterOfGripper_200">
+        <isPropertyOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+        >200.0</value>
+      </DiameterOfGripper>
+    </hasProperty>
+    <hasProperty>
+      <Worm rdf:ID="Worm_Inside">
+        <isPropertyOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >Inside</value>
+      </Worm>
+    </hasProperty>
+    <hasSkill>
+      <AdjustVacuumToGrip rdf:ID="AdjustVacuumToGrip_16">
+        <isSkillOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+        <isSkillOf>
+          <VacuumGripper rdf:ID="Schmalz_FSGA_20_SI-55_M5-AG">
+            <hasSkill rdf:resource="#AdjustVacuumToGrip_16"/>
+            <hasProperty>
+              <WormDiameter rdf:ID="WormDiameter_M5">
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >M5</value>
+                <isPropertyOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+              </WormDiameter>
+            </hasProperty>
+            <hasProperty>
+              <Worm rdf:ID="Worm_Outside">
+                <isPropertyOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >Outside</value>
+              </Worm>
+            </hasProperty>
+            <hasProperty>
+              <DiameterOfGripper rdf:ID="DiameterOfGripper_20">
+                <isPropertyOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >20.0</value>
+              </DiameterOfGripper>
+            </hasProperty>
+            <hasProperty>
+              <Material rdf:ID="Material_Silikon">
+                <isPropertyOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >Silikon SI 55+-5</value>
+              </Material>
+            </hasProperty>
+            <hasSkill>
+              <AdjustVacuumToRelease rdf:ID="AdjustVacuumToRelease_1">
+                <isSkillOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+                <isSkillOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+              </AdjustVacuumToRelease>
+            </hasSkill>
+            <hasProperty>
+              <MaxForce rdf:ID="MaximumForce_4.7">
+                <isPropertyOf rdf:resource="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+                <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >4.7</value>
+              </MaxForce>
+            </hasProperty>
+          </VacuumGripper>
+        </isSkillOf>
+      </AdjustVacuumToGrip>
+    </hasSkill>
+    <hasProperty>
+      <Material rdf:ID="Material_Perbunan">
+        <isPropertyOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >Perbunan NBR 55+-5</value>
+      </Material>
+    </hasProperty>
+    <hasProperty>
+      <MaxForce rdf:ID="MaximumForce_850">
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+        >850.0</value>
+        <isPropertyOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+      </MaxForce>
+    </hasProperty>
+    <hasProperty>
+      <WormDiameter rdf:ID="WormDiameter_G1-2">
+        <isPropertyOf rdf:resource="#Schmalz_FSGPL_200_NBR-55_G1-2-IG"/>
+        <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >G1/2</value>
+      </WormDiameter>
+    </hasProperty>
+    <hasSkill rdf:resource="#AdjustVacuumToRelease_1"/>
+  </VacuumGripper>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >outside</rdf:first>
+        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >inside</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <Material rdf:ID="Material-ZincPressureCasting">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Zinc Pressure Casting</value>
+  </Material>
+  <owl:AllDifferent/>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >world</rdf:first>
+          <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+        </rdf:rest>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >tool</rdf:first>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >joint</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-20">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >-20.0</value>
+  </MinAmbientTemperature>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+      >3.0</rdf:first>
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+        >3.5</rdf:first>
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:rest rdf:parseType="Resource">
+            <rdf:rest rdf:parseType="Resource">
+              <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+              >6.0</rdf:first>
+              <rdf:rest rdf:parseType="Resource">
+                <rdf:rest rdf:parseType="Resource">
+                  <rdf:rest rdf:parseType="Resource">
+                    <rdf:rest rdf:parseType="Resource">
+                      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                      >6.5</rdf:first>
+                      <rdf:rest rdf:parseType="Resource">
+                        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                        >2.5</rdf:first>
+                        <rdf:rest rdf:parseType="Resource">
+                          <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                          >2.0</rdf:first>
+                        </rdf:rest>
+                      </rdf:rest>
+                    </rdf:rest>
+                    <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                    >5.5</rdf:first>
+                  </rdf:rest>
+                  <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                  >4.5</rdf:first>
+                </rdf:rest>
+                <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+                >7.0</rdf:first>
+              </rdf:rest>
+            </rdf:rest>
+            <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+            >5.0</rdf:first>
+          </rdf:rest>
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+          >4.0</rdf:first>
+        </rdf:rest>
+      </rdf:rest>
+    </owl:oneOf>
+  </owl:DataRange>
+  <SortObjects rdf:ID="SortObjects_1"/>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >hydraulic</rdf:first>
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >electric</rdf:first>
+        </rdf:rest>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >pneumatic</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <VacuumGripper rdf:about="#Schmalz_FSGA_20_SI-55_M5-AG"/>
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >torque</rdf:first>
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >chains</rdf:first>
+          <rdf:rest rdf:parseType="Resource">
+            <rdf:rest rdf:parseType="Resource">
+              <rdf:rest rdf:parseType="Resource">
+                <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+                >ball-screw</rdf:first>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:rest>
+              <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+              >harmonic</rdf:first>
+            </rdf:rest>
+            <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+            >gears</rdf:first>
+          </rdf:rest>
+        </rdf:rest>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >belts</rdf:first>
+      </rdf:rest>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:AllDifferent/>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
+      >2</rdf:first>
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
+        >3</rdf:first>
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
+          >4</rdf:first>
+          <rdf:rest rdf:parseType="Resource">
+            <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+            <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#int"
+            >5</rdf:first>
+          </rdf:rest>
+        </rdf:rest>
+      </rdf:rest>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:AllDifferent/>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >hydraulic</rdf:first>
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >electric</rdf:first>
+          <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+        </rdf:rest>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >pneumatic</rdf:first>
+      </rdf:rest>
+    </owl:oneOf>
+  </owl:DataRange>
+  <Width rdf:ID="Width_35">
+    <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float"
+    >35.0</value>
+  </Width>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >blower</rdf:first>
+          <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+        </rdf:rest>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >vacuum pump</rdf:first>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >venturi nozzle</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+  <owl:DataRange>
+    <owl:oneOf rdf:parseType="Resource">
+      <rdf:rest rdf:parseType="Resource">
+        <rdf:rest rdf:parseType="Resource">
+          <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+          >spherical</rdf:first>
+          <rdf:rest rdf:parseType="Resource">
+            <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+            >articulated</rdf:first>
+            <rdf:rest rdf:parseType="Resource">
+              <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+              >scara</rdf:first>
+            </rdf:rest>
+          </rdf:rest>
+        </rdf:rest>
+        <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+        >cylindrical</rdf:first>
+      </rdf:rest>
+      <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+      >carthesian</rdf:first>
+    </owl:oneOf>
+  </owl:DataRange>
+</rdf:RDF>
+
+<!-- Created with Protege (with OWL Plugin 2.2, Build 311)  http://protege.stanford.edu -->
-- 
GitLab