diff --git a/.bzrignore b/.bzrignore index 9821901d6846e76c94d01da9437445ca6cf2765d..7f9a7e83e3297a5715eac99f1d952c85218ec1ed 100644 --- a/.bzrignore +++ b/.bzrignore @@ -13,3 +13,4 @@ siaras/GeneratedAspects.jrag testontologies/*.xmi testontologies/*.pprj siaras/ontology.owl +siaras/javadoc diff --git a/CompilerGeneration.jrag b/CompilerGeneration.jrag index 50bbfb9837d300275fa1875cd23d839fb264267e..8b66051b77cfc190a9e5dc3bb382629e6b6e0bfa 100644 --- a/CompilerGeneration.jrag +++ b/CompilerGeneration.jrag @@ -140,9 +140,21 @@ aspect GenPrettyPrinter { pStream.println(" }"); pStream.println(" }\n"); pStream.println(" syn String Attribute.id() = \"\";"); - pStream.println(" eq RdfId.id() = \"Rdf:ID\";"); - pStream.println(" eq RdfDatatype.id() = \"Rdf:datatype\";"); - pStream.println(" eq RdfResource.id() = \"Rdf:resource\";"); + pStream.println(" eq RdfAbout.id() = \"rdf:about\";"); + pStream.println(" eq RdfDatatype.id() = \"rdf:datatype\";"); + pStream.println(" eq RdfId.id() = \"rdf:ID\";"); + pStream.println(" eq RdfParseType.id() = \"rdf:parseType\";"); + pStream.println(" eq RdfResource.id() = \"rdf:resource\";"); + pStream.println(" eq XmlBase.id() = \"xml:base\";"); + pStream.println(" eq Xmlns.id() = \"xmlns\";"); + pStream.println(" eq XmlnsDaml.id() = \"xmlns:daml\";"); + pStream.println(" eq XmlnsDc.id() = \"xmlns:dc\";"); + pStream.println(" eq XmlnsOwl.id() = \"xmlns:owl\";"); + pStream.println(" eq XmlnsP1.id() = \"xmlns:p1\";"); + pStream.println(" eq XmlnsProtege.id() = \"xmlns:protege\";"); + pStream.println(" eq XmlnsRdf.id() = \"xmlns:rdf\";"); + pStream.println(" eq XmlnsRdfs.id() = \"xmlns:rdfs\";"); + pStream.println(" eq XmlnsXsd.id() = \"xmlns:xsd\";"); pStream.println(" public void Attribute.prettyPrint(String indent, PrintStream pStream) {"); pStream.println(" System.out.print(\" \"+id()+\"=\"+getValue().getSTRING_LITERAL());"); pStream.println(" }\n"); @@ -353,10 +365,10 @@ aspect GenMisc { pStream.println(ind(1)+"}"); // ComplexElement.name() - pStream.println(ind(1)+"String ComplexElement.name() {"); + pStream.println(ind(1)+"public String ComplexElement.name() {"); pStream.println(ind(2)+"return getOwlIdentifier().getIDENTIFIER();"); pStream.println(ind(1)+"}"); - pStream.println(ind(1)+"String Attribute.name() {"); + pStream.println(ind(1)+"public String Attribute.name() {"); pStream.println(ind(2)+"return getValue().getSTRING_LITERAL();"); pStream.println(ind(1)+"}"); diff --git a/owl.ast b/owl.ast index f1a604ad33027a698435f5fa79b84bd4c674dbeb..506ab3f78284c9009b6c2c907744b599fe80a373 100644 --- a/owl.ast +++ b/owl.ast @@ -15,6 +15,7 @@ XmlHeader ::= Attribute*; abstract Element; abstract ComplexElement : Element ::= Attribute* Element*; RdfDeclaration : ComplexElement; +RdfDescription : ComplexElement; RdfFirst : ComplexElement; RdfRest : ComplexElement; RdfType : ComplexElement; @@ -38,6 +39,7 @@ OwlImports : ComplexElement; OwlIntersectionOf : ComplexElement; OwlInverseOf : ComplexElement; OwlMinCardinality : ComplexElement; +OwlMaxCardinality : ComplexElement; OwlObjectProperty : OwlProperty; OwlOneOf : ComplexElement; OwlOnProperty : OwlProperty; diff --git a/owl.jjt b/owl.jjt index e151accefa20b426f0b8d5e03e492e05715f941f..40c0de2d5980495ca6f72a4d07223ca8e1d25923 100644 --- a/owl.jjt +++ b/owl.jjt @@ -79,6 +79,7 @@ SPECIAL_TOKEN : /* COMMENTS */ | < OWL_IMPORTS : "owl:imports" > | < OWL_INTERSECTIONOF : "owl:intersectionOf" > | < OWL_INVERSEOF : "owl:inverseOf" > + | < OWL_MAXCARDINALITY : "owl:maxCardinality" > | < OWL_MINCARDINALITY : "owl:minCardinality" > | < OWL_OBJECTPROPERTY : "owl:ObjectProperty" > | < OWL_ONPROPERTY : "owl:onProperty" > @@ -90,6 +91,7 @@ SPECIAL_TOKEN : /* COMMENTS */ | < RDF_RDF : "rdf:RDF" > | < RDF_ABOUT : "rdf:about" > | < RDF_DATATYPE : "rdf:datatype" > + | < RDF_DESCRIPTION : "rdf:Description" > | < RDF_ID : "rdf:ID" > | < RDF_FIRST : "rdf:first" > | < RDF_REST : "rdf:rest" > @@ -377,6 +379,7 @@ void OwlElement() : {} | OwlImports() | OwlIntersectionOf() | OwlInverseOf() + | OwlMaxCardinality() | OwlMinCardinality() | OwlObjectProperty() | OwlOneOf() @@ -470,6 +473,12 @@ void OwlInverseOf () #OwlInverseOf : {} (">" ElementList() "</" <OWL_INVERSEOF> ">" | ElementList() "/>") } +void OwlMaxCardinality () #OwlMaxCardinality : {} +{ + <OWL_MAXCARDINALITY> AttributeList() + (">" ElementList() "</" <OWL_MAXCARDINALITY> ">" | ElementList() "/>") +} + void OwlMinCardinality () #OwlMinCardinality : {} { <OWL_MINCARDINALITY> AttributeList() @@ -515,6 +524,7 @@ void OwlUnionOf () #OwlUnionOf : {} void RdfElement() : {} { RdfType() + | RdfDescription() | RdfFirst() | RdfRest() | RdfsComment() @@ -530,6 +540,12 @@ void RdfType() #RdfType : {} (">" ElementList() "</" <RDF_TYPE> ">" | ElementList() "/>") } +void RdfDescription() #RdfDescription : {} +{ + <RDF_DESCRIPTION> AttributeList() + (">" ElementList() "</" <RDF_DESCRIPTION> ">" | ElementList() "/>") +} + void RdfFirst() #RdfFirst : {} { <RDF_FIRST> AttributeList() diff --git a/siaras/OntologyGeneration.jrag b/siaras/OntologyGeneration.jrag index 70eeef119955ef3264e77fa894ebcad0d13083ab..a5052feec8d35ad5784d5c1de60655603fbfd796 100644 --- a/siaras/OntologyGeneration.jrag +++ b/siaras/OntologyGeneration.jrag @@ -10,13 +10,58 @@ import java.io.PrintStream; aspect Statistics { public void ASTNode.genOntology(String ind, PrintStream pStream) { - for (int i=0; i<getNumChild(); i++) { - getChild(i).genOntology(ind, pStream); +// for (int i=0; i<getNumChild(); i++) { +// getChild(i).genOntology(ind, pStream); +// } + } + + public void ComplexElement.genOntology(String ind, PrintStream pStream) { + pStream.print(ind+"<"+name()); + for (int i=0; i<getNumAttribute(); i++) { + pStream.print(" "); + getAttribute(i).genOntology(pStream); + } + if (getNumElement() > 0) { + pStream.println(">"); + for (int i=0; i<getNumElement(); i++) { + getElement(i).genOntology(ind+" ", pStream); + } + pStream.println(ind+"</"+name()+">"); + } else { + pStream.println("/>"); } } + public void Thing.genOntology(String ind, PrintStream pStream) { + + } + public void Start.genOntology(String ind, PrintStream pStream) { pStream.println("<?xml version=\"1.0\"?>"); - super.genOntology(ind, pStream); + for (int i=0; i<getNumElement(); i++) { + getElement(i).genOntology(ind+" ", pStream); + } + } + + public void RdfDeclaration.genOntology(String ind, PrintStream pStream) { + pStream.print(ind+"<rdf:RDF"); + for (int i=0; i<getNumAttribute(); i++) { + pStream.println(); + pStream.print(ind+" "); + getAttribute(i).genOntology(pStream); + } + pStream.println(">"); + for (int i=0; i<getNumElement(); i++) { + getElement(i).genOntology(ind+" ", pStream); + } + pStream.println(ind+"</rdf:RDF>"); + } + +// public void OwlOntology.genOntology(String ind, PrintStream pStream) { +// pStream.print(ind+"<"+name() +// } + + public void Attribute.genOntology(PrintStream pStream) { + pStream.print(id()+"="+getValue().getSTRING_LITERAL()); } } diff --git a/siaras/Rewrites.jrag b/siaras/Rewrites.jrag new file mode 100644 index 0000000000000000000000000000000000000000..0624817cd50c8b0e365ba44704d4c6056177e3e5 --- /dev/null +++ b/siaras/Rewrites.jrag @@ -0,0 +1,18 @@ +/* -*-Java-*- */ + +/* + * Copyright (C) 2006 Anders Nilsson <anders.nilsson@cs.lth.se> + * + * This file is part of OntologyCompiler. + */ + +aspect Qualification { + rewrite ComplexElement { + when (name().equals("rdf:RDF") && !(this instanceof RdfDeclaration)) + to RdfDeclaration { + return new RdfDeclaration(getOwlIdentifier(), + getAttributeList(), + getElementList()); + } + } +} diff --git a/siaras/owl.ast b/siaras/owl.ast new file mode 100644 index 0000000000000000000000000000000000000000..04be99b08c51373d09fdcecfc9eb8d6dd86fb2a6 --- /dev/null +++ b/siaras/owl.ast @@ -0,0 +1,55 @@ +// -*-Java-*- + + +// Copyright (C) 2006 Anders Nilsson <anders.nilsson@cs.lth.se> +// +// This file is part of OntologyCompiler. + + +RdfDeclaration : ComplexElement; +RdfDescription : ComplexElement; +RdfFirst : ComplexElement; +RdfRest : ComplexElement; +RdfType : ComplexElement; +RdfsComment : ComplexElement; +RdfsDomain : ComplexElement; +RdfsRange : ComplexElement; +RdfsSubClassOf : ComplexElement; +RdfsSubPropertyOf : ComplexElement; +OwlOntology : ComplexElement; +OwlAllDifferent : ComplexElement; +OwlAllValuesFrom : OwlValuesFrom; +OwlCardinality : ComplexElement; +OwlClass : ComplexElement; +OwlDataRange : ComplexElement; +OwlDatatypeProperty : ComplexElement; +OwlDisjointWith : ComplexElement; +OwlDistinctMembers: ComplexElement; +OwlEquivalentClass : ComplexElement; +OwlFunctionalProperty : OwlProperty; +OwlImports : ComplexElement; +OwlIntersectionOf : ComplexElement; +OwlInverseOf : ComplexElement; +OwlMaxCardinality : ComplexElement; +OwlMinCardinality : ComplexElement; +OwlObjectProperty : OwlProperty; +OwlOneOf : ComplexElement; +OwlOnProperty : OwlProperty; +OwlSomeValuesFrom : OwlValuesFrom; +OwlRestriction : ComplexElement; +OwlUnionOf : ComplexElement; + + + +// Types used by rewrite rules +abstract OClass : ComplexElement ::= <Id:String>; +OwlClassDecl : OClass; +OwlClassUse : OClass; + +abstract OwlValuesFrom: ComplexElement; + + +// Properties ::= Property:Element*; +// Restrictions ::= OwlRestriction*; + +abstract OwlProperty : ComplexElement; diff --git a/testontologies/v09.owl b/testontologies/v09.owl index c91145afea382bda8686a295f4bfb62167b86414..4e3b1fc61597bc4488c2574a22aa1b1ab2b3f8df 100644 --- a/testontologies/v09.owl +++ b/testontologies/v09.owl @@ -1,5687 +1,5235 @@ <?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:protege="http://protege.stanford.edu/plugins/owl/protege#" xmlns:p1="http://www.owl-ontologies.com/assert.owl#" + xmlns="http://www.owl-ontologies.com/siaras.owl#" + xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:daml="http://www.daml.org/2001/03/daml+oil#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xml:base="http://www.owl-ontologies.com/siaras.owl"> <owl:Ontology rdf:about=""/> - <owl:Class rdf:ID="ReadOpticalCharacters"> - <rdfs:subClassOf> - <owl:Class rdf:ID="Read"/> - </rdfs:subClassOf> - <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 rdf:ID="Sinter"> <owl:disjointWith> - <owl:Class rdf:ID="Read2DMatrixCode"/> + <owl:Class rdf:ID="Cast"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ReadBarCode"/> + <owl:Class rdf:ID="ElectrolyticSegregate"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Mold"/> + </rdfs:subClassOf> + <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:Class> + <owl:Class rdf:ID="UltrasonicDistanceSensor"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >distanceMeasurements.pdf +SICK +pag 4</rdfs:comment> + <rdfs:subClassOf> + <owl:Class rdf:ID="UltrasonicSensor"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="DetectObject"> + <owl:Class rdf:ID="DetectContrast"> + <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> + <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:subClassOf> <owl:Class rdf:ID="Detect"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="DetectCollision"/> + <owl:Class rdf:ID="DetectObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="DetectColor"/> + <owl:Class rdf:ID="DetectCollision"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="DetectContrast"/> + <owl:Class rdf:ID="DetectLuminescence"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="DetectLuminescence"/> + <owl:Class rdf:ID="DetectColor"/> </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:Class> - <owl:Class rdf:ID="Geometry"> + <owl:Class rdf:ID="Circular"> <rdfs:subClassOf> - <owl:Class rdf:ID="DeviceProperty"/> + <owl:Class rdf:ID="Feed"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="PhysicalProperties"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:ID="Cost"/> + <owl:Class rdf:ID="AsFastAsPossible"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Arrangement"/> + <owl:Class rdf:ID="Karthesian"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="AdjustCurrentToGrip"> <owl:disjointWith> - <owl:Class rdf:ID="ToolInterface"/> + <owl:Class rdf:ID="CloseFingers"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Timing"/> + <owl:Class rdf:ID="AdjustVacuumToGrip"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ControlSystem"/> + <owl:Class rdf:ID="CloseClaws"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Grasp"/> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:ID="MagnetGripper"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="Convey"> <owl:disjointWith> - <owl:Class rdf:ID="QualityCriteria"/> + <owl:Class rdf:ID="Pass"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Identifier"/> + <owl:Class rdf:ID="Pan"/> </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:ID="Communication"/> + <owl:Class rdf:ID="Orient"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="PhysicalPropertiesSensor"> <owl:disjointWith> - <owl:Class rdf:ID="MaxCurrentConsumption"/> + <owl:Class rdf:ID="Turn"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxAmbientTemperature"/> + <owl:Class rdf:ID="Position"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="PhysicalInterface"/> + <owl:Class rdf:ID="Displace"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="DegreesOfFreedom"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Move"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="MinAmbientTemperature"/> + <owl:Class rdf:ID="Arrange"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="Solder"> <owl:disjointWith> - <owl:Class rdf:ID="Diameter"/> + <owl:Class rdf:ID="Clinch"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Weight"/> + <owl:Class rdf:ID="Glue"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Material"/> + <owl:Class rdf:ID="Rivet"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxVoltageSupply"/> + <owl:Class rdf:ID="Weld"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Shape"/> + <owl:Class rdf:ID="Fill"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="EnclosureRatingIP"/> + <owl:Class rdf:ID="Assemble"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Join"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="PhysicalPropertiesGripper"/> + <owl:Class rdf:ID="Bolt"/> </owl:disjointWith> + <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:Class> + <owl:Class rdf:ID="TypeOfActuation"> + <rdfs:subClassOf> + <owl:Class rdf:ID="PhysicalPropertiesRobot"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="PowerConsumption"/> + <owl:Class rdf:ID="Reachability"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Height"/> + <owl:Class rdf:ID="NumberOfJoints"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="PerformSelfTest"> <owl:disjointWith> - <owl:Class rdf:ID="MechanicalResistance"/> + <owl:Class rdf:ID="CollectStatisticalData"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalProperties"/> + <owl:Class rdf:ID="DiagnosticFunction"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="Hot-galvanise"> + <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> + <owl:Class rdf:ID="Coat"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Width"/> + <owl:Class rdf:ID="Powder-coat"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Payload"/> + <owl:Class rdf:ID="Electroplate"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MinVoltageSupply"/> + <owl:Class rdf:ID="Varnish"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="MainFunction"> + <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="Length"/> + <owl:Class rdf:ID="AdditionalFunction"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="PhysicalPropertiesRobot"/> + <owl:Class rdf:ID="CompoundSkills"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxForce"/> + <owl:Class rdf:about="#DiagnosticFunction"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Skill"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#DetectLuminescence"> + <owl:Class rdf:about="#DetectObject"> <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> +Cap: 2</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#DetectColor"/> + <owl:Class rdf:about="#DetectLuminescence"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#DetectContrast"/> <owl:disjointWith> - <owl:Class rdf:about="#DetectContrast"/> + <owl:Class rdf:about="#DetectColor"/> </owl:disjointWith> <owl:disjointWith> <owl:Class rdf:about="#DetectCollision"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#DetectObject"/> <rdfs:subClassOf> <owl:Class rdf:about="#Detect"/> </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:ID="OpticLuminescenceScanner"/> - </owl:someValuesFrom> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="isSkillOf"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="AngleGripper"> + <owl:Class rdf:ID="Thrust"> <owl:disjointWith> - <owl:Class rdf:ID="ParallelGripper"/> + <owl:Class rdf:ID="Hone"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:ID="PincerGripper"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="Rivet"> <owl:disjointWith> - <owl:Class rdf:ID="Assemble"/> + <owl:Class rdf:ID="Lathe"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Bolt"/> + <owl:Class rdf:ID="Drill"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Solder"/> + <owl:Class rdf:ID="Cut"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Glue"/> + <owl:Class rdf:ID="File"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Clinch"/> + <owl:Class rdf:ID="Plane"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Fill"/> + <owl:Class rdf:ID="Grind"/> </owl:disjointWith> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Connect workpieces with the help of a deformed, cylindrical connection element.</rdfs:comment> + >The tool performs a cutting movement and a reverse movement.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="Weld"/> + <owl:Class rdf:ID="Thermal-Separate"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:ID="Rub"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:ID="Join"/> + <owl:Class rdf:ID="Separate"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="ShapeOfClaws"> <owl:disjointWith> - <owl:Class rdf:ID="SizeOfGripper"/> + <owl:Class rdf:ID="Saw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="NumberOfFingers"/> + <owl:Class rdf:ID="Mill"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="NumberOfMovableClaws"/> + <owl:Class rdf:ID="Lap"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="NumberOfClaws"/> + <owl:Class rdf:ID="Electro-discharge-machine"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaterialOfGripper"/> + <owl:Class rdf:ID="Broach"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#File"> <owl:disjointWith> - <owl:Class rdf:ID="TypeOfVacuum"/> + <owl:Class rdf:about="#Rub"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="DiameterOfGripper"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="TypeOfMagnet"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> + <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:ID="StiffnessOfGripper"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Separate"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="MaxLiftWeight"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxLiftWay"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Reach"/> + <owl:Class rdf:about="#Cut"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="TypeOfFingers"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="InsideOrOutsidePicking"/> + <owl:Class rdf:about="#Mill"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Thrust"/> <owl:disjointWith> - <owl:Class rdf:ID="MaximumVacuum"/> + <owl:Class rdf:about="#Grind"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="ClassifyObject"> <owl:disjointWith> - <owl:Class rdf:ID="SortObjects"/> + <owl:Class rdf:about="#Lap"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:ID="Classify"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Read"> <owl:disjointWith> - <owl:Class rdf:about="#Detect"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:ID="Scan"/> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Classify"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="CheckPresence"> <owl:disjointWith> - <owl:Class rdf:ID="Measure"/> + <owl:Class rdf:ID="CheckPosition"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ImageAnalysis"/> + <owl:Class rdf:ID="Count"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Check"/> + <owl:Class rdf:ID="CheckSurfaceForIrregularities"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:ID="SensorFunction"/> + <owl:Class rdf:ID="Check"/> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#DetectColor"> + <owl:disjointWith rdf:resource="#DetectContrast"/> + <owl:disjointWith> + <owl:Class rdf:about="#DetectLuminescence"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#DetectObject"/> + <owl:disjointWith> + <owl:Class rdf:about="#DetectCollision"/> + </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> +Tasks and Skills of Ocptical Sensor 1.1 +Cap: 4</rdfs:comment> + <rdfs:subClassOf> + <owl:Class rdf:about="#Detect"/> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:ID="OpticColorSensor"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="Orient"> + <owl:Class rdf:ID="OpticReflexSwitch"> <owl:disjointWith> - <owl:Class rdf:ID="Feed"/> + <owl:Class rdf:ID="OpticThroughBeamSwitch"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:ID="OpticProximitySwitch"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:ID="Move"/> + <owl:Class rdf:ID="OpticSwitch"/> + </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: 2</rdfs:comment> + </owl:Class> + <owl:Class rdf:ID="Merge"> + <rdfs:subClassOf> + <owl:Class rdf:ID="ModifyAmount"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Turn"/> + <owl:Class rdf:ID="Unify"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Displace"/> + <owl:Class rdf:ID="Branch"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Position"/> + <owl:Class rdf:ID="Divide"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Pass"/> + <owl:Class rdf:ID="Assign"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Arrange"/> + <owl:Class rdf:ID="Partition"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Combine subflows of material to a superflow.</rdfs:comment> + </owl:Class> + <owl:Class rdf:ID="MinVoltageSupply"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in volts</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="Pan"/> + <owl:Class rdf:ID="MinAmbientTemperature"/> </owl:disjointWith> - <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:disjointWith> - <owl:Class rdf:ID="Convey"/> + <owl:Class rdf:ID="PhysicalInterface"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Convey"> <owl:disjointWith> - <owl:Class rdf:about="#Pass"/> + <owl:Class rdf:ID="Shape"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="PhysicalProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:ID="PhysicalPropertiesSensor"/> </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 rdf:resource="#Orient"/> <owl:disjointWith> - <owl:Class rdf:about="#Turn"/> + <owl:Class rdf:ID="MaxCurrentConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Position"/> + <owl:Class rdf:ID="Weight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:ID="Length"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Feed"/> + <owl:Class rdf:ID="EnclosureRatingIP"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Arrange"/> + <owl:Class rdf:ID="Payload"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="MeasureDistance"> <owl:disjointWith> - <owl:Class rdf:ID="MeasureMotionOfObject"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureVolume"/> + <owl:Class rdf:ID="PhysicalPropertiesGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureTorque"/> + <owl:Class rdf:ID="Diameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureDiameter"/> + <owl:Class rdf:ID="MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureAcceleration"/> + <owl:Class rdf:ID="PowerConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureAngle"/> + <owl:Class rdf:ID="Width"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureForce"/> + <owl:Class rdf:ID="DegreesOfFreedom"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasurePositionOfObject"/> + <owl:Class rdf:ID="MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureOrientationOfObject"/> + <owl:Class rdf:ID="MaxVoltageSupply"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureArea"/> + <owl:Class rdf:ID="Height"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureTemperature"/> + <owl:Class rdf:ID="Material"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MeasureSpeed"/> + <owl:Class rdf:ID="MechanicalResistance"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Measure"/> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#MaxAmbientTemperature"> + <owl:Class rdf:ID="LightSpotSize"> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:ID="MaxMeasurementRange"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:ID="MinMeasurementRange"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesSensor"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Width"/> + <owl:Class rdf:ID="LaserClass"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:ID="LightType"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Diameter in mm.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:ID="MaxScanAngle"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:ID="FieldOfView"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:ID="ScanningDistance"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#PhysicalPropertiesSensor"> <owl:disjointWith> <owl:Class rdf:about="#MaxCurrentConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#Diameter"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Weight"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> <owl:disjointWith> <owl:Class rdf:about="#MaxVoltageSupply"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxForce"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> <owl:disjointWith> <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalProperties"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in degrees celsius</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#Height"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Payload"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Object"> - <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Skill"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:ID="Operation"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:ID="ObjectBase"/> + <owl:Class rdf:about="#Length"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Task"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Property"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >This is basically the world.</rdfs:comment> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasAssembly"/> - </owl:onProperty> - <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:maxCardinality> - </owl:Restriction> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="CheckSurfaceForIrregularities"> + <owl:Class rdf:ID="InsideOrOutsidePicking"> <rdfs:subClassOf> - <owl:Class rdf:about="#Check"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </rdfs:subClassOf> - <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="CheckPresence"/> + <owl:Class rdf:ID="NumberOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Count"/> + <owl:Class rdf:ID="NumberOfFingers"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="CheckPosition"/> + <owl:Class rdf:ID="TypeOfMagnet"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Glue"> - <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:disjointWith> - <owl:Class rdf:about="#Solder"/> + <owl:Class rdf:ID="MaxLiftWay"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Rivet"/> <owl:disjointWith> - <owl:Class rdf:about="#Assemble"/> + <owl:Class rdf:ID="MaterialOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> + <owl:Class rdf:ID="StiffnessOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Bolt"/> + <owl:Class rdf:ID="NumberOfMovableClaws"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Fill"/> + <owl:Class rdf:ID="ShapeOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Clinch"/> + <owl:Class rdf:ID="Reach"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#TypeOfVacuum"> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:ID="MaxLiftWeight"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#MaximumVacuum"/> + <owl:Class rdf:ID="MaximumVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:ID="TypeOfVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#InsideOrOutsidePicking"/> + <owl:Class rdf:ID="DiameterOfGripper"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:ID="TypeOfFingers"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfMovableClaws"/> + <owl:Class rdf:ID="SizeOfGripper"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#MaxCurrentConsumption"> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#Diameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#SizeOfGripper"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWeight"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#EnclosureRatingIP"> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#MaxVoltageSupply"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#Height"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxCurrentConsumption"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Payload"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Width"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in amperes</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#Length"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> <rdfs:subClassOf> <owl:Class rdf:about="#PhysicalProperties"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MaxForce"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Height"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#MaxVoltageSupply"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="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> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:ID="Workpiece"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - </owl:Class> - <owl:Class rdf:about="#Pass"> <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> + <owl:Restriction> + <owl:allValuesFrom> + <owl:Class rdf:about="#Skill"/> + </owl:allValuesFrom> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasSkill"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Convey"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasIdentifier"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasProperty"/> + </owl:onProperty> + <owl:allValuesFrom> + <owl:Class rdf:ID="Property"/> + </owl:allValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >0</owl:minCardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasReference"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Class rdf:ID="PhysicalObject"/> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom> + <owl:Class rdf:about="#PhysicalProperties"/> + </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="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom rdf:resource="#MainFunction"/> + </owl:Restriction> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Mill"> <owl:disjointWith> - <owl:Class rdf:about="#Turn"/> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Feed"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:about="#Rub"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Orient"/> <owl:disjointWith> - <owl:Class rdf:about="#Arrange"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> - <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="#Thrust"/> <owl:disjointWith> - <owl:Class rdf:about="#Position"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#MeasureTorque"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:about="#Lap"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#File"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#Cut"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> + <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> <rdfs:subClassOf> - <owl:Class rdf:about="#Measure"/> + <owl:Class rdf:about="#Separate"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAngle"/> + <owl:Class rdf:about="#Grind"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> + </owl:Class> + <owl:Class rdf:ID="VisionSensor"> + <rdfs:subClassOf> + <owl:Class rdf:ID="OpticSensor"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MeasureArea"/> + <owl:Class rdf:ID="OpticLuminescenceScanner"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureVolume"/> + <owl:Class rdf:about="#OpticSwitch"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureMotionOfObject"/> + <owl:Class rdf:about="#OpticContrastScanner"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureSpeed"/> + <owl:Class rdf:ID="LightGrid"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> + <owl:Class rdf:about="#OpticColorSensor"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="CompoundSkills"> <owl:disjointWith> - <owl:Class rdf:ID="DiagnosticFunction"/> + <owl:Class rdf:ID="OpticDistanceSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MainFunction"/> + <owl:Class rdf:ID="SmartCamera"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="AdditionalFunction"/> + <owl:Class rdf:ID="LaserScanner2D"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Restriction> - <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:maxCardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasSubskill"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasSkill"/> - </owl:onProperty> - <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:maxCardinality> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:about="#Skill"/> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="Branch"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Divide a material flow into subflows.</rdfs:comment> + <owl:Class rdf:about="#CheckPosition"> <rdfs:subClassOf> - <owl:Class rdf:ID="ModifyAmount"/> + <owl:Class rdf:about="#Check"/> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#CheckPresence"/> <owl:disjointWith> - <owl:Class rdf:ID="Partition"/> + <owl:Class rdf:about="#Count"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Assign"/> + <owl:Class rdf:about="#CheckSurfaceForIrregularities"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Length"> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Merge"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Unify"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Divide"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Thermal-Separate"> <owl:disjointWith> - <owl:Class rdf:ID="Plane"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Mill"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:ID="Separate"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Cut"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:ID="Thrust"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Lathe"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> - <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 rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:ID="Electro-discharge-machine"/> + <owl:Class rdf:about="#MaxVoltageSupply"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Drill"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Lap"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Broach"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Hone"/> + <owl:Class rdf:about="#Height"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="Rub"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="File"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Grind"/> + <owl:Class rdf:about="#Diameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Saw"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#MaxLiftWeight"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in kg</rdfs:comment> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + </owl:Class> + <owl:Class rdf:about="#Diameter"> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#SizeOfGripper"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfMovableClaws"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#InsideOrOutsidePicking"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaximumVacuum"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="TactileSensor"> - <rdfs:subClassOf> - <owl:Class rdf:ID="Sensor"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="EncoderSensor"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="InductiveSensor"/> + <owl:Class rdf:about="#Height"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="OpticSensor"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:ID="UltrasonicSensor"/> + <owl:Class rdf:about="#MaxVoltageSupply"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MagneticSensor"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#CloseClaws"> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:ID="PincerGripper"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Class rdf:about="#Grasp"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="CapacitveSensor"/> + <owl:Class rdf:about="#AdjustVacuumToGrip"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> <owl:disjointWith> - <owl:Class rdf:ID="TorqueForceSensor"/> + <owl:Class rdf:about="#CloseFingers"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:ID="LoadParameterSet"> - <owl:disjointWith> - <owl:Class rdf:ID="SaveParameterSet"/> - </owl:disjointWith> + <owl:Class rdf:about="#Workpiece"> + <rdfs:subClassOf> + <owl:Restriction> + <owl:allValuesFrom> + <owl:Class rdf:about="#Property"/> + </owl:allValuesFrom> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasIdentifier"/> + </owl:onProperty> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalObject"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Device"/> + </owl:Class> + <owl:Class rdf:ID="MechanicalConnector"> + <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> + <rdfs:subClassOf> + <owl:Class rdf:ID="ToolInterface"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Calibrate"/> + <owl:Class rdf:ID="ElectricalConnector"/> </owl:disjointWith> + </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 rdf:resource="#CheckPosition"/> <owl:disjointWith> - <owl:Class rdf:ID="SetParameterValue"/> + <owl:Class rdf:about="#Count"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CheckPresence"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Check"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#AsFastAsPossible"> + <owl:disjointWith rdf:resource="#Circular"/> <owl:disjointWith> - <owl:Class rdf:ID="Reset"/> + <owl:Class rdf:about="#Karthesian"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#AdditionalFunction"/> + <owl:Class rdf:about="#Feed"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#Communication"> + <owl:Class rdf:ID="Part"> + <rdfs:subClassOf> + <owl:Class rdf:ID="ObjectBase"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#ControlSystem"/> + <owl:Class rdf:ID="Assembly"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Varnish"> <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:about="#Powder-coat"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#Electroplate"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Geometry"/> + <owl:disjointWith rdf:resource="#Hot-galvanise"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Coat"/> + </rdfs:subClassOf> + <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="#OpticContrastScanner"> <owl:disjointWith> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:about="#OpticDistanceSensor"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#DeviceProperty"/> + <owl:Class rdf:about="#OpticSensor"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#ToolInterface"/> + <owl:Class rdf:about="#OpticColorSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalProperties"/> + <owl:Class rdf:about="#SmartCamera"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cost"/> + <owl:Class rdf:about="#LightGrid"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#SizeOfGripper"> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:about="#OpticSwitch"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaximumVacuum"/> + <owl:Class rdf:about="#LaserScanner2D"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <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> + </owl:Class> + <owl:Class rdf:ID="TactileSensor"> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:ID="TorqueForceSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> + <owl:Class rdf:ID="CapacitveSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfMovableClaws"/> + <owl:Class rdf:ID="MagneticSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#UltrasonicSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:about="#OpticSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#InsideOrOutsidePicking"/> + <owl:Class rdf:ID="InductiveSensor"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:ID="EncoderSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:ID="Sensor"/> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="Fold"> + <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> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:ID="Roll"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:ID="Forge"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:ID="Press"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:ID="Bend"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Bend"> - <rdfs:subClassOf> - <owl:Class rdf:ID="Form"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Stretch-Form"/> + <owl:Class rdf:ID="Flang"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Roll"/> + <owl:Class rdf:ID="True"/> </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:ID="Bead"/> + </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="Form"/> + </rdfs:subClassOf> <owl:disjointWith> <owl:Class rdf:ID="Deep-Draw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Forge"/> + <owl:Class rdf:ID="Crush"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:ID="Stretch-Form"/> </owl:disjointWith> <owl:disjointWith> <owl:Class rdf:ID="Extrude"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#OpticSwitch"> <owl:disjointWith> - <owl:Class rdf:ID="Bead"/> + <owl:Class rdf:about="#OpticDistanceSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="True"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> <owl:disjointWith> - <owl:Class rdf:ID="Fold"/> + <owl:Class rdf:about="#LightGrid"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Flang"/> + <owl:Class rdf:about="#SmartCamera"/> </owl:disjointWith> - <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:disjointWith> - <owl:Class rdf:ID="Press"/> + <owl:Class rdf:about="#LaserScanner2D"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Crush"/> + <owl:Class rdf:about="#OpticColorSensor"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#OpticSensor"> <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> + <owl:Class rdf:about="#OpticSensor"/> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="SimpleControl"> <owl:disjointWith> - <owl:Class rdf:about="#EncoderSensor"/> + <owl:Class rdf:ID="NumericalCtrl"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#UltrasonicSensor"/> + <owl:Class rdf:ID="IntelligentCtrl"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MagneticSensor"/> + <owl:Class rdf:ID="PlaybackCtrl"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="ControlSystem"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="MeasureDistance"> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:ID="MeasureMotionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#InductiveSensor"/> + <owl:Class rdf:ID="MeasureVolume"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CapacitveSensor"/> + <owl:Class rdf:ID="MeasureTorque"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TactileSensor"/> - </owl:Class> - <owl:Class rdf:about="#MeasureAngle"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureSpeed"/> + <owl:Class rdf:ID="MeasureDiameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureVolume"/> + <owl:Class rdf:ID="MeasureAcceleration"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Measure"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#MeasureTorque"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:ID="MeasureAngle"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:ID="MeasureForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith> - <owl:Class rdf:about="#MeasureMotionOfObject"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:ID="MeasurePositionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureArea"/> + <owl:Class rdf:ID="MeasureOrientationOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:ID="MeasureArea"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="WheelEncoder"> <owl:disjointWith> - <owl:Class rdf:ID="WireDrawEncoder"/> + <owl:Class rdf:ID="MeasureTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="LinearEncoder"/> + <owl:Class rdf:ID="MeasureSpeed"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#EncoderSensor"/> + <owl:Class rdf:ID="Measure"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#ModifyAmount"> - <owl:disjointWith> - <owl:Class rdf:ID="Secure"/> - </owl:disjointWith> + <owl:Class rdf:about="#Skill"> <owl:disjointWith> - <owl:Class rdf:about="#Move"/> + <owl:Class rdf:about="#Property"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Store"/> + <owl:Class rdf:ID="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> + <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <rdfs:subClassOf> - <owl:Class rdf:ID="ManipulationAndHandlingFunction"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:allValuesFrom rdf:resource="#Device"/> + </owl:Restriction> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Payload"> - <owl:disjointWith> - <owl:Class rdf:about="#Height"/> - </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#PhysicalObject"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:ID="Operation"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxVoltageSupply"/> + <owl:Class rdf:about="#ObjectBase"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#CloseFingers"> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#AdjustVacuumToGrip"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CloseClaws"/> + <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalProperties"/> + <owl:Class rdf:about="#Grasp"/> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:ID="FingerGripper"/> + </owl:someValuesFrom> + </owl:Restriction> </rdfs:subClassOf> + </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> + <rdfs:subClassOf rdf:resource="#Skill"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#CompoundSkills"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#MainFunction"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxCurrentConsumption"/> + <owl:Class rdf:about="#DiagnosticFunction"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#MeasureVolume"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Measure"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#MeasureTemperature"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#MeasurePositionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxForce"/> + <owl:Class rdf:about="#MeasureTorque"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in kg</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#MeasureArea"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#MeasureMotionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Width"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> </owl:Class> - <owl:Class rdf:ID="NumberOfJoints"> + <owl:Class rdf:about="#MinMeasurementRange"> <owl:disjointWith> - <owl:Class rdf:ID="TypeOfActuation"/> + <owl:Class rdf:about="#FieldOfView"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:ID="Reachability"/> + <owl:Class rdf:about="#MaxMeasurementRange"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="StoreUnOrdered"> <owl:disjointWith> - <owl:Class rdf:ID="StorePartlyOrdered"/> + <owl:Class rdf:about="#LaserClass"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="StoreInOrder"/> + <owl:Class rdf:about="#MaxScanAngle"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Store"/> - </rdfs:subClassOf> - <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:Class> - <owl:Class rdf:about="#Measure"> + <owl:disjointWith rdf:resource="#LightSpotSize"/> <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> - <rdfs:subClassOf> - <owl:Class rdf:about="#SensorFunction"/> - </rdfs:subClassOf> + >In mm.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#ImageAnalysis"/> + <owl:Class rdf:about="#ScanningDistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Scan"/> + <owl:Class rdf:about="#LightType"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Read"/> + </owl:Class> + <owl:Class rdf:ID="CalibrateImage"> + <rdfs:subClassOf> + <owl:Class rdf:ID="ImageAnalysis"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Classify"/> + <owl:Class rdf:ID="ExtractEdges"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Check"/> + <owl:Class rdf:ID="CompressImageData"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Detect"/> + <owl:Class rdf:ID="TransformImage"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="OpticContrastScanner"> <owl:disjointWith> - <owl:Class rdf:about="#OpticLuminescenceScanner"/> + <owl:Class rdf:ID="DecompressImageData"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="OpticDistanceSensor"/> + <owl:Class rdf:ID="FilterImage"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:ID="OpticColorSensor"/> + <owl:Class rdf:ID="SegmentImage"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="SmartCamera"/> + <owl:Class rdf:ID="BlobAnalysis"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="Communication"> <owl:disjointWith> - <owl:Class rdf:ID="LightGrid"/> + <owl:Class rdf:about="#ControlSystem"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="OpticSwitch"/> + <owl:Class rdf:ID="Arrangement"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="LaserScanner2D"/> + <owl:Class rdf:ID="QualityCriteria"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="VisionSensor"/> + <owl:Class rdf:ID="Geometry"/> </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: 3</rdfs:comment> - </owl:Class> - <owl:Class rdf:about="#DetectColor"> <owl:disjointWith> - <owl:Class rdf:about="#DetectCollision"/> + <owl:Class rdf:ID="Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#DetectObject"/> - <owl:disjointWith rdf:resource="#DetectLuminescence"/> <owl:disjointWith> - <owl:Class rdf:about="#DetectContrast"/> + <owl:Class rdf:ID="Identifier"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#OpticColorSensor"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:about="#Detect"/> + <owl:Class rdf:ID="DeviceProperty"/> </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> - </owl:Class> - <owl:Class rdf:about="#PhysicalProperties"> <owl:disjointWith> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#ToolInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:about="#PhysicalProperties"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ToolInterface"/> + <owl:Class rdf:ID="Cost"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="Accuracy"> <owl:disjointWith> - <owl:Class rdf:about="#ControlSystem"/> + <owl:Class rdf:ID="Precision"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Communication"/> <owl:disjointWith> - <owl:Class rdf:about="#Cost"/> + <owl:Class rdf:ID="Repeatability"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:ID="Resolution"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Geometry"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#DeviceProperty"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:ID="PathVelocityFluctuation"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="SwitchingFrequency"> <rdfs:subClassOf> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#QualityCriteria"/> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:ID="WireDrawEncoder"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in Kilohertz</rdfs:comment> + >distanceMeasurements.pdf +SICK +pag 4</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="CycleTime"/> + <owl:Class rdf:ID="WheelEncoder"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ResponseTime"/> + <owl:Class rdf:ID="LinearEncoder"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#EncoderSensor"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:ID="WorkCoordinates"> + <owl:Class rdf:about="#Partition"> + <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> + <rdfs:subClassOf> + <owl:Class rdf:about="#ModifyAmount"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Merge"/> <owl:disjointWith> - <owl:Class rdf:ID="WorkFrame"/> + <owl:Class rdf:about="#Assign"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MountedDeviceOrientation"/> + <owl:Class rdf:about="#Divide"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="CoordinateReferenceSystem"/> + <owl:Class rdf:about="#Unify"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MountedDevicePosition"/> + <owl:Class rdf:about="#Branch"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="ScaraRobot"> <rdfs:subClassOf> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:ID="Robot"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="isEditable"> <owl:disjointWith> - <owl:Class rdf:about="#DeviceProperty"/> + <owl:Class rdf:ID="ArticulatedRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="SkillProperty"/> + <owl:Class rdf:ID="SpecialKinematicRobot"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >This attribute indicates whether the property is supposed to be provided each time a skill is invoked or just once.</rdfs:comment> - <rdfs:subClassOf> - <owl:Class rdf:about="#Property"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#WireDrawEncoder"> <owl:disjointWith> - <owl:Class rdf:about="#LinearEncoder"/> + <owl:Class rdf:ID="CartesianRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#WheelEncoder"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#EncoderSensor"/> - </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="#Reachability"> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfActuation"/> + <owl:Class rdf:ID="HexapodRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#NumberOfJoints"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Bolt"> <owl:disjointWith> - <owl:Class rdf:about="#Solder"/> + <owl:Class rdf:ID="SimpleKinematicRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Assemble"/> + <owl:Class rdf:ID="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="#EncoderSensor"> <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Sensor"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Fill"/> + <owl:Class rdf:about="#CapacitveSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Glue"/> + <owl:disjointWith rdf:resource="#TactileSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> + <owl:Class rdf:about="#OpticSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Rivet"/> - <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="#Clinch"/> + <owl:Class rdf:about="#TorqueForceSensor"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Lap"> <owl:disjointWith> - <owl:Class rdf:about="#Saw"/> + <owl:Class rdf:about="#MagneticSensor"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#InductiveSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cut"/> + <owl:Class rdf:about="#UltrasonicSensor"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="LoadParameterSet"> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:ID="Reset"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Drill"/> + <owl:Class rdf:ID="SetParameterValue"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Lathe"/> + <owl:Class rdf:ID="Calibrate"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:ID="SaveParameterSet"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> + </owl:Class> + <owl:Class rdf:ID="ParallelGripper"> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:ID="AngleGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <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> + <rdfs:subClassOf> + <owl:Class rdf:about="#PincerGripper"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#CapacitveSensor"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Sensor"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Mill"/> + <owl:Class rdf:about="#MagneticSensor"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#TactileSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#TorqueForceSensor"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#EncoderSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#OpticSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#UltrasonicSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#InductiveSensor"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#DeviceProperty"> + <owl:Class rdf:ID="Atomic"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Operation"/> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasDevice"/> + </owl:onProperty> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasWorkpiece"/> + </owl:onProperty> + <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:maxCardinality> + </owl:Restriction> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:ID="Parallel"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#SkillProperty"/> + <owl:Class rdf:ID="Sequence"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#isEditable"/> + </owl:Class> + <owl:Class rdf:about="#MaxVoltageSupply"> <rdfs:subClassOf> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#PhysicalProperties"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Fold"> - <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="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Roll"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Forge"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Bend"/> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#True"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Form"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Deep-Draw"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Stretch-Form"/> + <owl:Class rdf:about="#Height"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#InsideOrOutsidePicking"> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in volts</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#MeasureArea"> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfMovableClaws"/> + <owl:Class rdf:about="#MeasureTorque"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:about="#MaximumVacuum"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - </owl:Class> - <owl:Class rdf:ID="ElasticFingerGripper"> - <rdfs:subClassOf> - <owl:Class rdf:ID="FingerGripper"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="JointFingerGripper"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="ManipulationAndHandling"> <owl:disjointWith> - <owl:Class rdf:ID="Manufacturing"/> + <owl:Class rdf:about="#MeasurePositionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Sensor"/> + <owl:Class rdf:about="#MeasureTemperature"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#ManipulationAndHandlingFunction"/> - </owl:someValuesFrom> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:ID="Device"/> + <owl:Class rdf:about="#Measure"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="AdjustCurrentToGrip"> - <owl:disjointWith> - <owl:Class rdf:ID="CloseClaws"/> - </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="AdjustVacuumToGrip"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:ID="CloseFingers"/> + <owl:Class rdf:about="#MeasureMotionOfObject"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:ID="MagnetGripper"/> - </owl:someValuesFrom> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:ID="Grasp"/> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#OpticLuminescenceScanner"> - <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 rdf:about="#ScanningDistance"> <owl:disjointWith> - <owl:Class rdf:about="#OpticColorSensor"/> + <owl:Class rdf:about="#LaserClass"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> + <owl:Class rdf:about="#MaxMeasurementRange"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#LaserScanner2D"/> + <owl:Class rdf:about="#MaxScanAngle"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Class rdf:about="#LightType"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MinMeasurementRange"/> <owl:disjointWith> - <owl:Class rdf:about="#VisionSensor"/> + <owl:Class rdf:about="#FieldOfView"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#LightSpotSize"/> + </owl:Class> + <owl:Class rdf:about="#Height"> <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#OpticDistanceSensor"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - </owl:Class> - <owl:Class rdf:ID="Workpiece"> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#Device"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Object"/> <rdfs:subClassOf> - <owl:Restriction> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasIdentifier"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasProperty"/> - </owl:onProperty> - <owl:allValuesFrom> - <owl:Class rdf:about="#Property"/> - </owl:allValuesFrom> - </owl:Restriction> + <owl:Class rdf:about="#PhysicalProperties"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="LightType"> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:ID="FieldOfView"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxScanAngle"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MinMeasurementRange"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ScanningDistance"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="LightSpotSize"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="MaxMeasurementRange"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="LaserClass"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - </owl:Class> - <owl:Class rdf:about="#Merge"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Combine subflows of material to a superflow.</rdfs:comment> - <rdfs:subClassOf rdf:resource="#ModifyAmount"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Partition"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Assign"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> + </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Divide"/> + <owl:Class rdf:about="#Shape"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Branch"/> <owl:disjointWith> - <owl:Class rdf:about="#Unify"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Diameter"/> </owl:Class> - <owl:Class rdf:about="#Manufacturing"> + <owl:Class rdf:about="#OpticSensor"> + <owl:disjointWith rdf:resource="#TactileSensor"/> + <owl:disjointWith rdf:resource="#CapacitveSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Sensor"/> + <owl:Class rdf:about="#InductiveSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ManipulationAndHandling"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:ID="ManufacturingFunction"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> + <owl:disjointWith> + <owl:Class rdf:about="#TorqueForceSensor"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#MagneticSensor"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#UltrasonicSensor"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#EncoderSensor"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Device"/> + <owl:Class rdf:about="#Sensor"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#Saw"> + <owl:Class rdf:about="#Shape"> <owl:disjointWith> - <owl:Class rdf:about="#Lathe"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Drill"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> - <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 rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cut"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#Height"/> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#DegreesOfFreedom"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> <owl:disjointWith> - <owl:Class rdf:about="#Mill"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith> + <owl:Class rdf:about="#EnclosureRatingIP"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#Feed"> + <owl:Class rdf:about="#DegreesOfFreedom"> <owl:disjointWith> - <owl:Class rdf:about="#Turn"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> - <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="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Arrange"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Pass"/> - <owl:disjointWith rdf:resource="#Orient"/> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Convey"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#Position"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Temper"> <owl:disjointWith> - <owl:Class rdf:ID="Anneal"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Age"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> - <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> - <owl:Class rdf:ID="ModifyWorkpieceProperties"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Calibrate"> - <rdfs:subClassOf> - <owl:Class rdf:about="#AdditionalFunction"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#LoadParameterSet"/> <owl:disjointWith> - <owl:Class rdf:about="#Reset"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#SaveParameterSet"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#Shape"/> <owl:disjointWith> - <owl:Class rdf:about="#SetParameterValue"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#AdditionalFunction"> <owl:disjointWith> - <owl:Class rdf:about="#DiagnosticFunction"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MainFunction"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CompoundSkills"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Skill"/> - </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:5 -(Breakdown of Skills)</rdfs:comment> - </owl:Class> - <owl:Class rdf:ID="CompressImageData"> <owl:disjointWith> - <owl:Class rdf:ID="BlobAnalysis"/> + <owl:Class rdf:about="#Weight"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#ExtractEdges"> + <owl:disjointWith rdf:resource="#CalibrateImage"/> <owl:disjointWith> - <owl:Class rdf:ID="DecompressImageData"/> + <owl:Class rdf:about="#SegmentImage"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="TransformImage"/> + <owl:Class rdf:about="#TransformImage"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="FilterImage"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="SegmentImage"/> + <owl:Class rdf:about="#FilterImage"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ExtractEdges"/> + <owl:Class rdf:about="#DecompressImageData"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="CalibrateImage"/> + <owl:Class rdf:about="#BlobAnalysis"/> </owl:disjointWith> <rdfs:subClassOf> <owl:Class rdf:about="#ImageAnalysis"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#MaximumVacuum"> + <owl:Class rdf:ID="MountedDevicePosition"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Arrangement"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:ID="MountedDeviceOrientation"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:ID="CoordinateReferenceSystem"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:ID="WorkCoordinates"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfMovableClaws"/> + <owl:Class rdf:ID="WorkFrame"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:ID="StoreInOrder"> + <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> + <rdfs:subClassOf> + <owl:Class rdf:ID="Store"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:ID="StorePartlyOrdered"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:ID="StoreUnOrdered"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#WheelEncoder"> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#LinearEncoder"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#WireDrawEncoder"/> + <rdfs:subClassOf rdf:resource="#EncoderSensor"/> + </owl:Class> + <owl:Class rdf:about="#Calibrate"> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:about="#SetParameterValue"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> + <owl:Class rdf:about="#SaveParameterSet"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#Reset"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#LoadParameterSet"/> + <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> </owl:Class> - <owl:Class rdf:about="#Mill"> + <owl:Class rdf:about="#SizeOfGripper"> <owl:disjointWith> - <owl:Class rdf:about="#Lathe"/> + <owl:Class rdf:about="#TypeOfVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#MaxLiftWay"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Saw"/> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#File"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Cut"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Drill"/> + <owl:Class rdf:about="#MaterialOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <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 rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:about="#MaxLiftWeight"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:ID="CompoundManipulationAndHandlingFunction"> <owl:disjointWith> - <owl:Class rdf:ID="CompountSensorFunction"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="CompoundManufacturingFunction"/> + <owl:Class rdf:about="#TypeOfFingers"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#CompoundSkills"/> - </owl:Class> - <owl:Class rdf:ID="MechanicalConnector"> - <rdfs:subClassOf> - <owl:Class rdf:about="#ToolInterface"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="ElectricalConnector"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> - <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:Class> - <owl:Class rdf:ID="PerformSelfTest"> - <rdfs:subClassOf> - <owl:Class rdf:about="#DiagnosticFunction"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="CollectStatisticalData"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#DetectContrast"> - <owl:disjointWith rdf:resource="#DetectColor"/> - <owl:disjointWith rdf:resource="#DetectLuminescence"/> <owl:disjointWith> - <owl:Class rdf:about="#DetectCollision"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#DetectObject"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Detect"/> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#OpticContrastScanner"/> - </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:Class> - <owl:Class rdf:ID="OpenFingers"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#FingerGripper"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:ID="Release"/> - </rdfs:subClassOf> + <owl:Class rdf:about="#TypeOfFingers"> <owl:disjointWith> - <owl:Class rdf:ID="AdjustCurrentToRelease"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="OpenClaws"/> + <owl:Class rdf:about="#MaterialOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="AdjustVacuumToRelease"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#AdjustVacuumToGrip"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:ID="VacuumGripper"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:about="#Grasp"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> <owl:disjointWith> - <owl:Class rdf:about="#CloseClaws"/> + <owl:Class rdf:about="#TypeOfVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CloseFingers"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Circular"> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:ID="Karthesian"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="AsFastAsPossible"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Feed"/> - </owl:Class> - <owl:Class rdf:ID="Mold"> <owl:disjointWith> - <owl:Class rdf:about="#Form"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Coat"/> + <owl:Class rdf:about="#MaxLiftWeight"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#MaxLiftWay"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ModifyWorkpieceProperties"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> - <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="#SizeOfGripper"/> + <owl:disjointWith> + <owl:Class rdf:about="#Reach"/> + </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Task"> + <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <rdfs:subClassOf> - <owl:Class rdf:about="#ManufacturingFunction"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasOperation"/> + </owl:onProperty> + <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:maxCardinality> + </owl:Restriction> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#MeasureMotionOfObject"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:about="#PhysicalObject"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Measure"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureSpeed"/> + <owl:Class rdf:about="#Property"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#Skill"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureVolume"/> + <owl:Class rdf:about="#Operation"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#ObjectBase"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureTorque"/> + </owl:Class> + <owl:Class rdf:ID="isEditable"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >This attribute indicates whether the property is supposed to be provided each time a skill is invoked or just once.</rdfs:comment> + <rdfs:subClassOf> + <owl:Class rdf:about="#Property"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MeasureArea"/> + <owl:Class rdf:ID="SkillProperty"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#DeviceProperty"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Detect"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> + <owl:Class rdf:ID="Read"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:ID="Classify"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#Measure"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - </owl:Class> - <owl:Class rdf:about="#Unify"> <owl:disjointWith> - <owl:Class rdf:about="#Partition"/> + <owl:Class rdf:ID="Scan"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Assign"/> + <owl:Class rdf:about="#Check"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Branch"/> - <owl:disjointWith rdf:resource="#Merge"/> <owl:disjointWith> - <owl:Class rdf:about="#Divide"/> + <owl:Class rdf:about="#ImageAnalysis"/> </owl:disjointWith> - <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> - <rdfs:subClassOf rdf:resource="#ModifyAmount"/> - </owl:Class> - <owl:Class rdf:ID="OpticThroughBeamSwitch"> <rdfs:subClassOf> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Class rdf:ID="SensorFunction"/> </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:5 Tasks and Skills of Ocptical Sensor 1.1 -Cap: 2</rdfs:comment> - <owl:disjointWith> - <owl:Class rdf:ID="OpticProximitySwitch"/> - </owl:disjointWith> +Cap: 2-5</rdfs:comment> + </owl:Class> + <owl:Class rdf:ID="ClassifyObject"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Classify"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="OpticReflexSwitch"/> + <owl:Class rdf:ID="SortObjects"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#MaxMeasurementRange"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >In mm.</rdfs:comment> + <owl:Class rdf:about="#Weight"> <owl:disjointWith> - <owl:Class rdf:about="#MaxScanAngle"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#LightType"/> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#FieldOfView"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Shape"/> <owl:disjointWith> - <owl:Class rdf:about="#MinMeasurementRange"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ScanningDistance"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#LightSpotSize"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Accuracy"> - <rdfs:subClassOf> - <owl:Class rdf:about="#QualityCriteria"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Height"/> <owl:disjointWith> - <owl:Class rdf:ID="PathVelocityFluctuation"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Resolution"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Repeatability"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> <owl:disjointWith> - <owl:Class rdf:ID="Precision"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#MeasureArea"> - <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#Material"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in kg</rdfs:comment> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + </owl:Class> + <owl:Class rdf:about="#LaserClass"> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureVolume"/> + <owl:Class rdf:about="#FieldOfView"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> + <owl:Class rdf:about="#MaxMeasurementRange"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#LightSpotSize"/> + <owl:disjointWith rdf:resource="#ScanningDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureSpeed"/> + <owl:Class rdf:about="#MaxScanAngle"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureAngle"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#LightType"/> </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#MinMeasurementRange"/> + </owl:Class> + <owl:Class rdf:about="#Rub"> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Measure"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#Lap"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - </owl:Class> - <owl:Class rdf:about="#MagneticSensor"> <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> + <owl:Class rdf:about="#Separate"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#EncoderSensor"/> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#UltrasonicSensor"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TactileSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#InductiveSensor"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CapacitveSensor"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Gripper"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#ControlSystem"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </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="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#Release"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#Grasp"/> - </owl:someValuesFrom> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#Arrangement"/> - </owl:someValuesFrom> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom rdf:resource="#Communication"/> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </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> + <owl:disjointWith rdf:resource="#Thrust"/> + <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:ID="Robot"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#ManipulationAndHandling"/> - </owl:Class> - <owl:Class rdf:about="#Count"> + <owl:disjointWith rdf:resource="#File"/> <owl:disjointWith> - <owl:Class rdf:about="#CheckPresence"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CheckPosition"/> + <owl:Class rdf:about="#Grind"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CheckSurfaceForIrregularities"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Check"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Clinch"> - <owl:disjointWith rdf:resource="#Rivet"/> <owl:disjointWith> - <owl:Class rdf:about="#Solder"/> + <owl:Class rdf:about="#Cut"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Glue"/> + </owl:Class> + <owl:Class rdf:about="#Crush"> <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Fill"/> + <owl:Class rdf:about="#Forge"/> </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:disjointWith> - <owl:Class rdf:about="#Assemble"/> + <owl:Class rdf:about="#Extrude"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Bolt"/> + <owl:disjointWith rdf:resource="#Fold"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Form"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Fill"> - <owl:disjointWith> - <owl:Class rdf:about="#Solder"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Rivet"/> <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> + <owl:Class rdf:about="#Roll"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Bolt"/> - <owl:disjointWith rdf:resource="#Clinch"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> - </rdfs:subClassOf> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Fill a workpiece with a cubic capacity.</rdfs:comment> - <owl:disjointWith rdf:resource="#Glue"/> <owl:disjointWith> - <owl:Class rdf:about="#Assemble"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="Parallel"> <owl:disjointWith> - <owl:Class rdf:ID="Sequence"/> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Atomic"/> + <owl:Class rdf:about="#Stretch-Form"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Restriction> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >2</owl:cardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasOperation"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Class rdf:about="#Operation"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#NumberOfMovableClaws"> <owl:disjointWith> - <owl:Class rdf:about="#MaterialOfGripper"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#Press"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Relative change of length by pressure force.</rdfs:comment> + </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> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#Divide"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Merge"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#Branch"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> + <owl:Class rdf:about="#Assign"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#Partition"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#ModifyAmount"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#PhysicalObject"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >This is basically the world.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#ObjectBase"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Task"/> + <owl:disjointWith rdf:resource="#Skill"/> + <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#Property"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Operation"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#OpenClaws"> + <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Release"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasAssembly"/> + </owl:onProperty> + <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:maxCardinality> + </owl:Restriction> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#DetectLuminescence"> + <owl:disjointWith rdf:resource="#DetectObject"/> + <owl:disjointWith> + <owl:Class rdf:about="#DetectCollision"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#DetectContrast"/> + <owl:disjointWith rdf:resource="#DetectColor"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> <owl:ObjectProperty rdf:about="#isSkillOf"/> </owl:onProperty> <owl:someValuesFrom> - <owl:Class rdf:about="#PincerGripper"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#Detect"/> + <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:about="#Roll"> <owl:disjointWith> - <owl:Class rdf:about="#AdjustVacuumToRelease"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpenFingers"/> - <owl:disjointWith> - <owl:Class rdf:about="#AdjustCurrentToRelease"/> + <owl:Class rdf:about="#Stretch-Form"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="GeneralParallelGripper"> <owl:disjointWith> - <owl:Class rdf:ID="CircularParallelGripper"/> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="LineParallelGripper"/> + <owl:Class rdf:about="#Extrude"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#ParallelGripper"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#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 -Check if a part fulfils given conditions.</rdfs:comment> - <owl:disjointWith rdf:resource="#Measure"/> + >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:about="#Detect"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Classify"/> + <owl:Class rdf:about="#Press"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ImageAnalysis"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Read"/> - <owl:disjointWith> - <owl:Class rdf:about="#Scan"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#SensorFunction"/> + <owl:Class rdf:about="#Form"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#MaxForce"> - <owl:disjointWith> - <owl:Class rdf:about="#MaxVoltageSupply"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> - </owl:disjointWith> + <owl:disjointWith rdf:resource="#Crush"/> + <owl:disjointWith rdf:resource="#Fold"/> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#Forge"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Deep-Draw"/> </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="#DegreesOfFreedom"/> + <owl:Class rdf:about="#PathVelocityFluctuation"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#Repeatability"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#Precision"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Position"> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#Pan"/> </owl:disjointWith> + <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 rdf:resource="#Convey"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Orient"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#Turn"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Displace"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxCurrentConsumption"/> + <owl:Class rdf:about="#Pass"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#Arrange"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#LinearEncoder"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in Newton</rdfs:comment> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith> - <owl:Class rdf:about="#Material"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Width"/> - </owl:disjointWith> + >distanceMeasurements.pdf +SICK +pag 4</rdfs:comment> + <rdfs:subClassOf rdf:resource="#EncoderSensor"/> + <owl:disjointWith rdf:resource="#WireDrawEncoder"/> + <owl:disjointWith rdf:resource="#WheelEncoder"/> </owl:Class> - <owl:Class rdf:ID="Electroplate"> + <owl:Class rdf:about="#MaxMeasurementRange"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >In mm.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:ID="Varnish"/> + <owl:Class rdf:about="#MaxScanAngle"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:ID="Hot-galvanise"/> + <owl:Class rdf:about="#LightType"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Powder-coat"/> + <owl:Class rdf:about="#FieldOfView"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MinMeasurementRange"/> + <owl:disjointWith rdf:resource="#LaserClass"/> + <owl:disjointWith rdf:resource="#ScanningDistance"/> + <owl:disjointWith rdf:resource="#LightSpotSize"/> + </owl:Class> + <owl:Class rdf:about="#ImageAnalysis"> <rdfs:subClassOf> - <owl:Class rdf:about="#Coat"/> + <owl:Class rdf:about="#SensorFunction"/> </rdfs:subClassOf> - <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:ID="HexapodRobot"> - <owl:disjointWith> - <owl:Class rdf:ID="ScaraRobot"/> - </owl:disjointWith> + <owl:disjointWith rdf:resource="#Detect"/> <owl:disjointWith> - <owl:Class rdf:ID="CartesianRobot"/> + <owl:Class rdf:about="#Measure"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ParallelKinematicRobot"/> + <owl:Class rdf:about="#Classify"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="SimpleKinematicRobot"/> + <owl:Class rdf:about="#Scan"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="SpecialKinematicRobot"/> + <owl:Class rdf:about="#Check"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="ArticulatedRobot"/> + <owl:Class rdf:about="#Read"/> </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> - <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> - </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#ControlSystem"> - <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#Communication"/> + <owl:Class rdf:ID="TactileProximitySwitch"> + <rdfs:subClassOf rdf:resource="#TactileSensor"/> + </owl:Class> + <owl:Class rdf:about="#MeasureTorque"> <owl:disjointWith> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#MeasureTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#MeasurePositionOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Geometry"/> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cost"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ToolInterface"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#True"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Measure"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#MeasureMotionOfObject"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Roll"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Fold"/> + </owl:Class> + <owl:Class rdf:ID="AdjustCurrentToRelease"> <rdfs:subClassOf> - <owl:Class rdf:about="#Form"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:allValuesFrom> + <owl:Class rdf:about="#MagnetGripper"/> + </owl:allValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Class rdf:ID="Release"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> - </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Machine finishing after e.g. folding</rdfs:comment> - <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Stretch-Form"/> + <owl:Class rdf:ID="AdjustVacuumToRelease"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Deep-Draw"/> + <owl:Class rdf:ID="OpenFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Bend"/> <owl:disjointWith> - <owl:Class rdf:about="#Forge"/> + <owl:Class rdf:ID="OpenClaws"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#SetParameterValue"> - <owl:disjointWith rdf:resource="#Calibrate"/> + <owl:Class rdf:ID="ReadBarCode"> + <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="#Read"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#SaveParameterSet"/> + <owl:Class rdf:ID="Read2DMatrixCode"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#LoadParameterSet"/> <owl:disjointWith> - <owl:Class rdf:about="#Reset"/> + <owl:Class rdf:ID="ReadOpticalCharacters"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> </owl:Class> - <owl:Class rdf:about="#MaterialOfGripper"> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> - </owl:disjointWith> + <owl:Class rdf:ID="InductiveProximitySwitch"> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#InductiveSensor"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith> - <owl:Class rdf:about="#Reach"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <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="#Lathe"> - <owl:disjointWith> - <owl:Class rdf:about="#File"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Saw"/> + <owl:Class rdf:ID="CommunicationProtocol"> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:ID="BusInterface"/> </owl:disjointWith> - <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="#Thermal-Separate"/> <owl:disjointWith> - <owl:Class rdf:about="#Drill"/> + <owl:Class rdf:ID="ElectricalInterface"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Mill"/> + <rdfs:subClassOf rdf:resource="#Communication"/> + </owl:Class> + <owl:Class rdf:about="#AngleGripper"> + <owl:disjointWith rdf:resource="#ParallelGripper"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PincerGripper"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Pass"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Convey"/> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:about="#Turn"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#Pan"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cut"/> + <owl:Class rdf:about="#Orient"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#Arrange"/> </owl:disjointWith> + <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="#Position"/> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#Displace"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> + </owl:Class> + <owl:Class rdf:ID="Gripper"> + <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> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom> + <owl:Class rdf:about="#Arrangement"/> + </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="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#Release"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#Communication"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#Grasp"/> + </owl:someValuesFrom> + </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> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#Robot"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:ID="UltrasonicDistanceSensor"> <rdfs:subClassOf> - <owl:Class rdf:about="#UltrasonicSensor"/> + <owl:Class rdf:ID="ManipulationAndHandling"/> </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="#Width"> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith> - <owl:Class rdf:about="#Length"/> - </owl:disjointWith> + <owl:Class rdf:about="#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> + <rdfs:subClassOf> + <owl:Class rdf:about="#Read"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#ReadBarCode"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#ReadOpticalCharacters"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + </owl:Class> + <owl:Class rdf:ID="Age"> + <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> + <rdfs:subClassOf> + <owl:Class rdf:ID="ModifyWorkpieceProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:ID="Anneal"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:ID="Temper"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#ArticulatedRobot"> + <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="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#SimpleKinematicRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#CartesianRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#MaxForce"/> + <owl:disjointWith rdf:resource="#ScaraRobot"/> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#ParallelKinematicRobot"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#HexapodRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#SpecialKinematicRobot"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Robot"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Form"> + <rdfs:subClassOf> + <owl:Class rdf:ID="ManufacturingFunction"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#ModifyWorkpieceProperties"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#Join"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxVoltageSupply"/> + <owl:Class rdf:about="#Mold"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#Separate"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#Coat"/> </owl:disjointWith> + <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:Class> + <owl:Class rdf:ID="Manufacturing"> + <rdfs:subClassOf rdf:resource="#Device"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#ManufacturingFunction"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#ManipulationAndHandling"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxCurrentConsumption"/> + <owl:Class rdf:about="#Sensor"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#MeasureVolume"> - <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:Class rdf:about="#TorqueForceSensor"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Sensor"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> + <owl:Class rdf:about="#UltrasonicSensor"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CapacitveSensor"/> + <owl:disjointWith rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:about="#InductiveSensor"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#EncoderSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#MagneticSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#TactileSensor"/> + </owl:Class> + <owl:Class rdf:about="#Lap"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Separate"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Rub"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#Cut"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureArea"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureSpeed"/> + <owl:Class rdf:about="#Grind"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - </owl:Class> - <owl:Class rdf:about="#MeasureSpeed"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureTorque"/> - <rdfs:subClassOf rdf:resource="#Measure"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureArea"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <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 rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#File"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#Thrust"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureDiameter"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#PathVelocityFluctuation"> - <owl:disjointWith> - <owl:Class rdf:about="#Resolution"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Accuracy"/> + <owl:Class rdf:ID="ResponseTime"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in seconds</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Precision"/> + <owl:Class rdf:ID="SwitchingFrequency"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Repeatability"/> + <owl:Class rdf:ID="CycleTime"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#Timing"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#ExtractEdges"> - <rdfs:subClassOf> - <owl:Class rdf:about="#ImageAnalysis"/> - </rdfs:subClassOf> - <owl:disjointWith> - <owl:Class rdf:about="#BlobAnalysis"/> - </owl:disjointWith> + <owl:Class rdf:about="#MeasurePositionOfObject"> + <owl:disjointWith rdf:resource="#MeasureVolume"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#DecompressImageData"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#FilterImage"/> + <owl:Class rdf:about="#MeasureTemperature"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CompressImageData"/> <owl:disjointWith> - <owl:Class rdf:about="#TransformImage"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#SegmentImage"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> + <owl:Class rdf:about="#MeasureMotionOfObject"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#OpticProximitySwitch"> <rdfs:subClassOf> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Class rdf:about="#Measure"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#OpticThroughBeamSwitch"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> <owl:disjointWith> - <owl:Class rdf:about="#OpticReflexSwitch"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Drill"> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lathe"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + </owl:Class> + <owl:Class rdf:ID="CircularParallelGripper"> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:ID="LineParallelGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:ID="GeneralParallelGripper"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#ParallelGripper"/> + </owl:Class> + <owl:Class rdf:ID="CompountSensorFunction"> <owl:disjointWith> - <owl:Class rdf:about="#Cut"/> + <owl:Class rdf:ID="CompoundManipulationAndHandlingFunction"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Create a circular whole in the workpiece.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:ID="CompoundManufacturingFunction"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#CompoundSkills"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Saw"/> - <owl:disjointWith> - <owl:Class rdf:about="#File"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> - </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#ModifyWorkpieceProperties"> - <owl:disjointWith rdf:resource="#Mold"/> + <owl:Class rdf:about="#Check"> <owl:disjointWith> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Scan"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Form"/> + <owl:Class rdf:about="#Read"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#ImageAnalysis"/> <owl:disjointWith> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#Classify"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Detect"/> <owl:disjointWith> - <owl:Class rdf:about="#Coat"/> + <owl:Class rdf:about="#Measure"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Modify some physical properties of the workpiece.</rdfs:comment> <rdfs:subClassOf> - <owl:Class rdf:about="#ManufacturingFunction"/> + <owl:Class rdf:about="#SensorFunction"/> </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:5 +Check if a part fulfils given conditions.</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#Reach"> - <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> - </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith> - <owl:Class rdf:about="#DiameterOfGripper"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> - </owl:disjointWith> + <owl:Class rdf:ID="WormDiameter"> + <rdfs:subClassOf rdf:resource="#MechanicalConnector"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:ID="Worm"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> + </owl:Class> + <owl:Class rdf:about="#Parallel"> + <owl:disjointWith rdf:resource="#Atomic"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#Sequence"/> </owl:disjointWith> - </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="#Workpiece"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:allValuesFrom> - <owl:Class rdf:about="#Skill"/> - </owl:allValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >0</owl:minCardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasReference"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#PhysicalProperties"/> - </owl:Restriction> + <owl:Class rdf:about="#Operation"/> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasIdentifier"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:allValuesFrom> - <owl:Class rdf:about="#Property"/> - </owl:allValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Object"/> - <rdfs:subClassOf> - <owl:Restriction> + >2</owl:cardinality> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> + <owl:ObjectProperty rdf:about="#hasOperation"/> </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#MainFunction"/> - </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#Partition"> - <owl:disjointWith rdf:resource="#Branch"/> - <owl:disjointWith rdf:resource="#Unify"/> + <owl:Class rdf:about="#MaxLiftWeight"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in kg</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Divide"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Assign"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Merge"/> - <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> - <rdfs:subClassOf rdf:resource="#ModifyAmount"/> - </owl:Class> - <owl:Class rdf:about="#StorePartlyOrdered"> - <rdfs:subClassOf> - <owl:Class rdf:about="#Store"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#StoreInOrder"/> + <owl:Class rdf:about="#MaxLiftWay"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#StoreUnOrdered"/> - <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="#ManipulationAndHandlingFunction"> - <rdfs:subClassOf> - <owl:Class rdf:about="#MainFunction"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#SensorFunction"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ManufacturingFunction"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#MaxVoltageSupply"> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#MaterialOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#TypeOfVacuum"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + </owl:Class> + <owl:Class rdf:about="#Forge"> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#Extrude"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in volts</rdfs:comment> + <owl:disjointWith rdf:resource="#Fold"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#Stretch-Form"/> </owl:disjointWith> + <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"/> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Roll"/> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxCurrentConsumption"/> + <owl:Class rdf:about="#Press"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> </owl:Class> - <owl:Class rdf:about="#Solder"> - <owl:disjointWith rdf:resource="#Clinch"/> - <owl:disjointWith rdf:resource="#Glue"/> - <owl:disjointWith rdf:resource="#Rivet"/> - <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Fill"/> + <owl:Class rdf:about="#MeasureMotionOfObject"> <owl:disjointWith> - <owl:Class rdf:about="#Assemble"/> + <owl:Class rdf:about="#MeasureTemperature"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Measure"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Bolt"/> - <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:Class> - <owl:Class rdf:about="#Precision"> <owl:disjointWith> - <owl:Class rdf:about="#Repeatability"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#Resolution"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PathVelocityFluctuation"/> - <owl:disjointWith rdf:resource="#Accuracy"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#QualityCriteria"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Repeatability"> - <owl:disjointWith rdf:resource="#Accuracy"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> <owl:disjointWith> - <owl:Class rdf:about="#Resolution"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PathVelocityFluctuation"/> - <owl:disjointWith rdf:resource="#Precision"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> - <rdfs:subClassOf> - <owl:Class rdf:about="#QualityCriteria"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#MinMeasurementRange"> <owl:disjointWith> - <owl:Class rdf:about="#FieldOfView"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxScanAngle"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#LightType"> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#LaserClass"/> + <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> + <owl:disjointWith rdf:resource="#LightSpotSize"/> + <owl:disjointWith rdf:resource="#ScanningDistance"/> + <owl:disjointWith rdf:resource="#MinMeasurementRange"/> <owl:disjointWith> - <owl:Class rdf:about="#LightSpotSize"/> + <owl:Class rdf:about="#MaxScanAngle"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >In mm.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#ScanningDistance"/> + <owl:Class rdf:about="#FieldOfView"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#LightType"/> </owl:Class> - <owl:Class rdf:ID="Sinter"> - <rdfs:subClassOf rdf:resource="#Mold"/> + <owl:Class rdf:about="#HexapodRobot"> <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> + >Very precise kinematic, but small working area. This is used for special applications.</rdfs:comment> + <rdfs:subClassOf> + <owl:Class rdf:about="#Robot"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#ArticulatedRobot"/> <owl:disjointWith> - <owl:Class rdf:ID="ElectrolyticSegregate"/> + <owl:Class rdf:about="#SpecialKinematicRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="Cast"/> + <owl:Class rdf:about="#SimpleKinematicRobot"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Reset"> <owl:disjointWith> - <owl:Class rdf:about="#SaveParameterSet"/> + <owl:Class rdf:about="#ParallelKinematicRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Calibrate"/> - <owl:disjointWith rdf:resource="#LoadParameterSet"/> - <owl:disjointWith rdf:resource="#SetParameterValue"/> - <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> - </owl:Class> - <owl:Class rdf:about="#AsFastAsPossible"> - <rdfs:subClassOf rdf:resource="#Feed"/> <owl:disjointWith> - <owl:Class rdf:about="#Karthesian"/> + <owl:Class rdf:about="#CartesianRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Circular"/> + <owl:disjointWith rdf:resource="#ScaraRobot"/> </owl:Class> - <owl:Class rdf:about="#SkillProperty"> - <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#isEditable"/> + <owl:Class rdf:about="#MountedDeviceOrientation"> <rdfs:subClassOf> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#Arrangement"/> </rdfs:subClassOf> + <owl:disjointWith> + <owl:Class rdf:about="#WorkFrame"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#WorkCoordinates"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#CoordinateReferenceSystem"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MountedDevicePosition"/> + </owl:Class> + <owl:Class rdf:about="#ParallelKinematicRobot"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Special kinematic arrangement like the one built in SMErobot.</rdfs:comment> <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasEditable"/> - </owl:onProperty> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - </owl:Restriction> + <owl:Class rdf:about="#Robot"/> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#OpticColorSensor"> <owl:disjointWith> - <owl:Class rdf:about="#LaserScanner2D"/> + <owl:Class rdf:about="#SpecialKinematicRobot"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - <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:disjointWith rdf:resource="#OpticContrastScanner"/> + <owl:disjointWith rdf:resource="#ArticulatedRobot"/> + <owl:disjointWith rdf:resource="#ScaraRobot"/> + <owl:disjointWith rdf:resource="#HexapodRobot"/> <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> + <owl:Class rdf:about="#CartesianRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#VisionSensor"/> + <owl:Class rdf:about="#SimpleKinematicRobot"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Arrange"> <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> + <owl:Class rdf:about="#Pan"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#OpticDistanceSensor"/> + <owl:Class rdf:about="#Displace"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Pass"/> <owl:disjointWith> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Class rdf:about="#Feed"/> + </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 rdf:resource="#Position"/> + <owl:disjointWith rdf:resource="#Convey"/> + <owl:disjointWith> + <owl:Class rdf:about="#Orient"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Turn"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#MeasureDiameter"> + <owl:Class rdf:about="#SaveParameterSet"> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#SetParameterValue"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#Reset"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#LoadParameterSet"/> + <owl:disjointWith rdf:resource="#Calibrate"/> + <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> + </owl:Class> + <owl:Class rdf:about="#MaterialOfGripper"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureTemperature"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureTorque"/> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <rdfs:subClassOf rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - <owl:disjointWith rdf:resource="#MeasureArea"/> - </owl:Class> - <owl:Class rdf:ID="SimpleControl"> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:ID="PlaybackCtrl"/> + <owl:Class rdf:about="#MaxLiftWay"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> <owl:disjointWith> - <owl:Class rdf:ID="IntelligentCtrl"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:ID="NumericalCtrl"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#ControlSystem"/> - </owl:Class> - <owl:Class rdf:about="#ToolInterface"> - <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="#Timing"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Cost"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Communication"/> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ControlSystem"/> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> <owl:disjointWith> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Geometry"/> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:about="#TypeOfVacuum"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#FilterImage"> - <rdfs:subClassOf> - <owl:Class rdf:about="#ImageAnalysis"/> - </rdfs:subClassOf> + <owl:Class rdf:about="#Reset"> <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> + <owl:Class rdf:about="#SetParameterValue"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#LoadParameterSet"/> + <owl:disjointWith rdf:resource="#Calibrate"/> + <owl:disjointWith rdf:resource="#SaveParameterSet"/> + <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> + </owl:Class> + <owl:Class rdf:about="#FilterImage"> <owl:disjointWith> - <owl:Class rdf:about="#TransformImage"/> + <owl:Class rdf:about="#BlobAnalysis"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ExtractEdges"/> <owl:disjointWith> - <owl:Class rdf:about="#DecompressImageData"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> <owl:disjointWith> <owl:Class rdf:about="#SegmentImage"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CompressImageData"/> <owl:disjointWith> - <owl:Class rdf:about="#BlobAnalysis"/> + <owl:Class rdf:about="#DecompressImageData"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ExtractEdges"/> + <owl:disjointWith> + <owl:Class rdf:about="#TransformImage"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> </owl:Class> - <owl:Class rdf:about="#Cut"> - <owl:disjointWith rdf:resource="#Mill"/> + <owl:Class rdf:about="#Identifier"> + <owl:disjointWith> + <owl:Class rdf:about="#Arrangement"/> + </owl:disjointWith> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Divide a workpiece into two parts.</rdfs:comment> + >For the identifier there are two applications in the later implementation: +1. Identifier of either a device or a workpiece. +2. Reference to device identifier or a workpiece identifier as a link, e.g. a URI.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#SkillProperty"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#Geometry"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:about="#PhysicalProperties"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Saw"/> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#DeviceProperty"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#ToolInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lathe"/> - <owl:disjointWith rdf:resource="#Drill"/> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Broach"/> + <owl:Class rdf:about="#ControlSystem"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#CompountSensorFunction"> <owl:disjointWith> - <owl:Class rdf:about="#CompoundManufacturingFunction"/> + <owl:Class rdf:about="#QualityCriteria"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CompoundManipulationAndHandlingFunction"/> - <rdfs:subClassOf rdf:resource="#CompoundSkills"/> - </owl:Class> - <owl:Class rdf:about="#BlobAnalysis"> + <owl:disjointWith rdf:resource="#Communication"/> <rdfs:subClassOf> - <owl:Class rdf:about="#ImageAnalysis"/> + <owl:Class rdf:about="#DeviceProperty"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#FilterImage"/> - <owl:disjointWith rdf:resource="#CompressImageData"/> - <owl:disjointWith rdf:resource="#ExtractEdges"/> + </owl:Class> + <owl:Class rdf:about="#Material"> <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#TransformImage"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#DecompressImageData"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#SegmentImage"/> + <owl:Class rdf:about="#Payload"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Turn"> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Pass"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Position"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Orient"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Arrange"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> - <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="#Feed"/> - <owl:disjointWith rdf:resource="#Convey"/> - </owl:Class> - <owl:Class rdf:about="#LinearEncoder"> - <owl:disjointWith rdf:resource="#WheelEncoder"/> - <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:Class> - <owl:Class rdf:about="#Position"> - <owl:disjointWith rdf:resource="#Feed"/> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <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 rdf:resource="#Convey"/> - <owl:disjointWith rdf:resource="#Orient"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Turn"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Pass"/> <owl:disjointWith> - <owl:Class rdf:about="#Arrange"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Height"/> </owl:Class> - <owl:Class rdf:about="#Arrange"> + <owl:Class rdf:about="#PathVelocityFluctuation"> <owl:disjointWith> - <owl:Class rdf:about="#Pan"/> + <owl:Class rdf:about="#Repeatability"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#Precision"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Pass"/> - <owl:disjointWith rdf:resource="#Feed"/> - <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 rdf:resource="#Position"/> - <owl:disjointWith rdf:resource="#Convey"/> - <owl:disjointWith rdf:resource="#Orient"/> - <owl:disjointWith rdf:resource="#Turn"/> + <owl:disjointWith rdf:resource="#Accuracy"/> + <owl:disjointWith rdf:resource="#Resolution"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> + <owl:Class rdf:about="#QualityCriteria"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Repeatability"> + <rdfs:subClassOf> + <owl:Class rdf:about="#QualityCriteria"/> </rdfs:subClassOf> + <owl:disjointWith> + <owl:Class rdf:about="#Precision"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PathVelocityFluctuation"/> + <owl:disjointWith rdf:resource="#Resolution"/> + <owl:disjointWith rdf:resource="#Accuracy"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> </owl:Class> <owl:Class rdf:about="#DetectCollision"> - <owl:disjointWith rdf:resource="#DetectContrast"/> - <owl:disjointWith rdf:resource="#DetectObject"/> - <owl:disjointWith rdf:resource="#DetectLuminescence"/> <owl:disjointWith rdf:resource="#DetectColor"/> + <owl:disjointWith rdf:resource="#DetectLuminescence"/> + <owl:disjointWith rdf:resource="#DetectObject"/> + <owl:disjointWith rdf:resource="#DetectContrast"/> + <rdfs:subClassOf rdf:resource="#Detect"/> + </owl:Class> + <owl:Class rdf:about="#OpenClaws"> + <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/> + <owl:disjointWith> + <owl:Class rdf:about="#OpenFingers"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#AdjustVacuumToRelease"/> + </owl:disjointWith> <rdfs:subClassOf> - <owl:Class rdf:about="#Detect"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#PincerGripper"/> + </owl:someValuesFrom> + </owl:Restriction> </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#DiameterOfGripper"> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#Release"/> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#QualityCriteria"> + <owl:disjointWith rdf:resource="#Communication"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#PhysicalProperties"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#ControlSystem"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfFingers"/> + <owl:Class rdf:about="#Arrangement"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Reach"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#ToolInterface"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> + <owl:disjointWith rdf:resource="#Identifier"/> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - </owl:Class> - <owl:Class rdf:about="#Skill"> <owl:disjointWith> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#Geometry"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Grasp"> + <rdfs:subClassOf> + <owl:Class rdf:ID="Secure"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Task"/> + <owl:Class rdf:about="#Release"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Object"/> <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:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> +Keep a workpiece temporarily in a given position and orientation.</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#Measure"> + <owl:disjointWith rdf:resource="#Detect"/> + <owl:disjointWith rdf:resource="#Check"/> + <owl:disjointWith> + <owl:Class rdf:about="#Classify"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Read"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Scan"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ImageAnalysis"/> <rdfs:subClassOf> - <owl:Restriction> - <owl:allValuesFrom rdf:resource="#Device"/> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - </owl:Restriction> + <owl:Class rdf:about="#SensorFunction"/> </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:5 +Gather a value as a multiple of a reference value.</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#Property"> + <owl:disjointWith rdf:resource="#PhysicalObject"/> <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> + <owl:disjointWith rdf:resource="#Task"/> <owl:disjointWith> - <owl:Class rdf:about="#Operation"/> + <owl:Class rdf:about="#ObjectBase"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ObjectBase"/> + <owl:Class rdf:about="#Operation"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Skill"/> </owl:Class> - <owl:Class rdf:ID="WormDiameter"> + <owl:Class rdf:about="#Displace"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:ID="Worm"/> + <owl:Class rdf:about="#Orient"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Turn"/> </owl:disjointWith> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> - <rdfs:subClassOf rdf:resource="#MechanicalConnector"/> - </owl:Class> - <owl:Class rdf:about="#MaxCurrentConsumption"> + >Move translationally a part along a straight line. The part's orientiation remains unchanged.</rdfs:comment> + <owl:disjointWith rdf:resource="#Position"/> + <owl:disjointWith rdf:resource="#Arrange"/> + <owl:disjointWith rdf:resource="#Convey"/> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Pan"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Pass"/> + </owl:Class> + <owl:Class rdf:about="#StoreUnOrdered"> + <owl:disjointWith rdf:resource="#StoreInOrder"/> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#StorePartlyOrdered"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#Store"/> + </rdfs:subClassOf> + <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:Class> + <owl:Class rdf:about="#LineParallelGripper"> + <rdfs:subClassOf rdf:resource="#ParallelGripper"/> + <owl:disjointWith rdf:resource="#CircularParallelGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#GeneralParallelGripper"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Temper"> + <owl:disjointWith rdf:resource="#Age"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#Anneal"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#ModifyWorkpieceProperties"/> + </rdfs:subClassOf> + <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> + </owl:Class> + <owl:Class rdf:about="#SortObjects"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Classify"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#ClassifyObject"/> + <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="#BlobAnalysis"> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#SegmentImage"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#DecompressImageData"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#TransformImage"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <owl:disjointWith rdf:resource="#ExtractEdges"/> <owl:disjointWith> - <owl:Class rdf:about="#MinVoltageSupply"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> + <owl:disjointWith rdf:resource="#FilterImage"/> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> + </owl:Class> + <owl:Class rdf:about="#DecompressImageData"> + <owl:disjointWith rdf:resource="#BlobAnalysis"/> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <owl:disjointWith rdf:resource="#FilterImage"/> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#SegmentImage"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#TransformImage"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#ExtractEdges"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> + </owl:Class> + <owl:Class rdf:about="#Assign"> + <rdfs:subClassOf> + <owl:Class rdf:about="#ModifyAmount"/> + </rdfs:subClassOf> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in amperes</rdfs:comment> + >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="#Partition"/> + <owl:disjointWith rdf:resource="#Unify"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#Branch"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Divide"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> </owl:Class> - <owl:Class rdf:about="#MagnetGripper"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#AdjustCurrentToRelease"/> - </owl:someValuesFrom> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Gripper"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom rdf:resource="#AdjustCurrentToGrip"/> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> + <owl:Class rdf:about="#ModifyAmount"> <owl:disjointWith> - <owl:Class rdf:about="#PincerGripper"/> + <owl:Class rdf:about="#Store"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#VacuumGripper"/> + <owl:Class rdf:about="#Move"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#FingerGripper"/> + <owl:Class rdf:about="#Secure"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:ID="ManipulationAndHandlingFunction"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#DecompressImageData"> + <owl:Class rdf:about="#WorkFrame"> <rdfs:subClassOf> - <owl:Class rdf:about="#ImageAnalysis"/> + <owl:Class rdf:about="#Arrangement"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#CompressImageData"/> - <owl:disjointWith rdf:resource="#ExtractEdges"/> - <owl:disjointWith> - <owl:Class rdf:about="#TransformImage"/> - </owl:disjointWith> + <owl:disjointWith rdf:resource="#MountedDevicePosition"/> <owl:disjointWith> - <owl:Class rdf:about="#SegmentImage"/> + <owl:Class rdf:about="#CoordinateReferenceSystem"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#FilterImage"/> + <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/> <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> + <owl:Class rdf:about="#WorkCoordinates"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#BlobAnalysis"/> </owl:Class> - <owl:Class rdf:about="#MinVoltageSupply"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in volts</rdfs:comment> + <owl:Class rdf:about="#TypeOfVacuum"> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Payload"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#MaxLiftWay"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + </owl:Class> + <owl:Class rdf:about="#Payload"> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#Weight"/> <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalProperties"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#MechanicalResistance"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#CompoundManufacturingFunction"> - <rdfs:subClassOf rdf:resource="#CompoundSkills"/> - <owl:disjointWith rdf:resource="#CompountSensorFunction"/> - <owl:disjointWith rdf:resource="#CompoundManipulationAndHandlingFunction"/> - </owl:Class> - <owl:Class rdf:about="#Broach"> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Saw"/> <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 rdf:resource="#Cut"/> + >in kg</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Rub"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> + <owl:Class rdf:about="#Width"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Mill"/> + </owl:Class> + <owl:Class rdf:about="#UltrasonicSensor"> + <owl:disjointWith rdf:resource="#EncoderSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#MagneticSensor"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lathe"/> + <owl:disjointWith rdf:resource="#TactileSensor"/> + <owl:disjointWith rdf:resource="#CapacitveSensor"/> + <owl:disjointWith> + <owl:Class rdf:about="#InductiveSensor"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#TorqueForceSensor"/> + <owl:disjointWith rdf:resource="#OpticSensor"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Sensor"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#Assemble"> - <owl:disjointWith rdf:resource="#Solder"/> + <owl:Class rdf:about="#InductiveSensor"> + <owl:disjointWith rdf:resource="#TorqueForceSensor"/> + <owl:disjointWith rdf:resource="#OpticSensor"/> + <owl:disjointWith rdf:resource="#EncoderSensor"/> + <owl:disjointWith rdf:resource="#UltrasonicSensor"/> + <owl:disjointWith rdf:resource="#TactileSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Weld"/> + <owl:Class rdf:about="#MagneticSensor"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#CapacitveSensor"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Sensor"/> </rdfs:subClassOf> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Putting together two workpieces.</rdfs:comment> - <owl:disjointWith rdf:resource="#Fill"/> - <owl:disjointWith rdf:resource="#Clinch"/> - <owl:disjointWith rdf:resource="#Bolt"/> - <owl:disjointWith rdf:resource="#Rivet"/> - <owl:disjointWith rdf:resource="#Glue"/> </owl:Class> - <owl:Class rdf:about="#Worm"> - <rdfs:subClassOf rdf:resource="#MechanicalConnector"/> - <owl:disjointWith rdf:resource="#WormDiameter"/> + <owl:Class rdf:about="#ElectricalConnector"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Can be inside or outside.</rdfs:comment> - </owl:Class> - <owl:Class rdf:about="#Rub"> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Saw"/> + >How to connect a tool electrically.</rdfs:comment> <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#ToolInterface"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Broach"/> - <owl:disjointWith rdf:resource="#Lathe"/> - <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> - </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="#File"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith> - <owl:Class rdf:about="#Grind"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#MechanicalConnector"/> </owl:Class> - <owl:Class rdf:about="#MechanicalResistance"> - <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:Class rdf:about="#MaxLiftWay"> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#TypeOfMagnet"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#OpticProximitySwitch"> + <rdfs:subClassOf rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#OpticReflexSwitch"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#OpticThroughBeamSwitch"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + </owl:Class> + <owl:Class rdf:about="#MagnetGripper"> <owl:disjointWith> - <owl:Class rdf:about="#Diameter"/> + <owl:Class rdf:about="#FingerGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Hot-galvanise"> - <rdfs:subClassOf> - <owl:Class rdf:about="#Coat"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Varnish"/> + <owl:Class rdf:ID="VacuumGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Electroplate"/> <owl:disjointWith> - <owl:Class rdf:about="#Powder-coat"/> + <owl:Class rdf:about="#PincerGripper"/> </owl:disjointWith> - <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> - </owl:Class> - <owl:Class rdf:about="#OpticReflexSwitch"> <rdfs:subClassOf> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#AdjustCurrentToGrip"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#Gripper"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom rdf:resource="#AdjustCurrentToRelease"/> + </owl:Restriction> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Worm"> + <owl:disjointWith rdf:resource="#WormDiameter"/> + <rdfs:subClassOf rdf:resource="#MechanicalConnector"/> <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:disjointWith rdf:resource="#OpticThroughBeamSwitch"/> + >Can be inside or outside.</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#Pan"> - <owl:disjointWith rdf:resource="#Turn"/> - <owl:disjointWith rdf:resource="#Orient"/> - <owl:disjointWith rdf:resource="#Convey"/> - <owl:disjointWith rdf:resource="#Arrange"/> - <owl:disjointWith rdf:resource="#Feed"/> + <owl:Class rdf:about="#DiagnosticFunction"> + <rdfs:subClassOf rdf:resource="#Skill"/> <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> - <rdfs:subClassOf> - <owl:Class rdf:about="#Move"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Position"/> - <owl:disjointWith rdf:resource="#Pass"/> + >SIARAS (FP6-017146) +Structured Description of Skills and Device 1.0 +pag:5 +(Breakdown of Skills)</rdfs:comment> + <owl:disjointWith rdf:resource="#AdditionalFunction"/> + <owl:disjointWith rdf:resource="#MainFunction"/> <owl:disjointWith> - <owl:Class rdf:about="#Displace"/> + <owl:Class rdf:about="#CompoundSkills"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#NumberOfFingers"> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#Reach"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:Class rdf:about="#ElectrolyticSegregate"> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#Cast"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Sinter"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#Mold"/> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Join"> + <rdfs:subClassOf> + <owl:Class rdf:about="#ManufacturingFunction"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#ModifyWorkpieceProperties"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Form"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#Coat"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#Separate"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfMagnet"/> + <owl:Class rdf:about="#Mold"/> </owl:disjointWith> + <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:Class> - <owl:Class rdf:about="#Cost"> - <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> - </owl:disjointWith> + <owl:Class rdf:about="#Extrude"> <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:about="#Stretch-Form"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Geometry"/> + <rdfs:subClassOf rdf:resource="#Form"/> <owl:disjointWith> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#ControlSystem"/> - <owl:disjointWith rdf:resource="#Communication"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in euros</rdfs:comment> + >This is mainly used to create profiles, tubes and wires.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#QualityCriteria"/> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#ToolInterface"/> - </owl:Class> - <owl:Class rdf:about="#PlaybackCtrl"> - <rdfs:subClassOf rdf:resource="#ControlSystem"/> - <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> - <owl:disjointWith rdf:resource="#SimpleControl"/> + <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith rdf:resource="#Crush"/> <owl:disjointWith> - <owl:Class rdf:about="#IntelligentCtrl"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#NumericalCtrl"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Release"> - <rdfs:subClassOf> - <owl:Class rdf:about="#Secure"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Grasp"/> + <owl:Class rdf:about="#Press"/> </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 -Invert the grasping.</rdfs:comment> - </owl:Class> - <owl:Class rdf:about="#ScanningDistance"> + <owl:disjointWith rdf:resource="#Forge"/> <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> + <owl:disjointWith rdf:resource="#Fold"/> + </owl:Class> + <owl:Class rdf:about="#PhysicalProperties"> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <owl:disjointWith rdf:resource="#Identifier"/> <owl:disjointWith> - <owl:Class rdf:about="#MaxScanAngle"/> + <owl:Class rdf:about="#ToolInterface"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> - <owl:disjointWith rdf:resource="#LightType"/> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MinMeasurementRange"/> <owl:disjointWith> - <owl:Class rdf:about="#FieldOfView"/> + <owl:Class rdf:about="#ControlSystem"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Communication"/> <owl:disjointWith> - <owl:Class rdf:about="#LightSpotSize"/> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#QualityCriteria"> - <owl:disjointWith rdf:resource="#Communication"/> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#ControlSystem"/> - <owl:disjointWith rdf:resource="#Cost"/> <owl:disjointWith> <owl:Class rdf:about="#Arrangement"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#ToolInterface"/> <owl:disjointWith> - <owl:Class rdf:about="#Identifier"/> + <owl:Class rdf:about="#Geometry"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> <owl:disjointWith> <owl:Class rdf:about="#Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Geometry"/> </owl:Class> - <owl:Class rdf:about="#SensorFunction"> + <owl:Class rdf:ID="BarcodeReader"> + <rdfs:subClassOf rdf:resource="#VisionSensor"/> + </owl:Class> + <owl:Class rdf:about="#CycleTime"> <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="#ManipulationAndHandlingFunction"/> - <owl:disjointWith> - <owl:Class rdf:about="#ManufacturingFunction"/> - </owl:disjointWith> - <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> + >in seconds</rdfs:comment> <rdfs:subClassOf> - <owl:Class rdf:about="#MainFunction"/> + <owl:Class rdf:about="#Timing"/> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#ResponseTime"/> + <owl:disjointWith> + <owl:Class rdf:about="#SwitchingFrequency"/> + </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#MountedDeviceOrientation"> + <owl:Class rdf:about="#Grind"> <owl:disjointWith> - <owl:Class rdf:about="#MountedDevicePosition"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Increase the surface performance, flatten the surface.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#CoordinateReferenceSystem"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#WorkCoordinates"/> <owl:disjointWith> - <owl:Class rdf:about="#WorkFrame"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Arrangement"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#Roll"> + <owl:disjointWith rdf:resource="#Mill"/> <owl:disjointWith> - <owl:Class rdf:about="#Stretch-Form"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#Lathe"/> </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 rdf:resource="#True"/> + <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Bend"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Form"/> - </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#Cut"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Fold"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Separate"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#File"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Rub"/> + </owl:Class> + <owl:Class rdf:about="#SegmentImage"> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> <owl:disjointWith> - <owl:Class rdf:about="#Forge"/> + <owl:Class rdf:about="#TransformImage"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Deep-Draw"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#FilterImage"/> + <owl:disjointWith rdf:resource="#ExtractEdges"/> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <owl:disjointWith rdf:resource="#BlobAnalysis"/> + <owl:disjointWith rdf:resource="#DecompressImageData"/> </owl:Class> - <owl:Class rdf:about="#Stretch-Form"> + <owl:Class rdf:about="#ObjectBase"> + <owl:disjointWith rdf:resource="#PhysicalObject"/> + <owl:disjointWith rdf:resource="#Skill"/> + <owl:disjointWith rdf:resource="#Task"/> + <owl:disjointWith rdf:resource="#Property"/> + <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#Operation"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Fold"/> - <owl:disjointWith rdf:resource="#True"/> + <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Form"/> + <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasGeometry"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#Fill"> + <owl:disjointWith rdf:resource="#Solder"/> <owl:disjointWith> - <owl:Class rdf:about="#Forge"/> + <owl:Class rdf:about="#Rivet"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Deep-Draw"/> + <owl:Class rdf:about="#Weld"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#Bolt"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Clinch"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#Bend"/> + <rdfs:subClassOf rdf:resource="#Join"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Fill a workpiece with a cubic capacity.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#Glue"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#Assemble"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#ManufacturingFunction"> - <owl:disjointWith rdf:resource="#ManipulationAndHandlingFunction"/> - <owl:disjointWith rdf:resource="#SensorFunction"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#MainFunction"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#CheckPresence"> - <owl:disjointWith rdf:resource="#CheckSurfaceForIrregularities"/> - <owl:disjointWith rdf:resource="#Count"/> - <owl:disjointWith> - <owl:Class rdf:about="#CheckPosition"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Check"/> - </owl:Class> - <owl:Class rdf:ID="BusInterface"> + <owl:Class rdf:about="#PlaybackCtrl"> + <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> <owl:disjointWith> - <owl:Class rdf:ID="ElectricalInterface"/> + <owl:Class rdf:about="#NumericalCtrl"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:ID="CommunicationProtocol"/> + <owl:Class rdf:about="#IntelligentCtrl"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#SimpleControl"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#ControlSystem"/> + </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#LightSpotSize"> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> - <owl:disjointWith rdf:resource="#MinMeasurementRange"/> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#LightType"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Diameter in mm.</rdfs:comment> + <owl:Class rdf:about="#TypeOfMagnet"> <owl:disjointWith> - <owl:Class rdf:about="#MaxScanAngle"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#FieldOfView"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ScanningDistance"/> - </owl:Class> - <owl:Class rdf:ID="Part"> <rdfs:subClassOf> - <owl:Class rdf:about="#ObjectBase"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> <owl:disjointWith> - <owl:Class rdf:ID="Assembly"/> - </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Diameter"> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#DiameterOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + </owl:Class> + <owl:Class rdf:about="#Separate"> + <rdfs:subClassOf> + <owl:Class rdf:about="#ManufacturingFunction"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Form"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Coat"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#ModifyWorkpieceProperties"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Join"/> <owl:disjointWith> - <owl:Class rdf:about="#Height"/> + <owl:Class rdf:about="#Mold"/> </owl:disjointWith> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> + >Modify the workpiece by breaking the coherence at some location.</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#SkillProperty"> + <rdfs:subClassOf> + <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasEditable"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#Property"/> + <owl:disjointWith rdf:resource="#isEditable"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#DeviceProperty"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#Identifier"/> + </owl:Class> + <owl:Class rdf:about="#NumericalCtrl"> + <owl:disjointWith rdf:resource="#PlaybackCtrl"/> + <owl:disjointWith rdf:resource="#SimpleControl"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#IntelligentCtrl"/> </owl:disjointWith> - </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> - <owl:disjointWith rdf:resource="#Release"/> + >Capability of setting up movements via numerical positions instead of functions.</rdfs:comment> <rdfs:subClassOf> - <owl:Class rdf:about="#Secure"/> + <owl:Class rdf:about="#ControlSystem"/> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#MeasureTemperature"> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureTorque"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:Class rdf:about="#Operation"> + <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> + <owl:disjointWith rdf:resource="#Property"/> + <owl:disjointWith rdf:resource="#Skill"/> + <owl:disjointWith rdf:resource="#Task"/> + <owl:disjointWith rdf:resource="#ObjectBase"/> + <owl:disjointWith rdf:resource="#PhysicalObject"/> + </owl:Class> + <owl:Class rdf:about="#Width"> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureForce"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Measure"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDiameter"/> - </owl:Class> - <owl:Class rdf:about="#Height"> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith> - <owl:Class rdf:about="#Material"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#PowerConsumption"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#MinAmbientTemperature"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" >in mm</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#Stretch-Form"> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Fold"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Forge"/> <owl:disjointWith> - <owl:Class rdf:about="#MinAmbientTemperature"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Extrude"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#Press"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith> + <owl:Class rdf:about="#Bend"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Crush"/> + <owl:disjointWith> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Diameter"/> </owl:Class> - <owl:Class rdf:about="#MinAmbientTemperature"> + <owl:Class rdf:about="#CartesianRobot"> + <owl:disjointWith rdf:resource="#ParallelKinematicRobot"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#SpecialKinematicRobot"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#ArticulatedRobot"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#SimpleKinematicRobot"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#HexapodRobot"/> + <owl:disjointWith rdf:resource="#ScaraRobot"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Robot"/> + </rdfs:subClassOf> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in degrees celsius</rdfs:comment> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + >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:Class> + <owl:Class rdf:about="#Precision"> + <rdfs:subClassOf rdf:resource="#QualityCriteria"/> + <owl:disjointWith rdf:resource="#Accuracy"/> + <owl:disjointWith rdf:resource="#PathVelocityFluctuation"/> + <owl:disjointWith rdf:resource="#Resolution"/> + <owl:disjointWith rdf:resource="#Repeatability"/> + </owl:Class> + <owl:Class rdf:about="#Release"> + <rdfs:subClassOf> + <owl:Class rdf:about="#Secure"/> + </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:5 +Invert the grasping.</rdfs:comment> + <owl:disjointWith rdf:resource="#Grasp"/> + </owl:Class> + <owl:Class rdf:about="#DiameterOfGripper"> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> <owl:disjointWith> - <owl:Class rdf:about="#Length"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#ShapeOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#Width"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in mm</rdfs:comment> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#Displace"> + <owl:Class rdf:about="#Pan"> + <owl:disjointWith> + <owl:Class rdf:about="#Turn"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Orient"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Convey"/> + <owl:disjointWith rdf:resource="#Arrange"/> + <owl:disjointWith> + <owl:Class rdf:about="#Feed"/> + </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> <rdfs:subClassOf> <owl:Class rdf:about="#Move"/> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Orient"/> - <owl:disjointWith rdf:resource="#Turn"/> - <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 rdf:resource="#Position"/> - <owl:disjointWith rdf:resource="#Arrange"/> - <owl:disjointWith rdf:resource="#Convey"/> - <owl:disjointWith rdf:resource="#Feed"/> - <owl:disjointWith rdf:resource="#Pan"/> <owl:disjointWith rdf:resource="#Pass"/> + <owl:disjointWith rdf:resource="#Displace"/> </owl:Class> - <owl:Class rdf:about="#CloseFingers"> + <owl:Class rdf:about="#ModifyWorkpieceProperties"> + <owl:disjointWith> + <owl:Class rdf:about="#Coat"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Join"/> + <owl:disjointWith> + <owl:Class rdf:about="#Mold"/> + </owl:disjointWith> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Modify some physical properties of the workpiece.</rdfs:comment> <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#FingerGripper"/> - </owl:someValuesFrom> - </owl:Restriction> + <owl:Class rdf:about="#ManufacturingFunction"/> </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Grasp"/> - <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> + </owl:Class> + <owl:Class rdf:about="#MinAmbientTemperature"> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Material"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in degrees celsius</rdfs:comment> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith> + <owl:Class rdf:about="#PowerConsumption"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalInterface"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith> + <owl:Class rdf:about="#EnclosureRatingIP"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith> + <owl:Class rdf:about="#MechanicalResistance"/> + </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaxAmbientTemperature"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#CloseClaws"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#AdjustVacuumToGrip"/> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> </owl:Class> - <owl:Class rdf:about="#AdjustVacuumToRelease"> + <owl:Class rdf:about="#VacuumGripper"> <rdfs:subClassOf> <owl:Restriction> + <owl:someValuesFrom> + <owl:Class rdf:about="#AdjustVacuumToRelease"/> + </owl:someValuesFrom> <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> + <owl:ObjectProperty rdf:about="#hasSkill"/> </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#Gripper"/> + <rdfs:subClassOf> + <owl:Restriction> <owl:someValuesFrom> - <owl:Class rdf:about="#VacuumGripper"/> + <owl:Class rdf:about="#AdjustVacuumToGrip"/> </owl:someValuesFrom> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Release"/> - <owl:disjointWith rdf:resource="#OpenFingers"/> - <owl:disjointWith rdf:resource="#OpenClaws"/> + <owl:disjointWith rdf:resource="#MagnetGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#AdjustCurrentToRelease"/> + <owl:Class rdf:about="#PincerGripper"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Deep-Draw"> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#FingerGripper"/> </owl:disjointWith> - <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> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#Fold"/> + </owl:Class> + <owl:Class rdf:about="#LightGrid"> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#OpticDistanceSensor"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Forge"/> + <owl:Class rdf:about="#SmartCamera"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#OpticColorSensor"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Form"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#True"/> - <owl:disjointWith rdf:resource="#Bend"/> - <owl:disjointWith rdf:resource="#Stretch-Form"/> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#LaserScanner2D"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#OpticSwitch"/> </owl:Class> - <owl:Class rdf:about="#TypeOfMagnet"> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:Class rdf:about="#Coat"> + <owl:disjointWith rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Join"/> + <owl:disjointWith> + <owl:Class rdf:about="#Mold"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#ManufacturingFunction"/> </rdfs:subClassOf> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Put a permanent layer of formless material onto the workpiece.</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#PowerConsumption"> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in kVA</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#MaxLiftWay"/> + <owl:Class rdf:about="#MaxAmbientTemperature"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#NumberOfFingers"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> - <owl:disjointWith rdf:resource="#Reach"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - </owl:Class> - <owl:Class rdf:about="#Length"> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith> - <owl:Class rdf:about="#Material"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> - </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Length"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Shape"/> <owl:disjointWith rdf:resource="#Payload"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Width"/> <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#MaxForce"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#MeasureTemperature"> + <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#MeasureSpeed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Height"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> - <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureArea"/> <owl:disjointWith> - <owl:Class rdf:about="#Weight"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - </owl:Class> - <owl:Class rdf:about="#Grind"> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Increase the surface performance, flatten the surface.</rdfs:comment> - <owl:disjointWith rdf:resource="#Broach"/> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Saw"/> + <rdfs:subClassOf rdf:resource="#Measure"/> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lathe"/> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Drill"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> <owl:disjointWith> - <owl:Class rdf:about="#Hone"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#MaxAmbientTemperature"> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Rub"/> - </owl:Class> - <owl:Class rdf:about="#TypeOfActuation"> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#NumberOfJoints"/> - <owl:disjointWith rdf:resource="#Reachability"/> - </owl:Class> - <owl:Class rdf:about="#Hone"> + <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#Plane"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Saw"/> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Rub"/> - <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 rdf:resource="#Broach"/> + <owl:disjointWith rdf:resource="#PowerConsumption"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Lathe"/> <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> + <owl:Class rdf:about="#EnclosureRatingIP"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith rdf:resource="#Cut"/> - <owl:disjointWith rdf:resource="#Grind"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#Shape"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in degrees celsius</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#File"/> + <owl:Class rdf:about="#PhysicalInterface"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#Payload"/> </owl:Class> - <owl:Class rdf:about="#Secure"> - <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/> - <owl:disjointWith> - <owl:Class rdf:about="#Store"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#ModifyAmount"/> + <owl:Class rdf:about="#OpticColorSensor"> <owl:disjointWith> - <owl:Class rdf:about="#Move"/> + <owl:Class rdf:about="#LaserScanner2D"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#CheckPosition"> - <owl:disjointWith rdf:resource="#CheckSurfaceForIrregularities"/> - <owl:disjointWith rdf:resource="#Count"/> - <owl:disjointWith rdf:resource="#CheckPresence"/> - <rdfs:subClassOf rdf:resource="#Check"/> - </owl:Class> - <owl:Class rdf:about="#MeasureForce"> - <owl:disjointWith rdf:resource="#MeasureArea"/> - <owl:disjointWith rdf:resource="#MeasureTemperature"/> - <owl:disjointWith rdf:resource="#MeasureDiameter"/> - <owl:disjointWith rdf:resource="#MeasureTorque"/> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureDistance"/> + <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:disjointWith rdf:resource="#OpticContrastScanner"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasurePositionOfObject"/> + <owl:Class rdf:about="#SmartCamera"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith rdf:resource="#LightGrid"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#OpticDistanceSensor"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#OpticSwitch"/> </owl:Class> - <owl:Class rdf:about="#ParallelKinematicRobot"> + <owl:Class rdf:about="#Secure"> <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> + <owl:Class rdf:about="#ManipulationAndHandlingFunction"/> </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#SimpleKinematicRobot"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#CartesianRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#HexapodRobot"/> - <owl:disjointWith> - <owl:Class rdf:about="#ScaraRobot"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#ArticulatedRobot"/> + <owl:Class rdf:about="#Move"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#ModifyAmount"/> <owl:disjointWith> - <owl:Class rdf:about="#SpecialKinematicRobot"/> + <owl:Class rdf:about="#Store"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Special kinematic arrangement like the one built in SMErobot.</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#Form"> + <owl:Class rdf:about="#ReadOpticalCharacters"> + <owl:disjointWith rdf:resource="#ReadBarCode"/> + <owl:disjointWith rdf:resource="#Read2DMatrixCode"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Read"/> + </rdfs:subClassOf> <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> - <owl:Class rdf:about="#Coat"/> - </owl:disjointWith> + >SIARAS (FP6-017146) +Task and Skills of Optical Sensors v1.1 +part:7</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#Orient"> <owl:disjointWith> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Mold"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#Turn"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/> - <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/> + <owl:disjointWith rdf:resource="#Displace"/> + <owl:disjointWith rdf:resource="#Position"/> + <owl:disjointWith rdf:resource="#Pass"/> + <owl:disjointWith rdf:resource="#Arrange"/> + <owl:disjointWith rdf:resource="#Pan"/> + <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:disjointWith rdf:resource="#Convey"/> </owl:Class> - <owl:Class rdf:about="#OpticDistanceSensor"> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> + <owl:Class rdf:about="#MeasureSpeed"> <owl:disjointWith> - <owl:Class rdf:about="#OpticSwitch"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> <owl:disjointWith> - <owl:Class rdf:about="#LaserScanner2D"/> + <owl:Class rdf:about="#MeasureForce"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> <owl:disjointWith> - <owl:Class rdf:about="#VisionSensor"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#Forge"> + <owl:Class rdf:about="#Assemble"> + <owl:disjointWith rdf:resource="#Solder"/> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#Weld"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#True"/> - <owl:disjointWith rdf:resource="#Deep-Draw"/> - <owl:disjointWith rdf:resource="#Fold"/> - <owl:disjointWith rdf:resource="#Bend"/> - <owl:disjointWith rdf:resource="#Stretch-Form"/> + <rdfs:subClassOf rdf:resource="#Join"/> <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> + >Putting together two workpieces.</rdfs:comment> + <owl:disjointWith rdf:resource="#Fill"/> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#Clinch"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Roll"/> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#Bolt"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Rivet"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Flang"/> + <owl:Class rdf:about="#Glue"/> </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#ReadBarCode"> - <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 rdf:resource="#ReadOpticalCharacters"/> + <owl:Class rdf:about="#PhysicalInterface"> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#Shape"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith> - <owl:Class rdf:about="#Read2DMatrixCode"/> + <owl:Class rdf:about="#MechanicalResistance"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Read"/> - </owl:Class> - <owl:Class rdf:about="#Weight"> <owl:disjointWith> <owl:Class rdf:about="#PhysicalPropertiesRobot"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith> + <owl:Class rdf:about="#EnclosureRatingIP"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PowerConsumption"/> <owl:disjointWith> <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#MaxForce"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#MaxForce"/> + </owl:Class> + <owl:Class rdf:about="#ShapeOfClaws"> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> <owl:disjointWith> - <owl:Class rdf:about="#DegreesOfFreedom"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith> + <owl:Class rdf:about="#Reach"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaximumVacuum"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in kg</rdfs:comment> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - </owl:Class> - <owl:Class rdf:about="#JointFingerGripper"> - <rdfs:subClassOf> - <owl:Class rdf:about="#FingerGripper"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#ElasticFingerGripper"/> </owl:Class> - <owl:Class rdf:about="#ElectricalConnector"> + <owl:Class rdf:about="#Glue"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >How to connect a tool electrically.</rdfs:comment> - <owl:disjointWith rdf:resource="#MechanicalConnector"/> - <rdfs:subClassOf rdf:resource="#ToolInterface"/> - </owl:Class> - <owl:Class rdf:about="#EncoderSensor"> + >Connect workpieces with the help of a glue. This is done by physical interaction of the glue at the workpieces' interfaces.</rdfs:comment> + <owl:disjointWith rdf:resource="#Solder"/> <owl:disjointWith> - <owl:Class rdf:about="#UltrasonicSensor"/> + <owl:Class rdf:about="#Rivet"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Assemble"/> <owl:disjointWith> - <owl:Class rdf:about="#InductiveSensor"/> + <owl:Class rdf:about="#Weld"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MagneticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:about="#Bolt"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#TactileSensor"/> + <rdfs:subClassOf rdf:resource="#Join"/> + <owl:disjointWith rdf:resource="#Fill"/> <owl:disjointWith> - <owl:Class rdf:about="#CapacitveSensor"/> + <owl:Class rdf:about="#Clinch"/> </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#AdjustVacuumToGrip"> + <rdfs:subClassOf rdf:resource="#Grasp"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#VacuumGripper"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#CloseFingers"/> + <owl:disjointWith rdf:resource="#CloseClaws"/> + <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> </owl:Class> - <owl:Class rdf:about="#ImageAnalysis"> - <rdfs:subClassOf rdf:resource="#SensorFunction"/> - <owl:disjointWith rdf:resource="#Read"/> - <owl:disjointWith rdf:resource="#Check"/> - <owl:disjointWith> - <owl:Class rdf:about="#Scan"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Classify"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Measure"/> + <owl:Class rdf:about="#Electroplate"> + <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:disjointWith> - <owl:Class rdf:about="#Detect"/> + <owl:Class rdf:about="#Powder-coat"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Hot-galvanise"/> + <owl:disjointWith rdf:resource="#Varnish"/> + <rdfs:subClassOf rdf:resource="#Coat"/> </owl:Class> - <owl:Class rdf:about="#ScaraRobot"> + <owl:Class rdf:about="#IntelligentCtrl"> <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> + <owl:Class rdf:about="#ControlSystem"/> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#NumericalCtrl"/> + <owl:disjointWith rdf:resource="#PlaybackCtrl"/> + <owl:disjointWith rdf:resource="#SimpleControl"/> <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:disjointWith rdf:resource="#ParallelKinematicRobot"/> - <owl:disjointWith> - <owl:Class rdf:about="#SimpleKinematicRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#HexapodRobot"/> + >This includes calculating up functions for setting positions and trajectories.</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#MaximumVacuum"> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> <owl:disjointWith> - <owl:Class rdf:about="#CartesianRobot"/> + <owl:Class rdf:about="#NumberOfClaws"/> </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> <owl:disjointWith> - <owl:Class rdf:about="#SpecialKinematicRobot"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#ArticulatedRobot"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#MeasurePositionOfObject"> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasureForce"/> - <owl:disjointWith rdf:resource="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureAcceleration"/> + <owl:Class rdf:about="#Reach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureDiameter"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <rdfs:subClassOf rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#MeasureArea"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureTorque"/> </owl:Class> - <owl:Class rdf:about="#DegreesOfFreedom"> + <owl:Class rdf:about="#OpticDistanceSensor"> + <owl:disjointWith rdf:resource="#OpticColorSensor"/> + <owl:disjointWith rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#SmartCamera"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#LightGrid"/> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#PowerConsumption"/> + <owl:Class rdf:about="#LaserScanner2D"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#VisionSensor"/> + </owl:Class> + <owl:Class rdf:about="#Cut"> + <owl:disjointWith rdf:resource="#Mill"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Divide a workpiece into two parts.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Grind"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#Weight"/> - </owl:Class> - <owl:Class rdf:about="#PowerConsumption"> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in kVA</rdfs:comment> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#MaxForce"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Thrust"/> + <rdfs:subClassOf rdf:resource="#Separate"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Electro-discharge-machine"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Weight"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Rub"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#File"/> <owl:disjointWith> - <owl:Class rdf:about="#Material"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> </owl:Class> - <owl:Class rdf:about="#Identifier"> + <owl:Class rdf:about="#Scan"> <owl:disjointWith> - <owl:Class rdf:about="#Arrangement"/> + <owl:Class rdf:about="#Read"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >For the identifier there are two applications in the later implementation: -1. Identifier of either a device or a workpiece. -2. Reference to device identifier or a workpiece identifier as a link, e.g. a URI.</rdfs:comment> - <owl:disjointWith rdf:resource="#SkillProperty"/> - <owl:disjointWith rdf:resource="#Geometry"/> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#ToolInterface"/> + <owl:disjointWith rdf:resource="#Check"/> + <owl:disjointWith rdf:resource="#Detect"/> + <owl:disjointWith rdf:resource="#ImageAnalysis"/> <owl:disjointWith> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#Classify"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Cost"/> - <owl:disjointWith rdf:resource="#ControlSystem"/> - <owl:disjointWith rdf:resource="#QualityCriteria"/> - <owl:disjointWith rdf:resource="#Communication"/> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - </owl:Class> - <owl:Class rdf:about="#DiagnosticFunction"> - <rdfs:subClassOf rdf:resource="#Skill"/> + <owl:disjointWith rdf:resource="#Measure"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#SensorFunction"/> + </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:5 -(Breakdown of Skills)</rdfs:comment> - <owl:disjointWith rdf:resource="#CompoundSkills"/> - <owl:disjointWith> - <owl:Class rdf:about="#MainFunction"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#AdditionalFunction"/> - </owl:Class> - <owl:Class rdf:about="#Varnish"> - <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> - <rdfs:subClassOf> - <owl:Class rdf:about="#Coat"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Hot-galvanise"/> - <owl:disjointWith rdf:resource="#Electroplate"/> - <owl:disjointWith> - <owl:Class rdf:about="#Powder-coat"/> - </owl:disjointWith> +pag:5</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#ObjectBase"> + <owl:Class rdf:about="#Press"> <owl:disjointWith> - <owl:Class rdf:about="#Operation"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> <owl:disjointWith> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Task"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Skill"/> - <owl:disjointWith rdf:resource="#Object"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasGeometry"/> - </owl:onProperty> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> - </owl:Class> - <owl:Class rdf:about="#CapacitveSensor"> + <owl:disjointWith rdf:resource="#Fold"/> + <rdfs:subClassOf rdf:resource="#Form"/> <owl:disjointWith> - <owl:Class rdf:about="#InductiveSensor"/> + <owl:Class rdf:about="#Bead"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Roll"/> <owl:disjointWith> - <owl:Class rdf:about="#UltrasonicSensor"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#EncoderSensor"/> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Forge"/> + <owl:disjointWith rdf:resource="#Crush"/> + <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 rdf:resource="#Extrude"/> + </owl:Class> + <owl:Class rdf:about="#TransformImage"> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <owl:disjointWith rdf:resource="#DecompressImageData"/> + <owl:disjointWith rdf:resource="#SegmentImage"/> + <owl:disjointWith rdf:resource="#BlobAnalysis"/> + <owl:disjointWith rdf:resource="#ExtractEdges"/> + <owl:disjointWith rdf:resource="#FilterImage"/> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:about="#CompressImageData"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#TactileSensor"/> - <owl:disjointWith rdf:resource="#MagneticSensor"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> - </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> </owl:Class> - <owl:Class rdf:about="#ArticulatedRobot"> + <owl:Class rdf:about="#Bead"> <owl:disjointWith> - <owl:Class rdf:about="#SpecialKinematicRobot"/> + <owl:Class rdf:about="#Bend"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#HexapodRobot"/> - <owl:disjointWith rdf:resource="#ParallelKinematicRobot"/> - <owl:disjointWith rdf:resource="#ScaraRobot"/> + <owl:disjointWith rdf:resource="#Press"/> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Extrude"/> <owl:disjointWith> - <owl:Class rdf:about="#CartesianRobot"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#SimpleKinematicRobot"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> <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> - <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#VisionSensor"> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> - <owl:disjointWith> - <owl:Class rdf:about="#OpticSwitch"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> - <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> - <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> + >Create channel-shaped deepenings which are meant to increase the stiffness.</rdfs:comment> + <owl:disjointWith rdf:resource="#Fold"/> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith rdf:resource="#Forge"/> <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#LaserScanner2D"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Crush"/> </owl:Class> - <owl:Class rdf:about="#MainFunction"> - <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 rdf:resource="#DiagnosticFunction"/> - <owl:disjointWith rdf:resource="#CompoundSkills"/> - <owl:disjointWith rdf:resource="#AdditionalFunction"/> - </owl:Class> - <owl:Class rdf:about="#OpticSwitch"> - <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> - <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> - <owl:disjointWith rdf:resource="#VisionSensor"/> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> - <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> - </owl:disjointWith> + <owl:Class rdf:about="#Rivet"> + <owl:disjointWith rdf:resource="#Assemble"/> <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> + <owl:Class rdf:about="#Bolt"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Solder"/> + <owl:disjointWith rdf:resource="#Glue"/> <owl:disjointWith> - <owl:Class rdf:about="#LaserScanner2D"/> + <owl:Class rdf:about="#Clinch"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - </owl:Class> - <owl:Class rdf:about="#Arrangement"> - <owl:disjointWith rdf:resource="#Communication"/> - <owl:disjointWith rdf:resource="#Identifier"/> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Cost"/> - <owl:disjointWith rdf:resource="#Geometry"/> - <owl:disjointWith rdf:resource="#ToolInterface"/> + <owl:disjointWith rdf:resource="#Fill"/> + <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> - <owl:Class rdf:about="#Timing"/> + <owl:Class rdf:about="#Weld"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#QualityCriteria"/> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#ControlSystem"/> + <rdfs:subClassOf rdf:resource="#Join"/> </owl:Class> - <owl:Class rdf:about="#MaxLiftWay"> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> - <owl:disjointWith rdf:resource="#NumberOfFingers"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:Class rdf:about="#Robot"> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Restriction> + <owl:someValuesFrom> + <owl:Class rdf:about="#WorkCoordinates"/> + </owl:someValuesFrom> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith> - <owl:Class rdf:about="#NumberOfClaws"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#TypeOfMagnet"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Reach"/> - <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> - </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in mm</rdfs:comment> - </owl:Class> - <owl:Class rdf:about="#Plane"> - <owl:disjointWith rdf:resource="#Cut"/> - <owl:disjointWith rdf:resource="#Drill"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> + <owl:Restriction> + <owl:someValuesFrom> + <owl:Class rdf:about="#Cost"/> + </owl:someValuesFrom> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Hone"/> - <owl:disjointWith rdf:resource="#Grind"/> - <owl:disjointWith rdf:resource="#Rub"/> - <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Saw"/> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Broach"/> - <owl:disjointWith rdf:resource="#Lathe"/> - <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> - <owl:Class rdf:about="#File"/> - </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#SegmentImage"> - <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> - <owl:disjointWith rdf:resource="#DecompressImageData"/> - <owl:disjointWith rdf:resource="#BlobAnalysis"/> - <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#ExtractEdges"/> - <owl:disjointWith rdf:resource="#FilterImage"/> - <owl:disjointWith rdf:resource="#CompressImageData"/> - <owl:disjointWith> - <owl:Class rdf:about="#TransformImage"/> - </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Weld"> - <owl:disjointWith rdf:resource="#Clinch"/> - <owl:disjointWith rdf:resource="#Glue"/> - <owl:disjointWith rdf:resource="#Bolt"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Join"/> + <owl:Class rdf:about="#ManipulationAndHandling"/> </rdfs:subClassOf> - <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:disjointWith rdf:resource="#Rivet"/> - <owl:disjointWith rdf:resource="#Fill"/> - <owl:disjointWith rdf:resource="#Assemble"/> - <owl:disjointWith rdf:resource="#Solder"/> - </owl:Class> - <owl:Class rdf:about="#Anneal"> - <owl:disjointWith rdf:resource="#Temper"/> - <owl:disjointWith> - <owl:Class rdf:about="#Age"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#ModifyWorkpieceProperties"/> - <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="#CartesianRobot"> - <owl:disjointWith rdf:resource="#ScaraRobot"/> - <owl:disjointWith rdf:resource="#HexapodRobot"/> - <owl:disjointWith> - <owl:Class rdf:about="#SimpleKinematicRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#ArticulatedRobot"/> - <owl:disjointWith> - <owl:Class rdf:about="#SpecialKinematicRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#ParallelKinematicRobot"/> + <owl:disjointWith rdf:resource="#Gripper"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#ControlSystem"/> + </owl:someValuesFrom> + </owl:Restriction> </rdfs:subClassOf> - <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:Class> - <owl:Class rdf:about="#Atomic"> <rdfs:subClassOf> <owl:Restriction> - <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:maxCardinality> <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasWorkpiece"/> + <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> + <owl:someValuesFrom rdf:resource="#QualityCriteria"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasDevice"/> + <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> + <owl:someValuesFrom rdf:resource="#Communication"/> </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> <owl:Restriction> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> + <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> + <owl:someValuesFrom> + <owl:Class rdf:about="#Arrangement"/> + </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> - <owl:Class rdf:about="#Operation"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#ToolInterface"/> + </owl:someValuesFrom> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith> - <owl:Class rdf:about="#Sequence"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Parallel"/> - </owl:Class> - <owl:Class rdf:about="#NumberOfClaws"> - <owl:disjointWith rdf:resource="#Reach"/> - <owl:disjointWith rdf:resource="#TypeOfMagnet"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#WorkFrame"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#NumberOfFingers"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasProperty"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + </owl:someValuesFrom> + </owl:Restriction> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#ManipulationAndHandlingFunction"> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#ManufacturingFunction"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#StiffnessOfGripper"/> + <owl:Class rdf:about="#SensorFunction"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#MaxLiftWay"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <rdfs:subClassOf rdf:resource="#MainFunction"/> </owl:Class> - <owl:Class rdf:about="#Operation"> - <owl:disjointWith rdf:resource="#Object"/> - <owl:disjointWith rdf:resource="#ObjectBase"/> - <owl:disjointWith> - <owl:Class rdf:about="#Task"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Skill"/> + <owl:Class rdf:about="#MeasureForce"> + <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#MeasureDiameter"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> - </owl:Class> - <owl:Class rdf:about="#UltrasonicSensor"> - <owl:disjointWith rdf:resource="#OpticSensor"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureVolume"/> <owl:disjointWith> - <owl:Class rdf:about="#InductiveSensor"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#CapacitveSensor"/> - <owl:disjointWith rdf:resource="#TactileSensor"/> - <owl:disjointWith rdf:resource="#MagneticSensor"/> - <owl:disjointWith rdf:resource="#EncoderSensor"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#ParallelGripper"> - <rdfs:subClassOf> - <owl:Class rdf:about="#PincerGripper"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#AngleGripper"/> - </owl:Class> - <owl:Class rdf:about="#Cast"> - <rdfs:subClassOf rdf:resource="#Mold"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >From fluid metallic material a solid workpiece is created.</rdfs:comment> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureSpeed"/> <owl:disjointWith> - <owl:Class rdf:about="#ElectrolyticSegregate"/> + <owl:Class rdf:about="#MeasureAcceleration"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Sinter"/> + <rdfs:subClassOf rdf:resource="#Measure"/> </owl:Class> - <owl:Class rdf:about="#StiffnessOfGripper"> - <owl:disjointWith rdf:resource="#Reach"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#NumberOfClaws"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:Class rdf:about="#Bend"> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Roll"/> <owl:disjointWith> - <owl:Class rdf:about="#TypeOfFingers"/> + <owl:Class rdf:about="#Deep-Draw"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#NumberOfFingers"/> - <owl:disjointWith rdf:resource="#TypeOfMagnet"/> - <owl:disjointWith rdf:resource="#MaxLiftWay"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - </owl:Class> - <owl:Class rdf:about="#MeasureAcceleration"> - <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureTemperature"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> - <rdfs:subClassOf rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#MeasureForce"/> - <owl:disjointWith rdf:resource="#MeasureDiameter"/> + <owl:disjointWith rdf:resource="#Forge"/> + <owl:disjointWith rdf:resource="#Extrude"/> + <owl:disjointWith rdf:resource="#Bead"/> <owl:disjointWith> - <owl:Class rdf:about="#MeasureOrientationOfObject"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MeasureArea"/> - <owl:disjointWith rdf:resource="#MeasureTorque"/> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - </owl:Class> - <owl:Class rdf:about="#Assign"> - <rdfs:subClassOf rdf:resource="#ModifyAmount"/> + <owl:disjointWith rdf:resource="#Fold"/> <owl:disjointWith> - <owl:Class rdf:about="#Divide"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Branch"/> - <owl:disjointWith rdf:resource="#Unify"/> - <owl:disjointWith rdf:resource="#Partition"/> - <owl:disjointWith rdf:resource="#Merge"/> <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> + >Put a bending moment to the material which causes a malleable, i.e. permanent deformation.</rdfs:comment> + <owl:disjointWith rdf:resource="#Press"/> + <owl:disjointWith rdf:resource="#Crush"/> </owl:Class> - <owl:Class rdf:about="#TypeOfFingers"> - <owl:disjointWith rdf:resource="#NumberOfClaws"/> - <owl:disjointWith rdf:resource="#MaterialOfGripper"/> - <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> - <owl:disjointWith rdf:resource="#TypeOfVacuum"/> - <owl:disjointWith rdf:resource="#StiffnessOfGripper"/> - <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> - <owl:disjointWith rdf:resource="#DiameterOfGripper"/> - <owl:disjointWith rdf:resource="#TypeOfMagnet"/> - <owl:disjointWith rdf:resource="#NumberOfFingers"/> - <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:Class rdf:about="#OpenFingers"> + <rdfs:subClassOf rdf:resource="#Release"/> <rdfs:subClassOf> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"/> + </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#FingerGripper"/> + </owl:someValuesFrom> + </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#MaxLiftWeight"/> - <owl:disjointWith rdf:resource="#MaxLiftWay"/> - <owl:disjointWith rdf:resource="#MaximumVacuum"/> - <owl:disjointWith rdf:resource="#SizeOfGripper"/> - <owl:disjointWith rdf:resource="#Reach"/> - </owl:Class> - <owl:Class rdf:about="#SimpleKinematicRobot"> - <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="#ParallelKinematicRobot"/> - <owl:disjointWith rdf:resource="#ArticulatedRobot"/> - <owl:disjointWith rdf:resource="#HexapodRobot"/> - <owl:disjointWith rdf:resource="#CartesianRobot"/> <owl:disjointWith> - <owl:Class rdf:about="#SpecialKinematicRobot"/> + <owl:Class rdf:about="#AdjustVacuumToRelease"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ScaraRobot"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> - </rdfs:subClassOf> - </owl:Class> - <owl:Class rdf:about="#CollectStatisticalData"> - <owl:disjointWith rdf:resource="#PerformSelfTest"/> - <rdfs:subClassOf rdf:resource="#DiagnosticFunction"/> + <owl:disjointWith rdf:resource="#OpenClaws"/> + <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/> </owl:Class> - <owl:Class rdf:about="#Material"> - <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesGripper"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Length"/> - <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#PowerConsumption"/> - <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#Width"/> + <owl:Class rdf:about="#SensorFunction"> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#ManufacturingFunction"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Weight"/> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#ManipulationAndHandlingFunction"/> + <rdfs:subClassOf rdf:resource="#MainFunction"/> + <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:Class> - <owl:Class rdf:about="#ElectricalInterface"> - <rdfs:subClassOf rdf:resource="#Communication"/> + <owl:Class rdf:about="#Turn"> + <owl:disjointWith rdf:resource="#Displace"/> + <owl:disjointWith rdf:resource="#Pass"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#Move"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Position"/> + <owl:disjointWith rdf:resource="#Orient"/> + <owl:disjointWith rdf:resource="#Pan"/> + <owl:disjointWith rdf:resource="#Arrange"/> + <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> - <owl:Class rdf:about="#CommunicationProtocol"/> + <owl:Class rdf:about="#Feed"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#BusInterface"/> - </owl:Class> - <owl:Class rdf:about="#ElectrolyticSegregate"> - <rdfs:subClassOf rdf:resource="#Mold"/> - <owl:disjointWith rdf:resource="#Sinter"/> - <owl:disjointWith rdf:resource="#Cast"/> - </owl:Class> - <owl:Class rdf:ID="TactileProximitySwitch"> - <rdfs:subClassOf rdf:resource="#TactileSensor"/> + <owl:disjointWith rdf:resource="#Convey"/> </owl:Class> - <owl:Class rdf:about="#Flang"> - <owl:disjointWith rdf:resource="#Stretch-Form"/> - <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> - </owl:disjointWith> + <owl:Class rdf:about="#Deep-Draw"> + <owl:disjointWith rdf:resource="#Press"/> + <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> <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith rdf:resource="#Fold"/> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Flang"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#True"/> + <owl:disjointWith rdf:resource="#Forge"/> + <owl:disjointWith rdf:resource="#Crush"/> + <owl:disjointWith rdf:resource="#Bead"/> + <rdfs:subClassOf rdf:resource="#Form"/> <owl:disjointWith> - <owl:Class rdf:about="#Crush"/> + <owl:Class rdf:about="#True"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Forge"/> - <owl:disjointWith rdf:resource="#Fold"/> - <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> <owl:disjointWith rdf:resource="#Bend"/> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Deep-Draw"/> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Extrude"/> </owl:Class> - <owl:Class rdf:about="#CoordinateReferenceSystem"> + <owl:Class rdf:about="#Clinch"> + <owl:disjointWith rdf:resource="#Rivet"/> + <owl:disjointWith rdf:resource="#Solder"/> + <owl:disjointWith rdf:resource="#Glue"/> <owl:disjointWith> - <owl:Class rdf:about="#WorkFrame"/> + <owl:Class rdf:about="#Weld"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Fill"/> + <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:disjointWith rdf:resource="#Assemble"/> <owl:disjointWith> - <owl:Class rdf:about="#MountedDevicePosition"/> + <owl:Class rdf:about="#Bolt"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#WorkCoordinates"/> - <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/> - <rdfs:subClassOf rdf:resource="#Arrangement"/> + <rdfs:subClassOf rdf:resource="#Join"/> </owl:Class> - <owl:Class rdf:about="#CycleTime"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in seconds</rdfs:comment> - <rdfs:subClassOf> - <owl:Class rdf:about="#Timing"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#SwitchingFrequency"/> - <owl:disjointWith> - <owl:Class rdf:about="#ResponseTime"/> - </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#FieldOfView"> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith> - <owl:Class rdf:about="#MaxScanAngle"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#MinMeasurementRange"/> - <owl:disjointWith rdf:resource="#LightType"/> - <owl:disjointWith rdf:resource="#LightSpotSize"/> - <owl:disjointWith rdf:resource="#ScanningDistance"/> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> - </owl:Class> - <owl:Class rdf:about="#LaserScanner2D"> - <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> - <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> - <owl:disjointWith rdf:resource="#OpticSwitch"/> - <owl:disjointWith rdf:resource="#VisionSensor"/> - <owl:disjointWith> - <owl:Class rdf:about="#SmartCamera"/> - </owl:disjointWith> - <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - </owl:Class> - <owl:Class rdf:about="#Move"> - <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/> - <owl:disjointWith> - <owl:Class rdf:about="#Store"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#ModifyAmount"/> - <owl:disjointWith rdf:resource="#Secure"/> - </owl:Class> - <owl:Class rdf:about="#Divide"> - <owl:disjointWith rdf:resource="#Branch"/> - <owl:disjointWith rdf:resource="#Partition"/> - <owl:disjointWith rdf:resource="#Unify"/> - <owl:disjointWith rdf:resource="#Assign"/> - <owl:disjointWith rdf:resource="#Merge"/> - <rdfs:subClassOf rdf:resource="#ModifyAmount"/> - <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="#File"> - <owl:disjointWith rdf:resource="#Rub"/> - <owl:disjointWith rdf:resource="#Saw"/> - <owl:disjointWith rdf:resource="#Hone"/> - <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 rdf:resource="#Plane"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Cut"/> - <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith> - <owl:Class rdf:about="#Thrust"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Grind"/> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#Lathe"/> - <owl:disjointWith rdf:resource="#Broach"/> - </owl:Class> - <owl:Class rdf:about="#Thrust"> - <owl:disjointWith rdf:resource="#Hone"/> - <owl:disjointWith rdf:resource="#Lathe"/> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith rdf:resource="#Cut"/> - <owl:disjointWith rdf:resource="#File"/> - <owl:disjointWith rdf:resource="#Plane"/> - <owl:disjointWith rdf:resource="#Grind"/> - <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="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Rub"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Saw"/> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith> - <owl:Class rdf:about="#Electro-discharge-machine"/> - </owl:disjointWith> - <owl:disjointWith rdf:resource="#Broach"/> - </owl:Class> - <owl:Class rdf:about="#Electro-discharge-machine"> - <owl:disjointWith rdf:resource="#Drill"/> - <owl:disjointWith rdf:resource="#Saw"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Separate"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Thrust"/> - <owl:disjointWith rdf:resource="#Grind"/> - <owl:disjointWith rdf:resource="#Mill"/> - <owl:disjointWith rdf:resource="#Cut"/> - <owl:disjointWith rdf:resource="#Plane"/> - <owl:disjointWith rdf:resource="#Hone"/> - <owl:disjointWith rdf:resource="#Lathe"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >A spark removes material from the workpiece.</rdfs:comment> - <owl:disjointWith rdf:resource="#Thermal-Separate"/> - <owl:disjointWith rdf:resource="#Rub"/> - <owl:disjointWith rdf:resource="#Broach"/> - <owl:disjointWith rdf:resource="#Lap"/> - <owl:disjointWith rdf:resource="#File"/> - </owl:Class> - <owl:Class rdf:about="#CircularParallelGripper"> - <owl:disjointWith rdf:resource="#GeneralParallelGripper"/> - <owl:disjointWith> - <owl:Class rdf:about="#LineParallelGripper"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#ParallelGripper"/> - </owl:Class> - <owl:Class rdf:about="#SmartCamera"> - <owl:disjointWith rdf:resource="#OpticSwitch"/> - <owl:disjointWith rdf:resource="#VisionSensor"/> - <owl:disjointWith rdf:resource="#LaserScanner2D"/> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> - <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: 7</rdfs:comment> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> - <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> - <owl:disjointWith> - <owl:Class rdf:about="#LightGrid"/> - </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - </owl:Class> - <owl:Class rdf:ID="BarcodeReader"> - <rdfs:subClassOf rdf:resource="#VisionSensor"/> - </owl:Class> - <owl:Class rdf:about="#CloseClaws"> - <rdfs:subClassOf rdf:resource="#Grasp"/> + <owl:Class rdf:about="#Sensor"> <rdfs:subClassOf> <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#PincerGripper"/> - </owl:someValuesFrom> + <owl:someValuesFrom rdf:resource="#Communication"/> <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> + <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#CloseFingers"/> - <owl:disjointWith rdf:resource="#AdjustCurrentToGrip"/> - <owl:disjointWith rdf:resource="#AdjustVacuumToGrip"/> - </owl:Class> - <owl:Class rdf:about="#InductiveSensor"> - <rdfs:subClassOf> - <owl:Class rdf:about="#Sensor"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#CapacitveSensor"/> - <owl:disjointWith rdf:resource="#MagneticSensor"/> - <owl:disjointWith rdf:resource="#TactileSensor"/> - <owl:disjointWith rdf:resource="#UltrasonicSensor"/> - <owl:disjointWith rdf:resource="#EncoderSensor"/> - <owl:disjointWith rdf:resource="#OpticSensor"/> + <owl:disjointWith rdf:resource="#Manufacturing"/> <owl:disjointWith> - <owl:Class rdf:about="#TorqueForceSensor"/> + <owl:Class rdf:about="#ManipulationAndHandling"/> </owl:disjointWith> - </owl:Class> - <owl:Class rdf:about="#Sensor"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#SensorFunction"/> - </owl:Restriction> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#Manufacturing"/> - <owl:disjointWith rdf:resource="#ManipulationAndHandling"/> <rdfs:subClassOf rdf:resource="#Device"/> <rdfs:subClassOf> <owl:Restriction> - <owl:someValuesFrom rdf:resource="#Arrangement"/> + <owl:someValuesFrom rdf:resource="#SensorFunction"/> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> + <owl:ObjectProperty rdf:about="#hasSkill"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> - <owl:someValuesFrom> - <owl:Class rdf:about="#Timing"/> - </owl:someValuesFrom> <owl:onProperty> <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> + <owl:someValuesFrom rdf:resource="#PhysicalPropertiesSensor"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> - <owl:someValuesFrom rdf:resource="#Communication"/> <owl:onProperty> <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> + <owl:someValuesFrom> + <owl:Class rdf:about="#Cost"/> + </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> @@ -5689,15 +5237,17 @@ Cap: 7</rdfs:comment> <owl:onProperty> <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> - <owl:someValuesFrom rdf:resource="#PhysicalPropertiesSensor"/> + <owl:someValuesFrom> + <owl:Class rdf:about="#Arrangement"/> + </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> + <owl:someValuesFrom rdf:resource="#QualityCriteria"/> <owl:onProperty> <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> - <owl:someValuesFrom rdf:resource="#Cost"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> @@ -5705,725 +5255,592 @@ Cap: 7</rdfs:comment> <owl:onProperty> <owl:ObjectProperty rdf:about="#hasProperty"/> </owl:onProperty> - <owl:someValuesFrom rdf:resource="#QualityCriteria"/> + <owl:someValuesFrom> + <owl:Class rdf:about="#Timing"/> + </owl:someValuesFrom> </owl:Restriction> </rdfs:subClassOf> </owl:Class> - <owl:Class rdf:about="#PhysicalPropertiesGripper"> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> + <owl:Class rdf:about="#Electro-discharge-machine"> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> <owl:disjointWith> - <owl:Class rdf:about="#Shape"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#Cut"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#PowerConsumption"/> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#Weight"/> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#Material"/> - <owl:disjointWith rdf:resource="#Length"/> - </owl:Class> - <owl:Class rdf:about="#MaxScanAngle"> - <owl:disjointWith rdf:resource="#LightType"/> - <owl:disjointWith rdf:resource="#FieldOfView"/> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> - <owl:disjointWith rdf:resource="#LightSpotSize"/> - <owl:disjointWith rdf:resource="#MinMeasurementRange"/> <owl:disjointWith> - <owl:Class rdf:about="#LaserClass"/> + <owl:Class rdf:about="#Hone"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Lathe"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#ScanningDistance"/> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> - </owl:Class> - <owl:Class rdf:about="#SpecialKinematicRobot"> <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> - <rdfs:subClassOf> - <owl:Class rdf:about="#Robot"/> - </rdfs:subClassOf> - <owl:disjointWith rdf:resource="#ParallelKinematicRobot"/> - <owl:disjointWith rdf:resource="#SimpleKinematicRobot"/> - <owl:disjointWith rdf:resource="#ScaraRobot"/> - <owl:disjointWith rdf:resource="#ArticulatedRobot"/> - <owl:disjointWith rdf:resource="#CartesianRobot"/> - <owl:disjointWith rdf:resource="#HexapodRobot"/> - </owl:Class> - <owl:Class rdf:about="#Crush"> - <owl:disjointWith rdf:resource="#Deep-Draw"/> - <owl:disjointWith rdf:resource="#Forge"/> + >A spark removes material from the workpiece.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Extrude"/> + <owl:Class rdf:about="#Thermal-Separate"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Fold"/> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#True"/> + <owl:disjointWith rdf:resource="#Rub"/> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Stretch-Form"/> - <owl:disjointWith rdf:resource="#Bend"/> - <owl:disjointWith rdf:resource="#Flang"/> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#File"/> + </owl:Class> + <owl:Class rdf:about="#Arrangement"> + <owl:disjointWith rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#Identifier"/> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Relative change of length by pressure force.</rdfs:comment> - </owl:Class> - <owl:Class rdf:about="#Shape"> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#Geometry"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#PowerConsumption"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Weight"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#MaxForce"/> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalInterface"/> + <owl:Class rdf:about="#ToolInterface"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/> - <owl:disjointWith rdf:resource="#Length"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#Material"/> - </owl:Class> - <owl:Class rdf:about="#Timing"> <owl:disjointWith rdf:resource="#QualityCriteria"/> - <owl:disjointWith rdf:resource="#ToolInterface"/> - <owl:disjointWith rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Identifier"/> - <owl:disjointWith rdf:resource="#Geometry"/> - <owl:disjointWith rdf:resource="#Communication"/> - <owl:disjointWith rdf:resource="#ControlSystem"/> - <owl:disjointWith rdf:resource="#Cost"/> - <rdfs:subClassOf rdf:resource="#DeviceProperty"/> - <owl:disjointWith rdf:resource="#Arrangement"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> + <owl:disjointWith> + <owl:Class rdf:about="#ControlSystem"/> + </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#TransformImage"> - <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> - <owl:disjointWith rdf:resource="#CompressImageData"/> - <owl:disjointWith rdf:resource="#FilterImage"/> - <owl:disjointWith rdf:resource="#ExtractEdges"/> - <owl:disjointWith rdf:resource="#BlobAnalysis"/> - <owl:disjointWith rdf:resource="#SegmentImage"/> - <owl:disjointWith rdf:resource="#DecompressImageData"/> + <owl:Class rdf:about="#CoordinateReferenceSystem"> + <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/> <owl:disjointWith> - <owl:Class rdf:about="#CalibrateImage"/> + <owl:Class rdf:about="#WorkCoordinates"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#MountedDevicePosition"/> + <owl:disjointWith rdf:resource="#WorkFrame"/> + <rdfs:subClassOf rdf:resource="#Arrangement"/> </owl:Class> - <owl:Class rdf:about="#Karthesian"> - <owl:disjointWith rdf:resource="#Circular"/> - <owl:disjointWith rdf:resource="#AsFastAsPossible"/> - <rdfs:subClassOf rdf:resource="#Feed"/> + <owl:Class rdf:about="#Cast"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >From fluid metallic material a solid workpiece is created.</rdfs:comment> + <rdfs:subClassOf> + <owl:Class rdf:about="#Mold"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Sinter"/> + <owl:disjointWith rdf:resource="#ElectrolyticSegregate"/> </owl:Class> - <owl:Class rdf:about="#Classify"> - <rdfs:subClassOf rdf:resource="#SensorFunction"/> + <owl:Class rdf:about="#SpecialKinematicRobot"> + <owl:disjointWith rdf:resource="#HexapodRobot"/> + <owl:disjointWith rdf:resource="#CartesianRobot"/> + <owl:disjointWith rdf:resource="#ArticulatedRobot"/> + <owl:disjointWith rdf:resource="#ScaraRobot"/> + <owl:disjointWith> + <owl:Class rdf:about="#SimpleKinematicRobot"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ParallelKinematicRobot"/> <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="#Check"/> - <owl:disjointWith rdf:resource="#Measure"/> + >Everything else which cannot be sorted in one of the other categories.</rdfs:comment> + <rdfs:subClassOf rdf:resource="#Robot"/> + </owl:Class> + <owl:Class rdf:about="#Lathe"> + <owl:disjointWith rdf:resource="#File"/> <owl:disjointWith> - <owl:Class rdf:about="#Scan"/> + <owl:Class rdf:about="#Saw"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Read"/> - <owl:disjointWith rdf:resource="#ImageAnalysis"/> + <owl:disjointWith rdf:resource="#Grind"/> + <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> - <owl:Class rdf:about="#Detect"/> + <owl:Class rdf:about="#Thermal-Separate"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Drill"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith> + <owl:Class rdf:about="#Broach"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Plane"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith> + <owl:Class rdf:about="#Hone"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith rdf:resource="#Lap"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Thrust"/> </owl:Class> - <owl:Class rdf:about="#LightGrid"> - <rdfs:subClassOf rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> - <owl:disjointWith rdf:resource="#SmartCamera"/> - <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> - <owl:disjointWith rdf:resource="#VisionSensor"/> - <owl:disjointWith rdf:resource="#OpticContrastScanner"/> - <owl:disjointWith rdf:resource="#OpticColorSensor"/> - <owl:disjointWith rdf:resource="#LaserScanner2D"/> - <owl:disjointWith rdf:resource="#OpticSwitch"/> + <owl:Class rdf:about="#Saw"> + <owl:disjointWith rdf:resource="#Lathe"/> + <owl:disjointWith> + <owl:Class rdf:about="#Hone"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#Drill"/> + </owl:disjointWith> + <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 rdf:resource="#Grind"/> + <owl:disjointWith> + <owl:Class rdf:about="#Plane"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#File"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <owl:disjointWith> + <owl:Class rdf:about="#Broach"/> + </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith> + <owl:Class rdf:about="#Thermal-Separate"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Mill"/> </owl:Class> - <owl:Class rdf:about="#Robot"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#WorkCoordinates"/> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#Cost"/> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#ManipulationAndHandling"/> - <owl:disjointWith rdf:resource="#Gripper"/> + <owl:Class rdf:about="#GeneralParallelGripper"> + <owl:disjointWith rdf:resource="#LineParallelGripper"/> + <owl:disjointWith rdf:resource="#CircularParallelGripper"/> + <rdfs:subClassOf rdf:resource="#ParallelGripper"/> + </owl:Class> + <owl:Class rdf:about="#Sequence"> <rdfs:subClassOf> <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> + <owl:ObjectProperty rdf:ID="hasAtomicOperation"/> </owl:onProperty> - <owl:someValuesFrom rdf:resource="#Arrangement"/> </owl:Restriction> </rdfs:subClassOf> <rdfs:subClassOf> <owl:Restriction> + <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:cardinality> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> + <owl:ObjectProperty rdf:about="#hasOperation"/> </owl:onProperty> - <owl:someValuesFrom rdf:resource="#Communication"/> </owl:Restriction> </rdfs:subClassOf> + <rdfs:subClassOf rdf:resource="#Operation"/> + <owl:disjointWith rdf:resource="#Parallel"/> + <owl:disjointWith rdf:resource="#Atomic"/> + </owl:Class> + <owl:Class rdf:about="#EnclosureRatingIP"> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PowerConsumption"/> + <owl:disjointWith rdf:resource="#PhysicalInterface"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaxForce"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith> + <owl:Class rdf:about="#MechanicalResistance"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + </owl:Class> + <owl:Class rdf:about="#MeasureDiameter"> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#MeasureAcceleration"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureForce"/> + <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith> + <owl:Class rdf:about="#MeasureAngle"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MeasureVolume"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> + </owl:Class> + <owl:Class rdf:about="#CollectStatisticalData"> + <owl:disjointWith rdf:resource="#PerformSelfTest"/> + <rdfs:subClassOf rdf:resource="#DiagnosticFunction"/> + </owl:Class> + <owl:Class rdf:about="#ManipulationAndHandling"> + <rdfs:subClassOf rdf:resource="#Device"/> <rdfs:subClassOf> <owl:Restriction> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> + <owl:ObjectProperty rdf:about="#hasSkill"/> </owl:onProperty> - <owl:someValuesFrom> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> - </owl:someValuesFrom> + <owl:someValuesFrom rdf:resource="#ManipulationAndHandlingFunction"/> </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> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasProperty"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#ControlSystem"/> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom rdf:resource="#QualityCriteria"/> - <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="#WorkFrame"/> - </owl:someValuesFrom> - </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> - </owl:Class> - <owl:Class rdf:about="#LineParallelGripper"> - <owl:disjointWith rdf:resource="#GeneralParallelGripper"/> - <owl:disjointWith rdf:resource="#CircularParallelGripper"/> - <rdfs:subClassOf rdf:resource="#ParallelGripper"/> - </owl:Class> - <owl:Class rdf:about="#StoreInOrder"> - <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:disjointWith rdf:resource="#StoreUnOrdered"/> - <owl:disjointWith rdf:resource="#StorePartlyOrdered"/> - <rdfs:subClassOf> - <owl:Class rdf:about="#Store"/> - </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Sensor"/> + <owl:disjointWith rdf:resource="#Manufacturing"/> </owl:Class> - <owl:Class rdf:about="#ResponseTime"> + <owl:Class rdf:about="#Branch"> + <owl:disjointWith> + <owl:Class rdf:about="#Divide"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Unify"/> + <owl:disjointWith rdf:resource="#Merge"/> + <owl:disjointWith rdf:resource="#Assign"/> + <owl:disjointWith rdf:resource="#Partition"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in seconds</rdfs:comment> - <rdfs:subClassOf rdf:resource="#Timing"/> - <owl:disjointWith rdf:resource="#CycleTime"/> - <owl:disjointWith rdf:resource="#SwitchingFrequency"/> - </owl:Class> - <owl:Class rdf:about="#TorqueForceSensor"> - <rdfs:subClassOf rdf:resource="#Sensor"/> - <owl:disjointWith rdf:resource="#TactileSensor"/> - <owl:disjointWith rdf:resource="#MagneticSensor"/> - <owl:disjointWith rdf:resource="#EncoderSensor"/> - <owl:disjointWith rdf:resource="#InductiveSensor"/> - <owl:disjointWith rdf:resource="#OpticSensor"/> - <owl:disjointWith rdf:resource="#CapacitveSensor"/> - <owl:disjointWith rdf:resource="#UltrasonicSensor"/> + >Divide a material flow into subflows.</rdfs:comment> + <rdfs:subClassOf rdf:resource="#ModifyAmount"/> </owl:Class> - <owl:Class rdf:about="#Detect"> - <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 rdf:resource="#ImageAnalysis"/> - <owl:disjointWith rdf:resource="#Check"/> + <owl:Class rdf:about="#MeasureAcceleration"> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> <owl:disjointWith> - <owl:Class rdf:about="#Scan"/> + <owl:Class rdf:about="#MeasureAngle"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#Classify"/> - <owl:disjointWith rdf:resource="#Read"/> - <rdfs:subClassOf rdf:resource="#SensorFunction"/> - </owl:Class> - <owl:Class rdf:about="#Task"> - <owl:disjointWith rdf:resource="#ObjectBase"/> - <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> - <owl:disjointWith rdf:resource="#Operation"/> - <owl:disjointWith rdf:resource="#Skill"/> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#MeasureForce"/> + <owl:disjointWith rdf:resource="#MeasureDiameter"/> <owl:disjointWith> - <owl:Class rdf:about="#Property"/> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Object"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasOperation"/> - </owl:onProperty> - <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:maxCardinality> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> </owl:Class> - <owl:Class rdf:about="#Sequence"> - <owl:disjointWith rdf:resource="#Atomic"/> - <owl:disjointWith rdf:resource="#Parallel"/> - <rdfs:subClassOf rdf:resource="#Operation"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasOperation"/> - </owl:onProperty> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasAtomicOperation"/> - </owl:onProperty> - <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:cardinality> - </owl:Restriction> - </rdfs:subClassOf> + <owl:Class rdf:about="#Anneal"> + <rdfs:subClassOf rdf:resource="#ModifyWorkpieceProperties"/> + <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:disjointWith rdf:resource="#Age"/> + <owl:disjointWith rdf:resource="#Temper"/> </owl:Class> - <owl:Class rdf:about="#Powder-coat"> - <owl:disjointWith rdf:resource="#Hot-galvanise"/> - <owl:disjointWith rdf:resource="#Electroplate"/> - <owl:disjointWith rdf:resource="#Varnish"/> + <owl:Class rdf:about="#NumberOfClaws"> + <owl:disjointWith> + <owl:Class rdf:about="#Reach"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> <rdfs:subClassOf> - <owl:Class rdf:about="#Coat"/> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </rdfs:subClassOf> - <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> - </owl:Class> - <owl:Class rdf:about="#Join"> - <owl:disjointWith rdf:resource="#Mold"/> <owl:disjointWith> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> <owl:disjointWith> - <owl:Class rdf:about="#Coat"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Form"/> - <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> - <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith> + <owl:Class rdf:about="#StiffnessOfGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> </owl:Class> - <owl:Class rdf:about="#AdjustCurrentToRelease"> - <owl:disjointWith rdf:resource="#OpenClaws"/> - <owl:disjointWith rdf:resource="#OpenFingers"/> - <owl:disjointWith rdf:resource="#AdjustVacuumToRelease"/> - <rdfs:subClassOf rdf:resource="#Release"/> + <owl:Class rdf:about="#ControlSystem"> + <owl:disjointWith rdf:resource="#Arrangement"/> <rdfs:subClassOf> - <owl:Restriction> - <owl:allValuesFrom rdf:resource="#MagnetGripper"/> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:onProperty> - </owl:Restriction> + <owl:Class rdf:about="#DeviceProperty"/> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <owl:disjointWith> + <owl:Class rdf:about="#Timing"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> + <owl:disjointWith> + <owl:Class rdf:about="#Geometry"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Identifier"/> + <owl:disjointWith> + <owl:Class rdf:about="#Cost"/> + </owl:disjointWith> + <owl:disjointWith> + <owl:Class rdf:about="#ToolInterface"/> + </owl:disjointWith> </owl:Class> - <owl:Class rdf:about="#NumericalCtrl"> + <owl:Class rdf:about="#Hone"> <owl:disjointWith> - <owl:Class rdf:about="#IntelligentCtrl"/> + <owl:Class rdf:about="#Plane"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#SimpleControl"/> - <owl:disjointWith rdf:resource="#PlaybackCtrl"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Saw"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Capability of setting up movements via numerical positions instead of functions.</rdfs:comment> - <rdfs:subClassOf rdf:resource="#ControlSystem"/> + >Smooth finishing of metallic surfaces, mostly wholes to increase size, shape or surface performance.</rdfs:comment> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith> + <owl:Class rdf:about="#Broach"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith> + <owl:Class rdf:about="#Thermal-Separate"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#Lathe"/> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <owl:disjointWith> + <owl:Class rdf:about="#Drill"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#File"/> </owl:Class> - <owl:Class rdf:about="#Extrude"> - <owl:disjointWith rdf:resource="#Stretch-Form"/> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Bend"/> + <owl:Class rdf:about="#ToolInterface"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >This is mainly used to create profiles, tubes and wires.</rdfs:comment> + >How to connect a tool to a robot.</rdfs:comment> <owl:disjointWith> - <owl:Class rdf:about="#Bead"/> + <owl:Class rdf:about="#Timing"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#Crush"/> - <owl:disjointWith rdf:resource="#True"/> - <owl:disjointWith rdf:resource="#Flang"/> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Forge"/> - <owl:disjointWith rdf:resource="#Deep-Draw"/> - <owl:disjointWith rdf:resource="#Fold"/> + <owl:disjointWith rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#Identifier"/> + <owl:disjointWith rdf:resource="#ControlSystem"/> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <owl:disjointWith> + <owl:Class rdf:about="#Geometry"/> + </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Arrangement"/> </owl:Class> - <owl:Class rdf:about="#Age"> + <owl:Class rdf:about="#Divide"> <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 rdf:resource="#Temper"/> - <owl:disjointWith rdf:resource="#Anneal"/> - <rdfs:subClassOf rdf:resource="#ModifyWorkpieceProperties"/> - </owl:Class> - <owl:Class rdf:about="#CalibrateImage"> - <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> - <owl:disjointWith rdf:resource="#BlobAnalysis"/> - <owl:disjointWith rdf:resource="#SegmentImage"/> - <owl:disjointWith rdf:resource="#FilterImage"/> - <owl:disjointWith rdf:resource="#DecompressImageData"/> - <owl:disjointWith rdf:resource="#TransformImage"/> - <owl:disjointWith rdf:resource="#CompressImageData"/> - <owl:disjointWith rdf:resource="#ExtractEdges"/> - </owl:Class> - <owl:Class rdf:about="#SortObjects"> - <owl:disjointWith rdf:resource="#ClassifyObject"/> - <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 rdf:resource="#Classify"/> - </owl:Class> - <owl:Class rdf:about="#Scan"> - <owl:disjointWith rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#Classify"/> - <owl:disjointWith rdf:resource="#ImageAnalysis"/> - <owl:disjointWith rdf:resource="#Detect"/> - <owl:disjointWith rdf:resource="#Check"/> - <owl:disjointWith rdf:resource="#Read"/> - <rdfs:subClassOf rdf:resource="#SensorFunction"/> - <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="#LaserClass"> - <owl:disjointWith rdf:resource="#MinMeasurementRange"/> - <owl:disjointWith rdf:resource="#LightType"/> - <owl:disjointWith rdf:resource="#MaxScanAngle"/> - <owl:disjointWith rdf:resource="#ScanningDistance"/> - <owl:disjointWith rdf:resource="#LightSpotSize"/> - <owl:disjointWith rdf:resource="#MaxMeasurementRange"/> - <owl:disjointWith rdf:resource="#FieldOfView"/> - <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> + >Create a subset from a superset. +The size of source and target sets does not necessarily have to be defined.</rdfs:comment> + <rdfs:subClassOf rdf:resource="#ModifyAmount"/> + <owl:disjointWith rdf:resource="#Merge"/> + <owl:disjointWith rdf:resource="#Assign"/> + <owl:disjointWith rdf:resource="#Unify"/> + <owl:disjointWith rdf:resource="#Partition"/> + <owl:disjointWith rdf:resource="#Branch"/> </owl:Class> - <owl:Class rdf:about="#Read2DMatrixCode"> - <owl:disjointWith rdf:resource="#ReadOpticalCharacters"/> - <owl:disjointWith rdf:resource="#ReadBarCode"/> + <owl:Class rdf:about="#Thermal-Separate"> + <owl:disjointWith> + <owl:Class rdf:about="#Plane"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Mill"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Lathe"/> <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 rdf:resource="#Read"/> - </owl:Class> - <owl:Class rdf:about="#VacuumGripper"> + >Cut a contour with the help of a laser, a plasma cutter or a cutting torch.</rdfs:comment> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> <owl:disjointWith> - <owl:Class rdf:about="#FingerGripper"/> + <owl:Class rdf:about="#Drill"/> </owl:disjointWith> + <owl:disjointWith rdf:resource="#Lap"/> <owl:disjointWith> - <owl:Class rdf:about="#PincerGripper"/> + <owl:Class rdf:about="#Broach"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MagnetGripper"/> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#AdjustVacuumToGrip"/> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Gripper"/> + <owl:disjointWith rdf:resource="#Hone"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith rdf:resource="#File"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#Saw"/> + </owl:Class> + <owl:Class rdf:about="#AdjustVacuumToRelease"> + <rdfs:subClassOf rdf:resource="#Release"/> <rdfs:subClassOf> <owl:Restriction> - <owl:someValuesFrom rdf:resource="#AdjustVacuumToRelease"/> + <owl:someValuesFrom rdf:resource="#VacuumGripper"/> <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> + <owl:ObjectProperty rdf:about="#isSkillOf"/> </owl:onProperty> </owl:Restriction> </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#AdjustCurrentToRelease"/> + <owl:disjointWith rdf:resource="#OpenClaws"/> + <owl:disjointWith rdf:resource="#OpenFingers"/> </owl:Class> - <owl:Class rdf:about="#MeasureOrientationOfObject"> - <owl:disjointWith rdf:resource="#MeasureArea"/> - <owl:disjointWith rdf:resource="#MeasureForce"/> - <owl:disjointWith rdf:resource="#MeasureSpeed"/> - <rdfs:subClassOf rdf:resource="#Measure"/> - <owl:disjointWith rdf:resource="#MeasureVolume"/> - <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureDistance"/> - <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> - <owl:disjointWith rdf:resource="#MeasureAcceleration"/> - <owl:disjointWith rdf:resource="#MeasureTemperature"/> - <owl:disjointWith rdf:resource="#MeasureDiameter"/> - <owl:disjointWith rdf:resource="#MeasureTorque"/> - <owl:disjointWith rdf:resource="#MeasureAngle"/> - </owl:Class> - <owl:Class rdf:about="#FingerGripper"> - <owl:disjointWith rdf:resource="#VacuumGripper"/> - <owl:disjointWith rdf:resource="#MagnetGripper"/> + <owl:Class rdf:about="#Timing"> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <owl:disjointWith rdf:resource="#ToolInterface"/> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#Identifier"/> <owl:disjointWith> - <owl:Class rdf:about="#PincerGripper"/> + <owl:Class rdf:about="#Geometry"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#ControlSystem"/> + <owl:disjointWith> + <owl:Class rdf:about="#Cost"/> </owl:disjointWith> <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#CloseFingers"/> - </owl:Restriction> - </rdfs:subClassOf> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#OpenFingers"/> - </owl:Restriction> + <owl:Class rdf:about="#DeviceProperty"/> </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Gripper"/> + <owl:disjointWith rdf:resource="#Arrangement"/> </owl:Class> - <owl:Class rdf:about="#PincerGripper"> - <rdfs:subClassOf> - <owl:Restriction> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - <owl:someValuesFrom rdf:resource="#OpenClaws"/> - </owl:Restriction> - </rdfs:subClassOf> + <owl:Class rdf:about="#CompoundManufacturingFunction"> <rdfs:subClassOf> - <owl:Restriction> - <owl:someValuesFrom rdf:resource="#CloseClaws"/> - <owl:onProperty> - <owl:ObjectProperty rdf:about="#hasSkill"/> - </owl:onProperty> - </owl:Restriction> + <owl:Class rdf:about="#CompoundSkills"/> </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#Gripper"/> - <owl:disjointWith rdf:resource="#MagnetGripper"/> - <owl:disjointWith rdf:resource="#VacuumGripper"/> - <owl:disjointWith rdf:resource="#FingerGripper"/> - </owl:Class> - <owl:Class rdf:about="#CommunicationProtocol"> - <owl:disjointWith rdf:resource="#ElectricalInterface"/> - <owl:disjointWith rdf:resource="#BusInterface"/> - <rdfs:subClassOf rdf:resource="#Communication"/> - </owl:Class> - <owl:Class rdf:about="#Bead"> - <owl:disjointWith rdf:resource="#Bend"/> <owl:disjointWith> - <owl:Class rdf:about="#Press"/> + <owl:Class rdf:about="#CompoundManipulationAndHandlingFunction"/> </owl:disjointWith> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Extrude"/> - <owl:disjointWith rdf:resource="#Flang"/> - <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="#Fold"/> - <owl:disjointWith rdf:resource="#Stretch-Form"/> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#Forge"/> - <owl:disjointWith rdf:resource="#True"/> - <owl:disjointWith rdf:resource="#Deep-Draw"/> - <owl:disjointWith rdf:resource="#Crush"/> - </owl:Class> - <owl:Class rdf:about="#Resolution"> - <rdfs:subClassOf rdf:resource="#QualityCriteria"/> - <owl:disjointWith rdf:resource="#Precision"/> - <owl:disjointWith rdf:resource="#Repeatability"/> - <owl:disjointWith rdf:resource="#PathVelocityFluctuation"/> - <owl:disjointWith rdf:resource="#Accuracy"/> + <owl:disjointWith rdf:resource="#CompountSensorFunction"/> </owl:Class> - <owl:Class rdf:about="#Assembly"> - <owl:disjointWith rdf:resource="#Part"/> + <owl:Class rdf:about="#Reach"> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> <rdfs:subClassOf> - <owl:Restriction> - <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >1</owl:minCardinality> - <owl:onProperty> - <owl:ObjectProperty rdf:ID="hasObjectBase"/> - </owl:onProperty> - </owl:Restriction> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> </rdfs:subClassOf> - <rdfs:subClassOf rdf:resource="#ObjectBase"/> - </owl:Class> - <owl:Class rdf:about="#MountedDevicePosition"> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> <owl:disjointWith> - <owl:Class rdf:about="#WorkFrame"/> + <owl:Class rdf:about="#NumberOfFingers"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#WorkCoordinates"/> - <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/> - <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/> - <rdfs:subClassOf rdf:resource="#Arrangement"/> - </owl:Class> - <owl:Class rdf:about="#Store"> - <owl:disjointWith rdf:resource="#ModifyAmount"/> - <owl:disjointWith rdf:resource="#Move"/> - <owl:disjointWith rdf:resource="#Secure"/> - <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/> - </owl:Class> - <owl:Class rdf:about="#Coat"> - <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/> - <owl:disjointWith rdf:resource="#Mold"/> - <owl:disjointWith rdf:resource="#Join"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith rdf:resource="#NumberOfClaws"/> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> <owl:disjointWith> - <owl:Class rdf:about="#Separate"/> + <owl:Class rdf:about="#NumberOfMovableClaws"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#Form"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Put a permanent layer of formless material onto the workpiece.</rdfs:comment> - <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/> - </owl:Class> - <owl:Class rdf:about="#PhysicalInterface"> - <owl:disjointWith rdf:resource="#Width"/> - <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> - <owl:disjointWith rdf:resource="#Weight"/> - <owl:disjointWith rdf:resource="#Height"/> - <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> - <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> - <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> - <owl:disjointWith rdf:resource="#Material"/> - <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> - <owl:disjointWith rdf:resource="#Shape"/> - <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> - <owl:disjointWith rdf:resource="#Length"/> - <owl:disjointWith rdf:resource="#Diameter"/> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> <owl:disjointWith> - <owl:Class rdf:about="#PhysicalPropertiesRobot"/> + <owl:Class rdf:about="#StiffnessOfGripper"/> </owl:disjointWith> - <owl:disjointWith rdf:resource="#MinVoltageSupply"/> - <owl:disjointWith rdf:resource="#Payload"/> - <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#PowerConsumption"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> - <owl:disjointWith rdf:resource="#MaxForce"/> </owl:Class> - <owl:Class rdf:about="#SaveParameterSet"> + <owl:Class rdf:about="#SetParameterValue"> <rdfs:subClassOf rdf:resource="#AdditionalFunction"/> - <owl:disjointWith rdf:resource="#Calibrate"/> - <owl:disjointWith rdf:resource="#LoadParameterSet"/> <owl:disjointWith rdf:resource="#Reset"/> - <owl:disjointWith rdf:resource="#SetParameterValue"/> - </owl:Class> - <owl:Class rdf:about="#Separate"> - <owl:disjointWith rdf:resource="#Mold"/> - <owl:disjointWith rdf:resource="#Join"/> - <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/> - <owl:disjointWith rdf:resource="#Coat"/> - <owl:disjointWith rdf:resource="#Form"/> - <rdfs:subClassOf rdf:resource="#ManufacturingFunction"/> - <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="#LoadParameterSet"/> + <owl:disjointWith rdf:resource="#SaveParameterSet"/> + <owl:disjointWith rdf:resource="#Calibrate"/> </owl:Class> - <owl:Class rdf:ID="InductiveProximitySwitch"> + <owl:Class rdf:about="#Plane"> + <owl:disjointWith rdf:resource="#Cut"/> + <owl:disjointWith> + <owl:Class rdf:about="#Drill"/> + </owl:disjointWith> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Hone"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#Saw"/> + <owl:disjointWith rdf:resource="#Thermal-Separate"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith> + <owl:Class rdf:about="#Broach"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Lathe"/> <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> - <rdfs:subClassOf rdf:resource="#InductiveSensor"/> + >This is mainly used for wooden workpieces to remove chipping from the workpiece.</rdfs:comment> + <owl:disjointWith rdf:resource="#File"/> </owl:Class> - <owl:Class rdf:about="#IntelligentCtrl"> - <rdfs:subClassOf rdf:resource="#ControlSystem"/> + <owl:Class rdf:about="#Classify"> + <owl:disjointWith rdf:resource="#Detect"/> + <owl:disjointWith rdf:resource="#ImageAnalysis"/> + <owl:disjointWith> + <owl:Class rdf:about="#Read"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Scan"/> + <owl:disjointWith rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#Check"/> + <rdfs:subClassOf rdf:resource="#SensorFunction"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >This includes calculating up functions for setting positions and trajectories.</rdfs:comment> - <owl:disjointWith rdf:resource="#SimpleControl"/> - <owl:disjointWith rdf:resource="#PlaybackCtrl"/> - <owl:disjointWith rdf:resource="#NumericalCtrl"/> - </owl:Class> - <owl:Class rdf:about="#Property"> - <owl:disjointWith rdf:resource="#Skill"/> - <owl:disjointWith rdf:resource="#Operation"/> - <owl:disjointWith rdf:resource="#ObjectBase"/> - <owl:disjointWith rdf:resource="#Task"/> - <owl:disjointWith rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/> - <owl:disjointWith rdf:resource="#Object"/> + >SIARAS (FP6-017146) +Structured Description of Skills and Device 1.0 +pag:5</rdfs:comment> </owl:Class> - <owl:Class rdf:about="#WorkFrame"> - <rdfs:subClassOf rdf:resource="#Arrangement"/> - <owl:disjointWith rdf:resource="#WorkCoordinates"/> - <owl:disjointWith rdf:resource="#MountedDeviceOrientation"/> - <owl:disjointWith rdf:resource="#CoordinateReferenceSystem"/> + <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="#Press"> - <owl:disjointWith rdf:resource="#Bend"/> - <owl:disjointWith rdf:resource="#Flang"/> - <owl:disjointWith rdf:resource="#True"/> - <owl:disjointWith rdf:resource="#Fold"/> - <rdfs:subClassOf rdf:resource="#Form"/> - <owl:disjointWith rdf:resource="#Bead"/> - <owl:disjointWith rdf:resource="#Roll"/> - <owl:disjointWith rdf:resource="#Deep-Draw"/> - <owl:disjointWith rdf:resource="#Stretch-Form"/> - <owl:disjointWith rdf:resource="#Forge"/> - <owl:disjointWith rdf:resource="#Crush"/> + <owl:Class rdf:about="#OpticLuminescenceScanner"> <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 rdf:resource="#Extrude"/> + >SIARAS (FP6-017146) +Tasks and Skills of Ocptical Sensor 1.1 +Cap: 5</rdfs:comment> + <owl:disjointWith rdf:resource="#OpticColorSensor"/> + <owl:disjointWith rdf:resource="#LightGrid"/> + <owl:disjointWith> + <owl:Class rdf:about="#LaserScanner2D"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith> + <owl:Class rdf:about="#SmartCamera"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> + </owl:Class> + <owl:Class rdf:about="#SimpleKinematicRobot"> + <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 rdf:resource="#ParallelKinematicRobot"/> + <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> + <rdfs:subClassOf rdf:resource="#Robot"/> </owl:Class> <owl:Class rdf:about="#PhysicalPropertiesRobot"> - <owl:disjointWith rdf:resource="#MechanicalResistance"/> <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith> + <owl:Class rdf:about="#MechanicalResistance"/> + </owl:disjointWith> <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> <owl:disjointWith rdf:resource="#Diameter"/> <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> - <owl:disjointWith rdf:resource="#MaxForce"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaxForce"/> + </owl:disjointWith> <owl:disjointWith rdf:resource="#PowerConsumption"/> <owl:disjointWith rdf:resource="#Material"/> <owl:disjointWith rdf:resource="#Payload"/> @@ -6432,7 +5849,9 @@ Cap: 2</rdfs:comment> <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> <owl:disjointWith rdf:resource="#Height"/> <owl:disjointWith rdf:resource="#Shape"/> - <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:disjointWith> <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> <owl:disjointWith rdf:resource="#PhysicalInterface"/> <owl:disjointWith rdf:resource="#Weight"/> @@ -6441,2604 +5860,3170 @@ Cap: 2</rdfs:comment> <owl:disjointWith rdf:resource="#MinVoltageSupply"/> <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> </owl:Class> - <owl:ObjectProperty rdf:about="#hasIdentifier"> - <rdfs:range rdf:resource="#Identifier"/> - <rdfs:domain> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Device"/> - <owl:Class rdf:about="#Workpiece"/> - </owl:unionOf> - </owl:Class> - </rdfs:domain> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:ID="isAtomicOperationOf"> - <rdfs:domain rdf:resource="#Atomic"/> - <owl:inverseOf> - <owl:ObjectProperty rdf:about="#hasAtomicOperation"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Operation"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasProperty"> - <owl:inverseOf> - <owl:ObjectProperty rdf:ID="isPropertyOf"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Property"/> - <rdfs:domain rdf:resource="#Skill"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:ID="canBePerformedBy"> - <rdfs:domain rdf:resource="#Task"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:ID="isWorkpieceOf"> - <rdfs:domain rdf:resource="#Workpiece"/> - <owl:inverseOf> - <owl:ObjectProperty rdf:about="#hasWorkpiece"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Operation"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasWorkpiece"> - <rdfs:range rdf:resource="#Workpiece"/> - <rdfs:domain rdf:resource="#Operation"/> - <owl:inverseOf rdf:resource="#isWorkpieceOf"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasAssembly"> - <owl:inverseOf> - <owl:ObjectProperty rdf:ID="isAssemblyOf"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Assembly"/> - <rdfs:domain> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Object"/> - <owl:Class rdf:about="#ObjectBase"/> - </owl:unionOf> - </owl:Class> - </rdfs:domain> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasSubskill"> - <rdfs:domain rdf:resource="#CompoundSkills"/> + <owl:Class rdf:about="#MeasureAngle"> + <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> + <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#MeasureAcceleration"/> + <owl:disjointWith rdf:resource="#MeasureDiameter"/> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureForce"/> + <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:disjointWith> + <owl:Class rdf:about="#MeasureOrientationOfObject"/> + </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Bolt"> + <owl:disjointWith rdf:resource="#Solder"/> + <owl:disjointWith rdf:resource="#Assemble"/> + <rdfs:subClassOf rdf:resource="#Join"/> + <owl:disjointWith rdf:resource="#Fill"/> + <owl:disjointWith rdf:resource="#Glue"/> + <owl:disjointWith> + <owl:Class rdf:about="#Weld"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Rivet"/> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >To use an ordered list, according to the FAQ, rdf:List has to be added in Range (cf. http://protege.stanford.edu/doc/owl-faq.html#ordered). But it does not work so far.</rdfs:comment> - <rdfs:range rdf:resource="#CompoundSkills"/> - <owl:inverseOf> - <owl:ObjectProperty rdf:ID="isSubskillOf"/> - </owl:inverseOf> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:ID="isObjectBaseOf"> - <rdfs:domain rdf:resource="#ObjectBase"/> - <rdfs:range> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Assembly"/> - <owl:Class rdf:about="#Workpiece"/> - </owl:unionOf> - </owl:Class> - </rdfs:range> - <owl:inverseOf> - <owl:ObjectProperty rdf:about="#hasObjectBase"/> - </owl:inverseOf> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasGeometry"> - <rdfs:domain rdf:resource="#Object"/> - <owl:inverseOf> - <owl:ObjectProperty rdf:ID="isGeometryOf"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Geometry"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasSkill"> - <rdfs:domain> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Device"/> - <owl:Class rdf:about="#Skill"/> - <owl:Class rdf:about="#Atomic"/> - </owl:unionOf> - </owl:Class> - </rdfs:domain> - <owl:inverseOf> - <owl:ObjectProperty rdf:about="#isSkillOf"/> - </owl:inverseOf> + >Bolts are removable elements to create a connection between two or more workpieces.</rdfs:comment> + <owl:disjointWith rdf:resource="#Clinch"/> + </owl:Class> + <owl:Class rdf:about="#Store"> + <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/> + <owl:disjointWith rdf:resource="#Secure"/> + <owl:disjointWith> + <owl:Class rdf:about="#Move"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ModifyAmount"/> + </owl:Class> + <owl:Class rdf:about="#Powder-coat"> <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:range rdf:resource="#Skill"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasReference"> - <rdfs:domain> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Workpiece"/> - <owl:Class rdf:about="#Device"/> - </owl:unionOf> - </owl:Class> - </rdfs:domain> - <rdfs:range rdf:resource="#Identifier"/> + >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="#Varnish"/> + <owl:disjointWith rdf:resource="#Electroplate"/> + <owl:disjointWith rdf:resource="#Hot-galvanise"/> + </owl:Class> + <owl:Class rdf:about="#Mold"> + <owl:disjointWith rdf:resource="#ModifyWorkpieceProperties"/> + <owl:disjointWith rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Coat"/> + <owl:disjointWith rdf:resource="#Join"/> + <owl:disjointWith rdf:resource="#Form"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#ManufacturingFunction"/> + </rdfs:subClassOf> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >This will be used für referencing devices in the later implementation, e.g. as a URI.</rdfs:comment> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasOperation"> - <rdfs:domain rdf:resource="#Task"/> - <rdfs:range rdf:resource="#Task"/> - <owl:inverseOf> - <owl:ObjectProperty rdf:ID="isOperationOf"/> - </owl:inverseOf> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isPropertyOf"> - <rdfs:domain rdf:resource="#Property"/> - <rdfs:range rdf:resource="#Skill"/> - <owl:inverseOf rdf:resource="#hasProperty"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:ID="isDeviceOf"> - <owl:inverseOf> - <owl:ObjectProperty rdf:about="#hasDevice"/> - </owl:inverseOf> - <rdfs:range rdf:resource="#Atomic"/> - <rdfs:domain rdf:resource="#Device"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isAssemblyOf"> - <owl:inverseOf rdf:resource="#hasAssembly"/> - <rdfs:range> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Object"/> - <owl:Class rdf:about="#ObjectBase"/> - </owl:unionOf> - </owl:Class> - </rdfs:range> - <rdfs:domain rdf:resource="#Assembly"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isSkillOf"> - <rdfs:range> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Atomic"/> - <owl:Class rdf:about="#Device"/> - <owl:Class rdf:about="#Skill"/> - </owl:unionOf> - </owl:Class> - </rdfs:range> - <rdfs:domain rdf:resource="#Skill"/> - <owl:inverseOf rdf:resource="#hasSkill"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasObjectBase"> - <rdfs:domain> - <owl:Class> - <owl:unionOf rdf:parseType="Collection"> - <owl:Class rdf:about="#Assembly"/> - <owl:Class rdf:about="#Workpiece"/> - </owl:unionOf> - </owl:Class> - </rdfs:domain> - <owl:inverseOf rdf:resource="#isObjectBaseOf"/> - <rdfs:range rdf:resource="#ObjectBase"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasAtomicOperation"> - <owl:inverseOf rdf:resource="#isAtomicOperationOf"/> - <rdfs:range rdf:resource="#Atomic"/> - <rdfs:domain rdf:resource="#Operation"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasDevice"> - <rdfs:range rdf:resource="#Device"/> - <rdfs:domain rdf:resource="#Atomic"/> - <owl:inverseOf rdf:resource="#isDeviceOf"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isSubskillOf"> - <rdfs:domain rdf:resource="#CompoundSkills"/> - <rdfs:range rdf:resource="#CompoundSkills"/> - <owl:inverseOf rdf:resource="#hasSubskill"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#hasEditable"> - <rdfs:range rdf:resource="#isEditable"/> - <rdfs:domain rdf:resource="#Property"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isGeometryOf"> - <rdfs:range rdf:resource="#Object"/> - <owl:inverseOf rdf:resource="#hasGeometry"/> - <rdfs:domain rdf:resource="#Geometry"/> - </owl:ObjectProperty> - <owl:ObjectProperty rdf:about="#isOperationOf"> - <rdfs:domain rdf:resource="#Task"/> - <rdfs:range rdf:resource="#Task"/> - <owl:inverseOf rdf:resource="#hasOperation"/> - </owl:ObjectProperty> - <owl:DatatypeProperty rdf:ID="value"> - <rdfs:domain rdf:resource="#Property"/> - </owl:DatatypeProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.2"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.2</value> - <isPropertyOf> - <VisionSensor rdf:ID="Sick_CVS2-P112"> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_40"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >40.0</value> - <isPropertyOf> - <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS80"> - <hasProperty> - <NumberOfJoints rdf:ID="NumberOfJoints_4"> - <hasEditable> - <isEditable rdf:ID="isEditable_false"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean" - >false</value> - </isEditable> - </hasEditable> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >4</value> - <isPropertyOf> - <ArticulatedRobot rdf:ID="ArticulatedRobot_ABB_IRB-140"> - <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> - <hasProperty> - <PowerConsumption rdf:ID="PowerConsumption_4.5"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >4.5</value> - </PowerConsumption> - </hasProperty> - <hasProperty> - <TypeOfActuation rdf:ID="TypeOfActuation_Electric"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Electric</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf> - <ArticulatedRobot rdf:ID="ArticulatedRobot_ABB_IRB-4400"> - <hasProperty rdf:resource="#TypeOfActuation_Electric"/> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_45"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >45.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - </MaxAmbientTemperature> - </hasProperty> - <hasProperty> - <IntelligentCtrl rdf:ID="IntelligentCtrl_1"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >yes</value> - <isPropertyOf> - <SmartCamera rdf:ID="Sick_IVC-2DM1122"> - <hasProperty> - <EnclosureRatingIP rdf:ID="EnclosureRatingIP_65"> - <isPropertyOf> - <OpticColorSensor rdf:ID="Sensopart_FL64C"> - <hasProperty> - <MinVoltageSupply rdf:ID="MinVoltageSupply_12.0"> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >12.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <isPropertyOf> - <OpticLuminescenceScanner rdf:ID="Sick_LUT3-610"> - <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_1500"> - <isPropertyOf> - <OpticColorSensor rdf:ID="Sick_CSM1-N1114"> - <hasProperty> - <EnclosureRatingIP rdf:ID="EnclosureRatingIP_67"> - <isPropertyOf> - <OpticDistanceSensor rdf:ID="Sick_DT10-P10B5"> - <hasProperty> - <MinMeasurementRange rdf:ID="MinMeasurementRange_0.05"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf> - <OpticProximitySwitch rdf:ID="Sick_WT18-3P430"> - <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-4Pins"> - <isPropertyOf> - <SmartCamera rdf:ID="Sick_IVC-2DM1111"> - <hasProperty> - <Length rdf:ID="Length_161"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >161.0</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - </Length> - </hasProperty> - <hasProperty rdf:resource="#IntelligentCtrl_1"/> - <hasProperty> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_0"> - <hasEditable rdf:resource="#isEditable_false"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >in degrees celsius</rdfs:comment> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <isPropertyOf> - <LaserScanner2D rdf:ID="Sick_LMS200-30106"> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.026"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.026</value> - </ResponseTime> - </hasProperty> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_50"> - <rdfs:comment rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >in degrees celsius</rdfs:comment> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >50.0</value> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </MaxAmbientTemperature> - </hasProperty> - <hasSkill> - <MeasureVolume rdf:ID="MeasureVolume_1"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </MeasureVolume> - </hasSkill> - <hasSkill> - <Count rdf:ID="Count_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </Count> - </hasSkill> - <hasProperty> - <LaserClass rdf:ID="LaserClass_1"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >1</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - </LaserClass> - </hasProperty> - <hasProperty> - <PowerConsumption rdf:ID="PowerConsumption_20"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >20.0</value> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - </PowerConsumption> - </hasProperty> - <hasSkill> - <MeasurePositionOfObject rdf:ID="DeterminePositionOfObject_1"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - </MeasurePositionOfObject> - </hasSkill> - <hasSkill> - <MeasureDistance rdf:ID="MeasureDistance_2"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </MeasureDistance> - </hasSkill> - <hasProperty> - <Weight rdf:ID="Weight_4.5"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >4.5</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - </Weight> - </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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MinVoltageSupply> - </hasProperty> - <hasProperty> - <MaxMeasurementRange rdf:ID="MaxMeasurementRange_80"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >80.0</value> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasSkill> - <Scan rdf:ID="Scan_2D"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </Scan> - </hasSkill> - <hasProperty> - <Resolution rdf:ID="AngleResolution_0.5"> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.5</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Resolution> - </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_LMS200-30106"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_LMS200-30106</value> - </Identifier> - </hasIdentifier> - <hasSkill> - <DetectCollision rdf:ID="DetectCollision_1"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </DetectCollision> - </hasSkill> - <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_27.6"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >27.6</value> - </MaxVoltageSupply> - </hasProperty> - <hasSkill> - <ClassifyObject rdf:ID="ClassifyObject_2"> - <isSkillOf rdf:resource="#Sick_LMS200-30106"/> - </ClassifyObject> - </hasSkill> - <hasProperty> - <Resolution rdf:ID="DepthResolution_0.01"> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.01</value> - </Resolution> - </hasProperty> - <hasProperty> - <MaxScanAngle rdf:ID="MaxScanAngle_180"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >180.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - </MaxScanAngle> - </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_0"/> - </LaserScanner2D> - </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.0</value> - </MinAmbientTemperature> - </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_IVC-2DM1111"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_IVC-2DM1111</value> - </Identifier> - </hasIdentifier> - <hasProperty> - <Height rdf:ID="Height_55"> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >55.0</value> - </Height> - </hasProperty> - <hasSkill> - <MeasureOrientationOfObject rdf:ID="MeasureOrientationOfObject_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - </MeasureOrientationOfObject> - </hasSkill> - <hasSkill> - <MeasureAngle rdf:ID="MeasureAngle_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - </MeasureAngle> - </hasSkill> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasProperty> - <MaxMeasurementRange rdf:ID="MaxMeasurementRange_1"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >1.0</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> - <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.4"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.4</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - </MaxCurrentConsumption> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_0.5"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.5</value> - </Weight> - </hasProperty> - <hasSkill rdf:resource="#DeterminePositionOfObject_1"/> - <hasSkill> - <MeasureDiameter rdf:ID="MeasureDiameter_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - </MeasureDiameter> - </hasSkill> - <hasSkill> - <CheckPosition rdf:ID="CheckPosition_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - </CheckPosition> - </hasSkill> - <hasProperty> - <BusInterface rdf:ID="BusInterface_RS485"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >RS485</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - </BusInterface> - </hasProperty> - <hasProperty> - <BusInterface rdf:ID="BusInterface_FastEthernet"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Fast Ethernet</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf> - <SmartCamera rdf:ID="VisionComponents-VC4465"> - <hasSkill> - <Read2DMatrixCode rdf:ID="Read2DMatrixCode_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#VisionComponents-VC4465"/> - </Read2DMatrixCode> - </hasSkill> - <hasProperty> - <MinVoltageSupply rdf:ID="MinVoltageSupply_19.2"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >19.2</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MinVoltageSupply> - </hasProperty> - <hasProperty> - <Height rdf:ID="Height_53"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >53.0</value> - </Height> - </hasProperty> - <hasProperty> - <Length rdf:ID="Length_66.25"> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >66.25</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Length> - </hasProperty> - <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.08"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.08</value> - <isPropertyOf> - <OpticColorSensor rdf:ID="Sick_CS81-P1112"> - <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_30.0"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf> - <OpticReflexSwitch rdf:ID="Sick_WL18-3P430"> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasSkill> - <DetectObject rdf:ID="DetectObject_1"> - <isSkillOf> - <OpticThroughBeamSwitch rdf:ID="Sick_WSWE18-3P430"> - <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"/> - <hasEditable rdf:resource="#isEditable_false"/> </MaxMeasurementRange> - </hasProperty> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_60"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >60.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> </MaxAmbientTemperature> - </hasProperty> - <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_1000"> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf> - <OpticDistanceSensor rdf:ID="Sick_DME5000-112"> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_DME5000-112"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_DME5000-112</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasProperty> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-10"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >-10.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - <isPropertyOf> - <OpticContrastScanner rdf:ID="Sick_KT5W_2P1116D"> - <hasProperty> - <Weight rdf:ID="Weight_0.4"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.4</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf> - <OpticContrastScanner rdf:ID="Sick_KT10-2P1115"> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_KT10-2P1115"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_KT10-2P1115</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasProperty> - <MinVoltageSupply rdf:ID="MinVoltageSupply_10.0"> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >10.0</value> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </MinVoltageSupply> - </hasProperty> - <hasSkill> - <DetectContrast rdf:ID="DetectContrast_1"> - <isSkillOf rdf:resource="#Sick_KT10-2P1115"/> - <isSkillOf rdf:resource="#Sick_KT5W_2P1116D"/> - </DetectContrast> - </hasSkill> - <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorPNP"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >open collector PNP</value> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - </ElectricalInterface> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.00001"> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >1.0E-5</value> - </ResponseTime> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LEDred"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LEDred</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - </LightType> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LEDblue"> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LEDblue</value> - </LightType> - </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> - <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-5Pins"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Connector M12, 5 Pins</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf> - <LightGrid rdf:ID="Sick_MLG2-0280F511"> - <hasProperty> - <MinVoltageSupply rdf:ID="MinVoltageSupply_15"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >15.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - </MinVoltageSupply> - </hasProperty> - <hasSkill> - <DetectObject rdf:ID="DetectObject_15"> - <isSkillOf rdf:resource="#Sick_MLG2-0280F511"/> - </DetectObject> - </hasSkill> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.003"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.0030</value> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - </ResponseTime> - </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_MLG2-0280F511"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_MLG2-0280F511</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_55"> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >55.0</value> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </MaxAmbientTemperature> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LEDinfrared"> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LEDinfrared</value> - </LightType> - </hasProperty> - <hasProperty> - <MaxMeasurementRange rdf:ID="MaxMeasurementRange_5"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.2"/> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasProperty> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-25"> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >-25.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - </MinAmbientTemperature> - </hasProperty> - </LightGrid> - </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </ElectricalInterface> - </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasProperty rdf:resource="#Weight_0.4"/> - <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> - <hasEditable rdf:resource="#isEditable_false"/> - </LightSpotSize> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LEDgreen"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LEDgreen</value> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <hasEditable rdf:resource="#isEditable_false"/> - </LightType> - </hasProperty> - <hasProperty> - <ScanningDistance rdf:ID="ScanningDistance_0.01"> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.01</value> - <hasEditable rdf:resource="#isEditable_false"/> - </ScanningDistance> - </hasProperty> - <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_25000"> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >25000.0</value> - </SwitchingFrequency> - </hasProperty> - </OpticContrastScanner> - </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf> - <rdf:Description rdf:ID="Schunk_MPG_20"> - <hasProperty> - <Repeatability rdf:ID="Repeatability_0.01"> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf> - <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS40B"> - <hasSkill> - <Circular rdf:ID="Circular_29"> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - </Circular> - </hasSkill> - <hasProperty> - <Weight rdf:ID="Weight_40.5"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >40.5</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - </Weight> - </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Staeubli_RS40B"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Staeubli_RS40B</value> - </Identifier> - </hasIdentifier> - <hasProperty> - <DegreesOfFreedom rdf:ID="DegreesOfFreedom_4"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >4</value> - <hasEditable rdf:resource="#isEditable_false"/> - </DegreesOfFreedom> - </hasProperty> - <hasProperty rdf:resource="#TypeOfActuation_Electric"/> - <hasProperty> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_5"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf> - <rdf:Description rdf:ID="Schunk_MPG_64"> - <hasIdentifier> - <Identifier rdf:ID="ID_Schunk_MPG_64"/> - </hasIdentifier> - <hasSkill> - <OpenFingers rdf:ID="OpenFingers_1"> - <isSkillOf rdf:resource="#Schunk_MPG_64"/> - <isSkillOf rdf:resource="#Schunk_MPG_20"/> - </OpenFingers> - </hasSkill> - <hasProperty> - <Payload rdf:ID="Payload_1.0"> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >1.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Payload> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_0.6"> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.6</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - </Weight> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasProperty> - <Repeatability rdf:ID="Repeatability_0.1"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.1</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - </Repeatability> - </hasProperty> - <hasProperty> - <EnclosureRatingIP rdf:ID="EnclosureRatingIP_30"> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >30</value> - </EnclosureRatingIP> - </hasProperty> - <hasProperty> - <Repeatability rdf:ID="Repeatability_0.03"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.03</value> - </Repeatability> - </hasProperty> - <hasProperty> - <EnclosureRatingIP rdf:ID="EnclosureRatingIP_54"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >30</value> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - </EnclosureRatingIP> - </hasProperty> - <hasProperty> - <MaxLiftWay rdf:ID="MaxLiftWay_2.0"> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >2.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxLiftWay> - </hasProperty> - <hasProperty> - <Repeatability rdf:ID="Repeatability_0.02"> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.02</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Repeatability> - </hasProperty> - <hasProperty> - <NumberOfFingers rdf:ID="NumberOfFingers_2"> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >2</value> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - </NumberOfFingers> - </hasProperty> - <hasProperty> - <CycleTime rdf:ID="CycleTime_0.01"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.01</value> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - </CycleTime> - </hasProperty> - <hasSkill> - <CloseFingers rdf:ID="CloseFingers_25"> - <isSkillOf rdf:resource="#Schunk_MPG_20"/> - <isSkillOf rdf:resource="#Schunk_MPG_64"/> - </CloseFingers> - </hasSkill> - <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasProperty> - <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_90"> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >90.0</value> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxAmbientTemperature> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty rdf:resource="#Repeatability_0.01"/> - </rdf:Description> - </isPropertyOf> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.0</value> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - </MinAmbientTemperature> - </hasProperty> - <hasSkill> - <AsFastAsPossible rdf:ID="AsFastAsPossible_28"> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - </AsFastAsPossible> - </hasSkill> - <hasSkill> - <Karthesian rdf:ID="Karthesian_30"> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - </Karthesian> - </hasSkill> - <hasProperty rdf:resource="#EnclosureRatingIP_54"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> - <hasProperty> - <Reachability rdf:ID="Reachability_400"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >400</value> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - </Reachability> - </hasProperty> - <hasProperty rdf:resource="#Repeatability_0.01"/> - <hasProperty rdf:resource="#NumberOfJoints_4"/> - <hasProperty> - <Payload rdf:ID="Payload_2.0"> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >2.0</value> - </Payload> - </hasProperty> - </ScaraRobot> - </isPropertyOf> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.01</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Repeatability> - </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_90"/> - <hasProperty rdf:resource="#MaxLiftWay_2.0"/> - <hasProperty> - <Weight rdf:ID="Weight_0.038"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.038</value> - </Weight> - </hasProperty> - <hasProperty> - <MaxLiftWeight rdf:ID="MaxLiftWeight_0.14"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.14</value> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxLiftWeight> - </hasProperty> - <hasProperty rdf:resource="#Repeatability_0.1"/> - <hasProperty> - <Weight rdf:ID="Weight_0.04"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.04</value> - </Weight> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_985"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >985.0</value> - </Weight> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_98"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >98.0</value> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - </Weight> - </hasProperty> - <hasProperty rdf:resource="#NumberOfFingers_2"/> - <hasProperty> - <Payload rdf:ID="Payload_45.0"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >45.0</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - </Payload> - </hasProperty> - <hasProperty> - <CycleTime rdf:ID="CycleTime_0.03"> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.03</value> - </CycleTime> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasSkill rdf:resource="#OpenFingers_1"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Schunk_MPG_20"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Schunk_MPG_20</value> - <hasEditable> - <isEditable rdf:ID="isEditable_true"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean" - >true</value> - </isEditable> - </hasEditable> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#Repeatability_0.02"/> - <hasProperty> - <Payload rdf:ID="Payload_0.14"> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.14</value> - </Payload> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_51"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >51.0</value> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <hasEditable rdf:resource="#isEditable_false"/> - </Weight> - </hasProperty> - <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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxForce> - </hasProperty> - <hasProperty rdf:resource="#Weight_40.5"/> - <hasProperty rdf:resource="#Payload_2.0"/> - <hasProperty rdf:resource="#Repeatability_0.03"/> - <hasProperty> - <Payload rdf:ID="Payload_5.0"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.0</value> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - </Payload> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_54"/> - <hasProperty rdf:resource="#Weight_0.4"/> - <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasSkill rdf:resource="#CloseFingers_25"/> - <hasProperty rdf:resource="#EnclosureRatingIP_30"/> - </rdf:Description> - </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </Weight> - </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty rdf:resource="#ScanningDistance_0.01"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_KT5W_2P1116D"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_KT5W_2P1116D</value> - </Identifier> - </hasIdentifier> + >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:Class> + <owl:Class rdf:about="#StiffnessOfGripper"> + <owl:disjointWith rdf:resource="#Reach"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#NumberOfClaws"/> + <owl:disjointWith> + <owl:Class rdf:about="#NumberOfMovableClaws"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith> + <owl:Class rdf:about="#NumberOfFingers"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + </owl:Class> + <owl:Class rdf:about="#MechanicalResistance"> + <owl:disjointWith rdf:resource="#PhysicalPropertiesRobot"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#PhysicalInterface"/> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#PowerConsumption"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaxForce"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#Diameter"/> + </owl:Class> + <owl:Class rdf:about="#SmartCamera"> + <owl:disjointWith rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith> + <owl:Class rdf:about="#LaserScanner2D"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#OpticColorSensor"/> + <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: 7</rdfs:comment> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> + <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> + <owl:disjointWith rdf:resource="#LightGrid"/> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> + </owl:Class> + <owl:Class rdf:about="#Flang"> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Extrude"/> + <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith rdf:resource="#Bead"/> + <owl:disjointWith rdf:resource="#Press"/> + <owl:disjointWith> + <owl:Class rdf:about="#True"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Crush"/> + <owl:disjointWith rdf:resource="#Forge"/> + <owl:disjointWith rdf:resource="#Fold"/> + <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> + <owl:disjointWith rdf:resource="#Bend"/> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Deep-Draw"/> + </owl:Class> + <owl:Class rdf:about="#NumberOfMovableClaws"> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#StiffnessOfGripper"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith> + <owl:Class rdf:about="#NumberOfFingers"/> + </owl:disjointWith> + <rdfs:subClassOf> + <owl:Class rdf:about="#PhysicalPropertiesGripper"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#NumberOfClaws"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:disjointWith rdf:resource="#Reach"/> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + </owl:Class> + <owl:Class rdf:about="#Broach"> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <owl:disjointWith rdf:resource="#Saw"/> + <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 rdf:resource="#Cut"/> + <owl:disjointWith rdf:resource="#Plane"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#File"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith> + <owl:Class rdf:about="#Drill"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Thermal-Separate"/> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#Hone"/> + <owl:disjointWith rdf:resource="#Lathe"/> + </owl:Class> + <owl:Class rdf:about="#PhysicalPropertiesGripper"> + <owl:disjointWith rdf:resource="#MechanicalResistance"/> + <owl:disjointWith rdf:resource="#PhysicalInterface"/> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#Width"/> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesRobot"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#PowerConsumption"/> + <owl:disjointWith> + <owl:Class rdf:about="#MaxForce"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#Length"/> + </owl:Class> + <owl:Class rdf:about="#Move"> + <rdfs:subClassOf rdf:resource="#ManipulationAndHandlingFunction"/> + <owl:disjointWith rdf:resource="#Secure"/> + <owl:disjointWith rdf:resource="#ModifyAmount"/> + <owl:disjointWith rdf:resource="#Store"/> + </owl:Class> + <owl:Class rdf:ID="ElasticFingerGripper"> + <rdfs:subClassOf> + <owl:Class rdf:about="#FingerGripper"/> + </rdfs:subClassOf> + <owl:disjointWith> + <owl:Class rdf:ID="JointFingerGripper"/> + </owl:disjointWith> + </owl:Class> + <owl:Class rdf:about="#Geometry"> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> + <owl:disjointWith> + <owl:Class rdf:about="#Cost"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#Arrangement"/> + <owl:disjointWith rdf:resource="#ToolInterface"/> + <owl:disjointWith rdf:resource="#Timing"/> + <owl:disjointWith rdf:resource="#ControlSystem"/> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <owl:disjointWith rdf:resource="#Identifier"/> + <owl:disjointWith rdf:resource="#Communication"/> + </owl:Class> + <owl:Class rdf:about="#ManufacturingFunction"> + <rdfs:subClassOf rdf:resource="#MainFunction"/> + <owl:disjointWith rdf:resource="#SensorFunction"/> + <owl:disjointWith rdf:resource="#ManipulationAndHandlingFunction"/> + </owl:Class> + <owl:Class rdf:about="#Cost"> + <owl:disjointWith rdf:resource="#Identifier"/> + <owl:disjointWith rdf:resource="#Arrangement"/> + <owl:disjointWith rdf:resource="#Geometry"/> + <owl:disjointWith rdf:resource="#Timing"/> + <owl:disjointWith rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#ControlSystem"/> + <owl:disjointWith rdf:resource="#Communication"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in euros</rdfs:comment> + <owl:disjointWith rdf:resource="#QualityCriteria"/> + <rdfs:subClassOf> + <owl:Class rdf:about="#DeviceProperty"/> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#ToolInterface"/> + </owl:Class> + <owl:Class rdf:about="#FingerGripper"> + <owl:disjointWith> + <owl:Class rdf:about="#PincerGripper"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#MagnetGripper"/> + <owl:disjointWith rdf:resource="#VacuumGripper"/> + <rdfs:subClassOf rdf:resource="#Gripper"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#OpenFingers"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + <owl:someValuesFrom rdf:resource="#CloseFingers"/> + </owl:Restriction> + </rdfs:subClassOf> + </owl:Class> + <owl:Class rdf:about="#StorePartlyOrdered"> + <rdfs:subClassOf rdf:resource="#Store"/> + <owl:disjointWith rdf:resource="#StoreUnOrdered"/> + <owl:disjointWith rdf:resource="#StoreInOrder"/> + <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="#MeasureOrientationOfObject"> + <owl:disjointWith rdf:resource="#MeasureArea"/> + <owl:disjointWith rdf:resource="#MeasureForce"/> + <owl:disjointWith rdf:resource="#MeasureSpeed"/> + <rdfs:subClassOf rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#MeasureVolume"/> + <owl:disjointWith rdf:resource="#MeasureMotionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureDistance"/> + <owl:disjointWith rdf:resource="#MeasurePositionOfObject"/> + <owl:disjointWith rdf:resource="#MeasureAcceleration"/> + <owl:disjointWith rdf:resource="#MeasureTemperature"/> + <owl:disjointWith rdf:resource="#MeasureDiameter"/> + <owl:disjointWith rdf:resource="#MeasureTorque"/> + <owl:disjointWith rdf:resource="#MeasureAngle"/> + </owl:Class> + <owl:Class rdf:about="#MagneticSensor"> + <rdfs:subClassOf rdf:resource="#Sensor"/> + <owl:disjointWith rdf:resource="#CapacitveSensor"/> + <owl:disjointWith rdf:resource="#InductiveSensor"/> + <owl:disjointWith rdf:resource="#TactileSensor"/> + <owl:disjointWith rdf:resource="#UltrasonicSensor"/> + <owl:disjointWith rdf:resource="#EncoderSensor"/> + <owl:disjointWith rdf:resource="#TorqueForceSensor"/> + <owl:disjointWith rdf:resource="#OpticSensor"/> + </owl:Class> + <owl:Class rdf:about="#PincerGripper"> + <rdfs:subClassOf rdf:resource="#Gripper"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#CloseClaws"/> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:someValuesFrom rdf:resource="#OpenClaws"/> + <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 rdf:resource="#MagnetGripper"/> + </owl:Class> + <owl:Class rdf:about="#CompoundSkills"> + <rdfs:subClassOf rdf:resource="#Skill"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:onProperty> + <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:maxCardinality> + </owl:Restriction> + </rdfs:subClassOf> + <rdfs:subClassOf> + <owl:Restriction> + <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:maxCardinality> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasSubskill"/> + </owl:onProperty> + </owl:Restriction> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#AdditionalFunction"/> + <owl:disjointWith rdf:resource="#MainFunction"/> + <owl:disjointWith rdf:resource="#DiagnosticFunction"/> + </owl:Class> + <owl:Class rdf:about="#OpticThroughBeamSwitch"> + <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> + <rdfs:subClassOf rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#OpticReflexSwitch"/> + <owl:disjointWith rdf:resource="#OpticProximitySwitch"/> + </owl:Class> + <owl:Class rdf:about="#ElectricalInterface"> + <rdfs:subClassOf rdf:resource="#Communication"/> + <owl:disjointWith> + <owl:Class rdf:about="#BusInterface"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#CommunicationProtocol"/> + </owl:Class> + <owl:Class rdf:about="#Reachability"> + <owl:disjointWith> + <owl:Class rdf:about="#NumberOfJoints"/> + </owl:disjointWith> + <owl:disjointWith rdf:resource="#TypeOfActuation"/> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesRobot"/> + </owl:Class> + <owl:Class rdf:about="#MaxForce"> + <owl:disjointWith rdf:resource="#MaxVoltageSupply"/> + <owl:disjointWith rdf:resource="#Shape"/> + <owl:disjointWith rdf:resource="#MinAmbientTemperature"/> + <owl:disjointWith rdf:resource="#MinVoltageSupply"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesRobot"/> + <owl:disjointWith rdf:resource="#DegreesOfFreedom"/> + <rdfs:subClassOf rdf:resource="#PhysicalProperties"/> + <owl:disjointWith rdf:resource="#EnclosureRatingIP"/> + <owl:disjointWith rdf:resource="#PowerConsumption"/> + <owl:disjointWith rdf:resource="#MaxAmbientTemperature"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesGripper"/> + <owl:disjointWith rdf:resource="#Height"/> + <owl:disjointWith rdf:resource="#PhysicalPropertiesSensor"/> + <owl:disjointWith rdf:resource="#Length"/> + <owl:disjointWith rdf:resource="#Weight"/> + <owl:disjointWith rdf:resource="#Diameter"/> + <owl:disjointWith rdf:resource="#PhysicalInterface"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in Newton</rdfs:comment> + <owl:disjointWith rdf:resource="#MaxCurrentConsumption"/> + <owl:disjointWith rdf:resource="#MechanicalResistance"/> + <owl:disjointWith rdf:resource="#Payload"/> + <owl:disjointWith rdf:resource="#Material"/> + <owl:disjointWith rdf:resource="#Width"/> + </owl:Class> + <owl:Class rdf:about="#Weld"> + <owl:disjointWith rdf:resource="#Clinch"/> + <owl:disjointWith rdf:resource="#Glue"/> + <owl:disjointWith rdf:resource="#Bolt"/> + <rdfs:subClassOf rdf:resource="#Join"/> + <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:disjointWith rdf:resource="#Rivet"/> + <owl:disjointWith rdf:resource="#Fill"/> + <owl:disjointWith rdf:resource="#Assemble"/> + <owl:disjointWith rdf:resource="#Solder"/> + </owl:Class> + <owl:Class rdf:about="#True"> + <owl:disjointWith rdf:resource="#Crush"/> + <owl:disjointWith rdf:resource="#Flang"/> + <owl:disjointWith rdf:resource="#Roll"/> + <owl:disjointWith rdf:resource="#Extrude"/> + <owl:disjointWith rdf:resource="#Fold"/> + <rdfs:subClassOf rdf:resource="#Form"/> + <owl:disjointWith rdf:resource="#Press"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Machine finishing after e.g. folding</rdfs:comment> + <owl:disjointWith rdf:resource="#Bead"/> + <owl:disjointWith rdf:resource="#Stretch-Form"/> + <owl:disjointWith rdf:resource="#Deep-Draw"/> + <owl:disjointWith rdf:resource="#Bend"/> + <owl:disjointWith rdf:resource="#Forge"/> + </owl:Class> + <owl:Class rdf:about="#MaxScanAngle"> + <owl:disjointWith rdf:resource="#ScanningDistance"/> + <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"/> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> + </owl:Class> + <owl:Class rdf:about="#NumberOfFingers"> + <owl:disjointWith rdf:resource="#MaximumVacuum"/> + <owl:disjointWith rdf:resource="#Reach"/> + <owl:disjointWith rdf:resource="#DiameterOfGripper"/> + <owl:disjointWith rdf:resource="#NumberOfMovableClaws"/> + <owl:disjointWith rdf:resource="#InsideOrOutsidePicking"/> + <owl:disjointWith rdf:resource="#MaterialOfGripper"/> + <owl:disjointWith rdf:resource="#TypeOfVacuum"/> + <owl:disjointWith rdf:resource="#ShapeOfClaws"/> + <owl:disjointWith rdf:resource="#TypeOfFingers"/> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesGripper"/> + <owl:disjointWith rdf:resource="#SizeOfGripper"/> + <owl:disjointWith rdf:resource="#StiffnessOfGripper"/> + <owl:disjointWith rdf:resource="#NumberOfClaws"/> + <owl:disjointWith rdf:resource="#MaxLiftWay"/> + <owl:disjointWith rdf:resource="#MaxLiftWeight"/> + <owl:disjointWith rdf:resource="#TypeOfMagnet"/> + </owl:Class> + <owl:Class rdf:about="#SwitchingFrequency"> + <rdfs:subClassOf rdf:resource="#Timing"/> + <owl:disjointWith rdf:resource="#ResponseTime"/> + <owl:disjointWith rdf:resource="#CycleTime"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >in Kilohertz</rdfs:comment> + </owl:Class> + <owl:Class rdf:about="#DeviceProperty"> + <owl:disjointWith rdf:resource="#isEditable"/> + <owl:disjointWith rdf:resource="#SkillProperty"/> + <owl:disjointWith rdf:resource="#Identifier"/> + <rdfs:subClassOf rdf:resource="#Property"/> + </owl:Class> + <owl:Class rdf:about="#BusInterface"> + <rdfs:subClassOf rdf:resource="#Communication"/> + <owl:disjointWith rdf:resource="#CommunicationProtocol"/> + <owl:disjointWith rdf:resource="#ElectricalInterface"/> + </owl:Class> + <owl:Class rdf:about="#Feed"> + <owl:disjointWith rdf:resource="#Turn"/> + <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="#Arrange"/> + <owl:disjointWith rdf:resource="#Pass"/> + <owl:disjointWith rdf:resource="#Orient"/> + <owl:disjointWith rdf:resource="#Displace"/> + <owl:disjointWith rdf:resource="#Convey"/> + <rdfs:subClassOf rdf:resource="#Move"/> + <owl:disjointWith rdf:resource="#Position"/> + <owl:disjointWith rdf:resource="#Pan"/> + </owl:Class> + <owl:Class rdf:about="#NumberOfJoints"> + <owl:disjointWith rdf:resource="#Reachability"/> + <owl:disjointWith rdf:resource="#TypeOfActuation"/> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesRobot"/> + </owl:Class> + <owl:Class rdf:about="#Drill"> + <owl:disjointWith rdf:resource="#Thrust"/> + <owl:disjointWith rdf:resource="#Broach"/> + <owl:disjointWith rdf:resource="#Lathe"/> + <owl:disjointWith rdf:resource="#Plane"/> + <owl:disjointWith rdf:resource="#Grind"/> + <owl:disjointWith rdf:resource="#Cut"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Create a circular whole in the workpiece.</rdfs:comment> + <owl:disjointWith rdf:resource="#Electro-discharge-machine"/> + <rdfs:subClassOf rdf:resource="#Separate"/> + <owl:disjointWith rdf:resource="#Lap"/> + <owl:disjointWith rdf:resource="#Thermal-Separate"/> + <owl:disjointWith rdf:resource="#Mill"/> + <owl:disjointWith rdf:resource="#Saw"/> + <owl:disjointWith rdf:resource="#File"/> + <owl:disjointWith rdf:resource="#Rub"/> + <owl:disjointWith rdf:resource="#Hone"/> + </owl:Class> + <owl:Class rdf:about="#LaserScanner2D"> + <owl:disjointWith rdf:resource="#OpticDistanceSensor"/> + <owl:disjointWith rdf:resource="#OpticLuminescenceScanner"/> + <owl:disjointWith rdf:resource="#OpticColorSensor"/> + <owl:disjointWith rdf:resource="#OpticContrastScanner"/> + <owl:disjointWith rdf:resource="#OpticSwitch"/> + <owl:disjointWith rdf:resource="#VisionSensor"/> + <owl:disjointWith rdf:resource="#SmartCamera"/> + <owl:disjointWith rdf:resource="#LightGrid"/> + <rdfs:subClassOf rdf:resource="#OpticSensor"/> + </owl:Class> + <owl:Class rdf:about="#Assembly"> + <rdfs:subClassOf rdf:resource="#ObjectBase"/> + <rdfs:subClassOf> + <owl:Restriction> + <owl:onProperty> + <owl:ObjectProperty rdf:ID="hasObjectBase"/> + </owl:onProperty> + <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#int" + >1</owl:minCardinality> + </owl:Restriction> + </rdfs:subClassOf> + <owl:disjointWith rdf:resource="#Part"/> + </owl:Class> + <owl:Class rdf:about="#JointFingerGripper"> + <rdfs:subClassOf rdf:resource="#FingerGripper"/> + <owl:disjointWith rdf:resource="#ElasticFingerGripper"/> + </owl:Class> + <owl:Class rdf:about="#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> + <rdfs:subClassOf rdf:resource="#SensorFunction"/> + <owl:disjointWith rdf:resource="#Check"/> + <owl:disjointWith rdf:resource="#ImageAnalysis"/> + <owl:disjointWith rdf:resource="#Measure"/> + <owl:disjointWith rdf:resource="#Classify"/> + <owl:disjointWith rdf:resource="#Scan"/> + <owl:disjointWith rdf:resource="#Detect"/> + </owl:Class> + <owl:Class rdf:about="#CompressImageData"> + <owl:disjointWith rdf:resource="#CalibrateImage"/> + <owl:disjointWith rdf:resource="#ExtractEdges"/> + <owl:disjointWith rdf:resource="#SegmentImage"/> + <owl:disjointWith rdf:resource="#FilterImage"/> + <owl:disjointWith rdf:resource="#TransformImage"/> + <owl:disjointWith rdf:resource="#DecompressImageData"/> + <owl:disjointWith rdf:resource="#BlobAnalysis"/> + <rdfs:subClassOf rdf:resource="#ImageAnalysis"/> + </owl:Class> + <owl:Class rdf:about="#CompoundManipulationAndHandlingFunction"> + <rdfs:subClassOf rdf:resource="#CompoundSkills"/> + <owl:disjointWith rdf:resource="#CompoundManufacturingFunction"/> + <owl:disjointWith rdf:resource="#CompountSensorFunction"/> + </owl:Class> + <owl:Class rdf:about="#Count"> + <rdfs:subClassOf rdf:resource="#Check"/> + <owl:disjointWith rdf:resource="#CheckSurfaceForIrregularities"/> + <owl:disjointWith rdf:resource="#CheckPosition"/> + <owl:disjointWith rdf:resource="#CheckPresence"/> + </owl:Class> + <owl:Class rdf:about="#Karthesian"> + <rdfs:subClassOf rdf:resource="#Feed"/> + <owl:disjointWith rdf:resource="#AsFastAsPossible"/> + <owl:disjointWith rdf:resource="#Circular"/> + </owl:Class> + <owl:Class rdf:about="#FieldOfView"> + <rdfs:subClassOf rdf:resource="#PhysicalPropertiesSensor"/> + <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"/> + <owl:disjointWith rdf:resource="#MaxScanAngle"/> + </owl:Class> + <owl:ObjectProperty rdf:ID="isOperationOf"> + <owl:inverseOf> + <owl:ObjectProperty rdf:about="#hasOperation"/> + </owl:inverseOf> + <rdfs:range rdf:resource="#Task"/> + <rdfs:domain rdf:resource="#Task"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasReference"> + <rdfs:domain> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Workpiece"/> + <owl:Class rdf:about="#Device"/> + </owl:unionOf> + </owl:Class> + </rdfs:domain> + <rdfs:range rdf:resource="#Identifier"/> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >This will be used für referencing devices in the later implementation, e.g. as a URI.</rdfs:comment> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:ID="isSubskillOf"> + <rdfs:range rdf:resource="#CompoundSkills"/> + <rdfs:domain rdf:resource="#CompoundSkills"/> + <owl:inverseOf> + <owl:ObjectProperty rdf:about="#hasSubskill"/> + </owl:inverseOf> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasObjectBase"> + <rdfs:domain> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Assembly"/> + <owl:Class rdf:about="#Workpiece"/> + </owl:unionOf> + </owl:Class> + </rdfs:domain> + <rdfs:range rdf:resource="#ObjectBase"/> + <owl:inverseOf> + <owl:ObjectProperty rdf:ID="isObjectBaseOf"/> + </owl:inverseOf> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasIdentifier"> + <rdfs:domain> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Device"/> + <owl:Class rdf:about="#Workpiece"/> + </owl:unionOf> + </owl:Class> + </rdfs:domain> + <rdfs:range rdf:resource="#Identifier"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isObjectBaseOf"> + <owl:inverseOf rdf:resource="#hasObjectBase"/> + <rdfs:range> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Assembly"/> + <owl:Class rdf:about="#Workpiece"/> + </owl:unionOf> + </owl:Class> + </rdfs:range> + <rdfs:domain rdf:resource="#ObjectBase"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasSubskill"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >To use an ordered list, according to the FAQ, rdf:List has to be added in Range (cf. http://protege.stanford.edu/doc/owl-faq.html#ordered). But it does not work so far.</rdfs:comment> + <owl:inverseOf rdf:resource="#isSubskillOf"/> + <rdfs:domain rdf:resource="#CompoundSkills"/> + <rdfs:range rdf:resource="#CompoundSkills"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasDevice"> + <owl:inverseOf> + <owl:ObjectProperty rdf:ID="isDeviceOf"/> + </owl:inverseOf> + <rdfs:domain rdf:resource="#Atomic"/> + <rdfs:range rdf:resource="#Device"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:ID="isAssemblyOf"> + <owl:inverseOf> + <owl:ObjectProperty rdf:about="#hasAssembly"/> + </owl:inverseOf> + <rdfs:range> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#PhysicalObject"/> + <owl:Class rdf:about="#ObjectBase"/> + </owl:unionOf> + </owl:Class> + </rdfs:range> + <rdfs:domain rdf:resource="#Assembly"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasProperty"> + <owl:inverseOf> + <owl:ObjectProperty rdf:ID="isPropertyOf"/> + </owl:inverseOf> + <rdfs:range rdf:resource="#Property"/> + <rdfs:domain rdf:resource="#Skill"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasWorkpiece"> + <owl:inverseOf> + <owl:ObjectProperty rdf:ID="isWorkpieceOf"/> + </owl:inverseOf> + <rdfs:domain rdf:resource="#Operation"/> + <rdfs:range rdf:resource="#Workpiece"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:ID="isAtomicOperationOf"> + <owl:inverseOf> + <owl:ObjectProperty rdf:about="#hasAtomicOperation"/> + </owl:inverseOf> + <rdfs:range rdf:resource="#Operation"/> + <rdfs:domain rdf:resource="#Atomic"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasAssembly"> + <owl:inverseOf rdf:resource="#isAssemblyOf"/> + <rdfs:domain> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#PhysicalObject"/> + <owl:Class rdf:about="#ObjectBase"/> + </owl:unionOf> + </owl:Class> + </rdfs:domain> + <rdfs:range rdf:resource="#Assembly"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:ID="canBePerformedBy"> + <rdfs:domain rdf:resource="#Task"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasOperation"> + <owl:inverseOf rdf:resource="#isOperationOf"/> + <rdfs:domain rdf:resource="#Task"/> + <rdfs:range rdf:resource="#Task"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isSkillOf"> + <owl:inverseOf> + <owl:ObjectProperty rdf:about="#hasSkill"/> + </owl:inverseOf> + <rdfs:range> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Atomic"/> + <owl:Class rdf:about="#Device"/> + <owl:Class rdf:about="#Skill"/> + </owl:unionOf> + </owl:Class> + </rdfs:range> + <rdfs:domain rdf:resource="#Skill"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isWorkpieceOf"> + <owl:inverseOf rdf:resource="#hasWorkpiece"/> + <rdfs:range rdf:resource="#Operation"/> + <rdfs:domain rdf:resource="#Workpiece"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasGeometry"> + <rdfs:domain rdf:resource="#PhysicalObject"/> + <owl:inverseOf> + <owl:ObjectProperty rdf:ID="isGeometryOf"/> + </owl:inverseOf> + <rdfs:range rdf:resource="#Geometry"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isGeometryOf"> + <owl:inverseOf rdf:resource="#hasGeometry"/> + <rdfs:range rdf:resource="#PhysicalObject"/> + <rdfs:domain rdf:resource="#Geometry"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isDeviceOf"> + <rdfs:domain rdf:resource="#Device"/> + <rdfs:range rdf:resource="#Atomic"/> + <owl:inverseOf rdf:resource="#hasDevice"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#isPropertyOf"> + <rdfs:domain rdf:resource="#Property"/> + <rdfs:range rdf:resource="#Skill"/> + <owl:inverseOf rdf:resource="#hasProperty"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasEditable"> + <rdfs:range rdf:resource="#isEditable"/> + <rdfs:domain rdf:resource="#Property"/> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasSkill"> + <owl:inverseOf rdf:resource="#isSkillOf"/> + <rdfs:domain> + <owl:Class> + <owl:unionOf rdf:parseType="Collection"> + <owl:Class rdf:about="#Device"/> + <owl:Class rdf:about="#Skill"/> + <owl:Class rdf:about="#Atomic"/> + </owl:unionOf> + </owl:Class> + </rdfs:domain> + <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> + </owl:ObjectProperty> + <owl:ObjectProperty rdf:about="#hasAtomicOperation"> + <owl:inverseOf rdf:resource="#isAtomicOperationOf"/> + <rdfs:domain rdf:resource="#Operation"/> + <rdfs:range rdf:resource="#Atomic"/> + </owl:ObjectProperty> + <owl:DatatypeProperty rdf:ID="value"> + <rdfs:domain rdf:resource="#Property"/> + </owl:DatatypeProperty> + <OpticReflexSwitch rdf:ID="Sick_WL18-3P430"> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_30.0"> + <hasEditable> + <isEditable rdf:ID="isEditable_false"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean" + >false</value> + </isEditable> + </hasEditable> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >30.0</value> + <isPropertyOf> + <OpticDistanceSensor rdf:ID="Sick_DT10-P10B5"> + <hasProperty> + <MinMeasurementRange rdf:ID="MinMeasurementRange_0.05"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf> + <OpticProximitySwitch rdf:ID="Sick_WT18-3P430"> + <hasProperty> + <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-4Pins"> + <isPropertyOf> + <SmartCamera rdf:ID="Sick_IVC-2DM1111"> + <hasProperty> + <Length rdf:ID="Length_161"> + <isPropertyOf> + <SmartCamera rdf:ID="Sick_IVC-2DM1122"> + <hasProperty> + <EnclosureRatingIP rdf:ID="EnclosureRatingIP_65"> + <isPropertyOf> + <OpticColorSensor rdf:ID="Sensopart_FL64C"> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_12.0"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >12.0</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf> + <OpticLuminescenceScanner rdf:ID="Sick_LUT3-610"> + <hasProperty> + <SwitchingFrequency rdf:ID="SwitchingFrequency_1500"> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >1500.0</value> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf> + <OpticColorSensor rdf:ID="Sick_CSM1-N1114"> + <hasProperty> + <EnclosureRatingIP rdf:ID="EnclosureRatingIP_67"> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf> + <OpticContrastScanner rdf:ID="Sick_KT10-2P1115"> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.08"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.08</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf> + <SmartCamera rdf:ID="VisionComponents-VC4465"> + <hasSkill> + <Read2DMatrixCode rdf:ID="Read2DMatrixCode_1"> + <isSkillOf rdf:resource="#VisionComponents-VC4465"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </Read2DMatrixCode> + </hasSkill> <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.0012x0.0042"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >0.0012x0.0042</value> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <MinVoltageSupply rdf:ID="MinVoltageSupply_19.2"> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >19.2</value> <hasEditable rdf:resource="#isEditable_false"/> - </LightSpotSize> + </MinVoltageSupply> </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.00005"> + <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" - >5.0E-5</value> + >53.0</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - </ResponseTime> + </Height> </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasSkill rdf:resource="#DetectContrast_1"/> <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_10000"> + <Length rdf:ID="Length_66.25"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >10000.0</value> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - </SwitchingFrequency> + >66.25</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + </Length> </hasProperty> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.13"> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.3"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.13</value> + >0.3</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - </MaxCurrentConsumption> - </hasProperty> - </OpticContrastScanner> - </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - </MinAmbientTemperature> - </hasProperty> - <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.3"> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.3</value> - </MaxCurrentConsumption> - </hasProperty> - <hasProperty> - <BusInterface rdf:ID="BusInterface_Profibus"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Profibus</value> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </BusInterface> - </hasProperty> - <hasProperty> - <LaserClass rdf:ID="LaserClass_2"> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >2</value> - </LaserClass> - </hasProperty> - <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> - <hasEditable rdf:resource="#isEditable_false"/> - </MinVoltageSupply> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_1.6"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >1.6</value> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </Weight> - </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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </Repeatability> - </hasProperty> - <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.13"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.13</value> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </LightSpotSize> - </hasProperty> - <hasProperty rdf:resource="#SwitchingFrequency_1000"/> - <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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </Accuracy> - </hasProperty> - <hasProperty> - <MaxMeasurementRange rdf:ID="MaxMeasurementRange_70"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >70.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty> - <MinMeasurementRange rdf:ID="MinMeasurementRange_0.15"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.15</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </MinMeasurementRange> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LaserRed"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LaserRed</value> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - </LightType> - </hasProperty> - <hasSkill> - <MeasureDistance rdf:ID="MeasureDistance_1"> - <isSkillOf rdf:resource="#Sick_DT10-P10B5"/> - <isSkillOf rdf:resource="#Sick_DME5000-112"/> - </MeasureDistance> - </hasSkill> - </OpticDistanceSensor> - </isPropertyOf> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >1000.0</value> </SwitchingFrequency> - </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_WSWE18-3P430"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_WSWE18-3P430</value> </Identifier> - </hasIdentifier> - <hasProperty> - <MinMeasurementRange rdf:ID="MinMeasurementRange_0"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.0</value> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> </MinMeasurementRange> - </hasProperty> - <hasSkill rdf:resource="#DetectObject_1"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#Weight_0.04"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.055"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.055</value> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> </MaxCurrentConsumption> - </hasProperty> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.0005"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.0E-4</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> </ResponseTime> - </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.450"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.45</value> </LightSpotSize> - </hasProperty> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasProperty> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-40"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >-40.0</value> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <hasEditable rdf:resource="#isEditable_false"/> </MinAmbientTemperature> - </hasProperty> - </OpticThroughBeamSwitch> - </isSkillOf> - <isSkillOf rdf:resource="#Sick_WT18-3P430"/> - <isSkillOf rdf:resource="#Sick_WL18-3P430"/> - </DetectObject> - </hasSkill> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#MinMeasurementRange_0"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_WL18-3P430"> - <hasEditable rdf:resource="#isEditable_false"/> - <value - rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >Sick_WL18-3P430</value> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#ResponseTime_0.0005"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_60"/> - <hasProperty rdf:resource="#MinAmbientTemperature_-40"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.040"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <value - rdf:datatype= - "http://www.w3.org/2001/XMLSchema#float" - >0.04</value> - </LightSpotSize> - </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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxCurrentConsumption> - </hasProperty> - <hasProperty rdf:resource="#MaxMeasurementRange_5"/> - <hasProperty rdf:resource="#Weight_0.04"/> - <hasProperty rdf:resource="#SwitchingFrequency_1000"/> - </OpticReflexSwitch> - </isPropertyOf> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf> + <OpticDistanceSensor rdf:ID="Sick_DME5000-112"> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_DME5000-112"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_DME5000-112</value> + </Identifier> + </hasIdentifier> + <hasProperty> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-10"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >-10.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf> + <OpticColorSensor rdf:ID="Sick_CS81-P1112"> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty> + <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorPNP"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >open collector PNP</value> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf> + <OpticThroughBeamSwitch rdf:ID="Sick_WSWE18-3P430"> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_20"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >20.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </MaxMeasurementRange> + </hasProperty> + <hasProperty> + <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_60"> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >60.0</value> + </MaxAmbientTemperature> + </hasProperty> + <hasProperty> + <SwitchingFrequency rdf:ID="SwitchingFrequency_1000"> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >1000.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </SwitchingFrequency> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_WSWE18-3P430"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Sick_WSWE18-3P430</value> + </Identifier> + </hasIdentifier> + <hasProperty> + <MinMeasurementRange rdf:ID="MinMeasurementRange_0"> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </MinMeasurementRange> + </hasProperty> + <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> + <LightType rdf:ID="LightType_LEDred"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >LEDred</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </LightType> + </hasProperty> + <hasProperty> + <Weight rdf:ID="Weight_0.04"> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf> + <rdf:Description rdf:ID="Schunk_MPG_20"> + <hasProperty> + <Repeatability rdf:ID="Repeatability_0.01"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.01</value> + <isPropertyOf> + <rdf:Description rdf:ID="Schunk_MPG_64"> + <hasIdentifier> + <Identifier rdf:ID="ID_Schunk_MPG_64"/> + </hasIdentifier> + <hasSkill> + <OpenFingers rdf:ID="OpenFingers_1"> + <isSkillOf rdf:resource="#Schunk_MPG_20"/> + <isSkillOf rdf:resource="#Schunk_MPG_64"/> + </OpenFingers> + </hasSkill> + <hasProperty> + <Payload rdf:ID="Payload_1.0"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >1.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + </Payload> + </hasProperty> + <hasProperty> + <Weight rdf:ID="Weight_0.6"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.6</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + </Weight> + </hasProperty> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <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> + <TypeOfActuation rdf:ID="TypeOfActuation_Electric"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Electric</value> + <isPropertyOf> + <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS80"> + <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> + <ScaraRobot rdf:ID="ScaraRobot_Staeubli_RS40B"> + <hasSkill> + <Circular rdf:ID="Circular_29"> + <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isSkillOf> + <ArticulatedRobot rdf:ID="ArticulatedRobot_ABB_IRB-140"> + <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 rdf:resource="#MaxAmbientTemperature_40"/> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.005"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.0050</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + </ResponseTime> + </hasProperty> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_24"> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >24.0</value> + </MaxVoltageSupply> + </hasProperty> + <hasProperty> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_0"> + <rdfs:comment rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >in degrees celsius</rdfs:comment> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf> + <LaserScanner2D rdf:ID="Sick_LMS200-30106"> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.026"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >30.0</value> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - </MaxVoltageSupply> + >0.026</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </ResponseTime> </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> - <hasProperty rdf:resource="#Weight_0.4"/> + <hasSkill> + <MeasureVolume rdf:ID="MeasureVolume_1"> + <isSkillOf rdf:resource="#Sick_LMS200-30106"/> + </MeasureVolume> + </hasSkill> <hasProperty> - <ScanningDistance rdf:ID="ScanningDistance_0.0125"> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_50"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >0.0125</value> + >50.0</value> <hasEditable rdf:resource="#isEditable_false"/> - </ScanningDistance> + <rdfs:comment + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >in degrees celsius</rdfs:comment> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </MaxAmbientTemperature> </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> <hasSkill> - <DetectColor rdf:ID="DetectColor_1"> - <isSkillOf rdf:resource="#Sick_CSM1-N1114"/> - <isSkillOf rdf:resource="#Sick_CS81-P1112"/> - </DetectColor> + <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 rdf:resource="#LightType_LEDgreen"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.004x0.002"> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <LaserClass rdf:ID="LaserClass_1"> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#string" - >0.004x0.002</value> - </LightSpotSize> + >1</value> + </LaserClass> + </hasProperty> + <hasProperty> + <PowerConsumption rdf:ID="PowerConsumption_20"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >20.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </PowerConsumption> + </hasProperty> + <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> + <MeasureDistance rdf:ID="MeasureDistance_2"> + <isSkillOf rdf:resource="#Sick_LMS200-30106"/> + </MeasureDistance> + </hasSkill> + <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> + <hasEditable rdf:resource="#isEditable_false"/> + </Weight> + </hasProperty> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_20.4"> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >20.4</value> + <hasEditable rdf:resource="#isEditable_false"/> + </MinVoltageSupply> + </hasProperty> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_80"> + <hasEditable rdf:resource="#isEditable_false"/> + <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"/> + <hasSkill> + <Scan rdf:ID="Scan_2D"> + <isSkillOf rdf:resource="#Sick_LMS200-30106"/> + </Scan> + </hasSkill> + <hasProperty> + <Resolution rdf:ID="AngleResolution_0.5"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.5</value> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </Resolution> </hasProperty> - <hasProperty rdf:resource="#LightType_LEDblue"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> <hasIdentifier> - <Identifier rdf:ID="ID_Sick_CS81-P1112"> + <Identifier rdf:ID="ID_Sick_LMS200-30106"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#string" - >Sick_CS81-P1112</value> + >Sick_LMS200-30106</value> <hasEditable rdf:resource="#isEditable_false"/> </Identifier> </hasIdentifier> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - </OpticColorSensor> + <hasSkill> + <DetectCollision rdf:ID="DetectCollision_1"> + <isSkillOf rdf:resource="#Sick_LMS200-30106"/> + </DetectCollision> + </hasSkill> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_27.6"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >27.6</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </MaxVoltageSupply> + </hasProperty> + <hasSkill> + <ClassifyObject rdf:ID="ClassifyObject_2"> + <isSkillOf rdf:resource="#Sick_LMS200-30106"/> + </ClassifyObject> + </hasSkill> + <hasProperty> + <Resolution rdf:ID="DepthResolution_0.01"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.01</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + </Resolution> + </hasProperty> + <hasProperty> + <MaxScanAngle rdf:ID="MaxScanAngle_180"> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >180.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxScanAngle> + </hasProperty> + <hasProperty rdf:resource="#MinAmbientTemperature_0"/> + </LaserScanner2D> </isPropertyOf> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </MaxCurrentConsumption> - </hasProperty> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.3"/> - <hasProperty> - <Length rdf:ID="Length_120"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >120.0</value> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <hasEditable rdf:resource="#isEditable_false"/> - </Length> - </hasProperty> - <hasProperty> - <Resolution rdf:ID="Resolution_800x600"> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >800x600</value> - </Resolution> - </hasProperty> - <hasProperty> - <Height rdf:ID="Height_43"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >43.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - </Height> - </hasProperty> - <hasSkill> - <ReadOpticalCharacters rdf:ID="ReadOpticalCharacters_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#VisionComponents-VC4465"/> - </ReadOpticalCharacters> - </hasSkill> - <hasSkill> - <ReadBarCode rdf:ID="ReadBarCode_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#VisionComponents-VC4465"/> - </ReadBarCode> - </hasSkill> - <hasProperty rdf:resource="#BusInterface_FastEthernet"/> - <hasProperty> - <Length rdf:ID="Length_30.4"> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >30.4</value> - </Length> + >0.0</value> + </MinAmbientTemperature> </hasProperty> <hasIdentifier> - <Identifier rdf:ID="ID_VisionComponents-VC4465"> + <Identifier rdf:ID="ID_Sick_CVS2-P112"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >VisionComponents-VC4465</value> + >Sick_CVS2-P112</value> </Identifier> </hasIdentifier> - <hasSkill> - <DetectColor rdf:ID="DetectColor_3"> - <isSkillOf rdf:resource="#Sensopart_FL64C"/> - <isSkillOf rdf:resource="#VisionComponents-VC4465"/> - </DetectColor> - </hasSkill> <hasProperty> - <Weight rdf:ID="Weight_0.25"> + <ScanningDistance rdf:ID="ScanningDistance_0.24"> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.25</value> - </Weight> + >0.24</value> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + </ScanningDistance> </hasProperty> <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.06"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.06</value> + <LightType rdf:ID="LightType_LEDwhite"> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - </MaxCurrentConsumption> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >LEDwhite</value> + </LightType> </hasProperty> <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_28.8"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >28.8</value> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <FieldOfView rdf:ID="FieldOfView_50x60"> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> <hasEditable rdf:resource="#isEditable_false"/> - </MaxVoltageSupply> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >50x60</value> + </FieldOfView> </hasProperty> <hasProperty> - <Height rdf:ID="Height_50"> + <Weight rdf:ID="Weight_0.18"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.18</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + </Weight> + </hasProperty> + <hasProperty rdf:resource="#MinVoltageSupply_12.0"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasSkill> + <SortObjects rdf:ID="SortObjectColor_15"> + <isSkillOf rdf:resource="#Sick_CVS2-P112"/> + </SortObjects> + </hasSkill> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.2"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >50.0</value> - </Height> + >0.2</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf> + <LightGrid rdf:ID="Sick_MLG2-0280F511"> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_15"> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >15.0</value> + </MinVoltageSupply> + </hasProperty> + <hasSkill> + <DetectObject rdf:ID="DetectObject_15"> + <isSkillOf rdf:resource="#Sick_MLG2-0280F511"/> + </DetectObject> + </hasSkill> + <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"/> + <isPropertyOf> + <OpticContrastScanner rdf:ID="Sick_KT5W_2P1116D"> + <hasProperty> + <Weight rdf:ID="Weight_0.4"> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.4</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <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="#MinAmbientTemperature_-10"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty> + <ScanningDistance rdf:ID="ScanningDistance_0.01"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.01</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + </ScanningDistance> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_KT5W_2P1116D"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Sick_KT5W_2P1116D</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.0012x0.0042"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >0.0012x0.0042</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.00005"> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >5.0E-5</value> + </ResponseTime> + </hasProperty> + <hasProperty> + <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_55"> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >55.0</value> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </MaxAmbientTemperature> + </hasProperty> + <hasSkill> + <DetectContrast rdf:ID="DetectContrast_1"> + <isSkillOf rdf:resource="#Sick_KT5W_2P1116D"/> + <isSkillOf rdf:resource="#Sick_KT10-2P1115"/> + </DetectContrast> + </hasSkill> + <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> + <hasEditable rdf:resource="#isEditable_false"/> + </SwitchingFrequency> + </hasProperty> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.13"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.13</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + </MaxCurrentConsumption> + </hasProperty> + </OpticContrastScanner> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Connector M12, 5 Pins</value> + <hasEditable rdf:resource="#isEditable_false"/> + </ElectricalInterface> + </hasProperty> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.003"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.0030</value> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <hasEditable rdf:resource="#isEditable_false"/> + </ResponseTime> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_MLG2-0280F511"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Sick_MLG2-0280F511</value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty> + <LightType rdf:ID="LightType_LEDinfrared"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >LEDinfrared</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + </LightType> + </hasProperty> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_5"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >5.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + </MaxMeasurementRange> + </hasProperty> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.2"/> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <hasProperty> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-25"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >-25.0</value> + </MinAmbientTemperature> + </hasProperty> + </LightGrid> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + </MaxCurrentConsumption> </hasProperty> <hasProperty> - <BusInterface rdf:ID="BusInterface_RS232"> + <Resolution rdf:ID="Resolution_208x238"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >RS232</value> - <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + >208x238</value> <hasEditable rdf:resource="#isEditable_false"/> - </BusInterface> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + </Resolution> </hasProperty> - </SmartCamera> + </VisionSensor> </isPropertyOf> - </BusInterface> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >40.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxAmbientTemperature> </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasSkill> - <ClassifyObject rdf:ID="ClassifyObject_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - </ClassifyObject> - </hasSkill> <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_30fps"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >30.0</value> + <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"/> + <hasEditable rdf:resource="#isEditable_false"/> + </PowerConsumption> + </hasProperty> + <hasProperty rdf:resource="#TypeOfActuation_Electric"/> + <hasSkill rdf:resource="#Circular_29"/> + <hasProperty> + <Reachability rdf:ID="Reachability_810"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >810</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + </Reachability> + </hasProperty> + <hasProperty> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_5"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >5.0</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + </MinAmbientTemperature> + </hasProperty> + <hasProperty> + <Payload rdf:ID="Payload_5.0"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >5.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </Payload> + </hasProperty> + <hasProperty rdf:resource="#NumberOfJoints_4"/> + <hasProperty> + <Reachability rdf:ID="Reachability_800"> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - </SwitchingFrequency> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >800</value> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + </Reachability> </hasProperty> <hasProperty> - <MinMeasurementRange rdf:ID="MinMeasurementRange_0.10"> + <DegreesOfFreedom rdf:ID="DegreesOfFreedom_6"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >6</value> + </DegreesOfFreedom> + </hasProperty> + <hasProperty> + <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_45"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.1</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - </MinMeasurementRange> + >45.0</value> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + </MaxAmbientTemperature> </hasProperty> <hasProperty> - <Resolution rdf:ID="Resolution_640x480"> + <Reachability rdf:ID="Reachability_400"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >400</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >640x480</value> - </Resolution> + </Reachability> + </hasProperty> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty> + <Reachability rdf:ID="Reachability_1960"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >1960</value> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + </Reachability> </hasProperty> <hasSkill> - <MeasureArea rdf:ID="MeasureArea_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - </MeasureArea> + <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> - <hasSkill rdf:resource="#Count_1"/> <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-8Pins"> + <IntelligentCtrl rdf:ID="IntelligentCtrl_1"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >yes</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <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> + <hasIdentifier> + <Identifier rdf:ID="ID_ABB_IRB-140"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Connector M12, 8 Pins</value> - </ElectricalInterface> + ></value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_200"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >200.0</value> + </MinVoltageSupply> + </hasProperty> + <hasProperty> + <DegreesOfFreedom rdf:ID="DegreesOfFreedom_4"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >4</value> + </DegreesOfFreedom> </hasProperty> - <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> <hasProperty> - <Width rdf:ID="Width_60"> + <Repeatability rdf:ID="Repeatability_0.03"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >60.0</value> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + >0.03</value> <hasEditable rdf:resource="#isEditable_false"/> - </Width> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + </Repeatability> + </hasProperty> + <hasProperty> + <NumberOfJoints rdf:ID="NumberOfJoints_6"> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" + >6</value> + </NumberOfJoints> + </hasProperty> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_600"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >600.0</value> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxVoltageSupply> </hasProperty> - <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> <hasSkill> - <CheckPresence rdf:ID="CheckPresence_1"> - <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> - <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> - </CheckPresence> + <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> - </SmartCamera> - </isPropertyOf> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Connector M12, 4 Pins</value> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - </ElectricalInterface> - </hasProperty> - <hasProperty rdf:resource="#Weight_0.04"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + </ArticulatedRobot> + </isSkillOf> + <isSkillOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <isSkillOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + </Circular> + </hasSkill> <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.015"> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <Weight rdf:ID="Weight_40.5"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.015</value> - </LightSpotSize> - </hasProperty> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.0007"> + >40.5</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >7.0E-4</value> - </ResponseTime> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </Weight> </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <hasSkill rdf:resource="#DetectObject_1"/> - <hasProperty> - <MaxMeasurementRange rdf:ID="MaxMeasurementRange_0.6"> + <hasIdentifier> + <Identifier rdf:ID="ID_Staeubli_RS40B"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Staeubli_RS40B</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.6</value> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty rdf:resource="#MinMeasurementRange_0.05"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_60"/> - <hasProperty rdf:resource="#MinAmbientTemperature_-40"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#DegreesOfFreedom_4"/> + <hasProperty rdf:resource="#TypeOfActuation_Electric"/> + <hasProperty rdf:resource="#MinAmbientTemperature_5"/> <hasProperty> - <SwitchingFrequency rdf:ID="SwitchingFrequency_700"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >700.0</value> + <EnclosureRatingIP rdf:ID="EnclosureRatingIP_54"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >30</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - </SwitchingFrequency> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <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> + <hasSkill rdf:resource="#AsFastAsPossible_28"/> + <hasSkill rdf:resource="#Karthesian_30"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> + <hasProperty rdf:resource="#Reachability_400"/> + <hasProperty rdf:resource="#Repeatability_0.01"/> + <hasProperty rdf:resource="#NumberOfJoints_4"/> <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.04"> + <Payload rdf:ID="Payload_2.0"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.04</value> + >2.0</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - </MaxCurrentConsumption> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </Payload> </hasProperty> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_WT18-3P430"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_WT18-3P430</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - </OpticProximitySwitch> + </ScaraRobot> </isPropertyOf> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.05</value> - </MinMeasurementRange> - </hasProperty> - <hasProperty> - <PowerConsumption rdf:ID="PowerConsumption_1.2"> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >1.2</value> - </PowerConsumption> - </hasProperty> - <hasSkill rdf:resource="#MeasureDistance_1"/> - <hasProperty rdf:resource="#SwitchingFrequency_1000"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.02"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.02</value> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </LightSpotSize> + </NumberOfJoints> </hasProperty> <hasProperty> - <Accuracy rdf:ID="Accuracy_0.003"> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <Weight rdf:ID="Weight_51"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.0030</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Accuracy> - </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> - <hasProperty rdf:resource="#Weight_0.04"/> - <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.02"> + >51.0</value> <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.02</value> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </ResponseTime> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + </Weight> </hasProperty> + <hasProperty rdf:resource="#TypeOfActuation_Electric"/> + <hasProperty rdf:resource="#Reachability_800"/> <hasIdentifier> - <Identifier rdf:ID="ID_Sick_DT10-P10B5"> - <hasEditable rdf:resource="#isEditable_false"/> + <Identifier rdf:ID="ID_Staeubli_RS80"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_DT10-P10B5</value> + >Staeubli_RS80</value> + <hasEditable rdf:resource="#isEditable_false"/> </Identifier> </hasIdentifier> - <hasProperty> - <Repeatability rdf:ID="Repeatability_0.003"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.0030</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </Repeatability> - </hasProperty> - <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_AnalogueOutput4-20mA"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >4...20 mA</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> - </ElectricalInterface> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> - <hasProperty rdf:resource="#MinAmbientTemperature_-25"/> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <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"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxMeasurementRange> - </hasProperty> - <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> - </OpticDistanceSensor> + <hasProperty rdf:resource="#Payload_2.0"/> + <hasProperty rdf:resource="#EnclosureRatingIP_54"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> + <hasSkill rdf:resource="#Karthesian_30"/> + <hasSkill rdf:resource="#Circular_29"/> + <hasProperty rdf:resource="#MinAmbientTemperature_5"/> + <hasProperty rdf:resource="#Repeatability_0.01"/> + <hasSkill rdf:resource="#AsFastAsPossible_28"/> + </ScaraRobot> </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >67</value> - <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> - <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - </EnclosureRatingIP> - </hasProperty> - <hasProperty rdf:resource="#ResponseTime_0.0005"/> - <hasProperty rdf:resource="#SwitchingFrequency_1500"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasProperty rdf:resource="#LightType_LEDred"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasProperty> - <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.035"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.035</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - </MaxCurrentConsumption> + </TypeOfActuation> </hasProperty> - <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.0015x0.0065"> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_45"/> + <hasProperty rdf:resource="#IntelligentCtrl_1"/> + <hasSkill rdf:resource="#Karthesian_30"/> + <hasProperty rdf:resource="#MinVoltageSupply_200"/> + <hasProperty rdf:resource="#MinAmbientTemperature_5"/> + <hasIdentifier> + <Identifier rdf:ID="ID_ABB_IRB-4400"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >0.0015x0.0065</value> - </LightSpotSize> - </hasProperty> - <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> - <hasProperty rdf:resource="#LightType_LEDblue"/> + ></value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#EnclosureRatingIP_54"/> + <hasProperty rdf:resource="#Reachability_1960"/> + <hasProperty rdf:resource="#DegreesOfFreedom_6"/> + <hasProperty rdf:resource="#Repeatability_0.1"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> + <hasProperty rdf:resource="#Reachability_400"/> + <hasProperty rdf:resource="#DegreesOfFreedom_4"/> + <hasSkill rdf:resource="#AsFastAsPossible_28"/> <hasProperty> - <Weight rdf:ID="Weight_0.011"> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <Weight rdf:ID="Weight_985"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.011</value> + >985.0</value> <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> </Weight> </hasProperty> - <hasProperty rdf:resource="#LightType_LEDgreen"/> - <hasProperty rdf:resource="#ScanningDistance_0.0125"/> - <hasSkill rdf:resource="#DetectColor_1"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_CSM1-N1114"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_CSM1-N1114</value> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> - <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> + <hasProperty rdf:resource="#NumberOfJoints_6"/> + <hasSkill rdf:resource="#Circular_29"/> + <hasProperty rdf:resource="#MaxVoltageSupply_600"/> + <hasProperty rdf:resource="#NumberOfJoints_4"/> + <hasProperty rdf:resource="#Reachability_800"/> <hasProperty> - <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorNPN"> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >open collector NPN</value> + <Payload rdf:ID="Payload_45.0"> <hasEditable rdf:resource="#isEditable_false"/> - </ElectricalInterface> - </hasProperty> </OpticColorSensor> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >45.0</value> + </Payload> + </hasProperty> </ArticulatedRobot> </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >1500.0</value> - </SwitchingFrequency> + >0.1</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Repeatability> </hasProperty> - <hasProperty rdf:resource="#ScanningDistance_0.01"/> - <hasSkill> - <DetectLuminescence rdf:ID="DetectLuminescence_1"> - <isSkillOf rdf:resource="#Sick_LUT3-610"/> - </DetectLuminescence> - </hasSkill> <hasProperty> - <LightSpotSize rdf:ID="LightSpotSize_0.002x0.006"> + <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" - >0.002x0.006</value> + >30</value> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - </LightSpotSize> + </EnclosureRatingIP> </hasProperty> + <hasProperty rdf:resource="#Repeatability_0.03"/> + <hasProperty rdf:resource="#EnclosureRatingIP_54"/> <hasProperty> - <LightType rdf:ID="LightType_UV"> + <MaxLiftWay rdf:ID="MaxLiftWay_2.0"> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >UV</value> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> - </LightType> + "http://www.w3.org/2001/XMLSchema#float" + >2.0</value> + </MaxLiftWay> </hasProperty> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_LUT3-610"> + <hasProperty> + <Repeatability rdf:ID="Repeatability_0.02"> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.02</value> + </Repeatability> + </hasProperty> + <hasProperty> + <NumberOfFingers rdf:ID="NumberOfFingers_2"> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#string" - >Sick_LUT3-610</value> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty rdf:resource="#MinVoltageSupply_12.0"/> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/> - <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> - <hasProperty rdf:resource="#Weight_0.4"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + >2</value> + </NumberOfFingers> + </hasProperty> + <hasProperty> + <CycleTime rdf:ID="CycleTime_0.01"> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.01</value> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + </CycleTime> + </hasProperty> + <hasSkill> + <CloseFingers rdf:ID="CloseFingers_25"> + <isSkillOf rdf:resource="#Schunk_MPG_64"/> + <isSkillOf rdf:resource="#Schunk_MPG_20"/> + </CloseFingers> + </hasSkill> + <hasProperty rdf:resource="#MinAmbientTemperature_5"/> <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.0003"> - <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <MaxAmbientTemperature rdf:ID="MaxAmbientTemperature_90"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >3.0E-4</value> + >90.0</value> <hasEditable rdf:resource="#isEditable_false"/> - </ResponseTime> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </MaxAmbientTemperature> </hasProperty> - </OpticLuminescenceScanner> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty rdf:resource="#Repeatability_0.01"/> + </rdf:Description> </isPropertyOf> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </MinVoltageSupply> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> + <hasEditable rdf:resource="#isEditable_false"/> + </Repeatability> </hasProperty> - <hasProperty rdf:resource="#Height_53"/> - <hasProperty rdf:resource="#Weight_0.4"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_90"/> + <hasProperty rdf:resource="#MaxLiftWay_2.0"/> <hasProperty> - <ResponseTime rdf:ID="ResponseTime_0.0009"> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <Weight rdf:ID="Weight_0.038"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >9.0E-4</value> - </ResponseTime> + >0.038</value> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </Weight> </hasProperty> - <hasProperty rdf:resource="#ResponseTime_0.0007"/> <hasProperty> - <Width rdf:ID="Width_80"> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - <hasEditable rdf:resource="#isEditable_false"/> + <MaxLiftWeight rdf:ID="MaxLiftWeight_0.14"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >80.0</value> - </Width> + >0.14</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </MaxLiftWeight> </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty rdf:resource="#Repeatability_0.1"/> + <hasProperty rdf:resource="#Weight_0.04"/> + <hasProperty rdf:resource="#Weight_985"/> <hasProperty> - <LightType rdf:ID="LightType_LED"> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <Weight rdf:ID="Weight_98"> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >LED</value> + "http://www.w3.org/2001/XMLSchema#float" + >98.0</value> + </Weight> + </hasProperty> + <hasProperty rdf:resource="#NumberOfFingers_2"/> + <hasProperty rdf:resource="#Payload_45.0"/> + <hasProperty> + <CycleTime rdf:ID="CycleTime_0.03"> <hasEditable rdf:resource="#isEditable_false"/> - </LightType> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >0.03</value> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </CycleTime> </hasProperty> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasSkill rdf:resource="#OpenFingers_1"/> <hasIdentifier> - <Identifier rdf:ID="ID_Sensopart_FL64C"> - <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >Sensopart_FL64C</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/> - <hasProperty> - <Material rdf:ID="Material_Polycarbonat"> + <Identifier rdf:ID="ID_Schunk_MPG_20"> + <hasEditable> + <isEditable rdf:ID="isEditable_true"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#boolean" + >true</value> + </isEditable> + </hasEditable> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#string" - >Polycarbonat</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </Material> - </hasProperty> - <hasProperty rdf:resource="#EnclosureRatingIP_65"/> - <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> - <hasProperty rdf:resource="#Height_43"/> + >Schunk_MPG_20</value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#Repeatability_0.02"/> <hasProperty> - <Width rdf:ID="Width_12"> + <Payload rdf:ID="Payload_0.14"> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >12.0</value> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </Width> + >0.14</value> + </Payload> </hasProperty> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/> - <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <hasProperty rdf:resource="#Weight_51"/> <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_26.4"> - <hasEditable rdf:resource="#isEditable_false"/> + <MaxForce rdf:ID="MaximumForce_24"> <value rdf:datatype= "http://www.w3.org/2001/XMLSchema#float" - >26.4</value> - <isPropertyOf rdf:resource="#Sensopart_FL64C"/> - </MaxVoltageSupply> + >24.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + </MaxForce> </hasProperty> - <hasSkill rdf:resource="#DetectColor_3"/> + <hasProperty rdf:resource="#Weight_40.5"/> + <hasProperty rdf:resource="#Payload_2.0"/> + <hasProperty rdf:resource="#Repeatability_0.03"/> + <hasProperty rdf:resource="#Payload_5.0"/> + <hasProperty rdf:resource="#EnclosureRatingIP_54"/> + <hasProperty rdf:resource="#Weight_0.4"/> <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasProperty rdf:resource="#Length_66.25"/> - </OpticColorSensor> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <hasSkill rdf:resource="#CloseFingers_25"/> + <hasProperty rdf:resource="#EnclosureRatingIP_30"/> + </rdf:Description> </isPropertyOf> + <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> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> - <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </Weight> + </hasProperty> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_10.0"> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >65</value> - <isPropertyOf rdf:resource="#Schunk_MPG_64"/> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> - <isPropertyOf rdf:resource="#Schunk_MPG_20"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - </EnclosureRatingIP> + "http://www.w3.org/2001/XMLSchema#float" + >10.0</value> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + </MinVoltageSupply> </hasProperty> - <hasProperty rdf:resource="#MaxMeasurementRange_1"/> - <hasSkill rdf:resource="#ReadOpticalCharacters_1"/> - <hasSkill rdf:resource="#Read2DMatrixCode_1"/> - <hasSkill rdf:resource="#MeasureDiameter_1"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> - <hasSkill rdf:resource="#CheckPresence_1"/> - <hasProperty rdf:resource="#MinMeasurementRange_0.10"/> - <hasSkill rdf:resource="#MeasureArea_1"/> - <hasProperty rdf:resource="#MinAmbientTemperature_0"/> - <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-8Pins"/> - <hasProperty rdf:resource="#Width_60"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> <hasProperty> - <Resolution rdf:ID="Resolution_1024x768"> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.055"> + <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >1024x768</value> + "http://www.w3.org/2001/XMLSchema#float" + >0.055</value> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </MaxCurrentConsumption> + </hasProperty> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.0005"> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> - </Resolution> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >5.0E-4</value> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </ResponseTime> </hasProperty> - <hasSkill rdf:resource="#MeasureAngle_1"/> - <hasProperty rdf:resource="#Height_55"/> - <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> - <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.4"/> - <hasProperty rdf:resource="#Length_161"/> - <hasSkill rdf:resource="#DeterminePositionOfObject_1"/> - <hasProperty rdf:resource="#Weight_0.5"/> - <hasProperty rdf:resource="#IntelligentCtrl_1"/> - <hasSkill rdf:resource="#CheckPosition_1"/> - <hasProperty rdf:resource="#BusInterface_RS485"/> - <hasProperty rdf:resource="#BusInterface_FastEthernet"/> - <hasSkill rdf:resource="#ClassifyObject_1"/> - <hasProperty rdf:resource="#SwitchingFrequency_30fps"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Sick_IVC-2DM1122"> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.450"> + <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype= - "http://www.w3.org/2001/XMLSchema#string" - >Sick_IVC-2DM1122</value> + "http://www.w3.org/2001/XMLSchema#float" + >0.45</value> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <hasProperty> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-40"> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >-40.0</value> <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasSkill rdf:resource="#MeasureOrientationOfObject_1"/> - <hasSkill rdf:resource="#Count_1"/> - <hasSkill rdf:resource="#ReadBarCode_1"/> - </SmartCamera> + </MinAmbientTemperature> + </hasProperty> + </OpticThroughBeamSwitch> </isPropertyOf> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> <hasEditable rdf:resource="#isEditable_false"/> - </IntelligentCtrl> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + </ElectricalInterface> </hasProperty> - <hasSkill rdf:resource="#Karthesian_30"/> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> + <hasProperty rdf:resource="#Weight_0.4"/> <hasProperty> - <MinVoltageSupply rdf:ID="MinVoltageSupply_200"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >200.0</value> + <ScanningDistance rdf:ID="ScanningDistance_0.0125"> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - </MinVoltageSupply> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.0125</value> + </ScanningDistance> </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasIdentifier> - <Identifier rdf:ID="ID_ABB_IRB-4400"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - ></value> - <hasEditable rdf:resource="#isEditable_false"/> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#EnclosureRatingIP_54"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> + <hasSkill> + <DetectColor rdf:ID="DetectColor_1"> + <isSkillOf rdf:resource="#Sick_CS81-P1112"/> + <isSkillOf rdf:resource="#Sick_CSM1-N1114"/> + </DetectColor> + </hasSkill> <hasProperty> - <Reachability rdf:ID="Reachability_1960"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> + <LightType rdf:ID="LightType_LEDgreen"> + <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" + >LEDgreen</value> <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >1960</value> - </Reachability> - </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-4400"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - </DegreesOfFreedom> + </LightType> </hasProperty> - <hasProperty rdf:resource="#Repeatability_0.1"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> - <hasProperty rdf:resource="#Reachability_400"/> - <hasSkill rdf:resource="#AsFastAsPossible_28"/> - <hasProperty rdf:resource="#DegreesOfFreedom_4"/> - <hasProperty rdf:resource="#Weight_985"/> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> <hasProperty> - <NumberOfJoints rdf:ID="NumberOfJoints_6"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >6</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <LightSpotSize rdf:ID="LightSpotSize_0.004x0.002"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >0.004x0.002</value> <hasEditable rdf:resource="#isEditable_false"/> - </NumberOfJoints> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + </LightSpotSize> </hasProperty> - <hasSkill rdf:resource="#Circular_29"/> <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_600"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >600.0</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <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> <hasEditable rdf:resource="#isEditable_false"/> - </MaxVoltageSupply> + </LightType> </hasProperty> - <hasProperty rdf:resource="#NumberOfJoints_4"/> - <hasProperty> - <Reachability rdf:ID="Reachability_800"> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >800</value> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_CS81-P1112"> <hasEditable rdf:resource="#isEditable_false"/> - </Reachability> - </hasProperty> - <hasProperty rdf:resource="#Payload_45.0"/> - </ArticulatedRobot> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_CS81-P1112</value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + </OpticColorSensor> </isPropertyOf> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - </TypeOfActuation> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </MinAmbientTemperature> </hasProperty> - <hasSkill rdf:resource="#Circular_29"/> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.3"/> <hasProperty> - <Reachability rdf:ID="Reachability_810"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#integer" - >810</value> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> + <BusInterface rdf:ID="BusInterface_Profibus"> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> <hasEditable rdf:resource="#isEditable_false"/> - </Reachability> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Profibus</value> + </BusInterface> </hasProperty> - <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasProperty rdf:resource="#Payload_5.0"/> - <hasProperty rdf:resource="#NumberOfJoints_4"/> - <hasProperty rdf:resource="#Reachability_800"/> - <hasProperty rdf:resource="#DegreesOfFreedom_6"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_45"/> - <hasProperty rdf:resource="#Reachability_400"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasProperty rdf:resource="#Reachability_1960"/> - <hasSkill rdf:resource="#Karthesian_30"/> - <hasProperty rdf:resource="#IntelligentCtrl_1"/> - <hasIdentifier> - <Identifier rdf:ID="ID_ABB_IRB-140"> + <hasProperty> + <LaserClass rdf:ID="LaserClass_2"> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - ></value> - </Identifier> - </hasIdentifier> - <hasProperty rdf:resource="#MinVoltageSupply_200"/> - <hasProperty rdf:resource="#DegreesOfFreedom_4"/> - <hasProperty rdf:resource="#Repeatability_0.03"/> - <hasProperty rdf:resource="#NumberOfJoints_6"/> - <hasProperty rdf:resource="#MaxVoltageSupply_600"/> - <hasSkill rdf:resource="#AsFastAsPossible_28"/> - </ArticulatedRobot> + >2</value> + </LaserClass> + </hasProperty> + <hasProperty> + <MinVoltageSupply rdf:ID="MinVoltageSupply_18"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >18.0</value> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </MinVoltageSupply> + </hasProperty> + <hasProperty> + <Weight rdf:ID="Weight_1.6"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >1.6</value> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </Weight> + </hasProperty> + <hasProperty> + <Repeatability rdf:ID="Repeatability_0.0005"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >5.0E-4</value> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </Repeatability> + </hasProperty> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.13"> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.13</value> + <hasEditable rdf:resource="#isEditable_false"/> + </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#SwitchingFrequency_1000"/> + <hasProperty> + <Accuracy rdf:ID="Accuracy_0.002"> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.0020</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Accuracy> + </hasProperty> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_70"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >70.0</value> + </MaxMeasurementRange> + </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> + <hasEditable rdf:resource="#isEditable_false"/> + </MinMeasurementRange> + </hasProperty> + <hasProperty> + <LightType rdf:ID="LightType_LaserRed"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >LaserRed</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + </LightType> + </hasProperty> + <hasSkill> + <MeasureDistance rdf:ID="MeasureDistance_1"> + <isSkillOf rdf:resource="#Sick_DME5000-112"/> + <isSkillOf rdf:resource="#Sick_DT10-P10B5"/> + </MeasureDistance> + </hasSkill> + </OpticDistanceSensor> </isPropertyOf> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS80"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - </NumberOfJoints> + </MaxCurrentConsumption> </hasProperty> - <hasProperty rdf:resource="#Weight_51"/> - <hasProperty rdf:resource="#TypeOfActuation_Electric"/> - <hasProperty rdf:resource="#Reachability_800"/> - <hasProperty rdf:resource="#Payload_2.0"/> - <hasIdentifier> - <Identifier rdf:ID="ID_Staeubli_RS80"> + <hasProperty> + <Length rdf:ID="Length_120"> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >120.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Length> + </hasProperty> + <hasProperty> + <Resolution rdf:ID="Resolution_800x600"> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >800x600</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Resolution> + </hasProperty> + <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 rdf:resource="#Sensopart_FL64C"/> + <hasEditable rdf:resource="#isEditable_false"/> + </Height> + </hasProperty> + <hasSkill> + <ReadOpticalCharacters rdf:ID="ReadOpticalCharacters_1"> + <isSkillOf rdf:resource="#VisionComponents-VC4465"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </ReadOpticalCharacters> + </hasSkill> + <hasSkill> + <ReadBarCode rdf:ID="ReadBarCode_1"> + <isSkillOf rdf:resource="#VisionComponents-VC4465"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </ReadBarCode> + </hasSkill> + <hasProperty> + <BusInterface rdf:ID="BusInterface_FastEthernet"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Staeubli_RS80</value> + >Fast Ethernet</value> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + </BusInterface> + </hasProperty> + <hasProperty> + <Length rdf:ID="Length_30.4"> <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >30.4</value> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + </Length> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_VisionComponents-VC4465"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >VisionComponents-VC4465</value> </Identifier> </hasIdentifier> - <hasProperty rdf:resource="#EnclosureRatingIP_54"/> - <hasProperty rdf:resource="#MaxAmbientTemperature_40"/> - <hasSkill rdf:resource="#Karthesian_30"/> - <hasSkill rdf:resource="#Circular_29"/> - <hasProperty rdf:resource="#MinAmbientTemperature_5"/> - <hasProperty rdf:resource="#Repeatability_0.01"/> - <hasSkill rdf:resource="#AsFastAsPossible_28"/> - </ScaraRobot> + <hasSkill> + <DetectColor rdf:ID="DetectColor_3"> + <isSkillOf rdf:resource="#VisionComponents-VC4465"/> + <isSkillOf rdf:resource="#Sensopart_FL64C"/> + </DetectColor> + </hasSkill> + <hasProperty> + <Weight rdf:ID="Weight_0.25"> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.25</value> + </Weight> + </hasProperty> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.06"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.06</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + </MaxCurrentConsumption> + </hasProperty> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_28.8"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >28.8</value> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + </MaxVoltageSupply> + </hasProperty> + <hasProperty> + <Height rdf:ID="Height_50"> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >50.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Height> + </hasProperty> + <hasProperty> + <BusInterface rdf:ID="BusInterface_RS232"> + <isPropertyOf rdf:resource="#VisionComponents-VC4465"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >RS232</value> + <hasEditable rdf:resource="#isEditable_false"/> + </BusInterface> + </hasProperty> + </SmartCamera> </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <isPropertyOf rdf:resource="#ScaraRobot_Staeubli_RS40B"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> - <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-4400"/> - <hasEditable rdf:resource="#isEditable_false"/> - </MaxAmbientTemperature> - </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> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> <hasEditable rdf:resource="#isEditable_false"/> - </ResponseTime> + </MaxCurrentConsumption> </hasProperty> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> <hasIdentifier> - <Identifier rdf:ID="ID_Sick_CVS2-P112"> + <Identifier rdf:ID="ID_Sick_KT10-2P1115"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Sick_CVS2-P112</value> + >Sick_KT10-2P1115</value> <hasEditable rdf:resource="#isEditable_false"/> </Identifier> </hasIdentifier> - <hasProperty rdf:resource="#MinAmbientTemperature_0"/> - <hasProperty> - <MaxVoltageSupply rdf:ID="MaxVoltageSupply_24"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >24.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - </MaxVoltageSupply> - </hasProperty> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <hasSkill rdf:resource="#DetectContrast_1"/> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> <hasProperty> - <ScanningDistance rdf:ID="ScanningDistance_0.24"> - <hasEditable rdf:resource="#isEditable_false"/> + <ResponseTime rdf:ID="ResponseTime_0.00001"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.24</value> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - </ScanningDistance> - </hasProperty> - <hasProperty> - <LightType rdf:ID="LightType_LEDwhite"> + >1.0E-5</value> <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >LEDwhite</value> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - </LightType> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + </ResponseTime> </hasProperty> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#LightType_LEDblue"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty rdf:resource="#Weight_0.4"/> <hasProperty> - <FieldOfView rdf:ID="FieldOfView_50x60"> - <hasEditable rdf:resource="#isEditable_false"/> + <LightSpotSize rdf:ID="LightSpotSize_0.004x0.0008"> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >50x60</value> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - </FieldOfView> - </hasProperty> - <hasProperty> - <Weight rdf:ID="Weight_0.18"> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >0.18</value> + >0.004x0.0008</value> <hasEditable rdf:resource="#isEditable_false"/> - </Weight> + </LightSpotSize> </hasProperty> - <hasProperty rdf:resource="#MinVoltageSupply_12.0"/> - <hasProperty rdf:resource="#EnclosureRatingIP_67"/> - <hasSkill> - <SortObjects rdf:ID="SortObjectColor_15"> - <isSkillOf rdf:resource="#Sick_CVS2-P112"/> - </SortObjects> - </hasSkill> - <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> - <hasProperty rdf:resource="#MaxCurrentConsumption_0.2"/> + <hasProperty rdf:resource="#LightType_LEDgreen"/> + <hasProperty rdf:resource="#ScanningDistance_0.01"/> <hasProperty> - <Resolution rdf:ID="Resolution_208x238"> - <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >208x238</value> + <SwitchingFrequency rdf:ID="SwitchingFrequency_25000"> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> <hasEditable rdf:resource="#isEditable_false"/> - </Resolution> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >25000.0</value> + </SwitchingFrequency> </hasProperty> - </VisionSensor> + </OpticContrastScanner> </isPropertyOf> - <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >67</value> + <isPropertyOf rdf:resource="#Sick_KT5W_2P1116D"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#ArticulatedRobot_ABB_IRB-140"/> <hasEditable rdf:resource="#isEditable_false"/> - </MaxCurrentConsumption> - <Material rdf:ID="Material-ZincPressureCasting"> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> </EnclosureRatingIP> + </hasProperty> + <hasProperty rdf:resource="#ResponseTime_0.0005"/> + <hasProperty rdf:resource="#SwitchingFrequency_1500"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.035"> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.035</value> + <hasEditable rdf:resource="#isEditable_false"/> </MaxCurrentConsumption> + </hasProperty> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.0015x0.0065"> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >0.0015x0.0065</value> + <hasEditable rdf:resource="#isEditable_false"/> </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> + <hasProperty rdf:resource="#LightType_LEDblue"/> + <hasProperty> + <Weight rdf:ID="Weight_0.011"> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.011</value> </Weight> + </hasProperty> + <hasProperty rdf:resource="#LightType_LEDgreen"/> + <hasProperty rdf:resource="#ScanningDistance_0.0125"/> + <hasSkill rdf:resource="#DetectColor_1"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_CSM1-N1114"> <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Zinc Pressure Casting</value> - </Material> + >Sick_CSM1-N1114</value> </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> + <hasProperty> + <ElectricalInterface rdf:ID="ElectricalInterface_OpenCollectorNPN"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >open collector NPN</value> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <hasEditable rdf:resource="#isEditable_false"/> </ElectricalInterface> + </hasProperty> + </OpticColorSensor> + </isPropertyOf> + </SwitchingFrequency> + </hasProperty> + <hasSkill> + <DetectLuminescence rdf:ID="DetectLuminescence_1"> + <isSkillOf rdf:resource="#Sick_LUT3-610"/> + </DetectLuminescence> + </hasSkill> + <hasProperty rdf:resource="#ScanningDistance_0.01"/> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.002x0.006"> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >0.002x0.006</value> + </LightSpotSize> + </hasProperty> + <hasProperty> + <LightType rdf:ID="LightType_UV"> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >UV</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + </LightType> + </hasProperty> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_LUT3-610"> + <hasEditable rdf:resource="#isEditable_false"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Sick_LUT3-610</value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty rdf:resource="#MinVoltageSupply_12.0"/> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-10"/> + <hasProperty rdf:resource="#Weight_0.4"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.0003"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <value + rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >3.0E-4</value> + </ResponseTime> + </hasProperty> + </OpticLuminescenceScanner> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_CVS2-P112"/> + <hasEditable rdf:resource="#isEditable_false"/> + </MinVoltageSupply> + </hasProperty> + <hasProperty rdf:resource="#Height_53"/> + <hasProperty rdf:resource="#Weight_0.4"/> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.0009"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >9.0E-4</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + </ResponseTime> + </hasProperty> + <hasProperty> + <ResponseTime rdf:ID="ResponseTime_0.0007"> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >7.0E-4</value> + </ResponseTime> + </hasProperty> + <hasProperty> + <Width rdf:ID="Width_80"> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >80.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Width> + </hasProperty> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty> + <LightType rdf:ID="LightType_LED"> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >LED</value> + <hasEditable rdf:resource="#isEditable_false"/> + </LightType> + </hasProperty> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.08"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_55"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sensopart_FL64C"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Sensopart_FL64C</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorNPN"/> + <hasProperty> + <Material rdf:ID="Material_Polycarbonat"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#string" + >Polycarbonat</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + </Material> + </hasProperty> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty rdf:resource="#Height_43"/> + <hasProperty> + <Width rdf:ID="Width_12"> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >12.0</value> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <hasEditable rdf:resource="#isEditable_false"/> + </Width> + </hasProperty> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.06"/> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <hasProperty> + <MaxVoltageSupply rdf:ID="MaxVoltageSupply_26.4"> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype= + "http://www.w3.org/2001/XMLSchema#float" + >26.4</value> + </MaxVoltageSupply> + </hasProperty> + <hasProperty rdf:resource="#MinAmbientTemperature_5"/> + <hasSkill rdf:resource="#DetectColor_3"/> + <hasProperty rdf:resource="#Length_66.25"/> + </OpticColorSensor> + </isPropertyOf> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_LMS200-30106"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >65</value> + <isPropertyOf rdf:resource="#Schunk_MPG_64"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <isPropertyOf rdf:resource="#Schunk_MPG_20"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + </EnclosureRatingIP> + </hasProperty> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_1"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >1.0</value> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + </MaxMeasurementRange> + </hasProperty> + <hasSkill rdf:resource="#ReadOpticalCharacters_1"/> + <hasSkill rdf:resource="#Read2DMatrixCode_1"/> + <hasSkill> + <MeasureDiameter rdf:ID="MeasureDiameter_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + </MeasureDiameter> + </hasSkill> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <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"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.1</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + </MinMeasurementRange> + </hasProperty> + <hasSkill> + <MeasureArea rdf:ID="MeasureArea_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + </MeasureArea> + </hasSkill> + <hasProperty rdf:resource="#MinAmbientTemperature_0"/> + <hasProperty> + <ElectricalInterface rdf:ID="ElectricalInterface_ConnectorM12-8Pins"> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Connector M12, 8 Pins</value> + <hasEditable rdf:resource="#isEditable_false"/> + </ElectricalInterface> + </hasProperty> + <hasProperty> + <Width rdf:ID="Width_60"> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >60.0</value> + </Width> + </hasProperty> + <hasProperty> + <Resolution rdf:ID="Resolution_1024x768"> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >1024x768</value> + </Resolution> + </hasProperty> + <hasSkill> + <MeasureAngle rdf:ID="MeasureAngle_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </MeasureAngle> + </hasSkill> + <hasProperty> + <Height rdf:ID="Height_55"> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >55.0</value> + </Height> + </hasProperty> + <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> + <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.4"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.4</value> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxCurrentConsumption> + </hasProperty> + <hasProperty rdf:resource="#Length_161"/> + <hasSkill rdf:resource="#DeterminePositionOfObject_1"/> + <hasProperty> + <Weight rdf:ID="Weight_0.5"> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.5</value> + </Weight> + </hasProperty> + <hasProperty rdf:resource="#IntelligentCtrl_1"/> + <hasSkill> + <CheckPosition rdf:ID="CheckPosition_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </CheckPosition> + </hasSkill> + <hasProperty> + <BusInterface rdf:ID="BusInterface_RS485"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >RS485</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + </BusInterface> + </hasProperty> + <hasProperty rdf:resource="#BusInterface_FastEthernet"/> + <hasSkill> + <ClassifyObject rdf:ID="ClassifyObject_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + </ClassifyObject> + </hasSkill> + <hasProperty> + <SwitchingFrequency rdf:ID="SwitchingFrequency_30fps"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >30.0</value> + </SwitchingFrequency> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_IVC-2DM1122"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_IVC-2DM1122</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasSkill> + <MeasureOrientationOfObject rdf:ID="MeasureOrientationOfObject_1"> + <isSkillOf rdf:resource="#Sick_IVC-2DM1111"/> + <isSkillOf rdf:resource="#Sick_IVC-2DM1122"/> + </MeasureOrientationOfObject> + </hasSkill> + <hasSkill rdf:resource="#Count_1"/> + <hasSkill rdf:resource="#ReadBarCode_1"/> + </SmartCamera> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >161.0</value> + </Length> + </hasProperty> + <hasProperty rdf:resource="#IntelligentCtrl_1"/> + <hasProperty rdf:resource="#MinAmbientTemperature_0"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_IVC-2DM1111"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_IVC-2DM1111</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#Height_55"/> + <hasSkill rdf:resource="#MeasureOrientationOfObject_1"/> + <hasSkill rdf:resource="#MeasureAngle_1"/> + <hasProperty rdf:resource="#EnclosureRatingIP_65"/> + <hasProperty rdf:resource="#MaxMeasurementRange_1"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> + <hasProperty rdf:resource="#MaxCurrentConsumption_0.4"/> + <hasProperty rdf:resource="#Weight_0.5"/> + <hasSkill rdf:resource="#DeterminePositionOfObject_1"/> + <hasSkill rdf:resource="#MeasureDiameter_1"/> + <hasSkill rdf:resource="#CheckPosition_1"/> + <hasProperty rdf:resource="#BusInterface_RS485"/> + <hasProperty rdf:resource="#BusInterface_FastEthernet"/> + <hasSkill rdf:resource="#ClassifyObject_1"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <hasProperty rdf:resource="#SwitchingFrequency_30fps"/> + <hasProperty rdf:resource="#MinMeasurementRange_0.10"/> + <hasSkill rdf:resource="#MeasureArea_1"/> + <hasSkill rdf:resource="#Count_1"/> + <hasProperty> + <Resolution rdf:ID="Resolution_640x480"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >640x480</value> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1111"/> + </Resolution> + </hasProperty> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-8Pins"/> + <hasProperty rdf:resource="#MaxVoltageSupply_28.8"/> + <hasProperty rdf:resource="#Width_60"/> + <hasProperty rdf:resource="#MinVoltageSupply_19.2"/> + <hasSkill rdf:resource="#CheckPresence_1"/> + </SmartCamera> + </isPropertyOf> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Connector M12, 4 Pins</value> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_CSM1-N1114"/> + <isPropertyOf rdf:resource="#Sick_IVC-2DM1122"/> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + </ElectricalInterface> + </hasProperty> + <hasProperty rdf:resource="#Weight_0.04"/> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.015"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.015</value> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#ResponseTime_0.0007"/> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasSkill rdf:resource="#DetectObject_1"/> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_0.6"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.6</value> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxMeasurementRange> + </hasProperty> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty rdf:resource="#MinMeasurementRange_0.05"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_60"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-40"/> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <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"/> + <hasEditable rdf:resource="#isEditable_false"/> + </SwitchingFrequency> + </hasProperty> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.04"> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.04</value> + </MaxCurrentConsumption> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_WT18-3P430"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_WT18-3P430</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + </OpticProximitySwitch> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.05</value> + </MinMeasurementRange> + </hasProperty> + <hasProperty> + <PowerConsumption rdf:ID="PowerConsumption_1.2"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >1.2</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + </PowerConsumption> + </hasProperty> + <hasSkill rdf:resource="#MeasureDistance_1"/> + <hasProperty rdf:resource="#SwitchingFrequency_1000"/> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#MaxVoltageSupply_30.0"/> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.02"> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.02</value> + </LightSpotSize> + </hasProperty> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-5Pins"/> + <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> + <hasEditable rdf:resource="#isEditable_false"/> + </Accuracy> + </hasProperty> + <hasProperty rdf:resource="#Weight_0.04"/> + <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> + <hasEditable rdf:resource="#isEditable_false"/> + </ResponseTime> + </hasProperty> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_DT10-P10B5"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_DT10-P10B5</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Identifier> + </hasIdentifier> + <hasProperty> + <Repeatability rdf:ID="Repeatability_0.003"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.0030</value> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + </Repeatability> + </hasProperty> + <hasProperty> + <ElectricalInterface rdf:ID="ElectricalInterface_AnalogueOutput4-20mA"> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >4...20 mA</value> + </ElectricalInterface> + </hasProperty> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-25"/> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty> + <MaxMeasurementRange rdf:ID="MaxMeasurementRange_0.4"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.4</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_DT10-P10B5"/> + </MaxMeasurementRange> + </hasProperty> + <hasProperty rdf:resource="#MaxAmbientTemperature_50"/> + </OpticDistanceSensor> + </isPropertyOf> + <isPropertyOf rdf:resource="#Sick_KT10-2P1115"/> + <isPropertyOf rdf:resource="#Sick_WT18-3P430"/> + <isPropertyOf rdf:resource="#Sensopart_FL64C"/> + <isPropertyOf rdf:resource="#Sick_MLG2-0280F511"/> + <isPropertyOf rdf:resource="#Sick_CS81-P1112"/> + <isPropertyOf rdf:resource="#Sick_DME5000-112"/> + <isPropertyOf rdf:resource="#Sick_LUT3-610"/> + <isPropertyOf rdf:resource="#Sick_WSWE18-3P430"/> + </MaxVoltageSupply> + </hasProperty> + <hasSkill rdf:resource="#DetectObject_1"/> + <hasProperty rdf:resource="#ElectricalInterface_OpenCollectorPNP"/> + <hasProperty rdf:resource="#LightType_LEDred"/> + <hasProperty rdf:resource="#MinMeasurementRange_0"/> + <hasProperty rdf:resource="#MinVoltageSupply_10.0"/> + <hasIdentifier> + <Identifier rdf:ID="ID_Sick_WL18-3P430"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Sick_WL18-3P430</value> + </Identifier> + </hasIdentifier> + <hasProperty rdf:resource="#ResponseTime_0.0005"/> + <hasProperty rdf:resource="#ElectricalInterface_ConnectorM12-4Pins"/> + <hasProperty rdf:resource="#MaxAmbientTemperature_60"/> + <hasProperty rdf:resource="#MinAmbientTemperature_-40"/> + <hasProperty rdf:resource="#EnclosureRatingIP_67"/> + <hasProperty> + <LightSpotSize rdf:ID="LightSpotSize_0.040"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.04</value> + <hasEditable rdf:resource="#isEditable_false"/> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + </LightSpotSize> + </hasProperty> + <hasProperty> + <MaxCurrentConsumption rdf:ID="MaxCurrentConsumption_0.03"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >0.03</value> + <isPropertyOf rdf:resource="#Sick_WL18-3P430"/> + </MaxCurrentConsumption> + </hasProperty> + <hasProperty rdf:resource="#MaxMeasurementRange_5"/> + <hasProperty rdf:resource="#Weight_0.04"/> + <hasProperty rdf:resource="#SwitchingFrequency_1000"/> + </OpticReflexSwitch> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >elastic</rdf:first> <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> + >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" - >pneumatic</rdf:first> </owl:oneOf> </owl:DataRange> - <Width rdf:ID="Width_35"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >35.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Width> - <WormDiameter rdf:ID="WormDiameter_M5"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >M5</value> - <hasEditable rdf:resource="#isEditable_false"/> - </WormDiameter> - <MaxForce rdf:ID="MaximumForce_4.7"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >4.7</value> - </MaxForce> - <owl:AllDifferent> - <owl:distinctMembers rdf:parseType="Collection"> - <Displace rdf:ID="IPA_AMMS_MoveFront"> - <isSkillOf> - <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part1"> - <hasSkill rdf:resource="#IPA_AMMS_MoveFront"/> - <isSubskillOf> - <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part2"> - <hasSubskill rdf:resource="#AMMS_IPA_PICK_2DOF_Part1"/> - <hasSkill> - <Displace rdf:ID="IPA_AMMS_MoveDown"> - <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part2"/> - </Displace> - </hasSkill> - <isSubskillOf> - <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part3"> - <hasSkill> - <AdjustVacuumToGrip rdf:ID="AdjustVacuumToGrip_16"> - <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part3"/> - </AdjustVacuumToGrip> - </hasSkill> - <hasSubskill rdf:resource="#AMMS_IPA_PICK_2DOF_Part2"/> - <isSubskillOf> - <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF"> - <hasSubskill rdf:resource="#AMMS_IPA_PICK_2DOF_Part3"/> - <hasSkill> - <Displace rdf:ID="IPA_AMMS_MoveUp"> - <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF"/> - </Displace> - </hasSkill> - <isSkillOf> - <rdf:Description rdf:ID="AMMS_IPA_2DOF_Gripper"> - <hasSkill rdf:resource="#AMMS_IPA_PICK_2DOF"/> - </rdf:Description> - </isSkillOf> - <isSkillOf> - <rdf:Description rdf:ID="VacuumGripper_1"> - <hasSkill rdf:resource="#AMMS_IPA_PICK_2DOF"/> - <hasIdentifier> - <Identifier rdf:ID="ID_IPA_AMMS_SimpleGripper-2DOF"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >IPA_AMMS_SimpleGripper-2DOF</value> - <hasEditable rdf:resource="#isEditable_true"/> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >IPA-2DOF Picker from AMMS.</rdfs:comment> - </Identifier> - </hasIdentifier> - </rdf:Description> - </isSkillOf> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Pick operation for IPA-2DOF Picker from AMMS. -Operation consists of MoveFront, MoveDown, Grasp, MoveUp.</rdfs:comment> - </CompoundManipulationAndHandlingFunction> - </isSubskillOf> - </CompoundManipulationAndHandlingFunction> - </isSubskillOf> - </CompoundManipulationAndHandlingFunction> - </isSubskillOf> - </CompoundManipulationAndHandlingFunction> - </isSkillOf> - </Displace> - <Displace rdf:ID="IPA_AMMS_MoveBack"/> - <Displace rdf:about="#IPA_AMMS_MoveUp"/> - <Displace rdf:about="#IPA_AMMS_MoveDown"/> - </owl:distinctMembers> - </owl:AllDifferent> - <AdjustVacuumToRelease rdf:ID="AdjustVacuumToRelease_1"/> - <Worm rdf:ID="Worm_Outside"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Outside</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Worm> - <WormDiameter rdf:ID="WormDiameter_G1-2"> - <hasEditable rdf:resource="#isEditable_false"/> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >G1/2"</value> - </WormDiameter> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >cylindrical</rdf:first> <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:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> </rdf:rest> </rdf:rest> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >spherical</rdf:first> </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> - <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-20"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >-20.0</value> - <hasEditable rdf:resource="#isEditable_false"/> - </MinAmbientTemperature> - <owl:AllDifferent/> <owl:AllDifferent/> + <AdjustVacuumToRelease rdf:ID="AdjustVacuumToRelease_1"/> <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:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >4.0</rdf:first> + <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" + >blower</rdf:first> + </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: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:rest rdf:parseType="Resource"> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >chains</rdf:first> <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.0</rdf:first> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >gears</rdf:first> <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >6.0</rdf:first> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >harmonic</rdf:first> <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >7.0</rdf:first> - <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >4.5</rdf:first> - <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >5.5</rdf:first> - <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: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:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >2.5</rdf:first> - </rdf:rest> - </rdf:rest> - </rdf:rest> - </rdf:rest> + <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" + >ball-screw</rdf:first> </rdf:rest> </rdf:rest> </rdf:rest> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >3.5</rdf:first> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >belts</rdf:first> </rdf:rest> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >torque</rdf:first> </owl:oneOf> </owl:DataRange> <owl:AllDifferent/> + <Worm rdf:ID="Worm_Inside"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Inside</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Worm> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> <rdf:rest rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >vacuum pump</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" - >blower</rdf:first> + >world</rdf:first> </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" - >venturi nozzle</rdf:first> + >joint</rdf:first> </owl:oneOf> </owl:DataRange> - <Material rdf:ID="Material_Silicon"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Silicon SI 55+-5</value> - <hasEditable rdf:resource="#isEditable_false"/> - </Material> <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> @@ -9052,140 +9037,240 @@ Operation consists of MoveFront, MoveDown, Grasp, MoveUp.</rdfs:comment> >4</rdf:first> </rdf:rest> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#int" - >2</rdf:first> </owl:oneOf> </owl:DataRange> - <isEditable rdf:ID="isEditableFalse"> - <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - ></rdfs:comment> - </isEditable> - <rdf:Description rdf:ID="AMMS_IPA-2DOF_Picker"> - <hasIdentifier rdf:resource="#ID_IPA_AMMS_SimpleGripper-2DOF"/> - </rdf:Description> - <SortObjects rdf:ID="SortObjects_1"/> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >elastic</rdf:first> + >inside</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" - >multiple joints</rdf:first> + >outside</rdf:first> </rdf:rest> </owl:oneOf> </owl:DataRange> - <Worm rdf:ID="Worm_Inside"> - <hasEditable rdf:resource="#isEditable_false"/> + <rdf:Description rdf:ID="VacuumGripper_1"> + <hasIdentifier> + <Identifier rdf:ID="ID_IPA_AMMS_SimpleGripper-2DOF"> + <hasEditable rdf:resource="#isEditable_true"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >IPA_AMMS_SimpleGripper-2DOF</value> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >IPA-2DOF Picker from AMMS.</rdfs:comment> + </Identifier> + </hasIdentifier> + <hasSkill> + <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF"> + <hasSubskill> + <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part3"> + <isSubskillOf rdf:resource="#AMMS_IPA_PICK_2DOF"/> + <hasSkill> + <AdjustVacuumToGrip rdf:ID="AdjustVacuumToGrip_16"> + <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part3"/> + </AdjustVacuumToGrip> + </hasSkill> + <hasSubskill> + <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part2"> + <isSubskillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part3"/> + <hasSkill> + <Displace rdf:ID="IPA_AMMS_MoveDown"> + <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part2"/> + </Displace> + </hasSkill> + <hasSubskill> + <CompoundManipulationAndHandlingFunction rdf:ID="AMMS_IPA_PICK_2DOF_Part1"> + <hasSkill> + <Displace rdf:ID="IPA_AMMS_MoveFront"> + <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part1"/> + </Displace> + </hasSkill> + <isSubskillOf rdf:resource="#AMMS_IPA_PICK_2DOF_Part2"/> + </CompoundManipulationAndHandlingFunction> + </hasSubskill> + </CompoundManipulationAndHandlingFunction> + </hasSubskill> + </CompoundManipulationAndHandlingFunction> + </hasSubskill> + <hasSkill> + <Displace rdf:ID="IPA_AMMS_MoveUp"> + <isSkillOf rdf:resource="#AMMS_IPA_PICK_2DOF"/> + </Displace> + </hasSkill> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Pick operation for IPA-2DOF Picker from AMMS. +Operation consists of MoveFront, MoveDown, Grasp, MoveUp.</rdfs:comment> + <isSkillOf rdf:resource="#VacuumGripper_1"/> + <isSkillOf> + <rdf:Description rdf:ID="AMMS_IPA_2DOF_Gripper"> + <hasSkill rdf:resource="#AMMS_IPA_PICK_2DOF"/> + </rdf:Description> + </isSkillOf> + </CompoundManipulationAndHandlingFunction> + </hasSkill> + </rdf:Description> + <WormDiameter rdf:ID="WormDiameter_G1-2"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >Inside</value> - </Worm> - <DiameterOfGripper rdf:ID="DiameterOfGripper_20"> + >G1/2</value> <hasEditable rdf:resource="#isEditable_false"/> + </WormDiameter> + <Width rdf:ID="Width_35"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >20.0</value> - </DiameterOfGripper> - <owl:DataRange> - <owl:oneOf rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >joint</rdf:first> - <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> - </owl:oneOf> - </owl:DataRange> - <owl:AllDifferent/> - <DiameterOfGripper rdf:ID="DiameterOfGripper_200"> - <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" - >200.0</value> + >35.0</value> <hasEditable rdf:resource="#isEditable_false"/> - </DiameterOfGripper> + </Width> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >torque</rdf:first> + <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:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >4.0</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:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >7.0</rdf:first> + <rdf:rest rdf:parseType="Resource"> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >4.5</rdf:first> + <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:rest> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >harmonic</rdf:first> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >6.0</rdf:first> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >gears</rdf:first> + <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#string" - >chains</rdf:first> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >belts</rdf:first> </rdf:rest> </owl:oneOf> </owl:DataRange> + <owl:AllDifferent/> + <Material rdf:ID="Material_Silicon"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Silicon SI 55+-5</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Material> + <Material rdf:ID="Material-ZincPressureCasting"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Zinc Pressure Casting</value> + <hasEditable rdf:resource="#isEditable_false"/> + </Material> + <Displace rdf:ID="IPA_AMMS_MoveBack"/> + <rdf:Description rdf:ID="AMMS_IPA-2DOF_Picker"> + <hasIdentifier rdf:resource="#ID_IPA_AMMS_SimpleGripper-2DOF"/> + </rdf:Description> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> <rdf:rest rdf:parseType="Resource"> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >pneumatic</rdf:first> <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> <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" >hydraulic</rdf:first> </owl:oneOf> </owl:DataRange> - <owl:DataRange> - <owl:oneOf rdf:parseType="Resource"> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >inside</rdf:first> - <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> - </owl:oneOf> - </owl:DataRange> + <MaxForce rdf:ID="MaximumForce_4.7"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >4.7</value> + <hasEditable rdf:resource="#isEditable_false"/> + </MaxForce> + <DiameterOfGripper rdf:ID="DiameterOfGripper_200"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >200.0</value> + </DiameterOfGripper> + <MinAmbientTemperature rdf:ID="MinAmbientTemperature_-20"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >-20.0</value> + </MinAmbientTemperature> <owl:AllDifferent/> + <isEditable rdf:ID="isEditableFalse"> + <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + ></rdfs:comment> + </isEditable> <rdf:Description rdf:ID="IPA_AMMS_SimpleGripper-2DOF"> <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string" >2DOF-Gripper of the IPA AMMS Demonstrator.</rdfs:comment> </rdf:Description> + <WormDiameter rdf:ID="WormDiameter_M5"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >M5</value> + </WormDiameter> <owl:DataRange> <owl:oneOf rdf:parseType="Resource"> + <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >pneumatic</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" - >outside</rdf:first> - <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/> + >hydraulic</rdf:first> </rdf:rest> - <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string" - >inside</rdf:first> </owl:oneOf> </owl:DataRange> + <SortObjects rdf:ID="SortObjects_1"/> + <Worm rdf:ID="Worm_Outside"> + <hasEditable rdf:resource="#isEditable_false"/> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" + >Outside</value> + </Worm> <MaxForce rdf:ID="MaximumForce_850"> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" >850.0</value> <hasEditable rdf:resource="#isEditable_false"/> </MaxForce> + <DiameterOfGripper rdf:ID="DiameterOfGripper_20"> + <value rdf:datatype="http://www.w3.org/2001/XMLSchema#float" + >20.0</value> + <hasEditable rdf:resource="#isEditable_false"/> + </DiameterOfGripper> + <owl:AllDifferent> + <owl:distinctMembers rdf:parseType="Collection"> + <Displace rdf:about="#IPA_AMMS_MoveFront"/> + <Displace rdf:about="#IPA_AMMS_MoveBack"/> + <Displace rdf:about="#IPA_AMMS_MoveUp"/> + <Displace rdf:about="#IPA_AMMS_MoveDown"/> + </owl:distinctMembers> + </owl:AllDifferent> + <owl:AllDifferent/> + <owl:AllDifferent/> <Material rdf:ID="Material_Perbunan"> + <hasEditable rdf:resource="#isEditable_false"/> <value rdf:datatype="http://www.w3.org/2001/XMLSchema#string" >Perbunan NBR 55+-5</value> - <hasEditable rdf:resource="#isEditable_false"/> </Material> - <owl:AllDifferent/> </rdf:RDF> -<!-- Created with Protege (with OWL Plugin 3.2.1, Build 365) http://protege.stanford.edu --> +<!-- Created with Protege (with OWL Plugin 3.2, Build 355) http://protege.stanford.edu -->