@prefix bdg2: <http://speckle.xyz/streams/1fed8e620e/objects/> .
@prefix brick: <https://brickschema.org/schema/Brick#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ns1: <http://www.linkedmodel.org/schema/dtype#> .
@prefix ns2: <http://www.linkedmodel.org/schema/vaem#> .
@prefix ns3: <http://datashapes.org/dash#> .
@prefix ns4: <http://data.ashrae.org/bacnet/2020#> .
@prefix ns5: <http://schema.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix qudtqk: <http://qudt.org/vocab/quantitykind/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rec: <https://w3id.org/rec#> .
@prefix s223: <http://data.ashrae.org/standard223#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix unit: <http://qudt.org/vocab/unit/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

s223:AbstractClass a s223:Class,
        s223:Concept,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Abstract class"^^xsd:string ;
    rdfs:comment "This is a modeling construct. Instances of abstract classes cannot be created. All abstract classes in this standard have a more specific subclass."^^xsd:string ;
    rdfs:subClassOf s223:Class .

s223:Class a s223:Concept,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Class"^^xsd:string ;
    rdfs:comment "This is a modeling construct. All classes defined in the 223 standard are instances of `Class`."^^xsd:string ;
    rdfs:subClassOf s223:Concept,
        rdfs:Class ;
    sh:property [ rdfs:comment "A `Class` shall be associated with at least one label using the relation `rdfs:label`."^^xsd:string ;
            sh:message "s223: A `Class` shall be associated with at least one label using the relation `rdfs:label`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path rdfs:label ;
            sh:severity sh:Warning ] .

s223:Concept a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Concept"^^xsd:string ;
    rdfs:comment "All classes and relations defined in the 223 standard are subclasses of `Concept`."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ rdfs:comment "Incompatible Medium. Case4: An entity with constituents and an associated `Property` with constituents."^^xsd:string ;
            sh:name "Test for compatible declared Medium"^^xsd:string ;
            sh:path s223:hasMedium ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 4: A medium with constituents and an associated `Property` with constituents."^^xsd:string ;
                    sh:message "s223: {$this} `hasMedium` of {?m1}, but is associated with `Property` {?prop} that has `ofMedium` of {?m2}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m1 ?prop ?m2
WHERE {
$this s223:hasMedium ?m1 .
$this ?p ?prop .
?prop a/rdfs:subClassOf* s223:Property .
?prop s223:ofMedium ?m2 .
    ?m1 s223:composedOf/s223:ofConstituent ?s1 .
    ?m2 s223:composedOf/s223:ofConstituent ?s2 .
  FILTER NOT EXISTS {
    ?m1 s223:composedOf/s223:ofConstituent ?s11 .
    ?m2 s223:composedOf/s223:ofConstituent ?s12 .
    FILTER (?s11 = ?s12) .
  }
  FILTER NOT EXISTS {
    ?m1 s223:composedOf/s223:ofConstituent ?s21 .
    ?m2 s223:composedOf/s223:ofConstituent ?s22 .
    {?s22 rdfs:subClassOf* ?s21} UNION {?s21 rdfs:subClassOf* ?s22} .
  }
}
"""^^xsd:string ] ],
        [ rdfs:comment "A `Concept` shall be associated with zero or more `Property`s using the relation `hasProperty`."^^xsd:string ;
            sh:class s223:Property ;
            sh:message "s223: A `Concept` shall be associated with zero or more `Property`s using the relation `hasProperty`."^^xsd:string ;
            sh:path s223:hasProperty ],
        [ rdfs:comment "Incompatible Medium. Case3: An entity with constituents and an associated `Property` with a pure medium."^^xsd:string ;
            sh:name "Test for compatible declared Medium"^^xsd:string ;
            sh:path s223:hasMedium ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 3: A medium with constituents and an associated `Property` with a pure medium."^^xsd:string ;
                    sh:message "s223: {$this} `hasMedium` of {?m2}, but is associated with `Property` {?prop} that has `ofMedium` of {?m1}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m1 ?prop ?m2
WHERE {
$this s223:hasMedium ?m2 .
$this ?p ?prop .
?prop a/rdfs:subClassOf* s223:Property .
?prop s223:ofMedium ?m1 .
?m2 s223:composedOf/s223:ofConstituent ?s2 .
FILTER NOT EXISTS {?m1 s223:composedOf ?c1} .
FILTER NOT EXISTS {
  ?m2 s223:composedOf/s223:ofConstituent ?s12 .
  {?s12 rdfs:subClassOf* ?m1} UNION {?m1 rdfs:subClassOf* ?s12} .
}
}
"""^^xsd:string ] ],
        [ rdfs:comment "Incompatible Medium. Case1: An entity with a pure medium and an associated `Property` with a different pure medium."^^xsd:string ;
            sh:name "Test for compatible declared Medium"^^xsd:string ;
            sh:path s223:hasMedium ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 1: Two pure mediums."^^xsd:string ;
                    sh:message "s223: {$this} `hasMedium` of {?m1}, but is associated with `Property` {?prop} that has `ofMedium` of {?m2}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m1 ?prop ?m2
WHERE {
$this s223:hasMedium ?m1 .
$this ?p ?prop .
?prop a/rdfs:subClassOf* s223:Property .
?prop s223:ofMedium ?m2 .
FILTER (?m1 != ?m2 ) .
FILTER NOT EXISTS {?m1 s223:composedOf ?c1} .
FILTER NOT EXISTS {?m2 s223:composedOf ?c2}
FILTER (NOT EXISTS {?m2 rdfs:subClassOf* ?m1}) .
FILTER (NOT EXISTS {?m1 rdfs:subClassOf* ?m2}) .
}
"""^^xsd:string ] ],
        [ rdfs:comment "Incompatible Medium. Case2: An entity with a pure medium and an associated `Property` with constituents."^^xsd:string ;
            sh:name "Test for compatible declared Medium"^^xsd:string ;
            sh:path s223:hasMedium ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 2: A pure medium and an associated `Property` with constituents."^^xsd:string ;
                    sh:message "s223: {$this} `hasMedium` of {?m1}, but is associated with `Property` {?prop} that has `ofMedium` of {?m2}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m1 ?prop ?m2
WHERE {
$this s223:hasMedium ?m1 .
$this ?p ?prop .
?prop a/rdfs:subClassOf* s223:Property .
?prop s223:ofMedium ?m2 .
?m2 s223:composedOf/s223:ofConstituent ?s2 .
FILTER NOT EXISTS {?m1 s223:composedOf ?c1} .
FILTER NOT EXISTS {
  ?m2 s223:composedOf/s223:ofConstituent ?s12 .
  {?s12 rdfs:subClassOf* ?m1} UNION {?m1 rdfs:subClassOf* ?s12} .
}
}
"""^^xsd:string ] ] .

s223:Relation a s223:Class,
        s223:Concept,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Relation"^^xsd:string ;
    rdfs:comment "A `Relation` associates the subject and the object in an RDF triple, the *predicate* portion of a *(subject, predicate, object)* triple."^^xsd:string ;
    rdfs:subClassOf s223:Concept,
        rdf:Property ;
    sh:property [ rdfs:comment "A `Relation` shall be associated with at least one label using the relation `rdfs:label`."^^xsd:string ;
            sh:message "s223: A `Relation` shall be associated with at least one label using the relation `rdfs:label`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path rdfs:label ;
            sh:severity sh:Warning ] .

s223:RelationWithInverse a s223:Class,
        s223:Concept,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Relation with inverse"^^xsd:string ;
    rdfs:comment """An `RelationWithInverse` is modeling construct used to define symmetric behavior
for certain relations in the standard such as `connectedTo` and `connectedFrom`."""^^xsd:string ;
    rdfs:subClassOf s223:Relation ;
    sh:property [ rdfs:comment "A `RelationWithInverse` shall be associated with exactly one other `RelationWithInverse` using the relation `inverseOf`."^^xsd:string ;
            sh:class s223:RelationWithInverse ;
            sh:maxCount 1 ;
            sh:message "s223: A `RelationWithInverse` shall be associated with exactly one other `RelationWithInverse` using the relation `inverseOf`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:inverseOf ] .

s223:SymmetricRelation a s223:Class,
        s223:Concept,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Symmetric relation"^^xsd:string ;
    rdfs:comment """A modeling construct used to define symmetric behavior
for certain relations in the standard such as `cnx`, `connected`, and `pairedConnectionPoint`."""^^xsd:string ;
    rdfs:subClassOf s223:Relation .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterCoil> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "ChilledWaterCoil"^^xsd:string ;
    rdfs:comment "A cooling coil with a connected chilled water valve."^^xsd:string ;
    rdfs:subClassOf s223:CoolingCoil ;
    sh:property [ rdfs:comment "The ChilledWaterCoil shall be connected to a ChilledWaterValve using the relation connectedTo."^^xsd:string ;
            sh:path s223:connectedTo ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValve> ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValve> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Valve"^^xsd:string ;
    rdfs:comment "A valve that controls the flow of chilled water through a chilled water coil."^^xsd:string ;
    rdfs:subClassOf s223:Valve .

<http://data.ashrae.org/standard223/1.0/extensions/g36#Damper> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Damper"^^xsd:string ;
    rdfs:comment "A damper with an analog or two binary position command properties."^^xsd:string ;
    rdfs:subClassOf s223:Damper .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ElectricHeatingCoil> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Electric Heating Coil"^^xsd:string ;
    rdfs:comment "An electrical heating element with an analog heating command."^^xsd:string ;
    rdfs:subClassOf s223:ElectricResistanceElement ;
    sh:property [ rdfs:comment "An electric heating coil shall have at least one analog heating command property using a relation hasProperty."^^xsd:string ;
            sh:message "g36: An electric heating coil shall have at least one analog heating command property using a relation hasProperty."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableActuatableProperty ;
                    sh:node [ sh:property [ sh:hasValue qudtqk:DimensionlessRatio ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#Fan> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Fan"^^xsd:string ;
    rdfs:comment "A fan with a start/stop command."^^xsd:string ;
    rdfs:subClassOf s223:Fan ;
    sh:property [ rdfs:comment "A Fan shall have at least one Start/Stop command using the relation hasProperty."^^xsd:string ;
            sh:message "g36: A Fan shall have at least one Start/Stop command using the relation hasProperty."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:EnumeratedActuatableProperty ;
                    sh:node [ sh:property [ sh:class s223:Binary-OnOff ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasEnumerationKind ] ] ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#FanWithVFD> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "FanWithVFD"^^xsd:string ;
    rdfs:comment "A fan controlled by a VFD."^^xsd:string ;
    rdfs:subClassOf <http://data.ashrae.org/standard223/1.0/extensions/g36#Fan> ;
    sh:property [ rdfs:comment "A fan with VFD shall have at least one fan speed command using the relation hasProperty."^^xsd:string ;
            sh:message "g36: A fan with VFD shall have at least one fan speed command using the relation hasProperty."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableActuatableProperty ;
                    sh:node [ sh:property [ sh:hasValue qudtqk:DimensionlessRatio ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterCoil> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "HotWater/ReheatCoil"^^xsd:string ;
    rdfs:comment "A hot water coil connected to a control valve."^^xsd:string ;
    rdfs:subClassOf s223:HeatingCoil ;
    sh:property [ rdfs:comment "The HotWaterCoil shall be connected to a HotWaterValve using the relation connectedTo."^^xsd:string ;
            sh:message "g36: The HotWaterCoil shall be connected to a HotWaterValve using the relation connectedTo."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:connectedTo ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValve> ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValve> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Valve"^^xsd:string ;
    rdfs:comment "A valve that controls the flow of hot water through a hot water coil."^^xsd:string ;
    rdfs:subClassOf s223:Valve .

<http://data.ashrae.org/standard223/1.0/extensions/g36#TwoPositionDamper> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Two Position Damper"^^xsd:string ;
    rdfs:comment "A damper that can take two positions: fully open and fully closed."^^xsd:string ;
    rdfs:subClassOf s223:Damper ;
    sh:property [ rdfs:comment "A Two Position Damper shall have at least one open-and-close damper command property using the relation hasProperty."^^xsd:string ;
            sh:message "g36: A Two Position Damper shall have at least one open-and-close damper command property using the relation hasProperty."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:EnumeratedActuatableProperty ;
                    sh:node [ sh:property [ sh:class s223:EnumerationKind-Binary ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasEnumerationKind ],
                                [ sh:hasValue s223:Binary-Position ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasAspect ] ] ] ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#Zone> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Zone"^^xsd:string ;
    rdfs:comment "A thermal zone with the points required for Guideline 36 control sequences. It is a collection of s223:DomainSpace instances."^^xsd:string ;
    rdfs:subClassOf s223:Zone ;
    sh:property [ rdfs:comment "A Zone shall have at least one binary zone occupancy property using the relation hasProperty"^^xsd:string ;
            sh:message "g36: A Zone shall have at least one binary zone occupancy property using the relation hasProperty"^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:EnumeratedObservableProperty ;
                    sh:node [ sh:property [ sh:class s223:EnumerationKind-Occupancy ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasEnumerationKind ] ] ] ;
            sh:severity sh:Info ],
        [ rdfs:comment "A Zone shall have a zone temperature setpoint adjustment property using the relation hasProperty, if applicable."^^xsd:string ;
            sh:message "g36: A Zone shall have a zone temperature setpoint adjustment property using the relation hasProperty, if applicable."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableObservableProperty ;
                    sh:node [ sh:property [ sh:hasValue qudtqk:Temperature ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path qudt:hasQuantityKind ],
                                [ sh:hasValue s223:Aspect-Delta ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasAspect ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ;
            sh:severity sh:Info ],
        [ rdfs:comment "A Zone shall have at least one Domain-HVAC using the relation hasDomain. "^^xsd:string ;
            sh:hasValue s223:Domain-HVAC ;
            sh:message "g36: A Zone shall have at least one Domain-HVAC using the relation hasDomain. "^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasDomain ],
        [ rdfs:comment "A Zone shall have at least a zone CO2 concentration property using the relation hasProperty, if applicable control is used."^^xsd:string ;
            sh:message "g36: A Zone shall have at least a zone CO2 concentration property using the relation hasProperty, if applicable control is used."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:QuantifiableObservableProperty ;
                    sh:node [ sh:property [ sh:hasValue s223:Constituent-CO2 ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:ofConstituent ],
                                [ sh:hasValue qudtqk:DimensionlessRatio ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path qudt:hasQuantityKind ] ] ] ;
            sh:severity sh:Info ],
        [ rdfs:comment "A Zone shall have at least one window switch on-off property using the relation hasProperty."^^xsd:string ;
            sh:message "g36: A Zone shall have at least one window switch on-off property using the relation hasProperty."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasProperty ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:EnumeratedObservableProperty ;
                    sh:node [ sh:property [ sh:class s223:Binary-OnOff ;
                                    sh:maxCount 1 ;
                                    sh:minCount 1 ;
                                    sh:path s223:hasEnumerationKind ],
                                [ rdfs:comment "Property shall be measured at a window."^^xsd:string ;
                                    sh:class s223:Window ;
                                    sh:path [ sh:alternativePath ( ( [ sh:inversePath s223:observes ] s223:hasObservationLocation ) [ sh:inversePath s223:hasProperty ] ) ] ] ] ] ;
            sh:severity sh:Info ] .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ZoneGroup> a s223:Class,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Zone Group"^^xsd:string ;
    rdfs:comment "A ZoneGroup is a grouping of zones that may be scheduled together. Zone groupings must be assigned based on rules in Clause 3.1.3 of Guideline 36."^^xsd:string ;
    rdfs:subClassOf s223:Zone ;
    sh:property [ rdfs:comment "A ZoneGroup shall contain at least one Zone using the relation contains."^^xsd:string ;
            sh:class <http://data.ashrae.org/standard223/1.0/extensions/g36#Zone> ;
            sh:message "g36: A ZoneGroup shall contain at least one Zone using the relation contains."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:contains ],
        [ rdfs:comment "A ZoneGroup shall have the Domain HVAC using the relation hasDomain."^^xsd:string ;
            sh:hasValue s223:Domain-HVAC ;
            sh:message "g36: A ZoneGroup shall have the Domain HVAC using the relation hasDomain."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasDomain ] .

ns3:APIStatus a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "API Status"^^xsd:string ;
    rdfs:comment "The class of possible values for dash:apiStatus."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

ns3:FailureResult a rdfs:Class ;
    rdfs:label "Failure result"^^xsd:string ;
    rdfs:comment "A result representing a validation failure such as an unsupported recursion."^^xsd:string ;
    rdfs:subClassOf sh:AbstractResult .

ns3:FailureTestCaseResult a rdfs:Class ;
    rdfs:label "Failure test case result"^^xsd:string ;
    rdfs:comment "Represents a failure of a test case."^^xsd:string ;
    rdfs:subClassOf ns3:TestCaseResult .

ns3:GraphUpdate a rdfs:Class ;
    rdfs:label "Graph update"^^xsd:string ;
    rdfs:comment "A suggestion consisting of added and/or deleted triples, represented as rdf:Statements via dash:addedTriple and dash:deletedTriple."^^xsd:string ;
    rdfs:subClassOf ns3:Suggestion .

ns3:MultiFunction a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi-function"^^xsd:string ;
    rdfs:comment """A multi-function is a function that can return zero or more result objects consisting of one or more result variables. While normal (SPARQL/SHACL) functions can only return a single result node, multi-functions may not only return multiple nodes but even multiple individual variables per solution.

A common way of defining multi-functions is by wrapping a SPARQL SELECT query, using dash:SPARQLMultiFunction. However, some MultiFunctions (in TopBraid) may also be implemented natively."""^^xsd:string ;
    rdfs:subClassOf sh:Parameterizable ;
    sh:nodeKind sh:IRI .

ns3:PropertyRole a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Property role"^^xsd:string ;
    rdfs:comment "The class of roles that a property (shape) may take for its focus nodes."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

ns3:SPARQLConstructTemplate a rdfs:Class ;
    rdfs:label "SPARQL CONSTRUCT template"^^xsd:string ;
    rdfs:comment "Encapsulates one or more SPARQL CONSTRUCT queries that can be parameterized. Parameters will become pre-bound variables in the queries."^^xsd:string ;
    rdfs:subClassOf sh:Parameterizable,
        sh:SPARQLConstructExecutable .

ns3:SPARQLMultiFunction a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "SPARQL multi-function"^^xsd:string ;
    rdfs:comment "A multi-function based on a SPARQL SELECT query. The query gets executed with the arguments pre-bound to the variables declared as parameters. The results of the multi-function are all result bindings from the SPARQL result set."^^xsd:string ;
    rdfs:subClassOf ns3:MultiFunction,
        sh:SPARQLSelectExecutable .

ns3:SPARQLSelectTemplate a rdfs:Class ;
    rdfs:label "SPARQL SELECT template"^^xsd:string ;
    rdfs:comment "Encapsulates a SPARQL SELECT query that can be parameterized. Parameters will become pre-bound variables in the query."^^xsd:string ;
    rdfs:subClassOf sh:Parameterizable,
        sh:SPARQLSelectExecutable .

ns3:SPARQLUpdateSuggestionGenerator a rdfs:Class ;
    rdfs:label "SPARQL UPDATE suggestion generator"^^xsd:string ;
    rdfs:comment """A SuggestionGenerator based on a SPARQL UPDATE query (sh:update), producing an instance of dash:GraphUpdate. The INSERTs become dash:addedTriple and the DELETEs become dash:deletedTriple. The WHERE clause operates on the data graph with the pre-bound variables $focusNode, $predicate and $value, as well as the other pre-bound variables for the parameters of the constraint.

In many cases, there may be multiple possible suggestions to fix a problem. For example, with sh:maxLength there are many ways to slice a string. In those cases, the system will first iterate through the result variables from a SELECT query (sh:select) and apply these results as pre-bound variables into the UPDATE query."""^^xsd:string ;
    rdfs:subClassOf ns3:SuggestionGenerator,
        sh:SPARQLSelectExecutable,
        sh:SPARQLUpdateExecutable .

ns3:ScriptFunction a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Script function"^^xsd:string ;
    rdfs:comment """Script functions can be used from SPARQL queries and will be injected into the generated prefix object (in JavaScript, for ADS scripts). The dash:js will be inserted into a generated JavaScript function and therefore needs to use the return keyword to produce results. These JS snippets can access the parameter values based on the local name of the sh:Parameter's path. For example ex:value can be accessed using value.

SPARQL use note: Since these functions may be used from any data graph and any shapes graph, they must not rely on any API apart from what's available in the shapes graph that holds the rdf:type triple of the function itself. In other words, at execution time from SPARQL, the ADS shapes graph will be the home graph of the function's declaration."""^^xsd:string ;
    rdfs:subClassOf ns3:Script,
        sh:Function .

ns3:ShapeScript a rdfs:Class ;
    rdfs:label "Shape script"^^xsd:string ;
    rdfs:comment "A shape script contains extra code that gets injected into the API for the associated node shape. In particular you can use this to define additional functions that operate on the current focus node (the this variable in JavaScript)."^^xsd:string ;
    rdfs:subClassOf ns3:Script .

ns3:SuccessResult a rdfs:Class ;
    rdfs:label "Success result"^^xsd:string ;
    rdfs:comment "A result representing a successfully validated constraint."^^xsd:string ;
    rdfs:subClassOf sh:AbstractResult .

ns3:SuccessTestCaseResult a rdfs:Class ;
    rdfs:label "Success test case result"^^xsd:string ;
    rdfs:comment "Represents a successful run of a test case."^^xsd:string ;
    rdfs:subClassOf ns3:TestCaseResult .

ns3:Suggestion a rdfs:Class ;
    rdfs:label "Suggestion"^^xsd:string ;
    ns3:abstract true ;
    rdfs:comment "Base class of suggestions that modify a graph to \"fix\" the source of a validation result."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

ns3:SuggestionGenerator a rdfs:Class ;
    rdfs:label "Suggestion generator"^^xsd:string ;
    ns3:abstract true ;
    rdfs:comment "Base class of objects that can generate suggestions (added or deleted triples) for a validation result of a given constraint component."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

ns3:SuggestionResult a rdfs:Class ;
    rdfs:label "Suggestion result"^^xsd:string ;
    rdfs:comment "Class of results that have been produced as suggestions, not through SHACL validation. How the actual results are produced is up to implementers. Each instance of this class should have values for sh:focusNode, sh:resultMessage, sh:resultSeverity (suggested default: sh:Info), and dash:suggestion to point at one or more suggestions."^^xsd:string ;
    rdfs:subClassOf sh:AbstractResult .

ns3:TestCaseResult a rdfs:Class ;
    rdfs:label "Test case result"^^xsd:string ;
    ns3:abstract true ;
    rdfs:comment "Base class for results produced by running test cases."^^xsd:string ;
    rdfs:subClassOf sh:AbstractResult .

ns3:TestEnvironment a rdfs:Class ;
    rdfs:label "Test environment"^^xsd:string ;
    ns3:abstract true ;
    rdfs:comment "Abstract base class for test environments, holding information on how to set up a test case."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

qudt:AbstractDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Abstract Datatype"^^xsd:string ;
    dcterms:description """
  <p>An "Abstract Datatype" (ADT) is a specification of a set of data and the set of operations that can be performed on the data. 
  Such a data type is abstract in the sense that it is independent of various concrete implementations. 
  The definition can be mathematical, or it can be programmed as an interface. 
  A first class ADT supports the creation of multiple instances of the ADT, and the interface normally provides a constructor,
   which returns an abstract handle to new data, and several operations, 
   which are functions accepting the abstract handle as an argument.</p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Abstract_data_type>,
        <http://xlinux.nist.gov/dads/HTML/abstractDataType.html> .

qudt:AbstractQuantityKind a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity Kind (abstract)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:AbstractQuantityKind-altSymbol,
        qudt:AbstractQuantityKind-broader,
        qudt:AbstractQuantityKind-latexSymbol,
        qudt:AbstractQuantityKind-symbol .

qudt:AerospaceCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Aerospace Coordinate system"^^xsd:string ;
    dcterms:description "A sub-type of 'Coordinate system'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CoordinateSystem .

qudt:AlgebraicDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Algebraic Datatype"^^xsd:string ;
    dcterms:description """<p>An <em>Algebraic Datatype</em> is a datatype each of whose values are data from other data types wrapped in one of the constructors of the data type. 
Any wrapped datum is an argument to the constructor. 
In contrast to other data types, the constructor is not executed and the only way to operate on the data is to unwrap the constructor using pattern matching.
</p>
<p>The most common algebraic data type is a list with two constructors: Nil or [] for an empty list, and Cons (an abbreviation of constructor), 
 ::, or : for the combination of a new element with a shorter list (for example (Cons 1 '(2 3 4)) or 1:[2,3,4]).
</p>
<p>Special cases of algebraic types are product types i.e. records (only one constructor) and enumerated types (many constructors with no arguments). 
Algebraic types are one kind of composite type (i.e. a type formed by combining other types).
</p>
<p>An algebraic data type may also be an abstract data type (ADT) if it is exported from a module without its constructors. 
Values of such a type can only be manipulated using functions defined in the same module as the type itself.
"""^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:AbstractDatatype ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Algebraic_data_type> .

qudt:AlignmentType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Alignment type"^^xsd:string ;
    dcterms:description """
  Specifies how a physical data field is aligned. 
  The alignment could be at a bit, byte or word boundary.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:in ( qudt:BitAligned qudt:ByteAligned qudt:WordAligned ) .

qudt:AngleUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Angle unit"^^xsd:string ;
    dcterms:description "All units relating to specificaiton of angles. "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:DimensionlessUnit ;
    skos:exactMatch <http://dbpedia.org/resource/Category:Units_of_angle> .

qudt:Array a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Array"^^xsd:string ;
    dcterms:description """
  <p>An <em>Array&gt;</em> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. 
  Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'.
  </p>
  <p>The key considerations for an Array are:
  </p>
  <ol>
  <li>Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;</li>
  <li>Index-Based Access: Elements can be accessed, updated, or modified using their index;</li>
  <li>Contiguous Memory Allocation: The elements are stored in consecutive memory locations, which allows efficient access using the index.</li>
  </ol>
  <p>An Array is represented as ordered entries of values arranged according to its dimensionality.
  The number of dimensions is specified in the attribute 'dimensionality'.
  </p>
  <p>An array can be multi-dimensional.
  Multiple indices are used but they are treated as extensions of the same structure.
  For Example: for a 2D array arr[2][3], indices refer to the row and column positions.
  A 2D array is still represented as a list, where each member of the list is a list.
  </p>
  <p>Higher dimensional arrays can be represented as nested lists.
  For each dimension a new nested list is defined.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    sh:node qudt:DimensionalityShape ;
    sh:property qudt:Array-isHeterogeneous,
        qudt:Array-value,
        qudt:DatatypePropertyShape,
        qudt:DimensionalityPropertyShape,
        qudt:DimensionsPropertyShape .

qudt:ArrayDataOrder a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Array data order"^^xsd:string ;
    dcterms:description "A sub-type of 'Enumerated Value'. Detailed description to be provided in a future version."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:oneOf ( qudt:ByColumn qudt:ByRow qudt:ByLeftMostIndex ) .

qudt:ArrayType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Array Type"^^xsd:string ;
    dcterms:description """
  <p>An <em>Array Type</em> is a type specification for ordered entries of values arranged according to the dimensions given. 
  The dimensions are given as a list of integers where each integer is the cardinality of each dimension. 
  The number of dimensions is specified in the attribute 'dimensionality'.
  </p>
  <p>Optionally a reference can be made to a variable, whose values are the array entries. 
  The data type of the array entries is an optional field, 'elementType', which points to a data type definition. 
  If the data type is given, then it applies to all elements.  
  If it is not given then the elements can be of different types for each position in the array.
  </p>
  <p>The property <em>qudt:typeMatrix</em> must refer to a matrix of types.
  If a default value is given this can be used to place the appropriate value in a cell when an entry value is not known. 
  If no dimensionality or dimension vector is specified the array is under-specified but still legitimate as a place-holder for a data type.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype .

qudt:AspectClass a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Aspect Class"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf rdfs:Class .

qudt:AssociativeArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Associative Array"^^xsd:string ;
    dcterms:description """
  <p>An <em>Associative Array</em> (or <em>Map</em>) is an abstract data type composed of a collection of keys and a collection of values,
   where each key is associated with one value. 
  The operation of finding the value associated with a key is called a lookup or indexing,
   and this is the most important operation supported by an associative array.
  The relationship between a key and its value is sometimes called a mapping or binding.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:Map ;
    rdfs:subClassOf qudt:Array .

qudt:AuralCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Aural Cue"^^xsd:string ;
    rdfs:comment """
  <p>An aural cue is a sound produced by a device or a system that is used to alert personnel of of an advisory, cautionary, warning, or emergency state.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ModalCue ;
    sh:property qudt:AuralCue-sound .

qudt:AxialOrientationType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Axial Orientation Type"^^xsd:string ;
    dcterms:description "The axial orientation of a coordinate system frame axis."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:in ( qudt:PositiveZ qudt:PositiveY qudt:NegativeY qudt:NegativeZ qudt:PositiveX qudt:NegativeX ) .

qudt:BalancedTree a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Balanced Tree Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Balanced Tree</em> is a data type that defines the properties of data structures that represent balanced trees. 
  A balanced tree is a tree where no leaf is much farther away from the root than any other leaf. 
  Different balancing schemes allow different definitions of "much farther" and different amounts of work to keep them balanced.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tree ;
    sh:property qudt:BalancedTree-maxDepth .

qudt:BaseDimensionMagnitude a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Base Dimension Magnitude"^^xsd:string ;
    dcterms:description """
  <p>A <em>Dimension</em> expresses a magnitude for a base quantity kind such as mass, length and time.
  </p>
  <p>DEPRECATED - each exponent is expressed as a property. 
  Keep until a validation of this has been done.
  """^^rdf:HTML ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI,
        "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:BaseDimensionMagnitude-hasBaseQuantityKind,
        qudt:BaseDimensionMagnitude-vectorMagnitude .

qudt:BigIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Big Integer Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Big Integer</em> is an integer that can be represented in eight octets (64 bits) of machine memory. 
  Big integers may be signed or unsigned.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype .

qudt:BinaryPrefix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Binary Prefix"^^xsd:string ;
    dcterms:description """
  <p>A <em>Binary Prefix</em> is a prefix for multiples of units in data processing, data transmission, and digital information,
   notably the bit and the byte, to indicate multiplication by a power of 2.
   </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Prefix .

qudt:BinaryTree a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Binary Tree Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Binary Tree</em> is a data type that defines the properties of data structures that represent binary trees. 
  A binary tree is a tree in which each node has at most 2 children.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tree .

qudt:BitEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bit Encoding"^^xsd:string ;
    dcterms:description """
  <p>A <em>Bit Encoding Type</em> is an encoding type for the correspondence between the two possible values of a bit, 0 or 1, and some interpretation. 
  For example, in a boolean encoding, a bit denotes a truth value, where 0 corresponds to False and 1 corresponds to True.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:BitEncoding ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:BooleanEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Boolean Encoding Type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:BooleanEncoding qudt:BitEncoding qudt:OctetEncoding ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:BooleanType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Boolean Type"^^xsd:string ;
    dcterms:description "A boolean data type can take on only two values."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:OrdinalType ;
    sh:property qudt:BooleanType-encoding .

qudt:BooleanTypeEnumeratedValue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "boolean value"^^xsd:string ;
    dcterms:description "Specifies how a boolean value is expressed"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:ByteEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Byte Encoding"^^xsd:string ;
    dcterms:description "This class contains the various ways that information may be encoded into bytes."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding .

qudt:CardinalityType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cardinality Type"^^xsd:string ;
    dcterms:description """
  In mathematics, the cardinality of a set is a measure of the number of elements of the set.
  For example, the set $A = {2, 4, 6}$ contains 3 elements, and therefore $A$ has a cardinality of 3. 
  There are two approaches to cardinality: one which compares sets directly using bijections and injections,
   and another which uses cardinal numbers.
  """^^qudt:LatexString ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cardinal_number"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Cardinality"^^xsd:anyURI ;
    qudt:plainTextDescription "In mathematics, the cardinality of a set is a measure of the number of elements of the set.  For example, the set 'A = {2, 4, 6}' contains 3 elements, and therefore 'A' has a cardinality of 3. There are two approaches to cardinality – one which compares sets directly using bijections and injections, and another which uses cardinal numbers."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Cardinal_number>,
        <http://en.wikipedia.org/wiki/Cardinality> ;
    sh:in ( qudt:CT_COUNTABLY-INFINITE qudt:CT_UNCOUNTABLE qudt:CT_FINITE ) ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:CT_COUNTABLY-INFINITE qudt:CT_FINITE qudt:CT_UNCOUNTABLE ) ;
            sh:path [ sh:inversePath rdf:type ] ],
        qudt:CardinalityType-literal .

qudt:CartesianCoordinates a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cartesian Coordinate Type"^^xsd:string ;
    dcterms:description """
  A set of  variables which fix a geometric object.
  If the coordinates are distances measured along perpendicular axes, they are known as Cartesian coordinates.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Coordinates .

qudt:CharEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Char Encoding Type"^^xsd:string ;
    dcterms:description """
  <p>The class of all character encoding schemes.
  Each defines a rule or algorithm for encoding character data as a sequence of bits or bytes.
  """^^rdf:HTML,
        "The class of all character encoding schemes, each of which defines a rule or algorithm for encoding character data as a sequence of bits or bytes."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:CharEncoding ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:CharacterType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Character Type"^^xsd:string ;
    dcterms:description """
  A <em>Character Type</em> is a data type that defines the type and encoding of single characters.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:OrdinalType .

qudt:Citation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Citation"^^xsd:string ;
    dcterms:description "Provides a simple way of making citations."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:Citation-description,
        qudt:Citation-url .

qudt:Collection a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Collection Type"^^xsd:string ;
    dcterms:description """
  <p>A collection is a grouping of some variable number of zero or more data items that need to be operated upon together in some controlled fashion. 
  Generally, the data items will all share the same data type or are derived from some common ancestor data type.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype .

qudt:ColorCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Color Cue"^^xsd:string ;
    rdfs:comment """
  <p>A visual cue that uses color to distinguish it from other cues. 
  Each color cue has exactly one corresponding coordinate point in the RGB space.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:VisualCue ;
    sh:property qudt:ColorCue-rgbCode .

qudt:Comment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Comment"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Verifiable ;
    sh:property qudt:Comment-description,
        qudt:Comment-rationale .

qudt:CompositeDataStructure a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Composite Data Structure"^^xsd:string ;
    rdfs:comment """
  <p>A <em>Composite Data Structure</em>, also referred to as <em>Data Record</em> is a datatype that aggregates element of possibly different types. 
  The aggregated items are called fields or members and are usually identified or indexed by field labels.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    prov:wasInfluencedBy <https://en.wikipedia.org/wiki/List_of_data_structures>,
        <https://en.wikipedia.org/wiki/Record_(computer_science)> ;
    sh:property qudt:CompositeDataStructure-dataElement .

qudt:CompositeDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Composite Data Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Composite Datatype</em> is a datatype that is constructed from basic primitive types and other composite types. 
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    prov:wasInfluencedBy <https://en.wikipedia.org/wiki/List_of_data_structures> ;
    sh:property qudt:CompositeDatatype-alignment,
        qudt:CompositeDatatype-padding .

qudt:CompositeTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Composite Table Type"^^xsd:string ;
    dcterms:description "A sub-type of 'Table Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Table .

qudt:CompositionFunction a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Composition function"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Function .

qudt:CompositionTree a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Composition Tree"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tree ;
    sh:property qudt:CompositionTree-compositionFunction .

qudt:Concept a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "QUDT Concept"^^xsd:string ;
    dcterms:description "The root class for all QUDT concepts."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property qudt:Concept-abbreviation,
        qudt:Concept-code,
        qudt:Concept-deprecated,
        qudt:Concept-description,
        qudt:Concept-exactMatch,
        qudt:Concept-guidance,
        qudt:Concept-hasRule,
        qudt:Concept-id,
        qudt:Concept-isReplacedBy,
        qudt:Concept-plainTextDescription,
        qudt:Concept-type .

qudt:ConstantValue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Constant value"^^xsd:string ;
    dcterms:description "Used to specify the values of a constant."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityValue ;
    sh:property qudt:ConstantValue-exactConstant .

qudt:ContextualUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Contextual Unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Unit ;
    sh:property qudt:ContextualUnit-broader .

qudt:CoordinateCenterKind a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coordinate Center Kind"^^xsd:string ;
    dcterms:description """
  <p>An enumeration of coordinate centers for coordinate systems, such as:
   "Earth centered", "Mars centered", "Moon centered", "Sun centered",  and "Vehicle centered".
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue,
        qudt:NominalScale ;
    sh:in ( qudt:CCT_MarsCentered qudt:CCT_EarthCentered qudt:CCT_MoonCentered qudt:CCT_VehicleCentered qudt:CCT_SunCentered ) .

qudt:CoordinateMember a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coordinate Member"^^xsd:string ;
    dcterms:description """
  <p>A <em>Coordinate Member</em> is a data type that defines the properties of a coordinate in a coordinate system.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TupleMember .

qudt:CoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coordinate system"^^xsd:string ;
    dcterms:description """
  <p>A <em>Coordinate System</em> is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. 
  A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems.
  </p>
  <p>In geometry, a coordinate system is a system which uses one or more numbers, or coordinates,
   to uniquely determine the position of a point or other geometric element on a manifold such as Euclidean space. 
  The order of the coordinates is significant.
  They are sometimes identified by their position in an ordered tuple and sometimes by a letter, as in 'the x-coordinate'. 
  </p>
  <p>In elementary mathematics the coordinates are taken to be real numbers, but may be complex numbers or elements of a more abstract system such as a commutative ring. 
  The use of a coordinate system allows problems in geometry to be translated into problems about numbers and vice versa; this is the basis of analytic geometry. 
  </p>
  <p>In astronomy, a celestial coordinate system is a system for specifying positions of celestial objects: satellites, planets, stars, galaxies, and so on. 
  Coordinate systems can specify a position in 3-dimensional space, or merely the direction of the object on the celestial sphere, if its distance is not known or not important.
  </p>
  <p>The coordinate systems are implemented in either spherical coordinates or rectangular coordinates. 
  Spherical coordinates, projected on the celestial sphere, are analogous to the geographic coordinate system used on the surface of the Earth.
  These differ in their choice of fundamental plane, which divides the celestial sphere into two equal hemispheres along a great circle.
  </p>
  <p>Rectangular coordinates, in appropriate units, are simply the cartesian equivalent of the spherical coordinates, with the same fundamental (x,y) plane and primary (x-axis) direction. 
  Each coordinate system is named for its choice of fundamental plane.
  """^^rdf:HTML ;
    qudt:dbpediaMatch <http://dbpedia.org/resource/Coordinate_system> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso <http://en.wikipedia.org/wiki/Astronomical_coordinate_systems>,
        <http://en.wikipedia.org/wiki/Coordinate_system>,
        <http://mathworld.wolfram.com/CoordinateSystem.html>,
        <http://mathworld.wolfram.com/Coordinates.html> ;
    rdfs:subClassOf qudt:Concept,
        skos:Concept ;
    sh:property qudt:CoordinateSystem-abbreviation,
        qudt:CoordinateSystem-acronym,
        qudt:CoordinateSystem-coordinateCenter,
        qudt:CoordinateSystem-originDefinition,
        qudt:CoordinateSystem-referenceFrame .

qudt:Coordinates a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coordinates"^^xsd:string ;
    dcterms:description """
  <p>A coordinate system is a mathematical structure for assigning a unique n-tuple of numbers or scalars to each point in an n-dimensional space. 
  A Coordinate System Type is a data type that defines the properties of data structures that represent coordinate systems.
  </p>
  <p>The primary attributes of any coordinate system are the coordinate frame or orientation of the axes of the coordinate system and the coordinate center or origin of the coordinate system.
  The coordinate center is the easier of the two attributes to define and in trajectory-related coordinate systems is often taken to be the center of mass of natural solar system bodies such as the Earth, the Moon, or Mars.
  Precise definition of the coordinate frame, however, usually takes much more effort. 
  As a result, the primary purpose is to provide a detailed description of a number of different coordinate frames commonly used in mission analysis.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tuple ;
    sh:property qudt:Coordinates-elementType .

qudt:Coordinates-2D a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "2D Coordinate Type"^^xsd:string ;
    dcterms:description """
  <p>A 2D coordinate system is a system for assigning a two-tuple of numbers or scalars to each point in an 2-dimensional space. 
  A corresponding 2D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 2D coordinate system.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CartesianCoordinates,
        qudt:TwoTuple .

qudt:Coordinates-2D-DoublePrecision a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coordinates-2D-Double precision"^^xsd:string ;
    dcterms:description """
  <p>A 2D coordinates in double floating point precision for locating a point in physical space.
  """^^rdf:HTML ;
    qudt:elementTypeCount 2 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Coordinates-2D ;
    sh:property qudt:Coordinates-2D-DoublePrecision-double_X,
        qudt:Coordinates-2D-DoublePrecision-double_Y .

qudt:Coordinates-2D-SinglePrecision a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cartesian Coordinates 2D Single Precision"^^xsd:string ;
    dcterms:description """
  <p>A 2D coordinates in single floating point precision for locating a point in physical space.
  """^^rdf:HTML ;
    qudt:elementTypeCount 2 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Coordinates-2D ;
    sh:property qudt:Coordinates-2D-DoublePrecision-double_X,
        qudt:Coordinates-2D-DoublePrecision-double_Y .

qudt:Coordinates-3D a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "3D Coordinate Type"^^xsd:string ;
    dcterms:description """
  <p>A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space.
  A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CartesianCoordinates,
        qudt:ThreeTuple .

qudt:Coordinates-3D-DoublePrecision a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "3D Coordinates (Double Precision)"^^xsd:string ;
    dcterms:description """
  <p>A 3D coordinates in double floating point precision for locating a point in physical space.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Coordinates-3D ;
    sh:property qudt:Coordinates-3D-DoublePrecision-double_X,
        qudt:Coordinates-3D-DoublePrecision-double_Y,
        qudt:Coordinates-3D-DoublePrecision-double_Z .

qudt:Coordinates-3D-SinglePrecision a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "3D Coordinates (Single Precision)"^^xsd:string ;
    dcterms:description """
  <p>A 3D coordinates in single floating point precision for locating a point in physical space.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Coordinates-3D ;
    sh:property qudt:Coordinates-3D-SinglePrecision-float_X,
        qudt:Coordinates-3D-SinglePrecision-float_Y,
        qudt:Coordinates-3D-SinglePrecision-float_Z .

qudt:Coordinates-3D-Type a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "3D Coordinate Type"^^xsd:string ;
    dcterms:description """
  <p>A 3D coordinate system is a system for assigning a three-tuple of numbers or scalars to each point in an 3-dimensional space. 
  A corresponding 3D Coordinate Type is a data type that defines the data type for each coordinate (tuple member) in a 3D coordinate system.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CartesianCoordinatesType,
        qudt:ThreeTuple .

qudt:CountingUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Counting Unit"^^xsd:string ;
    dcterms:description """
  <p>A <em>Counting Unit</em> is used for all units that express counts. 
  Examples are Atomic Number, Number, Number per Year, Percent and Sample per Second.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:DimensionlessUnit .

qudt:CurrencyUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Currency Unit"^^xsd:string ;
    dcterms:description """
  Currency Units have their own subclass of unit because:
   (a) they have additional properties such as 'country' and
   (b) their URIs do not conform to the same rules as other units.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:DimensionlessUnit ;
    sh:property qudt:CurrencyUnit-currencyCode,
        qudt:CurrencyUnit-currencyExponent,
        qudt:CurrencyUnit-currencyNumber .

qudt:DataEncoding a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data Encoding"^^xsd:string ;
    dcterms:description """
  <p><em>Data Encoding</em> expresses the properties that specify how data is represented at the bit and byte level. 
  These properties are applicable to describing raw data.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Aspect ;
    sh:property qudt:DataEncoding-bitOrder,
        qudt:DataEncoding-byteOrder,
        qudt:DataEncoding-encoding .

qudt:DataItem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data Item"^^xsd:string ;
    dcterms:description """
  <p>A <em>Data Item</em> holds a value that maybe a scalar or structured datatype.
  <em>Quantity Value</em> specifies which case applies.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:DataItem-value .

qudt:DataSetElement a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "QUDT DataSet Element"^^xsd:string ;
    dcterms:description """
  A field is a tuple that carries a name, a type and optionally other properties that characterize a member element of a composite data structure.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DataItem,
        qudt:Tuple ;
    sh:property qudt:DataSetElement-elementLabel,
        qudt:DataSetElement-optional,
        qudt:DataSetElement-quantityKind .

qudt:Datatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Datatype"^^xsd:string ;
    dcterms:description """
  <p>A <em>Datatype</em> is a definition of the type of the "value" of a data item (for example, "all integers between 0 and 10"),
   and the allowable operations on those values; the meaning of the data; and the way values of that type can be stored. 
  Some types are primitive - built-in to the language, with no visible internal structure.
  For example "Boolean"; others are composite - constructed from one or more other types (of either kind).
  For example lists, arrays, structures, unions. 
  Some languages provide strong typing, others allow implicit type conversion and/or explicit type conversion.
  """^^rdf:HTML ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data_type"^^xsd:anyURI,
        "http://foldoc.org/data+type"^^xsd:anyURI,
        "http://www.princeton.edu/~achaney/tmve/wiki100k/docs/Data_type.html"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:Datatype-ansiSQLName,
        qudt:Datatype-basis,
        qudt:Datatype-bounded,
        qudt:Datatype-cName,
        qudt:Datatype-cardinality,
        qudt:Datatype-id,
        qudt:Datatype-javaName,
        qudt:Datatype-jsName,
        qudt:Datatype-matlabName,
        qudt:Datatype-microsoftSQLServerName,
        qudt:Datatype-mySQLName,
        qudt:Datatype-odbcName,
        qudt:Datatype-oleDBName,
        qudt:Datatype-oracleSQLName,
        qudt:Datatype-orderedType,
        qudt:Datatype-protocolBuffersName,
        qudt:Datatype-pythonName,
        qudt:Datatype-vbName .

qudt:DateStringType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Date String Type"^^xsd:string ;
    dcterms:description "Date String Types are scalar data types that define the properties of strings that represent calendar dates."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DateTimeStringType .

qudt:DateTimeStringEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Date Time String Encoding Type"^^xsd:string ;
    dcterms:description "Date Time encodings are logical encodings for expressing date/time quantities as strings by applying unambiguous formatting and parsing rules."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringEncodingType ;
    sh:property [ sh:path qudt:allowedPattern ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:datatype xsd:string ] ],
        qudt:DateTimeStringEncodingType-allowedPattern .

qudt:DateTimeStringType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Temporal Type"^^xsd:string ;
    dcterms:description """
  <p>A class of data types for structures that represent temporal quantities.
  For example, calendar dates, times, duration of time since a given epoch, etc.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringType ;
    sh:property qudt:DateTimeStringType-encoding .

qudt:DecimalPrefix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Decimal Prefix"^^xsd:string ;
    dcterms:description """
  A <em>Decimal Prefix</em> is a prefix for multiples of units that are powers of 10.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Prefix .

qudt:DerivedUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Derived Unit"^^xsd:string ;
    dcterms:description """
  <p>A <em>Derived Unit</em> is a type specification for units that are derived from other units.
  """^^rdf:HTML ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Category:SI_derived_units"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Unit .

qudt:Dictionary a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dictionary Type"^^xsd:string ;
    dcterms:description "A \"Map\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Map .

qudt:DigitalCurrencyUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Digital Currency Unit"@en ;
    dcterms:description "A currency-like unit for cryptographic or tokenized assets. Instances should reference an ISO 24165 Digital Token Identifier (DTI) when available."@en ;
    qudt:informativeReference <https://dtif.org/>,
        <https://www.iso.org/standard/79891.html> ;
    rdfs:comment "A currency-like unit for cryptographic or tokenized assets. Instances should reference an ISO 24165 Digital Token Identifier (DTI) when available."@en ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:CurrencyUnit ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "hasDTICode, if provided, must be a 12-character ISO 24165 DTI (A–Z, 0–9)."@en ;
            sh:path qudt:hasDTICode ;
            sh:pattern "^[A-Z0-9]{12}$"^^xsd:string ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "blockchainNetwork, if provided, must be a single string (e.g., 'Bitcoin Mainnet')."@en ;
            sh:path qudt:blockchainNetwork ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "currencyCode must be a single 2–10 character uppercase alphanumeric mnemonic (e.g., 'BTC', 'USDT')."@en ;
            sh:path qudt:currencyCode ;
            sh:pattern "^[A-Z0-9]{2,10}$"^^xsd:string ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 30 ;
            sh:message "currencyExponent must be a single integer between 0 and 30 (e.g., BTC = 8, ETH = 18)."@en ;
            sh:minInclusive 0 ;
            sh:path qudt:currencyExponent ] .

qudt:DimensionalDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dimensional Data Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Dimensional Data Type</em> is a data type that specifies a physical quantity or unit of measure.
  Information about the physical dimensions of the quantities and units is embedded in their types.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype .

qudt:DimensionlessUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dimensionless Unit"^^xsd:string ;
    dcterms:description """
  <p>A <em>Dimensionless Unit</em> is a quantity for which all the exponents of the factors corresponding to the base quantities in its quantity dimension are zero.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Unit .

qudt:Discipline a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Discipline"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept .

qudt:DiscreteState a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Discrete State"^^xsd:string ;
    dcterms:description """
  <p>A <em>Discrete State</em> is the parent class for enumerated values that express a 'State' or 'Condition'.
  Examples are 'on' and 'off for a switch, 'open' and 'closed' for a valve, and 'wet' and 'dry'.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property qudt:DiscreteState-inverted .

qudt:DoublePrecisionType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Double Precision Type"^^xsd:string ;
    dcterms:description """
  <p>A double precision data type specifies how a numeric value, such as an integer or real number, is stored in memory.
  Typically this occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. 
  For example, on 32-bit machine architectures, a word is four bytes, and so double precision data value on a 32-bit machine architecture occupies eight bytes of memory.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType ;
    sh:disjoint qudt:SinglePrecisionType .

qudt:EarthCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Earth Coordinate System Type"^^xsd:string ;
    dcterms:description """
  <p>A "Trajectory Coordinate System" for all earth-centered coordinates, such as:</p>
  <ul>
  <li>Earth mean equator and prime meridian coordinate system;;</li>
  <li>Earth true equator and prime meridian of epoch coordinate system;</li> 
  <li>International celestial reference system;</li>
  <li>International terrestrial reference system;</li>
  <li>Sun centered international celestial reference system;</li>
  <li>Vehicle centered international celestial reference system.</li>
  </ul>"""^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TrajectoryCoordinateSystem ;
    sh:property qudt:EarthCoordinateSystem-coordinateCenter .

qudt:Encoding a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Encoding"^^xsd:string ;
    dcterms:description """
  <p>An encoding is a rule or algorithm that is used to convert data from a native, or unspecified form into a specific form that satisfies the encoding rules. 
  Examples of encodings include character encodings, such as UTF-8.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf skos:Concept ;
    sh:property qudt:Encoding-bits,
        qudt:Encoding-bytes .

qudt:EndianType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Endian Type"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Endianness"^^xsd:anyURI ;
    qudt:plainTextDescription "In computing, endianness is the ordering used to represent some kind of data as a sequence of smaller units. Typical cases are the order in which integer values are stored as bytes in computer memory (relative to a given memory addressing scheme) and the transmission order over a network or other medium. When specifically talking about bytes, endianness is also referred to simply as byte order.  Most computer processors simply store integers as sequences of bytes, so that, conceptually, the encoded value can be obtained by simple concatenation. For an 'n-byte' integer value this allows 'n!' (n factorial) possible representations (one for each byte permutation). The two most common of them are: increasing numeric significance with increasing memory addresses, known as little-endian, and its opposite, called big-endian."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:LittleEndian qudt:BigEndian ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:EngineeringValueTupleMember a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Engineering Value Tuple Member"^^xsd:string ;
    dcterms:description """
  <p>A sub-type of 'Tuple Member Type'. 
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TupleMember ;
    sh:disjoint qudt:RawValueTupleMember,
        qudt:RawValueTupleMemberType ;
    sh:property qudt:EngineeringValueTupleMember-elementType .

qudt:EnumeratedQuantity a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Enumerated Quantity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:EnumeratedQuantity-enumeratedValue,
        qudt:EnumeratedQuantity-enumeration .

qudt:EnumeratedValue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Enumerated Value"^^xsd:string ;
    dcterms:description """
  <p>An <em>Enumerated Value</em> class defines the members of an enumeration. 
  An enumeration is a set of literals from which a single value is selected. 
  Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. 
  Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. 
  </p>
  <p>Enumerated values are also controlled vocabularies and as such need to be standardized. 
  Without this consistency enumeration literals can be stated differently and result in  data conflicts and misinterpretations.
  </p>
  <p>The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. 
  An order attribute can also be given on the enumeration elements. 
  An enumeration can itself be a member of an enumeration. 
  This allows enumerations to be enumerated in a selection. 
  </p>
  <p>Enumerations are also subclasses of Scalar Datatype. 
  This allows them to be used as the reference of a datatype specification.
  </p>
  """^^rdf:HTML ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Verifiable,
        ns1:EnumeratedValue ;
    sh:property qudt:EnumeratedValue-abbreviation,
        qudt:EnumeratedValue-altSymbol,
        qudt:EnumeratedValue-description,
        qudt:EnumeratedValue-symbol .

qudt:Enumeration a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Enumeration"^^xsd:string,
        "QUDT Enumeration"^^xsd:string ;
    dcterms:description """
  <p>An <em>Enumeration</em> is a set of literals from which a single value is selected. 
  Each literal can have a tag as an integer within a standard encoding appropriate to the range of integer values. 
  Consistency of enumeration types will allow them, and the enumerated values, to be referred to unambiguously either through symbolic name or encoding. 
  Enumerated values are also controlled vocabularies and as such need to be standardized. 
  Without this consistency enumeration literals can be stated differently and result in  data conflicts and misinterpretations.
  </p>
  <p>The tags are a set of positive whole numbers, not necessarily contiguous and having no numerical significance, each corresponding to the associated literal identifier. 
  An order attribute can also be given on the enumeration elements. An enumeration can itself be a member of an enumeration. This allows enumerations to be enumerated in a selection. 
  Enumerations are also subclasses of <em>Scalar Datatype</em>. 
  This allows them to be used as the reference of a datatype specification.
  </p>
  """^^rdf:HTML ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Enumeration"^^xsd:anyURI ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Enumerated_type"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Enumeration"^^xsd:anyURI ;
    ns2:isElaboratedIn <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:StructuredDatatype,
        ns1:Enumeration ;
    sh:property qudt:Enumeration-abbreviation,
        qudt:Enumeration-bits,
        qudt:Enumeration-default,
        qudt:Enumeration-defaultValue,
        qudt:Enumeration-element,
        qudt:Enumeration-encoding,
        qudt:Enumeration-value .

qudt:EnumerationScale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Enumeration scale"^^xsd:string ;
    dcterms:description """
  A sub-type of 'DTYPE Enumeration'.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Scale,
        ns1:Enumeration ;
    sh:class ns1:Enumeration .

qudt:FactorUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Factor Unit"^^xsd:string,
        "Reified Factor"^^xsd:string ;
    dcterms:description """
  <p>A <em>Factor Unit</em> is a type specification for a unit, exponent pair that is a component of a derived unit.
  """^^rdf:HTML ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Category:SI_derived_units"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:FactorUnit-exponent,
        qudt:FactorUnit-hasUnit .

qudt:FieldType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Field Type"^^xsd:string ;
    dcterms:description """
  A sub-type of 'Composite Data Type'.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    sh:property qudt:FieldType-elementName,
        qudt:FieldType-elementType,
        qudt:FieldType-fieldLabel,
        qudt:FieldType-fieldType .

qudt:Figure a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Figure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:Figure-figureCaption,
        qudt:Figure-figureLabel,
        qudt:Figure-height,
        qudt:Figure-image,
        qudt:Figure-imageLocation,
        qudt:Figure-landscape,
        qudt:Figure-width .

qudt:FileFormat a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "File format"^^xsd:string ;
    dcterms:description """
  A sub-type of 'Enumerated Value'.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:FixedIntervalTimeSeriesArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Fixed Interval Time Series Array Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Fixed Interval Time Series Array Type</em> is a data type that specifies the properties of arrays that hold time series data.
  For example, data that has been sampled over uniformly spaced time intervals.
  A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TimeSeriesArray .

qudt:FixedIntervalTimeSeriesArrayType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Fixed Interval Time Series Array Type"^^xsd:string ;
    dcterms:description """<p>A <em>Fixed Interval Time Series Array Type</em> is a data type that specifies the properties of arrays that hold time series data.
 For example, data that has been sampled over uniformly spaced time intervals. 
 A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals.
 """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TimeSeriesArrayType .

qudt:FloatingPointEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Floating Point Encoding"^^xsd:string ;
    dcterms:description """
  <p>A type for specifying an "Encoding" with the following instance(s): 
  "Double Precision Encoding", and "Single Precision Real Encoding".
  """^^rdf:HTML,
        """
  A "Encoding" with the following instance(s): "Double Precision Encoding", "Single Precision Real Encoding".
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding .

qudt:FrameType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Frame Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Frame Type</em> specifies the intertial type of a coordinate frame as either inertial, rotating, or non-rotating.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:in ( qudt:FT_ROTATING qudt:FT_NON-ROTATING qudt:FT_INERTIAL ) .

qudt:Function a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Function"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Concept .

qudt:FunctionDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Function Data Type"^^xsd:string ;
    dcterms:description """
  <p>A function data type defines the input and output data type for a function or method. 
  The data type includes at least the function name and the number of its parameters. 
  In some programming languages, it may also specify the function's return type or the types of its arguments.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    sh:property qudt:FunctionDatatype-argType,
        qudt:FunctionDatatype-functionArity,
        qudt:FunctionDatatype-returnType .

qudt:Graph a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Graph Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Graph</em> is an instance of a kind of abstract data type, that consists of a set of nodes (also called vertices) and a set of edges that establish relationships (connections) between the nodes. 
  A Graph Type is a data type that defines the properties of data structures that represent graphs and their members (nodes and edges).
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DataItem .

qudt:GroundCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ground coordinate system"^^xsd:string ;
    dcterms:description "A sub-type of 'Aerospace coordinate system'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:AerospaceCoordinateSystem .

qudt:Heap a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Heap"^^xsd:string ;
    dcterms:description """
  <p>A heap is a specialized tree-based data structure that satisfies the condition: if B is a child node of A, then $key(A) \\ge key(B)$. 
  This implies that an element with the greatest key is always in the root node, and so such a heap is sometimes called a max heap. 
  Alternatively, if the comparison is reversed, the smallest element is always in the root node, which results in a min heap. 
  The function or method that implements the key() operator is specified by the heap type.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:OrderedTree ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Heap_(data_structure)> .

qudt:HeterogenousArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Heterogenous Array"^^xsd:string ;
    dcterms:description """
  <p>An <em>Array&gt;</em> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. 
  Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'.
  </p>
  <p>The key considerations for an Array are:
  </p>
  <ol>
  <li>Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;</li>
  <li>Index-Based Access: Elements can be accessed, updated, or modified using their index;</li>
  <li>Heterogenous Elements: all elements in the array may be of different data types;</li>
  <li>Contiguous Memory Allocation: 
    the elements are stored in consecutive memory locations, which allows efficient access using the index.</li>
  </ol>
  <p>An Array is represented as ordered entries of values arranged according to its dimensionality.
  The number of dimensions is specified in the attribute 'dimensionality'.
  </p>
  <p>The property 'qudt:datatype' refers to a list if the datatypes of the elements.  
  </p>
  <p>An heterogenous array can be multi-dimensional.
  Multiple indices are used but they are treated as extensions of the same structure.
  For example: for a 2D array arr[2][3], indices refer to the row and column positions.
  A 2D array is still represented as a list, where each member of the list is a list.
  </p>
  <p>Higher dimensional arrays can be represented as nested lists.
  For each dimension a new nested list is defined.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array ;
    sh:property qudt:HeterogenousArray-datatype .

qudt:HexBinaryType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Hexidecimal Binary Type"^^xsd:string ;
    dcterms:description "A string composed of hex characters."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TextStringType ;
    sh:property qudt:HexBinaryType-length,
        qudt:HexBinaryType-maxLength,
        qudt:HexBinaryType-minLength,
        qudt:HexBinaryType-pattern .

qudt:HomogeneousArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Homogeneous Array"^^xsd:string ;
    dcterms:description """
  <p>An <em>Array&gt;</em> is a data structure that stores a collection of elements, typically of the same type, in a contiguous block of memory. 
  Each element in an array is identified by an index or key, which is typically a numerical identifier, either starting at '0' or '1'.
  </p>
  <p>The key considerations for an Array are:
  </p>
  <ol>
  <li>Fixed Size: The size of an array may be pre-determined when it is created and cannot be changed;</li>
  <li>Index-Based Access: Elements can be accessed, updated, or modified using their index;</li>
  <li>Homogeneous Elements: all elements in an array must be of the same datatype;</li>
  <li>Contiguous Memory Allocation: The elements are stored in consecutive memory locations, which allows efficient access using the index.</li>
  </ol>
  <p>An Array is represented as ordered entries of values arranged according to its dimensionality.
  The number of dimensions is specified in the attribute 'dimensionality'.
  </p>
  <p>The property 'qudt:datatype' refers to the datatype of the elements.  
  </p>
  <p>An array can be multi-dimensional.
  Multiple indices are used but they are treated as extensions of the same structure.
  For Example: for a 2D array arr[2][3], indices refer to the row and column positions.
  A 2D array is still represented as a list, where each member of the list is a list.
  </p>
  <p>Higher dimensional arrays can be represented as nested lists.
  For each dimension a new nested list is defined.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array .

qudt:IconicCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Iconic enumeration literal"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ModalCue ;
    sh:disjoint qudt:AuralCue,
        qudt:KinestheticCue,
        qudt:VisualCue ;
    sh:property qudt:IconicCue-image .

qudt:InertialCoordinateFrame a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Inertial Coordinate Frame"^^xsd:string ;
    dcterms:description "A \"Coordinate Frame\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:NonRotatingInertialFrame ;
    rdfs:subClassOf qudt:InertialReferenceFrame ;
    sh:property qudt:InertialCoordinateFrame-frameType .

qudt:InertialReferenceFrame a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Inertial reference frame"^^xsd:string ;
    dcterms:description """
  A sub-type of 'Reference Frame'.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ReferenceFrame .

qudt:IntegerDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Integer Datatype"^^xsd:string ;
    dcterms:description "An Integer Type is a data type that specifies how integer numbers are represented and stored in machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType,
        qudt:OrdinalType .

qudt:IntegerEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Integer Encoding"^^xsd:string ;
    dcterms:description "The encoding scheme for integer types"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:LongUnsignedIntegerEncoding qudt:ShortUnsignedIntegerEncoding qudt:ShortUnsignedIntegerEncoding qudt:SignedIntegerEncoding qudt:UnsignedIntegerEncoding ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:IntegerListShape a rdfs:Class,
        sh:NodeShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf rdf:List ;
    sh:property [ sh:datatype xsd:integer ;
            sh:path rdf:first ],
        [ sh:or ( [ sh:node () ] [ sh:node qudt:IntegerListShape ] ) ;
            sh:path rdf:rest ] .

qudt:InterpolatedTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Interpolated Table Type"^^xsd:string ;
    dcterms:description "A sub-type of 'Table Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Table,
        qudt:TableType .

qudt:IntervalScale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Interval scale"^^xsd:string ;
    dcterms:description """
  <p>The interval type allows for the degree of difference between items, but not the ratio between them. 
  Examples include temperature with the Celsius scale, which has two defined points
   (the freezing and boiling point of water at specific conditions) and then separated into 100 intervals,
   date when measured from an arbitrary epoch (such as AD), percentage such as a percentage return on a stock,
   location in Cartesian coordinates, and direction measured in degrees from true or magnetic north. 
  </p>
  <p>Ratios are not meaningful since 20 °C cannot be said to be "twice as hot" as 10 °C, nor can multiplication/division be carried out between any two dates directly. 
  However, ratios of differences can be expressed; for example, one difference can be twice another. 
  Interval type variables are sometimes also called "scaled variables", but the formal mathematical term is an affine space (in this case an affine line).
  </p>
  <p>Characteristics: median, percentile &amp; Monotonic increasing (order (&lt;) &amp; totally ordered set.</p>
  """^^rdf:HTML ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso qudt:NominalScale,
        qudt:OrdinalScale,
        qudt:RatioScale ;
    rdfs:subClassOf qudt:Scale .

qudt:KinestheticCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Kinesthetic Cue"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ModalCue ;
    sh:property qudt:KinestheticCue-code .

qudt:LargeObject a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Large object"^^xsd:string ;
    dcterms:description """
  A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). 
  They often are used to allow efficient, random, piece-wise access to the data.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype .

qudt:LargeObjectType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Large object"^^xsd:string ;
    dcterms:description "A 'LargeObject' datatype is used to store blocks of unstructured data (such as text, graphic images, video clips, and sound waveforms). They often are used to allow efficient, random, piece-wise access to the data."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype .

qudt:LimitType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Limit type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:List a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "List"^^xsd:string ;
    dcterms:description "A sub-type of 'AbstractDataItem'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DataItem ;
    sh:property qudt:DatatypePropertyShape,
        qudt:MaybeQuantityPropertyShape,
        qudt:MaybeUnitPropertyShape .

qudt:LocalCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Local Coordinate System"^^xsd:string ;
    dcterms:description """
  A "Trajectory Coordinate System" with the following instance(s):
   "Local vertical curvilinear coordinate system",
   "Local vertical local horizontal coordinate system",
   "Vehicle centered local vertical curvilinear coordinate system".
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TrajectoryCoordinateSystem .

qudt:LogarithmicUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Logarithmic Unit"^^xsd:string ;
    dcterms:description """
  Logarithmic units are abstract mathematical units that can be used to express any quantities
   (physical or mathematical) that are defined on a logarithmic scale, that is, as being proportional
   to the value of a logarithm function.
  Examples of logarithmic units include common units of information and entropy, such as the bit,
   and the byte, as well as units of relative signal strength magnitude such as the decibel.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:DimensionlessUnit .

qudt:LongIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Long Integer Type"^^xsd:string ;
    dcterms:description """
  A "Long Integer" is an integer that can be represented in four octets (32 bits) of machine memory. 
  Long integers may be signed or unsigned.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype .

qudt:LunarCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Lunar Coordinate System"^^xsd:string ;
    dcterms:description """
  Two slightly different coordinate frames are commonly used to define the orientation of the axes of a lunar body-fixed coordinate system:
   a mean Earth/rotation frame and a principal axis coordinate frame. 
  The mean Earth/rotation frame (sometimes called the "Mean Earth/polar axis" frame) is a lunar body-fixed coordinate frame.
  This has the X-axis aligned with the mean direction from the Moon to the Earth and the Z-axis aligned with the mean axis of rotation of the Moon. 
  The principal axis frame is a lunar body-fixed coordinate frame aligned with the principal axes of the Moon. 
  Due to the fact that the Moon is synchronously rotating but is not exactly symmetric, the principal axes and the mean Earth/rotation axes of the Moon do not coincide.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TrajectoryCoordinateSystem ;
    sh:property qudt:LunarCoordinateSystem-coordinateCenter,
        qudt:LunarCoordinateSystem-realization,
        qudt:LunarCoordinateSystem-xAxisDefinition,
        qudt:LunarCoordinateSystem-yAxisDefinition,
        qudt:LunarCoordinateSystem-zAxisDefinition .

qudt:MajorMinorType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Major minor type"^^xsd:string ;
    dcterms:description "A sub-type of 'Enumerated Value'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:in ( qudt:Minor qudt:Major ) .

qudt:Map a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Map Type"^^xsd:string ;
    dcterms:description "A Map Type is an abstract data type that defines the properties of map data structures. A Map (or Associative Array) is an abstract data structure composed of a collection of keys and a collection of values, where each key is associated with one value. The operation of finding the value associated with a key is called a lookup or indexing, and this is the most important operation supported by an associative array. The relationship between a key and its value is sometimes called a mapping or binding."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:AssociativeArray ;
    rdfs:subClassOf qudt:Collection .

qudt:MarsCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mars Coordinate System Type"^^xsd:string ;
    dcterms:description """
  A "Trajectory Coordinate System" with the following instance(s): "Mars mean equator and IAU-Node of epoch", "Mars mean equator and prime meridian body-fixed".
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TrajectoryCoordinateSystem ;
    sh:property qudt:MarsCoordinateSystem-coordinateCenter .

qudt:MathsFunctionType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Maths Function Type"^^xsd:string ;
    dcterms:description "A sub-type of 'QUDT Concept'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Concept .

qudt:Matrix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Matrix"^^xsd:string ;
    dcterms:description """
  <p>A <em>Matrix</em> is a data type that specifies the properties of an N-dimensional data structure.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array .

qudt:MemoryOrderType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Memory order type"^^xsd:string ;
    dcterms:description "A sub-type of 'Enumerated Value'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:ModalCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Modal Cue"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property qudt:ModalCue-duration .

qudt:ModalEnumeration a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Modal Enumeration"^^xsd:string ;
    dcterms:description "A sub-type of 'QUDT Enumeration'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration ;
    sh:property qudt:ModalEnumeration-defaultValue .

qudt:MultiDimensionalArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi-Dimensional Array Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Multi-Dimensional Array</em> is an extension of a standard one-dimensional array,
   where elements are organized in a grid-like structure across two or more dimensions. 
  It is a collection of elements arranged in a tabular or multi-dimensional structure for representing complex datasets,
   such as matrices, tensors, or higher-dimensional data.
  </p>
  <p>The elements of a multi-dimensional array are N-tuples, where 'N' corresponds to the dimensionality of the array.
  Each element is specified using the property 'qudt:element'.
  </p>
  <p>Ordinary or one-dimensional arrays are indexed by a single integer. 
  For a multi-dimensional array, the index into the array uses an ordered list of integers, such as in 'a[3,1,5]'. 
  The length of the list of integers used to index into the multi-dimensional array is always the same.
  This is referred to as the array's dimensionality. 
  The bounds on each of these are called the array's dimensions.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array .

qudt:MultiDimensionalDataFormat a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi dimensional data format"^^xsd:string ;
    dcterms:description """
  Data formats for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner,
   for example HDF, CDF and netCDF.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    sh:property qudt:MultiDimensionalDataFormat-descriptor .

qudt:MultiModalEnumeration a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi modal enumeration"^^xsd:string ;
    dcterms:description "A sub-type of 'QUDT Enumeration'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration ;
    sh:property qudt:MultiModalEnumeration-auralCueEnumeration,
        qudt:MultiModalEnumeration-iconicCueEnumeration,
        qudt:MultiModalEnumeration-kinestheticCueEnumeration,
        qudt:MultiModalEnumeration-modalCueEnumeration,
        qudt:MultiModalEnumeration-visualCueEnumeration .

qudt:MultiModalType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi Modal Type"^^xsd:string ;
    dcterms:description "A sub-type of 'Enumerated Value'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property qudt:MultiModalType-auralCue,
        qudt:MultiModalType-iconicCue,
        qudt:MultiModalType-kinestheticCue,
        qudt:MultiModalType-modalCue,
        qudt:MultiModalType-visualCue .

qudt:MultiSet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bag"^^xsd:string ;
    dcterms:description "A bag is a set in which elements may be repeated."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Collection .

qudt:N-Tuple a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "N-Tuple Type"^^xsd:string ;
    dcterms:description """
  A tuple containing n objects is known as an "n-tuple". 
  For example the 4-tuple (or "quadruple"), with components of respective types PERSON, DAY, MONTH and YEAR.
  This could be used to record that a certain person was born on a certain day of a certain month of a certain year.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tuple ;
    sh:property qudt:N-Tuple-elementType .

qudt:N-TupleType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "N-Tuple Type"^^xsd:string ;
    dcterms:description """
  A tuple containing n objects is known as an "n-tuple". 
  For example the 4-tuple (or "quadruple"), with components of respective types PERSON, DAY, MONTH and YEAR.
  This could be used to record that a certain person was born on a certain day of a certain month of a certain year.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tuple ;
    sh:property qudt:N-Tuple-elementType .

qudt:NIST_SP811_Comment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "NIST SP~811 Comment"^^xsd:string ;
    dcterms:description "National Institute of Standards and Technology (NIST) Special Publication 811 Comments on some quantities and their units"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Comment .

qudt:NominalScale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Nominal scale"^^xsd:string ;
    dcterms:description """
  A nominal scale differentiates between items or subjects based only on their names or (meta-)categories and other qualitative classifications they belong to;
   thus dichotomous data involves the construction of classifications as well as the classification of items. 
  Discovery of an exception to a classification can be viewed as progress. 
  Numbers may be used to represent the variables but the numbers do not have numerical value or relationship:
   for example, a Globally unique identifier. 
  Examples of these classifications include gender, nationality, ethnicity, language, genre, style, biological species, and form. 
  In a university one could also use hall of affiliation as an example.
  """^^rdf:HTML ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso qudt:IntervalScale,
        qudt:OrdinalScale,
        qudt:RatioScale ;
    rdfs:subClassOf qudt:Scale .

qudt:NonRotatingInertialFrame a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Non Rotating Coordinate Frame"^^xsd:string ;
    dcterms:description """
  <p>The non-rotating (or "inertial") coordinate frames are defined by taking a "snapshot" of the orientation of a particular set of right-handed, orthogonal axes at a specific epoch or time. 
  In other words, the non-rotating coordinate frame, however it is defined, is frozen or fixed at a specific time - for all time. 
  These non-rotating coordinate frames are referred to as "of Epoch" coordinate frames.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:InertialCoordinateFrame ;
    rdfs:subClassOf qudt:InertialReferenceFrame ;
    sh:property qudt:NonRotatingInertialFrame-frameType .

qudt:NumericListShape a rdfs:Class,
        sh:NodeShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf rdf:List ;
    sh:property [ sh:or ( [ sh:node () ] [ sh:node qudt:NumericListShape ] ) ;
            sh:path rdf:rest ],
        [ sh:or qudt:NumericTypeUnion ;
            sh:path rdf:first ] .

qudt:NumericType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Numeric Type"^^xsd:string ;
    dcterms:description "Numeric data types are data types whose values denote quantities as defined by a mathematical number system."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ScalarDatatype ;
    sh:property qudt:NumericType-accuracy,
        qudt:NumericType-signedness .

qudt:OctetType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Octet Type"^^xsd:string ;
    dcterms:description "An 8 bit unsigned integer"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:UnsignedIntegerType .

qudt:OffOnStateTypeEnumeration a rdfs:Class,
        sh:NodeShape ;
    dcterms:description """
  A discrete state enumeration whose values are 'off' and 'on'. 
  The 'off' value is encoded as a zero (0) and the 'on' value as a one (1).
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration .

qudt:OnOffStateType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "On off state type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DiscreteState .

qudt:OnOffStateTypeEnumeration a rdfs:Class,
        sh:NodeShape ;
    qudt:inverted true ;
    rdfs:comment """
  A discrete state enumeration whose values are 'off' and 'on'. 
  The 'on' value is encoded as a zero (0) and the 'off' value as a one (1).
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration .

qudt:OrderedCollection a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ordered Collection Kind"^^xsd:string ;
    dcterms:description """
  <p>An <em>Ordered Collection Kind</em> is an abstract data type that defines the properties of collection data structures whose members can be linearly ordered. 
  An ordered collection is a collection together with an ordering relation (such as greater than) that linearly orders the collection elements.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Collection ;
    sh:property qudt:OrderedCollection-orderingRelation .

qudt:OrderedTree a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ordered Tree Type"^^xsd:string ;
    dcterms:description """
  <p>An "Ordered Tree Type" is a data type that defines the properties of data structures that represent ordered trees. 
  An ordered tree is a tree where the children of every node are ordered, that is, there is a first child, second child, third child, etc. 
  Typically a type specification for an ordered tree will include the comparison operator (such as <b>lt</b> or <b>gt</b>) that is used to order the nodes.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:OrderedCollection,
        qudt:Tree .

qudt:OrderedType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ordered type"^^xsd:string ;
    dcterms:description "Describes how a data or information structure is ordered."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:Unordered qudt:PartiallyOrdered qudt:TotallyOrdered ) ;
            sh:path [ sh:inversePath rdf:type ] ],
        qudt:OrderedType-literal .

qudt:OrdinalScale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ordinal scale"^^xsd:string ;
    dcterms:description """
  <p>The ordinal type allows for rank order (1st, 2nd, 3rd, etc.) by which data can be sorted,
   but still does not allow for relative degree of difference between them. 
  Examples include, on one hand, dichotomous data with dichotomous (or dichotomized) values such as:
   'sick' vs. 'healthy' when measuring health, 'guilty' vs. 'innocent' when making judgments in courts,
   'wrong/false' vs. 'right/true' when measuring truth value, and, on the other hand, non-dichotomous data consisting of a spectrum of values, such as:
   'completely agree', 'mostly agree', 'mostly disagree', 'completely disagree' when measuring opinion.
  """^^rdf:HTML ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso qudt:IntervalScale,
        qudt:NominalScale,
        qudt:RatioScale ;
    rdfs:subClassOf qudt:Scale ;
    sh:property qudt:OrdinalScale-order .

qudt:OrdinalType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ordinal Data Type"^^xsd:string ;
    dcterms:description """
  <p>An ordinal data type is a data type that specifies the properties of values that can easily be put in a one to one correspondence with a subset of the natural numbers. 
  Examples include boolean, character, and integer data types.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ScalarDatatype .

qudt:Organization a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Organization"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:Organization-url .

qudt:PaddingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Padding type"^^xsd:string ;
    dcterms:description """
  <p>This describes how unused bits of a field are filled. 
  Unused bits could be set to one or zero. 
  A third option is "don't care".
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:in ( qudt:PadWithOnes qudt:PadWithZeros qudt:PadWithAny ) .

qudt:ParameterModifiabilityType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Parameter modifiability type"^^xsd:string ;
    rdfs:comment "An enumeration of literals that signify whether a parameter is modifiable and if so, by whom."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:PartialArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Partial Array"^^xsd:string ;
    dcterms:description """
  A partial array is an Array with two attributes that define the starting and ending indices of the elements that are provided.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array .

qudt:PhysicalAddress a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Physical Address Type"^^xsd:string ;
    dcterms:description "A physical address is a pointer to a memory location."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype .

qudt:PhysicalConstant a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Physical Constant"^^xsd:string ;
    dcterms:description """
  <p>A <em>Physical constant</em> is a physical quantity that is generally believed to be both universal in nature and constant in time. 
  It can be contrasted with a mathematical constant, which is a fixed numerical value but does not directly involve any physical measurement. 
  </p>
  <p>There are many physical constants in science, some of the most widely recognized being:
   the speed of light in vacuum c, Newton's gravitational constant G, Planck's constant h,
   the electric permittivity of free space ε0, and the elementary charge e.
  </p>
  <p>Physical constants can take many dimensional forms, or may be dimensionless depending on the system of quantities and units used.
  """^^rdf:HTML ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Physical_constant"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Quantity ;
    sh:property qudt:PhysicalConstant-altSymbol,
        qudt:PhysicalConstant-applicableSystem,
        qudt:PhysicalConstant-applicableUnit,
        qudt:PhysicalConstant-dbpediaMatch,
        qudt:PhysicalConstant-exactConstant,
        qudt:PhysicalConstant-hasDimensionVector,
        qudt:PhysicalConstant-iec61360Code,
        qudt:PhysicalConstant-isoNormativeReference,
        qudt:PhysicalConstant-latexDefinition,
        qudt:PhysicalConstant-latexSymbol,
        qudt:PhysicalConstant-mathMLdefinition,
        qudt:PhysicalConstant-normativeReference,
        qudt:PhysicalConstant-siExactMatch,
        qudt:PhysicalConstant-symbol,
        qudt:PhysicalConstant-ucumCode .

qudt:PlaneAngleUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Plane Angle Unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:AngleUnit .

qudt:Polarity a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Polarity"^^xsd:string ;
    dcterms:description """
  A "Tagged Enumeration" with the following instance(s): "negative", "positive".
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:PositiveBigIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Positive Big Integer Type"^^xsd:string ;
    dcterms:description "Positive Integers are integers that are either non-zero and non-negative."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype,
        qudt:UnsignedType ;
    sh:disjoint qudt:SignedIntegerType .

qudt:PositiveIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Positive Integer Type"^^xsd:string ;
    dcterms:description "Positive Integers are integers that are either non-zero and non-negative."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype,
        qudt:UnsignedType ;
    sh:disjoint qudt:SignedIntegerType .

qudt:Prefix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Prefix"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:Prefix-altSymbol,
        qudt:Prefix-latexSymbol,
        qudt:Prefix-prefixMultiplier,
        qudt:Prefix-prefixMultiplierSN,
        qudt:Prefix-siExactMatch,
        qudt:Prefix-symbol,
        qudt:Prefix-ucumCode .

qudt:Quantifiable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantifiable"^^xsd:string ;
    dcterms:description """
  <p><em>Quantifiable</em> is an aspect class that affords to an entity properties for being measurable,
   observable, or countable.
  """^^rdf:HTML ;
    ns2:isElaboratedIn <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Aspect ;
    sh:property qudt:Quantifiable-dataEncoding,
        qudt:Quantifiable-datatype,
        qudt:Quantifiable-hasUnit,
        qudt:Quantifiable-relativeStandardUncertainty,
        qudt:Quantifiable-standardUncertainty,
        qudt:Quantifiable-standardUncertaintySN,
        qudt:Quantifiable-value,
        qudt:Quantifiable-valueSN .

qudt:Quantity a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity"^^xsd:string ;
    dcterms:description """
  <p>A <b>Quantity</b> is the measurement of an observable property of a particular object, event, or physical system. 
  A quantity is always associated with the context of measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the 
  underlying <b>quantity kind</b> is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific 
  quantity of length; its magnitude that may be expressed in meters, feet, inches, etc. Examples of physical quantities include physical constants, such as 
  the speed of light in a vacuum, Planck's constant, the electric permittivity of free space, and the fine structure constant. </p>
<p>In other words, quantities are quantifiable aspects of the world, such as the duration of a movie, the distance between two points, 
velocity of a car, the pressure of the atmosphere, and a person's weight; and units are used to describe their numerical measure.</p> 
<p>Many <b>quantity kinds</b> are related to each other by various physical laws, and as a result, the associated units of some quantity 
kinds can be expressed as products (or ratios) of powers of other quantity kinds (e.g., momentum is mass times velocity and velocity is defined as distance 
divided by time). In this way, some quantities can be calculated from other measured quantities using their associations to the quantity kinds in these 
expressions. These quantity kind relationships are also discussed in dimensional analysis. Those that cannot be so expressed can be regarded 
as "fundamental" in this sense.</p>
<p>A quantity is distinguished from a "quantity kind" in that the former carries a value and the latter is a type specifier.
"""^^rdf:HTML ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Quantity"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Quantifiable,
        qudt:Verifiable ;
    sh:property qudt:Quantity-hasQuantityKind,
        qudt:Quantity-isDeltaQuantity,
        qudt:Quantity-quantityValue .

qudt:QuantityKind a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity Kind"^^xsd:string ;
    dcterms:description """
  <p>A <em>Quantity Kind</em> is any observable property that can be  measured and quantified numerically. 
  Familiar examples include physical properties such as length, mass, time, force, energy, power, electric charge, etc. 
  Less familiar examples include currency, interest rate, price to earning ratio, and information capacity.
  """^^rdf:HTML ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=112-01-04"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:AbstractQuantityKind,
        qudt:Verifiable ;
    sh:property qudt:QuantityKind-applicableCGSUnit,
        qudt:QuantityKind-applicableISOUnit,
        qudt:QuantityKind-applicableImperialUnit,
        qudt:QuantityKind-applicableSIUnit,
        qudt:QuantityKind-applicableUSCustomaryUnit,
        qudt:QuantityKind-applicableUnit,
        qudt:QuantityKind-baseCGSUnitDimensions,
        qudt:QuantityKind-baseISOUnitDimensions,
        qudt:QuantityKind-baseImperialUnitDimensions,
        qudt:QuantityKind-baseSIUnitDimensions,
        qudt:QuantityKind-baseUSCustomaryUnitDimensions,
        qudt:QuantityKind-belongsToSystemOfQuantities,
        qudt:QuantityKind-dimensionVectorForSI,
        qudt:QuantityKind-expression,
        qudt:QuantityKind-hasDimensionVector,
        qudt:QuantityKind-iec61360Code,
        qudt:QuantityKind-latexDefinition,
        qudt:QuantityKind-mathMLdefinition,
        qudt:QuantityKind-qkdvDenominator,
        qudt:QuantityKind-qkdvNumerator,
        qudt:QuantityKind-siExactMatch .

qudt:QuantityKindDimensionVector a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity Kind Dimension Vector"^^xsd:string ;
    dcterms:description """
 $\\text{Quantity Kind Dimension Vector}$ describes the dimensionality of a quantity kind in the context of a system of units. 
 In the SI system of units, the dimensions of a quantity kind are expressed as a product of the basic
  physical dimensions mass ($M$), length ($L$), time ($T$) current ($I$), amount of substance ($N$),
   luminous intensity ($J$) and absolute temperature 
   ($\\theta$) as $dim \\, Q = L^{\\alpha} \\, M^{\\beta} \\, T^{\\gamma} \\, I ^{\\delta} \\, \\theta ^{\\epsilon} \\, N^{\\eta} \\, J ^{\\nu}$.


  The rational powers of the dimensional exponents, $\\alpha, \\, \\beta, \\, \\gamma, \\, \\delta, \\, \\epsilon, \\, \\eta, \\, \\nu$, are positive, negative, or zero.

  For example, the dimension of the physical quantity kind $\\it{speed}$ is $\\boxed{length/time}$, $L/T$ or $LT^{-1}$,
   and the dimension of the physical quantity kind force is $\\boxed{mass \\times acceleration}$ or $\\boxed{mass \\times (length/time)/time}$, $ML/T^2$ or $MLT^{-2}$ respectively.
 """^^qudt:LatexString ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dimensional_analysis"^^xsd:anyURI,
        "http://web.mit.edu/2.25/www/pdf/DA_unified.pdf"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:QuantityKindDimensionVector-dimensionExponentForAmountOfSubstance,
        qudt:QuantityKindDimensionVector-dimensionExponentForElectricCurrent,
        qudt:QuantityKindDimensionVector-dimensionExponentForLength,
        qudt:QuantityKindDimensionVector-dimensionExponentForLuminousIntensity,
        qudt:QuantityKindDimensionVector-dimensionExponentForMass,
        qudt:QuantityKindDimensionVector-dimensionExponentForThermodynamicTemperature,
        qudt:QuantityKindDimensionVector-dimensionExponentForTime,
        qudt:QuantityKindDimensionVector-dimensionlessExponent,
        qudt:QuantityKindDimensionVector-hasReferenceQuantityKind,
        qudt:QuantityKindDimensionVector-latexDefinition,
        qudt:QuantityKindDimensionVector-latexSymbol .

qudt:QuantityKindDimensionVector_CGS a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "CGS Dimension vector"^^xsd:string ;
    dcterms:description "A <em>CGS Dimension Vector</em> is used to specify the dimensions for a C.G.S. quantity kind."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector .

qudt:QuantityKindDimensionVector_CGS-EMU a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "CGS EMU Dimension vector"^^xsd:string ;
    dcterms:description "A <em>CGS EMU Dimension Vector</em> is used to specify the dimensions for EMU C.G.S. quantity kind."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS .

qudt:QuantityKindDimensionVector_CGS-ESU a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "CGS ESU Dimension vector"^^xsd:string ;
    dcterms:description "A <em>CGS ESU Dimension Vector</em> is used to specify the dimensions for ESU C.G.S. quantity kind."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS .

qudt:QuantityKindDimensionVector_CGS-GAUSS a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "CGS GAUSS Dimension vector"^^xsd:string ;
    dcterms:description "A <em>CGS GAUSS Dimension Vector</em> is used to specify the dimensions for Gaussioan C.G.S. quantity kind."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS .

qudt:QuantityKindDimensionVector_CGS-LH a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "CGS LH Dimension vector"^^xsd:string ;
    dcterms:description "A <em>CGS LH Dimension Vector</em> is used to specify the dimensions for Lorentz-Heaviside C.G.S. quantity kind."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector_CGS .

qudt:QuantityKindDimensionVector_ISO a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "ISO Dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector .

qudt:QuantityKindDimensionVector_Imperial a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Imperial dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector .

qudt:QuantityKindDimensionVector_SI a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity Kind Dimension vector (SI)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:QuantityKindDimensionVector .

qudt:QuantityKindList a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity kind List"^^xsd:string ;
    dcterms:description """
  <p>A <em>Quantity Kind List</em> is a list of qudt:QuantityKind. 
  They are used, for instance, to specify the quantity kind in a Mass Properties Array. 
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf rdf:List ;
    sh:property [ sh:or ( [ sh:node () ] [ sh:node qudt:QuantityKindList ] ) ;
            sh:path rdf:rest ],
        [ sh:class qudt:QuantityKind ;
            sh:path rdf:first ] .

qudt:QuantityType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity type"^^xsd:string ;
    dcterms:description """
  A $\\textit{Quantity Type}$ is an enumeration of quantity kinds. 
  It specializes $\\boxed{dtype:EnumeratedValue}$ by constrinaing $\\boxed{dtype:value}$ to instances of $\\boxed{qudt:QuantityKind}$.
  """^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property qudt:QuantityType-value .

qudt:QuantityValue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity value"^^xsd:string ;
    dcterms:description """
  <p>A <em>Quantity Value</em> 
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Quantifiable,
        qudt:Verifiable .

qudt:QuantityValueType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Quantity value type"^^xsd:string ;
    dcterms:description "A sub-type of 'Dimensional Data Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DimensionalDatatype ;
    sh:property qudt:QuantityValueType-basis,
        qudt:QuantityValueType-elementType,
        qudt:QuantityValueType-elementUnit .

qudt:RatioScale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ratio scale"^^xsd:string ;
    dcterms:description """
  <p>A <em>Ratio Scale</em> possesses a meaningful (unique and non-arbitrary) zero value. 
  Most measurement in the physical sciences and engineering is done on ratio scales. 
  Examples include mass, length, duration, plane angle, energy and electric charge.
  </p>
  <p>In contrast to interval scales, ratios are now meaningful because having a non-arbitrary zero point makes it meaningful to say,
   for example, that one object has "twice the length" of another (= is "twice as long"). 
  Very informally, many ratio scales can be described as specifying "how much" of something (i.e. an amount or magnitude) or "how many" (a count). 
  The Kelvin temperature scale is a ratio scale because it has a unique, non-arbitrary zero point called absolute zero.
  """^^rdf:HTML ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Level_of_measurement"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:seeAlso qudt:IntervalScale,
        qudt:NominalScale,
        qudt:OrdinalScale ;
    rdfs:subClassOf qudt:Scale .

qudt:RawValueTupleMember a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Raw value tuple member"^^xsd:string ;
    dcterms:description "A sub-type of 'Tuple Member Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TupleMember ;
    sh:property qudt:RawValueTupleMember-elementType .

qudt:RawValueTupleMemberType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Raw value tuple member type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TupleMember ;
    sh:property qudt:RawValueTupleMember-elementType .

qudt:RealDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Real Datatype"^^xsd:string ;
    dcterms:description """
  <p>A real number is represented as a factor, called the mantissa, multiplied by a power (the exponent) of a base. 
  Different bases yield different approximations to real numbers, and conversion between them is limited in accuracy.
  Four floating-point types are defined in 'IEEE-754 Standard for Binary Floating-Point'. 
  These types are 'single', 'extended single', 'double', and 'extended double'.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType ;
    sh:property qudt:RealDatatype-base,
        qudt:RealDatatype-maxExponent,
        qudt:RealDatatype-maxMantissa,
        qudt:RealDatatype-minMantissa,
        qudt:RealDatatype-precision .

qudt:RealDoublePrecisionType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Real Double Precision Type"^^xsd:string ;
    dcterms:description """
  <p>A real double precision data type specifies how a real number, or an approximation of a real number is stored in memory.
  Typically this occupies two words in computer memory, where the byte length of a word depends on machine address size of the computer processor. 
  For example, on 32-bit machine architectures, a word is four bytes.
  An example of a real double precision data type specification is the IEEE 754 standard for encoding binary or decimal floating point numbers in 8 bytes for storage on 32-bit machine architectures.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DoublePrecisionType,
        qudt:RealDatatype .

qudt:RealNumberType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Real number type"^^xsd:string ;
    rdfs:comment """
  <p>A <em>Real Number Type</em> is the class of data values that approximate real numbers in finite precision. 
  Often, such values are expressed in "mantissa, base, exponent" form. 
  Any rational number can be expressed in the form m*b^<sup>e</sup>, where m (the mantissa), b (the base), and e (the exponent) are integers. 
  Typically, b is chosen to be either 2 or 10, and then the values of m and e are determined given the choice of base.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:RealDatatype .

qudt:RealSinglePrecisionType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Real Single Precision Type"^^xsd:string ;
    dcterms:description """
  <p>A real single precision data type specifies how a real number,
   or an approximation of a real number is stored in memory that occupies one word in computer memory, 
   where the byte length of a word depends on machine address size of the computer processor.
  </p>
  <p> 
  For example, on 32-bit machine architectures, a word is four bytes. 
  An example of a real single precision data type specification is the IEEE 754 standard for encoding binary
   or decimal floating point numbers in 4 bytes for storage on 32-bit machine architectures.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:RealDatatype,
        qudt:SinglePrecisionType .

qudt:Record a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Record Type"^^xsd:string ;
    dcterms:description """
  A Record Type is a type whose values are records, i.e. aggregates of several items of possibly different types. 
  The aggregated items are called fields or members and are usually identified or indexed by field labels.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype .

qudt:ReferenceDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Reference Data Type"^^xsd:string ;
    dcterms:description """
  <p>A reference is an object containing information which refers to data stored elsewhere, as opposed to containing the data itself. 
  A reference data type is a data type that specifies how a reference is represented and stored in memory,
   as well as the operations that can be performed on reference values. 
  The most common example of a reference data type is a pointer.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype .

qudt:ReferenceFrame a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Reference Frame"^^xsd:string ;
    dcterms:description """
  <p> A <em>Reference Frame</em> (or "frame of reference") in physics, may refer to a coordinate system or set of axes.
The frame serves as the datum to measure the position, orientation, and other properties of objects in it.
Reference frame may refer to an observational reference frame tied to the state of motion of an observer. 
Reference frame may also refer to both an observational reference frame and an attached coordinate system as a unit.
</p>
"""^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:ReferenceFrame-comment,
        qudt:ReferenceFrame-description,
        qudt:ReferenceFrame-frameType,
        qudt:ReferenceFrame-informativeReference,
        qudt:ReferenceFrame-realization,
        qudt:ReferenceFrame-xAxisDefinition,
        qudt:ReferenceFrame-xCoordinateDefinition,
        qudt:ReferenceFrame-yAxisDefinition,
        qudt:ReferenceFrame-yCoordinateDefinition,
        qudt:ReferenceFrame-zAxisDefinition,
        qudt:ReferenceFrame-zCoordinateDefinition .

qudt:RotatingReferenceFrame a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Rotating reference frame"^^xsd:string ;
    dcterms:description "A sub-type of 'Reference Frame'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ReferenceFrame .

qudt:Rule a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Rule"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:Rule-example,
        qudt:Rule-rationale,
        qudt:Rule-ruleType .

qudt:RuleType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Rule Type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:EnumeratedValue .

qudt:ScalarDataItem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Scalar Data Item"^^xsd:string ;
    dcterms:description """
  <p>A <em>Data Item</em> holds a value that is compliant with a specified <em>Datatype</em>.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:ScalarDataItem-datatype,
        qudt:ScalarDataItem-value .

qudt:ScalarDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Scalar Datatype"^^xsd:string ;
    dcterms:description """
  Scalar data types are those that have a single value. 
  The permissible values are defined over a domain that may be integers, float, character or boolean. 
  Often a scalar data type is referred to as a primitive data type.
  """^^xsd:string ;
    ns2:isElaboratedIn <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Datatype,
        rdfs:Datatype ;
    sh:property qudt:ScalarDatatype-bitOrder,
        qudt:ScalarDatatype-bits,
        qudt:ScalarDatatype-byteOrder,
        qudt:ScalarDatatype-bytes,
        qudt:ScalarDatatype-encoding,
        qudt:ScalarDatatype-length,
        qudt:ScalarDatatype-maxExclusive,
        qudt:ScalarDatatype-maxInclusive,
        qudt:ScalarDatatype-minExclusive,
        qudt:ScalarDatatype-minInclusive,
        qudt:ScalarDatatype-rdfsDatatype .

qudt:ScalarListShape a rdfs:Class,
        sh:NodeShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf rdf:List ;
    sh:property [ sh:or ( [ sh:node () ] [ sh:node qudt:ScalarListShape ] ) ;
            sh:path rdf:rest ],
        [ sh:or qudt:NumericTypeUnion ;
            sh:path rdf:first ] .

qudt:Scale a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Scale"^^xsd:string ;
    dcterms:description """
  <p>Scales (also called "scales of measurement" or "levels of measurement") are expressions that typically are based on scale types.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:Scale-dataStructure,
        qudt:Scale-permissibleMaths,
        qudt:Scale-permissibleTransformation,
        qudt:Scale-scaleType .

qudt:ScaleType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Scale type"^^xsd:string ;
    qudt:plainTextDescription """
  Scales, or scales of measurement (or categorization) provide ways of quantifying measurements, values and other enumerated values according to a normative frame of reference. 
  Four different types of scales are typically used. 
  These are interval, nominal, ordinal and ratio scales.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property qudt:ScaleType-dataStructure,
        qudt:ScaleType-permissibleMaths,
        qudt:ScaleType-permissibleTransformation .

qudt:Sequence a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sequence"^^xsd:string ;
    dcterms:description """
  <p>A <em>Sequence</em> is an enumerated collection of objects in which repetitions are allowed. 
  Like a set, it contains members (also called elements, or terms). 
  The number of elements (possibly infinite) is called the length of the sequence.
  </p>
  <p>Unlike a set, order matters, and exactly the same elements can appear multiple times at different positions in the sequence. 
  Formally, a sequence can be defined as a function whose domain is either the set of the natural numbers (for infinite sequences) or the set of the first n natural numbers (for a sequence of finite length n). 
  </p>
  <p>The position of an element in a sequence is its rank or index; it is the integer from which the element is the image. 
  It depends on the context or of a specific convention, if the first element has index 0 or 1. [Wikipedia]
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Collection .

qudt:Set a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Set Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Set</em> is an abstract data type that defines the properties of sets. 
  A set is a collection (container) of certain values, without any particular order, and no repeated values. 
  It corresponds with a finite set in mathematics.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Collection .

qudt:ShortIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Short Integer Type"^^xsd:string ;
    dcterms:description """
  A Short Integer is an integer that can be represented in two octets (16 bits) of machine memory. 
  Short integers may be signed or unsigned.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype .

qudt:SignedBigIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Big Integer Type"^^xsd:string ;
    dcterms:description "A Signed Big Integer is a signed integer that can be represented in eight octets (64 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:BigIntegerType,
        qudt:SignedIntegerType ;
    sh:property qudt:SignedBigIntegerType-literal,
        qudt:SignedBigIntegerType-maxInclusive,
        qudt:SignedBigIntegerType-minInclusive .

qudt:SignedIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Integer Type"^^xsd:string ;
    dcterms:description "Signed Integers are integers can take on both positive and negative values."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype,
        qudt:SignedType .

qudt:SignedLongIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Long Integer Type"^^xsd:string ;
    dcterms:description "A Signed Long Integer is a signed integer that can be represented in four octets (32 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:LongIntegerType,
        qudt:SignedIntegerType ;
    sh:property qudt:SignedLongIntegerType-abbreviation,
        qudt:SignedLongIntegerType-maxInclusive,
        qudt:SignedLongIntegerType-minInclusive .

qudt:SignedMediumIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Integer Type"^^xsd:string ;
    dcterms:description """
  A "Signed Medium Integers" is an integer of 24 bits that can take on both positive and negative values.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:SignedIntegerType .

qudt:SignedShortIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Short Integer Type"^^xsd:string ;
    dcterms:description "A Signed Short Integer is a signed integer that can be represented in four octets (32 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ShortIntegerType,
        qudt:SignedIntegerType ;
    sh:property qudt:SignedShortIntegerType-abbreviation .

qudt:SignedType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Type"^^xsd:string ;
    dcterms:description "A signed type is a numeric type that distinguishes between positive and negative numbers using an encoding scheme, such as sign and magnitude, one's compliment, and two's compliment to represent negative numbers."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType ;
    sh:disjoint qudt:UnsignedType ;
    sh:property qudt:SignedType-signedness .

qudt:SignedVariableLengthIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signed Variable Length Integer Type"^^xsd:string ;
    dcterms:description "A Signed Variable Length Integer data type defines a data structure for representing signed integers that uses a variable number of bits depending on the magnitude of the integer. Typically, variable length integer data types are between one and 64 bits in length."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:SignedIntegerType,
        qudt:VariableLengthIntegerType .

qudt:SignednessType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Signedness type"^^xsd:string ;
    dcterms:description "Specifics whether a value should be signed or unsigned."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    sh:property [ a sh:PropertyShape ;
            rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
            sh:in ( qudt:Signed qudt:Unsigned ) ;
            sh:path [ sh:inversePath rdf:type ] ] .

qudt:SinglePrecisionType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Single Precision Type"^^xsd:string ;
    dcterms:description """
  A single precision data type specifies how a numeric value, such as an integer or real number,
   is stored in memory that occupies one word in computer memory,
   where the byte length of a word depends on machine address size of the computer processor. 
  For example, on 32-bit machine architectures, a word is four bytes.
  A single precision data value on a 32-bit machine architecture occupies four bytes of memory.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType .

qudt:SolidAngleUnit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Solid Angle Unit"^^xsd:string ;
    dcterms:description """
  The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S's projection onto the sphere. 
  A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. 
  Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:AngleUnit .

qudt:SplineCalibrator a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Spline calibrator"^^xsd:string ;
    dcterms:description "A sub-type of 'Map Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Map .

qudt:SplinePoint a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Spline point"^^xsd:string ;
    dcterms:description "A sub-type of 'Tuple Type'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Tuple .

qudt:StateSpaceMatrix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "State Space Matrix Type"^^xsd:string ;
    dcterms:description """
  <p>In control engineering, a state space representation is a mathematical model of a physical system
   as a set of input, output and state variables related by first-order differential equations. 
  To abstract from the number of inputs, outputs and states, the variables are expressed as vectors.
  The differential and algebraic equations are written in matrix form (the last one can be done when the dynamical system is linear and time invariant).
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Matrix .

qudt:StateSpaceVector a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "State Space Vector Type"^^xsd:string ;
    dcterms:description """
  A state vector in general control systems describes the observed states of an object in state space.
  For example in variables of the degrees of freedom for motion. 
  As data types, state vector types are used to specify the structure of state vectors, such as how the observed state is encoded.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Vector ;
    sh:property qudt:StateSpaceVector-coordinateSystem .

qudt:Statement a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Statement"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf rdf:Statement .

qudt:StringEncodingType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "String Encoding Type"^^xsd:string ;
    dcterms:description """
  <p><em>String Encoding Type</em> is an "Encoding" with the following instance(s):
   "UTF-16 String", "UTF-8 Encoding".
   </p>
  """^^rdf:HTML,
        """
  An "Encoding" with the following instance(s): "qudt:UTF8-StringEncoding", "qudt:UTF16-StringEncoding".
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Encoding .

qudt:StringType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "String Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>String Type</em> is a data type that specifies the properties of a list structure that holds characters.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ScalarDatatype ;
    sh:property qudt:StringType-dimensionality,
        qudt:StringType-isByteString,
        qudt:StringType-maxLength,
        qudt:StringType-memberDatatype,
        qudt:StringType-typeMatrix .

qudt:StringUTF16 a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "String UTF16"^^xsd:string ;
    dcterms:description """
  <p><em>String UTF-16</em> is a string data type that specifies the properties of string data structures which encode strings using the UTF-16 encoding. 
  UTF-16 is the native internal representation of text in many software systems, for example:
  </p>
  <ol>
  <li>Microsoft Windows NT/Windows 2000/Windows XP/Windows CE;</li>
  <li>Qualcomm BREW, and Symbian operating systems;</li>
  <li>the Java and .NET byte code environments;</li>
  <li>Mac OS X's Cocoa and Core Foundation frameworks;</li>
  <li>Qt cross-platform graphical widget toolkit.</li>
  </ol>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringType,
        qudt:TextStringType ;
    sh:property qudt:StringUTF16-memberDatatype .

qudt:StringUTF8 a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "String UTF8 Type"^^xsd:string ;
    dcterms:description """
  String UTF-8 Type is a string data type that specifies the properties of string data structures which encode strings using the UTF-8 encoding. 
  UTF-8 includes ASCII, otherwise referred to as IA-5 (International Alphabet 5, as standardized by International Organization for Standardization [ISO]) as the first 128 values. 
  The Internet Engineering Task Force (IETF) requires all Internet protocols to identify the encoding used for character data with UTF-8 as at least one supported encoding. 
  The Internet Mail Consortium (IMC) recommends that all e-mail programs must be able to display and create mail using UTF-8.
  """^^xsd:string ;
    ns2:isElaboratedIn <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringType,
        qudt:TextStringType ;
    sh:property qudt:StringUTF8-memberDatatype .

qudt:StructuredDatatype a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Structured Data Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Structured Datatype</em>, in contrast to a scalar data type, is used to characterize classes of complex data structures.
  Examples are collections, linked and indexed lists, trees, ordered trees, and multi-dimensional file formats.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Datatype ;
    sh:property qudt:StructuredDatatype-elementType .

qudt:Symbol a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Symbol"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept .

qudt:SymmetricRelation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Symmetric relation"^^xsd:string ;
    rdfs:comment "A `SymmetricRelation` is modeling construct used to define symmetric behavior for appropriate relations."^^xsd:string ;
    rdfs:subClassOf rdf:Property .

qudt:SystemOfQuantityKinds a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "System of Quantity Kinds"^^xsd:string ;
    dcterms:description """
  <p>A <em>System of Quantity Kinds</em> is a set of one or more quantity kinds together with a set of zero or more algebraic equations that define relationships between quantity kinds in the set. 
  In the physical sciences, the equations relating quantity kinds are typically physical laws and definitional relations, and constants of proportionality. 
  Examples include Newton's First Law of Motion, Coulomb's Law, and the definition of velocity as the instantaneous change in position.  
  In almost all cases, the system identifies a subset of base quantity kinds. 
  </p>
  <p>The base set is chosen so that all other quantity kinds of interest can be derived from the base quantity kinds and the algebraic equations. 
  If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind.  
  From a scientific point of view, the division of quantities into base quantities and derived quantities is a matter of convention.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:SystemOfQuantityKinds-baseDimensionEnumeration,
        qudt:SystemOfQuantityKinds-hasBaseQuantityKind,
        qudt:SystemOfQuantityKinds-hasQuantityKind,
        qudt:SystemOfQuantityKinds-hasUnitSystem,
        qudt:SystemOfQuantityKinds-systemDerivedQuantityKind .

qudt:SystemOfUnits a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "System of Units"^^xsd:string ;
    dcterms:description """
  <p>A <em>System of Units</em> is a set of units which are chosen as the reference scales for some set of quantity kinds together with the definitions of each unit. 
  Units may be defined by experimental observation or by proportion to another unit not included in the system. 
  If the unit system is explicitly associated with a quantity kind system, then the unit system must define at least one unit for each quantity kind.
  """^^rdf:HTML ;
    qudt:informativeReference "http://dbpedia.org/resource/Category:Systems_of_units"^^xsd:anyURI,
        "http://www.ieeeghn.org/wiki/index.php/System_of_Measurement_Units"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:SystemOfUnits-applicablePhysicalConstant,
        qudt:SystemOfUnits-hasAllowedUnit,
        qudt:SystemOfUnits-hasBaseUnit,
        qudt:SystemOfUnits-hasCoherentUnit,
        qudt:SystemOfUnits-hasDefinedUnit,
        qudt:SystemOfUnits-hasDerivedCoherentUnit,
        qudt:SystemOfUnits-hasDerivedUnit,
        qudt:SystemOfUnits-hasUnit,
        qudt:SystemOfUnits-prefix .

qudt:Table a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Table Type"^^xsd:string ;
    dcterms:description """
  A Table Type is a data type that specifies the properties of table data structures. 
  A table is both a mode of visual communication and a means of arranging data. 
  The precise conventions and terminology for describing tables varies depending on the context. 
  Moreover, tables differ significantly in variety, structure, flexibility, notation, representation and use.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StructuredDatatype ;
    sh:property qudt:DimensionsPropertyShape,
        qudt:Table-byRow,
        qudt:Table-columns,
        qudt:Table-dimensionality,
        qudt:Table-rows .

qudt:TaggedEnumeration a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Tagged Enumeration"^^xsd:string ;
    dcterms:description "An enumeration where each literal  has a tag that is a non-negative integer. These enumerations are likely to have their literals encoded - hence the need for the tag."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration ;
    sh:property qudt:TaggedEnumeration-code .

qudt:TextStringType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Text String Type"^^xsd:string ;
    dcterms:description """
  A <em>Text String Type</em> has encodings that are specified in subclasses or in connection to character arrays in <em>Structured Datatypes</em>.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:StringType .

qudt:ThreeBodyRotatingCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Three Body Rotating Coordinate System Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Three Body Rotating Coordinate System</em> is one that is associated with two different three-body systems.
  For example, the Sun-Earth-spacecraft system and the Earth-Moon-spacecraft system.
  </p>
  <p>The lunar coordinate systems are primarily used when operating in close proximity to the Moon. 
  There are, however, a few additional coordinate systems that are also useful when analyzing (and depicting) trajectories in the vicinity of the Earth-Moon system.  
  The Sun-Earth and Earth-Moon rotating coordinate frames are defined as follows: 
  </p>
  <p>The pole vector or Z-axis of the coordinate frame is set equal to the instantaneous orbit normal of the secondary (smaller) body about the primary (larger) body.
  The X-axis is set equal to the vector from the primary body center of mass (CM) to the secondary body CM. 
  The X-axis rotates at a rate equal to the instantaneous rotation rate of the secondary body about the primary body.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:AerospaceCoordinateSystem .

qudt:ThreeTuple a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Three-Tuple"^^xsd:string ;
    dcterms:description """
  A three-tuple is a tuple with exactly three members. 
  A Three-Tuple Type is a data type that defines the type properties of a class of three-tuples and their members.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:N-Tuple ;
    sh:property qudt:ThreeTuple-elementType,
        qudt:ThreeTuple-elementTypeCount .

qudt:Time a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time"^^xsd:string ;
    rdfs:comment "The class of data values that denote a point in time. Time values may be encoded in a 12-hour clock or a 24-hour clock, such as 1:35 AM, or 13:35."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ScalarDatatype ;
    sh:property qudt:Time-type .

qudt:TimeDataType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time data type"^^xsd:string ;
    dcterms:description "A sub-type of 'QUDT Enumeration'."^^xsd:string ;
    ns1:value qudt:TIME ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Enumeration,
        qudt:ScalarDatatype .

qudt:TimeInterval a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time interval"^^xsd:string ;
    rdfs:comment """A relative interval that is an increment in time. 
  For example, this is used in time series arrays to express the time point of a vector of values.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Concept ;
    sh:property qudt:TimeInterval-type .

qudt:TimeSeriesArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time Series Array"^^xsd:string ;
    rdfs:comment """
  A Time Series Array is a data type that specifies the properties of arrays that hold time series data. 
  A time series is a sequence of data points, measured at successive time intervals. 
  The time intervals may be uniformly or non-uniformly spaced.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array ;
    sh:property qudt:TimeSeriesArray-incrementDatatype,
        qudt:TimeSeriesArray-vector .

qudt:TimeSeriesArrayType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time Series Array Type"^^xsd:string ;
    dcterms:description """
  <p>A <em>Time Series Array Type</em> is a data type that specifies the properties of arrays that hold time series data. 
  A time series is a sequence of data points, measured at successive time intervals. 
  The time intervals may be uniformly or non-uniformly spaced.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ArrayType .

qudt:TimeStringType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Time Type"^^xsd:string ;
    dcterms:description "Time takes a number of forms, depending on the units used (e.g., year, day, minute, millisecond, or combinations thereof) and the origin (i.e., time zero) to which the time value is related."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DateTimeStringType,
        qudt:TextStringType .

qudt:TrajectoryCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Trajectory Coordinate System"^^xsd:string ;
    dcterms:description "A \"Coordinate System\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:AerospaceCoordinateSystem .

qudt:TransformType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Transform type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:EnumeratedValue ;
    skos:prefLabel "Transform type"^^xsd:string .

qudt:Tree a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Tree Type"^^xsd:string ;
    dcterms:description """
  A "Tree" is a data type that defines the properties of data structures that represent trees. 
  Each node is either a leaf or an internal node. 
  An internal node has one or more child nodes and is called the parent of its child nodes. 
  Leaf nodes have no chidren. Nodes that share the same parent are siblings. 
  In graph theoretic terminology, a tree is a connected, undirected, acyclic graph.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Graph ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Tree_(data_structure)> .

qudt:Triplet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Triplet"^^xsd:string ;
    dcterms:description "A \"Tuple\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:seeAlso qudt:ThreeTuple ;
    rdfs:subClassOf qudt:ThreeTuple .

qudt:Tuple a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Tuple"^^xsd:string ;
    dcterms:description """
  <p>The term <em>Tuple</em> originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, n-tuple. 
  In mathematics, a tuple is a finite sequence (also known as an <em>Ordered List</em> of objects, each of a specified type. 
  The <em>n</em> can be any non-negative integer.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    sh:property qudt:Tuple-elementType,
        qudt:Tuple-elementTypeCount,
        qudt:Tuple-length .

qudt:TupleMember a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Tuple Member Type"^^xsd:string ;
    dcterms:description """
  <p><em>Tuple Member</em> defines the properties of a member of a tuple. 
  It is used to provide fine grained type specification to the elements of tuples.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    sh:property qudt:TupleMember-elementType,
        qudt:TupleMember-orderInStructure .

qudt:TupleType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Tuple Type"^^xsd:string ;
    dcterms:description """
  <p><em>Tuple</em> originated as an abstraction of the sequence: single, double, triple, quadruple, quintuple, n-tuple.  
  In mathematics, a tuple is a finite sequence (also known as an <em>Ordered List</em> of objects, each of a specified type. 
  The <em>n</em> can be any non-negative integer.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:CompositeDatatype ;
    sh:property qudt:Tuple-elementType,
        qudt:Tuple-elementTypeCount,
        qudt:Tuple-length .

qudt:TwoTuple a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Two-Tuple"^^xsd:string ;
    dcterms:description """
  A 2-tuple is called a pair. 
  For example, a complex number can be represented as a 2-tuple.
  2D coordinates are sometimes represented as 2-tuples.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:N-Tuple ;
    sh:property qudt:TwoTuple-elementType,
        qudt:TwoTuple-elementTypeCount .

qudt:TwoTupleType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Two-Tuple Type"^^xsd:string ;
    dcterms:description "A 2-tuple is called a pair. For example, a complex number can be represented as a 2-tuple, and 2D coordinates are sometimes represented as 2-tuples."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:N-TupleType ;
    sh:property qudt:Two-Tuple-elementType,
        qudt:Two-Tuple-elementTypeCount .

qudt:TypeList a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Type list"^^xsd:string ;
    dcterms:description "A sub-type of 'QUDT Datatype'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Datatype .

qudt:TypeMatrix a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Type matrix"^^xsd:string ;
    rdfs:comment """
  Members of this class are matrix data structures that describe the datatypes of a class of matrices. 
  That is, the members of this class are matrices with cells that contain datatypes (c.f. type:Datatype) and are used to describe the datatype structure of other matrices.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Matrix .

qudt:TypeVector a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Type vector"^^xsd:string ;
    dcterms:description """
  <p>A <em>Type Vector</em> is a vector whose elements are data types. 
  They are used to specify the type of each component of a vector or class of vectors. 
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Vector ;
    sh:property qudt:TypeVector-datatype .

qudt:Unit a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unit"^^xsd:string ;
    dcterms:description """
  A unit of measure, or unit, is a particular quantity value that has been chosen as a scale for measuring other quantities the same kind (more generally of equivalent dimension). 
  For example, the meter is a quantity of length that has been rigorously defined and standardized by the BIPM (International Board of Weights and Measures). 
  Any measurement of the length can be expressed as a number multiplied by the unit meter. 
  More formally, the value of a physical quantity Q with respect to a unit (U) is expressed as the scalar multiple of a real number (n) and U, as  $Q = nU$.
  """^^qudt:LatexString ;
    qudt:informativeReference "http://dbpedia.org/resource/Category:Units_of_measure"^^xsd:anyURI,
        "http://www.allmeasures.com/Fullconversion.asp"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:Concept,
        qudt:Verifiable ;
    sh:property qudt:Unit-altSymbol,
        qudt:Unit-applicableSystem,
        qudt:Unit-conversionMultiplier,
        qudt:Unit-conversionMultiplierSN,
        qudt:Unit-conversionOffset,
        qudt:Unit-conversionOffsetSN,
        qudt:Unit-definedUnitOfSystem,
        qudt:Unit-derivedCoherentUnitOfSystem,
        qudt:Unit-derivedUnitOfSystem,
        qudt:Unit-expression,
        qudt:Unit-factorUnitScalar,
        qudt:Unit-hasDimensionVector,
        qudt:Unit-hasFactorUnit,
        qudt:Unit-hasQuantityKind,
        qudt:Unit-hasReciprocalUnit,
        qudt:Unit-iec61360Code,
        qudt:Unit-latexDefinition,
        qudt:Unit-latexSymbol,
        qudt:Unit-mathMLdefinition,
        qudt:Unit-omUnit,
        qudt:Unit-prefix,
        qudt:Unit-qkdvDenominator,
        qudt:Unit-qkdvNumerator,
        qudt:Unit-scalingOf,
        qudt:Unit-siExactMatch,
        qudt:Unit-siUnitsExpression,
        qudt:Unit-symbol,
        qudt:Unit-ucumCode,
        qudt:Unit-udunitsCode,
        qudt:Unit-uneceCommonCode,
        qudt:Unit-unitOfSystem .

qudt:UnsignedBigIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Big Integer Type"^^xsd:string ;
    dcterms:description "An Unsgned Big Integer is an unsigned integer that can be represented in eight octets (64 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:BigIntegerType,
        qudt:UnsignedIntegerType ;
    sh:property qudt:UnsignedBigIntegerType-abbreviation,
        qudt:UnsignedBigIntegerType-maxInclusive,
        qudt:UnsignedBigIntegerType-minInclusive .

qudt:UnsignedIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Integer Type"^^xsd:string ;
    dcterms:description "Unsgned Integers are integers that are either strictly non-negative or non-positive."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype,
        qudt:UnsignedType ;
    sh:disjoint qudt:SignedIntegerType .

qudt:UnsignedLongIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Long Integer Type"^^xsd:string ;
    dcterms:description "An Unsigned Long Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:LongIntegerType,
        qudt:UnsignedIntegerType ;
    sh:property qudt:UnsignedLongIntegerType-literal,
        qudt:UnsignedLongIntegerType-maxInclusive,
        qudt:UnsignedLongIntegerType-minInclusive .

qudt:UnsignedMediumIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Medium Integer Type"^^xsd:string ;
    dcterms:description """
  An "Unsigned Medium Integer" is an integer of 24 bits that only takes on both positive values.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:UnsignedIntegerType .

qudt:UnsignedShortIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Short Integer Type"^^xsd:string ;
    dcterms:description "An Unsigned Short Integer is an unsigned integer that can be represented in four octets (32 bits) of machine memory."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ShortIntegerType,
        qudt:UnsignedIntegerType ;
    sh:property qudt:UnsignedShortIntegerType-abbreviation,
        qudt:UnsignedShortIntegerType-maxInclusive,
        qudt:UnsignedShortIntegerType-minInclusive .

qudt:UnsignedType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Type"^^xsd:string ;
    dcterms:description "An unsigned data type is a numeric type that does not distinguish between positive and negative values."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:NumericType ;
    sh:disjoint qudt:SignedType ;
    sh:property qudt:UnsignedType-signedness .

qudt:UnsignedVariableLengthIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Unsigned Variable Length Integer Type"^^xsd:string ;
    dcterms:description """
  An "Unsigned Variable Length Integer" data type defines a data structure for representing unsigned integers that uses a variable number of bits depending on the magnitude of the integer. 
  Typically, variable length integer data types are between one and 64 bits in length.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:UnsignedIntegerType,
        qudt:VariableLengthIntegerType .

qudt:UserQuantityKind a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "User Quantity Kind"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subClassOf qudt:AbstractQuantityKind ;
    sh:property qudt:UserQuantityKind-hasQuantityKind .

qudt:VariableIntervalTimeSeriesArray a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Variable Interval Time Series Array Type"^^xsd:string ;
    dcterms:description "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TimeSeriesArray .

qudt:VariableIntervalTimeSeriesArrayType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Variable Interval Time Series Array Type"^^xsd:string ;
    rdfs:comment "A Variable Interval Time Series Array Type is a data type that specifies the properties of arrays that hold time series data that has been sampled over non-uniformly spaced time intervals. A time series is a sequence of data points, measured typically at successive times, spaced at uniform or non-uniform time intervals. For variable interval time series, the successive time intervals may follow a repeating pattern, or may be completely random."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:TimeSeriesArrayType .

qudt:VariableLengthIntegerType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Variable Length Integer Type"^^xsd:string ;
    dcterms:description """
  A "Variable Length Integer" data type defines a data structure for representing integers that uses a variable number of bits depending on the magnitude of the integer. 
  Typically, variable length integer data types are between one and 64 bits in length.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:IntegerDatatype ;
    sh:property qudt:VariableLengthIntegerType-maxBits,
        qudt:VariableLengthIntegerType-minBits .

qudt:Vector a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Vector"^^xsd:string ;
    dcterms:description """
  <p>A <em>Vector</em> is an array data type that can have a dimensionality of one, or more elements.
  Vectors can represent physical quantities, such as velocity, force, displacement;
  mathematical objects such as points or directions in space;
  and abstract representations for things such as colors, features, or embeddings in computational contexts.
  </p>
  <p>As a one-dimensional mathematical object it can represent a quantity with both magnitude and direction in space.
  One-dimensional vectors can be thought of as a special case of a 1D array.
  For example a 3D vector can be expressed as a list of coordinates: [x,y,z].
  </p>
  <p>
  A vector in n-dimensional space can represent a point, a direction, or a linear combination of basis vectors.
  </p>
  <p>
  Vectors can represent quantifiable values.
  For example a car moving at 60 m/hr to the north, assuming north is along the y-axis, can be represented in 2D as:
  </p>
  <dl>
  <dd>[0, 60]</dd>
  </dl>
  <p>
  In machine learning a <em>Feature Vector</em> can be expressed for a dataset entry as:
  <p>
  <dl>
  <dd>[5.1, 3.5, 1.4, 0.2]</dd>
  </dl>
  <p>
  In AI for text processing a <em>Word Embedding Vector</em> is expressed as a N-dimensional space, where N can be a large number.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:Array ;
    sh:property qudt:MaybeQuantityPropertyShape,
        qudt:QuantityKindsPropertyShape .

qudt:VehicleCoordinateSystem a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Vehicle coordinate system"^^xsd:string ;
    dcterms:description "A sub-type of 'Aerospace coordinate system'."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:AerospaceCoordinateSystem ;
    sh:property qudt:VehicleCoordinateSystem-pitchRotationDefinition,
        qudt:VehicleCoordinateSystem-rollRotationDefinition,
        qudt:VehicleCoordinateSystem-yawRotationDefinition .

qudt:VisualCue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Visual Cue"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:ModalCue .

qudt:WetDryStateType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Wet dry state type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:DiscreteState,
        qudt:EnumeratedValue .

qudt:YesNoType a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Yes no type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:EnumeratedValue .

owl:Class a rdfs:Class ;
    rdfs:subClassOf rdfs:Class .

sh:AbstractResult a rdfs:Class ;
    rdfs:label "Abstract result"@en ;
    ns3:abstract true ;
    rdfs:comment "The base class of validation results, typically not instantiated directly."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:ConstraintComponent a rdfs:Class ;
    rdfs:label "Constraint component"@en ;
    rdfs:comment "The class of constraint components."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Parameterizable .

sh:Function a rdfs:Class ;
    rdfs:label "Function"@en ;
    ns3:abstract true ;
    rdfs:comment "The class of SHACL functions."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Parameterizable .

sh:JSConstraint a rdfs:Class ;
    rdfs:label "JavaScript-based constraint"@en ;
    rdfs:comment "The class of constraints backed by a JavaScript function."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:JSExecutable .

sh:JSExecutable a rdfs:Class ;
    rdfs:label "JavaScript executable"@en ;
    rdfs:comment "Abstract base class of resources that declare an executable JavaScript."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:JSFunction a rdfs:Class ;
    rdfs:label "JavaScript function"@en ;
    rdfs:comment "The class of SHACL functions that execute a JavaScript function when called."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Function,
        sh:JSExecutable .

sh:JSLibrary a rdfs:Class ;
    rdfs:label "JavaScript library"@en ;
    rdfs:comment "Represents a JavaScript library, typically identified by one or more URLs of files to include."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:JSRule a rdfs:Class ;
    rdfs:label "JavaScript rule"@en ;
    rdfs:comment "The class of SHACL rules expressed using JavaScript."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:JSExecutable,
        sh:Rule .

sh:JSTarget a rdfs:Class ;
    rdfs:label "JavaScript target"@en ;
    rdfs:comment "The class of targets that are based on JavaScript functions."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:JSExecutable,
        sh:Target .

sh:JSTargetType a rdfs:Class ;
    rdfs:label "JavaScript target type"@en ;
    rdfs:comment "The (meta) class for parameterizable targets that are based on JavaScript functions."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:JSExecutable,
        sh:TargetType .

sh:JSValidator a rdfs:Class ;
    rdfs:label "JavaScript validator"@en ;
    rdfs:comment "A SHACL validator based on JavaScript. This can be used to declare SHACL constraint components that perform JavaScript-based validation when used."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:JSExecutable,
        sh:Validator .

sh:NodeKind a rdfs:Class ;
    rdfs:label "Node kind"@en ;
    rdfs:comment "The class of all node kinds, including sh:BlankNode, sh:IRI, sh:Literal or the combinations of these: sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral, sh:IRIOrLiteral."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:NodeShape a rdfs:Class ;
    rdfs:label "Node shape"@en ;
    rdfs:comment "A node shape is a shape that specifies constraint that need to be met with respect to focus nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Shape .

sh:Parameter a rdfs:Class ;
    rdfs:label "Parameter"@en ;
    rdfs:comment "The class of parameter declarations, consisting of a path predicate and (possibly) information about allowed value type, cardinality and other characteristics."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:PropertyShape .

sh:Parameterizable a rdfs:Class ;
    rdfs:label "Parameterizable"@en ;
    ns3:abstract true ;
    rdfs:comment "Superclass of components that can take parameters, especially functions and constraint components."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:PrefixDeclaration a rdfs:Class ;
    rdfs:label "Prefix declaration"@en ;
    rdfs:comment "The class of prefix declarations, consisting of pairs of a prefix with a namespace."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:PropertyGroup a rdfs:Class ;
    rdfs:label "Property group"@en ;
    rdfs:comment "Instances of this class represent groups of property shapes that belong together."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:PropertyShape a rdfs:Class ;
    rdfs:label "Property shape"@en ;
    rdfs:comment "A property shape is a shape that specifies constraints on the values of a focus node for a given property or path."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Shape .

sh:ResultAnnotation a rdfs:Class ;
    rdfs:label "Result annotation"@en ;
    rdfs:comment "A class of result annotations, which define the rules to derive the values of a given annotation property as extra values for a validation result."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:Rule a rdfs:Class ;
    rdfs:label "Rule"@en ;
    ns3:abstract true ;
    rdfs:comment "The class of SHACL rules. Never instantiated directly."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:SPARQLAskExecutable a rdfs:Class ;
    rdfs:label "SPARQL ASK executable"@en ;
    rdfs:comment "The class of SPARQL executables that are based on an ASK query."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLExecutable .

sh:SPARQLAskValidator a rdfs:Class ;
    rdfs:label "SPARQL ASK validator"@en ;
    rdfs:comment "The class of validators based on SPARQL ASK queries. The queries are evaluated for each value node and are supposed to return true if the given node conforms."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLAskExecutable,
        sh:Validator .

sh:SPARQLConstraint a rdfs:Class ;
    rdfs:label "SPARQL constraint"@en ;
    rdfs:comment "The class of constraints based on SPARQL SELECT queries."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLSelectExecutable .

sh:SPARQLConstructExecutable a rdfs:Class ;
    rdfs:label "SPARQL CONSTRUCT executable"@en ;
    rdfs:comment "The class of SPARQL executables that are based on a CONSTRUCT query."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLExecutable .

sh:SPARQLExecutable a rdfs:Class ;
    rdfs:label "SPARQL executable"@en ;
    ns3:abstract true ;
    rdfs:comment "The class of resources that encapsulate a SPARQL query."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:SPARQLFunction a rdfs:Class ;
    rdfs:label "SPARQL function"@en ;
    rdfs:comment "A function backed by a SPARQL query - either ASK or SELECT."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Function,
        sh:SPARQLAskExecutable,
        sh:SPARQLSelectExecutable .

sh:SPARQLRule a rdfs:Class ;
    rdfs:label "SPARQL CONSTRUCT rule"@en ;
    rdfs:comment "The class of SHACL rules based on SPARQL CONSTRUCT queries."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Rule,
        sh:SPARQLConstructExecutable .

sh:SPARQLSelectExecutable a rdfs:Class ;
    rdfs:label "SPARQL SELECT executable"@en ;
    rdfs:comment "The class of SPARQL executables based on a SELECT query."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLExecutable .

sh:SPARQLSelectValidator a rdfs:Class ;
    rdfs:label "SPARQL SELECT validator"@en ;
    rdfs:comment "The class of validators based on SPARQL SELECT queries. The queries are evaluated for each focus node and are supposed to produce bindings for all focus nodes that do not conform."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLSelectExecutable,
        sh:Validator .

sh:SPARQLTarget a rdfs:Class ;
    rdfs:label "SPARQL target"@en ;
    rdfs:comment "The class of targets that are based on SPARQL queries."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLAskExecutable,
        sh:SPARQLSelectExecutable,
        sh:Target .

sh:SPARQLTargetType a rdfs:Class ;
    rdfs:label "SPARQL target type"@en ;
    rdfs:comment "The (meta) class for parameterizable targets that are based on SPARQL queries."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLAskExecutable,
        sh:SPARQLSelectExecutable,
        sh:TargetType .

sh:SPARQLUpdateExecutable a rdfs:Class ;
    rdfs:label "SPARQL UPDATE executable"@en ;
    rdfs:comment "The class of SPARQL executables based on a SPARQL UPDATE."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:SPARQLExecutable .

sh:Severity a rdfs:Class ;
    rdfs:label "Severity"@en ;
    rdfs:comment "The class of validation result severity levels, including violation and warning levels."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:Shape a rdfs:Class ;
    rdfs:label "Shape"@en ;
    ns3:abstract true ;
    rdfs:comment "A shape is a collection of constraints that may be targeted for certain nodes."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:Target a rdfs:Class ;
    rdfs:label "Target"@en ;
    ns3:abstract true ;
    rdfs:comment "The base class of targets such as those based on SPARQL queries."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:TargetType a rdfs:Class ;
    rdfs:label "Target type"@en ;
    ns3:abstract true ;
    rdfs:comment "The (meta) class for parameterizable targets.	Instances of this are instantiated as values of the sh:target property."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Class,
        sh:Parameterizable .

sh:TripleRule a rdfs:Class ;
    rdfs:label "A rule based on triple (subject, predicate, object) pattern."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:Rule .

sh:ValidationReport a rdfs:Class ;
    rdfs:label "Validation report"@en ;
    rdfs:comment "The class of SHACL validation reports."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

sh:ValidationResult a rdfs:Class ;
    rdfs:label "Validation result"@en ;
    rdfs:comment "The class of validation results."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf sh:AbstractResult .

sh:Validator a rdfs:Class ;
    rdfs:label "Validator"@en ;
    ns3:abstract true ;
    rdfs:comment "The class of validators, which provide instructions on how to process a constraint definition. This class serves as base class for the SPARQL-based validators and other possible implementations."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:subClassOf rdfs:Resource .

rec:AbsoluteHumidityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Absolute humidity observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:AbsoluteHumidity ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:AccelerationObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Acceleration observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Acceleration ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:AccessControlZone a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Access control zone"^^xsd:string ;
    rdfs:subClassOf rec:Zone .

rec:AccessPanel a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Access panel"^^xsd:string ;
    rdfs:subClassOf rec:BarrierAsset .

rec:ActuationEvent a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Actuation event"^^xsd:string ;
    rdfs:subClassOf rec:PointEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:description "The command message/payload of this actuation event."^^xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ],
        [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:description "The brick:Point(s) (e.g., brick:Commands, brick:Setpoints, or brick:Parameters) that the actuation will target/execute."^^xsd:string ;
            sh:minCount 1 ;
            sh:name "target point"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:targetPoint ] .

rec:AdmittingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Admitting room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:Agent a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Agent"^^xsd:string ;
    rdfs:comment "The human, group, or machine that consumes or acts upon an object or data. This higher-level grouping allows properties that are shared among its subclasses (Person, Organization, ....) to be anchored in one joint place, on the Agent class."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:description "Indicates ownership of some thing, e.g., a building, an asset, an organization, etc."^^xsd:string ;
            sh:name "owns"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:owns ],
        [ a sh:PropertyShape ;
            sh:class rec:Organization ;
            sh:description "Indicates membership in an organization. Note that componency (e.g., departments of a corporation) are expressed using the more generic Organization.isPartOf property."^^xsd:string ;
            sh:name "is member of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isMemberOf ] .

rec:AlarmObject a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Alarm object"^^xsd:string ;
    rdfs:subClassOf rec:ServiceObject .

rec:AngleObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Angle observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Angle ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:AngularAccelerationObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Angular acceleration observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:AngularVelocityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Angular velocity observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:AngularVelocity ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Apartment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Apartment"^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Room ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:ArchitecturalAsset a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Architectural asset"^^xsd:string ;
    rdfs:subClassOf rec:Asset .

rec:Architecture a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Architecture"^^xsd:string ;
    rdfs:comment "A designed/landscaped (or potentially designed/landscaped) part of the physical world that has a 3D spatial extent. E.g., a building site, a building, levels within the building, rooms, etc."^^xsd:string ;
    rdfs:subClassOf rec:Space ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:name "intersecting element"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:intersectingElement ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "owned by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:ownedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "architected by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:architectedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:ArchitectureCapacity ;
            sh:maxCount 1 ;
            sh:name "capacity"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:capacity ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:nodeKind sh:IRI ;
            sh:path rec:constructedBy ],
        [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:name "has point"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPoint ],
        [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:description "Links an Architecture to BuildingElement that is contained in the Space."^^xsd:string ;
            sh:name "contains element"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:containsElement ],
        [ a sh:PropertyShape ;
            sh:name "is fed by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isFedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "operated by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:operatedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Document ;
            sh:name "documentation"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:documentation ],
        [ a sh:PropertyShape ;
            sh:class rec:ArchitectureArea ;
            sh:maxCount 1 ;
            sh:name "area"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:area ],
        [ a sh:PropertyShape ;
            sh:class rec:PostalAddress ;
            sh:description "Physical address of the architecture (site, building, sub-building, entrance room, etc.) in question."^^xsd:string ;
            sh:name "address"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:address ],
        [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:name "adjacent element"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:adjacentElement ] .

rec:ArchitectureArea a <dtmi:dtdl:class:Component>,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Architecture area"^^xsd:string ;
    rdfs:comment "Describes business-relevant area measurements typically associated with architected spaces. As the exact requirements on these measurements will vary from case to case or jurisdiction to jurisdiction, subclassing and specializing this definition is encouraged."^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:float ;
            sh:maxCount 1 ;
            sh:name "net area"^^xsd:string ;
            sh:path rec:netArea ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:float ;
            sh:maxCount 1 ;
            sh:name "gross area"^^xsd:string ;
            sh:path rec:grossArea ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:float ;
            sh:maxCount 1 ;
            sh:name "rentable area"^^xsd:string ;
            sh:path rec:rentableArea ] .

rec:ArchitectureCapacity a <dtmi:dtdl:class:Component>,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Architecture capacity"^^xsd:string ;
    rdfs:comment "Describes business-relevant capacity measurements typically associated with architected spaces. As the exact requirements on these measurements will vary from case to case or jurisdiction to jurisdiction, subclassing and specializing this definition is encouraged."^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:description "E.g., per Building Code"^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "maximum occupancy"^^xsd:string ;
            sh:path rec:maxOccupancy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:name "seating capacity"^^xsd:string ;
            sh:path rec:seatingCapacity ] .

rec:AreaObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Area observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Area ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Asset a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Asset"^^xsd:string ;
    rdfs:comment "Something which is placed inside of a building, but is not an integral part of that building's structure; e.g., furniture, equipment, systems, etc."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:duration ;
            sh:name "maintenance interval"^^xsd:string ;
            sh:path rec:maintenanceInterval ],
        [ a sh:PropertyShape ;
            sh:class rec:Asset ;
            sh:name "has part"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPart ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:date ;
            sh:maxCount 1 ;
            sh:name "turnover date"^^xsd:string ;
            sh:path rec:turnoverDate ],
        [ a sh:PropertyShape ;
            sh:class rec:Geometry ;
            sh:description "A GeoJSON Geometry representing the position or extent of the asset."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "geometry"^^xsd:string ;
            sh:path rec:geometry ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:name "initial cost"^^xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path rec:initialCost ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "manufactured by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:manufacturedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Document ;
            sh:name "documentation"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:documentation ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "asset tag"^^xsd:string ;
            sh:path rec:assetTag ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "IP address"^^xsd:string ;
            sh:path rec:IPAddress ],
        [ a sh:PropertyShape ;
            sh:class rec:Asset ;
            sh:name "is part of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isPartOf ],
        [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:description "An asset may be mounted on some part of the building construction (e.g., a blind on a facade, a camera on a wall, etc)."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "mounted on"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:mountedOn ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "serial number"^^xsd:string ;
            sh:path rec:serialNumber ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:date ;
            sh:maxCount 1 ;
            sh:name "installation date"^^xsd:string ;
            sh:path rec:installationDate ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "installed by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:installedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "commissioned by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:commissionedBy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "MAC address"^^xsd:string ;
            sh:path rec:MACAddress ],
        [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:name "has point"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPoint ],
        [ a sh:PropertyShape ;
            sh:class rec:Space ;
            sh:name "located in"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:locatedIn ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:name "serviced by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:servicedBy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:date ;
            sh:maxCount 1 ;
            sh:name "commissioning date"^^xsd:string ;
            sh:path rec:commissioningDate ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "model number"^^xsd:string ;
            sh:path rec:modelNumber ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:name "weight"^^xsd:string ;
            sh:path rec:weight ] .

rec:Atrium a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Atrium"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:AudioVisualEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Audio Visual Equipment"^^xsd:string ;
    rdfs:comment "Audio visual equipment."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:Auditorium a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Auditorium"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:BACnetController a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "BACnet Controller"^^xsd:string ;
    rdfs:comment "BACnet controller."^^xsd:string ;
    rdfs:subClassOf rec:Controller .

rec:BackOffice a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Back office"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Balcony a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Balcony"^^xsd:string ;
    rdfs:subClassOf rec:BuildingElement .

rec:BarRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bar room"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:BarrierAsset a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Barrier asset"^^xsd:string ;
    rdfs:subClassOf rec:ArchitecturalAsset .

rec:BasementLevel a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Basement level"^^xsd:string ;
    rdfs:subClassOf rec:Level .

rec:Bathroom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bathroom"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Bed a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bed"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Bedroom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bedroom"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:BicycleGarage a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bicycle garage"^^xsd:string ;
    rdfs:subClassOf rec:Garage .

rec:Bookcase a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bookcase"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:BooleanValueObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Boolean value observation"^^xsd:string ;
    rdfs:comment "Generic xsd:boolean value observation that is not specific to any particular QUDT quantitykind or unit."^^xsd:string ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Building a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Building"^^xsd:string ;
    rdfs:comment "A confined building structure."^^xsd:string ;
    rdfs:subClassOf rec:Architecture .

rec:BuildingElement a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Building element"^^xsd:string ;
    rdfs:comment "A part that constitutes a piece of a building's structural makeup. E.g., Facade, Wall, Slab, Roof, etc."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:name "has part"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPart ],
        [ a sh:PropertyShape ;
            sh:class rec:Architecture ;
            sh:description "Indicates the architected space (site, building, level, room...) in which this building element is placed."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "located in"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:locatedIn ],
        [ a sh:PropertyShape ;
            sh:class rec:BuildingElement ;
            sh:maxCount 1 ;
            sh:name "is part of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isPartOf ],
        [ a sh:PropertyShape ;
            sh:class rec:Document ;
            sh:name "documentation"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:documentation ] .

rec:BulletinBoard a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Bulletin board"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Cabinet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cabinet"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:CableRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cable room"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:CafeteriaRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cafeteria room"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:Campus a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Campus"^^xsd:string ;
    rdfs:comment "A campus represents a collection of location entities. The constituent locations may have differing legal ownership and utilization purposes, but they are generally perceived as a coherent unit or sub-region within a city or other region. E.g., a university campus, a hospital campus, a corporate campus, etc."^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Architecture ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:CapacitanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Capacitance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Cart a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cart"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Chair a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Chair"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Cinema a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cinema"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Classroom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Classroom"^^xsd:string ;
    rdfs:subClassOf rec:EducationalRoom .

rec:CleaningRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cleaning room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ClimateControlRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Climate-control room"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:CloakRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cloak room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:CoatRack a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coat rack"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:CoffeeTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Coffee table"^^xsd:string ;
    rdfs:subClassOf rec:Table .

rec:Collection a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Collection"^^xsd:string ;
    rdfs:comment "An administrative grouping of entities that are adressed and treated as a unit for some purpose. These entities may have some spatial arrangement (e.g., an apartment is typically contiguous) but that is not a requirement (see, e.g., a distributed campus consisting of spatially disjoint plots or buildings). Inclusion in a Collection is determined by the 'includes' field on a specific subclass."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Document ;
            sh:name "documentation"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:documentation ] .

rec:Company a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Company"^^xsd:string ;
    rdfs:subClassOf rec:Organization .

rec:ComputerCart a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Computer cart"^^xsd:string ;
    rdfs:subClassOf rec:Cart .

rec:ConferenceRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Conference room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ConferenceTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Conference table"^^xsd:string ;
    rdfs:subClassOf rec:Table .

rec:Controller a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Controller"^^xsd:string ;
    rdfs:comment "Controller."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:ConversationRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Conversation room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:CookingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Cooking room"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:CopyingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Copying room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:DataNetworkEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data Network Equipment"^^xsd:string ;
    rdfs:comment "Data network equipment."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:DataRateObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data rate observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:DataServerRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data server room"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:DataSizeObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Data size observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:InformationEntropy ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:DaylightSensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Daylight Sensor"^^xsd:string ;
    rdfs:comment "Daylight sensor."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:DensityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Density observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Density ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Department a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Department"^^xsd:string ;
    rdfs:subClassOf rec:Organization .

rec:Desk a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Desk"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:DeskLamp a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Desk lamp"^^xsd:string ;
    rdfs:subClassOf rec:Lamp .

rec:DiningRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dining room"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:DisabledToilet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Disabled toilet"^^xsd:string ;
    rdfs:subClassOf rec:PersonalHygiene .

rec:DishingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dishing room"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:DistanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Distance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Distance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Document a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Document"^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:name "document topic"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:documentTopic ],
        [ a sh:PropertyShape ;
            sh:name "URL"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:url ] .

rec:Door a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Door"^^xsd:string ;
    rdfs:subClassOf rec:BarrierAsset .

rec:DoubleValueObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Double value observation"^^xsd:string ;
    rdfs:comment "Generic xsd:double value observation that is not specific to any particular QUDT quantitykind or unit."^^xsd:string ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:DressingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Dressing room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:EducationalRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Educational room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ElectricChargeObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Electric charge observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:ElectricCharge ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:ElectricCurrentObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Elecric current observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:ElectricCurrent ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:ElectricityRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Electricity room"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:ElevatorRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Elevator room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ElevatorShaft a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Elevator shaft"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ElevatorTrip a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Elevator trip"^^xsd:string ;
    rdfs:subClassOf rec:Event ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "current level"^^xsd:string ;
            sh:path rec:currentLevel ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "end level"^^xsd:string ;
            sh:path rec:endLevel ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "Up"^^xsd:string "Down"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:name "trip direction"^^xsd:string ;
            sh:path rec:tripDirection ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "start level"^^xsd:string ;
            sh:path rec:startLevel ] .

rec:EndTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "End table"^^xsd:string ;
    rdfs:subClassOf rec:Table .

rec:EnergyObservation a <dtmi:dtdl:class:Component>,
        rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Energy observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Energy ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Entrance a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Entrance"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:EquipmentCollection a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Equipment collection"^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class brick:Equipment ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:ErrorReport a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Error report"^^xsd:string ;
    rdfs:subClassOf rec:ServiceObject .

rec:EthernetPort a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Port"^^xsd:string ;
    rdfs:comment "Ethernet port."^^xsd:string ;
    rdfs:subClassOf rec:DataNetworkEquipment ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:float ;
            sh:description "The data rate of the port in Mib/s, i.e. mebibit (2^20 bit) per second."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "Port Speed"^^xsd:string ;
            sh:path rec:portSpeed ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "Type1"^^xsd:string "Type2"^^xsd:string "Type3"^^xsd:string "Type4"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:name "PoE Type"^^xsd:string ;
            sh:path rec:poeType ] .

rec:EthernetSwitch a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Switch"^^xsd:string ;
    rdfs:comment "Ethernet switch."^^xsd:string ;
    rdfs:subClassOf rec:DataNetworkEquipment .

rec:Event a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Event"^^xsd:string ;
    rdfs:comment "A temporally indexed entity, e.g., an observation, a lease, a construction project, etc. Can be instantaneous (timestamp property assigned) or have temporal extent (start and end properties assigned). Subclasses may define specific behaviour and requirements, e.g., on spatial indexing, agent participation, etc."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:description "Event ending timestamp."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "end"^^xsd:string ;
            sh:path rec:end ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:name "timestamp"^^xsd:string ;
            sh:path rec:timestamp ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:description "Event start timestamp."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "start"^^xsd:string ;
            sh:path rec:start ] .

rec:ExceptionEvent a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Exception event"^^xsd:string ;
    rdfs:subClassOf rec:PointEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:description "The message of this exception event."^^xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ],
        [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:description "The brick:Point that emitted this exception."^^xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "source point"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:sourcePoint ] .

rec:ExerciseRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Exercise room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ExhibitionRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Exhibition room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Facade a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Facade"^^xsd:string ;
    rdfs:subClassOf rec:BuildingElement .

rec:FilingCabinet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Filing cabinet"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:FittingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Fitting room"^^xsd:string ;
    rdfs:subClassOf rec:RetailRoom .

rec:FloorLamp a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Floor lamp"^^xsd:string ;
    rdfs:subClassOf rec:Lamp .

rec:FloorMat a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Floor mat"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:FoldingChair a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Folding chair"^^xsd:string ;
    rdfs:subClassOf rec:Chair .

rec:FoldingTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Folding table"^^xsd:string ;
    rdfs:subClassOf rec:Table .

rec:FoodHandlingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Food-handling room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Footrest a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Footrest"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:ForceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Force observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Force ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:FrequencyObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Frequency observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Furniture a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Furniture"^^xsd:string ;
    rdfs:subClassOf rec:Asset .

rec:FurnitureCollection a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Furniture collection"^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Furniture ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:Garage a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Garage"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Gateway a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Gateway"^^xsd:string ;
    rdfs:comment "Gateway."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:Geometry a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Geometry"^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "WGS84"^^xsd:string "SWEREF99"^^xsd:string "LocalCoordinates"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:name "coordinate system"^^xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path rec:coordinateSystem ] .

rec:Georeference a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Georeference"^^xsd:string ;
    rdfs:comment "A georeference creates a relationship between a local coordinate system into a geographic coordinate system."^^xsd:string ;
    rdfs:subClassOf rec:Information .

rec:Geotransform a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Geotransform"^^xsd:string ;
    rdfs:comment "A transform following GDAL's Affine Transform that transforms a local coordinate into a WGS84 coordinate. Created from Ground Control Points (GCP) using GDAL's GCPsToGeotransform method."^^xsd:string ;
    rdfs:subClassOf rec:Georeference ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:description "Value will be zero if the local coordinate system is north-aligned."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "y rotational scale factor"^^xsd:string ;
            sh:path rec:yRotationalScaleFactor ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:name "origin x"^^xsd:string ;
            sh:path rec:originX ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:name "height scale factor"^^xsd:string ;
            sh:path rec:heightScaleFactor ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:name "origin y"^^xsd:string ;
            sh:path rec:originY ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:description "Value will be zero if the local coordinate system is north-aligned."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "x rotational scale factor"^^xsd:string ;
            sh:path rec:xRotationalScaleFactor ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:name "width scale factor"^^xsd:string ;
            sh:path rec:widthScaleFactor ] .

rec:GroupRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Group room"^^xsd:string ;
    rdfs:subClassOf rec:EducationalRoom .

rec:HVACZone a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "HVAC zone"^^xsd:string ;
    rdfs:subClassOf rec:Zone .

rec:Hallway a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Hallway"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:HealthcareRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Healthcare room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Hospital a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Hospital"^^xsd:string ;
    rdfs:subClassOf rec:Building .

rec:IAQSensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Indoor Air Quality Sensor"^^xsd:string ;
    rdfs:comment "Indoor air quality sensor."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:ICTEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "ICT Equipment"^^xsd:string ;
    rdfs:comment "Equipment and devices that are part of a building's ICT infrastructure."^^xsd:string ;
    rdfs:subClassOf brick:Equipment ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:name "Height (RUs)"^^xsd:string ;
            sh:path rec:heightRUs ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:name "Number of Ports"^^xsd:string ;
            sh:path rec:numberOfPorts ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:description "The standard the equipment or device adheres to, e.g. IEEE 802.11."^^xsd:string ;
            sh:name "Standard"^^xsd:string ;
            sh:path rec:standard ] .

rec:ICTHardware a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "ICT Hardware"^^xsd:string ;
    rdfs:comment "ICT hardware."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:ITRack a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "IT Rack"^^xsd:string ;
    rdfs:comment "IT rack."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment .

rec:IlluminanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Illuminance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Illuminance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:InductanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Inductance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Inductance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Information a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Information"^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

rec:IntegerValueObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Integer value observation"^^xsd:string ;
    rdfs:comment "Generic xsd:int value observation that is not specific to any particular QUDT quantitykind or unit."^^xsd:string ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Kitchenette a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Kitchenette"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:Laboratory a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Laboratory"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LaboratoryDry a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Laboratory (dry)"^^xsd:string ;
    rdfs:subClassOf rec:Laboratory .

rec:LaboratoryWet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Laboratory (wet)"^^xsd:string ;
    rdfs:subClassOf rec:Laboratory .

rec:Lamp a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Lamp"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:LaundryRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Laundry room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LeakDetectorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Leak Detector"^^xsd:string ;
    rdfs:comment "Leak detector."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:Lease a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Lease"^^xsd:string ;
    rdfs:subClassOf rec:Event ;
    sh:property [ a sh:PropertyShape ;
            sh:description "The object (e.g., property, equipment, etc) that this a lease of."^^xsd:string ;
            sh:minCount 1 ;
            sh:name "lease of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:leaseOf ],
        [ a sh:PropertyShape ;
            sh:class rec:LeaseContract ;
            sh:description "Indicates the contract regulating the terms of the lease in question. "^^xsd:string ;
            sh:name "regulated by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:regulatedBy ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:description "The agent leasing out some leasable object, i.e., the owner of the asset."^^xsd:string ;
            sh:minCount 1 ;
            sh:name "leasor"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:leasor ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:description "The agent leasing some leasable object, i.e., the user of the asset."^^xsd:string ;
            sh:minCount 1 ;
            sh:name "leasee"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:leasee ] .

rec:LeaseContract a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Lease contract"^^xsd:string ;
    rdfs:comment "Formal document that identifies the Tenant and the leased asset or property; states lease term and fee (rent), and detailed terms and conditions of the lease agreement."^^xsd:string ;
    rdfs:subClassOf rec:Document ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Lease ;
            sh:description "Indicates the lease(s) that this contract regulates the conditions of."^^xsd:string ;
            sh:name "regulates"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:regulates ] .

rec:LengthObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Length observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Length ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Level a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Level"^^xsd:string ;
    rdfs:comment "The level of a building, a.k.a. storey, floor, etc."^^xsd:string ;
    rdfs:subClassOf rec:Architecture ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:integer ;
            sh:description "A number indicating the ordinal number of this level within the containing space (typically a Building or in the case of a Mezzanine, sometimes another level). Note that the implementation of this numbering scheme and its starting point is implementation-specific; e.g., the fifth floor below ground may be 0 in some systems, and -5 in others."^^xsd:string ;
            sh:name "level number"^^xsd:string ;
            sh:path rec:levelNumber ] .

rec:Library a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Library"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LivingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Living room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LoadingReceivingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Loading/receiving room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LockerRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Locker room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:LuminanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Luminance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Luminance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:LuminousFluxObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Luminous flux observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:LuminousFlux ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:LuminousIntensityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Luminous intensity observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:LuminousIntensity ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:MagneticFluxObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Magnetic flux observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:MagneticFlux ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:MailRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mail room"^^xsd:string ;
    rdfs:subClassOf rec:BackOffice .

rec:MailroomCart a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mailroom cart"^^xsd:string ;
    rdfs:subClassOf rec:Cart .

rec:MainEntrance a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Main entrance"^^xsd:string ;
    rdfs:subClassOf rec:Entrance .

rec:MassFlowRateObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mass flow rate observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:MassObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mass observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Mass ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:MeditationRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Meditation room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:MezzanineLevel a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mezzanine level"^^xsd:string ;
    rdfs:subClassOf rec:Level .

rec:MobileDesk a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mobile desk"^^xsd:string ;
    rdfs:subClassOf rec:Desk .

rec:ModbusController a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Modbus Controller"^^xsd:string ;
    rdfs:comment "Modbus controller."^^xsd:string ;
    rdfs:subClassOf rec:Controller .

rec:Morgue a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Morgue"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:MothersRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Mothers' room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:MultiPoint a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi point"^^xsd:string ;
    rdfs:subClassOf rec:Geometry ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype <https://geojson.org/MultiPoint> ;
            sh:description "A GeoJSON MultiPoint coordinate listing. Coordinates may be expressed in two or three dimensions. Ex: [[10.0, 40.0], [40.0, 30.0], [20.0, 20.0], [30.0, 10.0]]."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "coordinates"^^xsd:string ;
            sh:path rec:coordinates ] .

rec:MultiPolygon a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi polygon"^^xsd:string ;
    rdfs:subClassOf rec:Geometry ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype <https://geojson.org/MultiPolygon> ;
            sh:description "A GeoJSON MultiPolygon coordinate listing. Coordinates may be expressed in two or three dimensions. Ex: [[[[30.0, 20.0], [45.0, 40.0], [10.0, 40.0], [30.0, 20.0]]], [[[15.0, 5.0], [40.0, 10.0], [10.0, 20.0], [5.0, 10.0], [15.0, 5.0]]]]."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "coordinates"^^xsd:string ;
            sh:path rec:coordinates ] .

rec:MultiPurposeRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Multi-purpose room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:NeonatalNursingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Neonatal nursing room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:NetworkRouter a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Network Router"^^xsd:string ;
    rdfs:comment "Network router."^^xsd:string ;
    rdfs:subClassOf rec:DataNetworkEquipment .

rec:NetworkSecurityEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Network Security Equipment"^^xsd:string ;
    rdfs:comment "Network security equipment."^^xsd:string ;
    rdfs:subClassOf rec:DataNetworkEquipment .

rec:NotificationObject a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Notification object"^^xsd:string ;
    rdfs:subClassOf rec:ServiceObject .

rec:ObservationEvent a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Observation event"^^xsd:string ;
    rdfs:subClassOf rec:PointEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:description "The brick:Point that emitted this observation."^^xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "source point"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:sourcePoint ] .

rec:OccupancySensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy Sensor"^^xsd:string ;
    rdfs:comment "Occupancy sensor."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:OccupancyZone a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy zone"^^xsd:string ;
    rdfs:comment "Occupancy Zone is a spatial area where devices are monitoring or reporting on the concept of Occupancy (motion sensors, people counters, cameras, etc.)"^^xsd:string ;
    rdfs:subClassOf rec:Zone .

rec:Office a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Office"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:OfficeChair a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Office chair"^^xsd:string ;
    rdfs:subClassOf rec:Chair .

rec:OfficeLandscape a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "OfficeLandscape"^^xsd:string ;
    rdfs:subClassOf rec:Office .

rec:OfficeRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "OfficeRoom"^^xsd:string ;
    rdfs:subClassOf rec:Office .

rec:OperatingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Operating room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:Organization a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Organization"^^xsd:string ;
    rdfs:comment "An organization of any sort (e.g., a business, association, project, consortium, tribe, etc.)"^^xsd:string ;
    rdfs:subClassOf rec:Agent ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Organization ;
            sh:description "Indicates parthood relations in organizations (e.g., departments of a corporation). Note that membership in an organization is expressed using the Agent.isMemberOf property."^^xsd:string ;
            sh:name "is part of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isPartOf ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:description "Indicates membership in an organization. Note that componency (e.g., departments of a corporation) are expressed using the more generic hasPart property."^^xsd:string ;
            sh:name "has member"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasMember ],
        [ a sh:PropertyShape ;
            sh:class rec:Organization ;
            sh:description "Indicates parthood relations in organizations (e.g., departments of a corporation). Note that membership in an organization is expressed using the more specific hasMember property."^^xsd:string ;
            sh:name "has part"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPart ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:anyURI ;
            sh:description "URL link to an image/logo that represents the organization."^^xsd:string ;
            sh:name "logo"^^xsd:string ;
            sh:path rec:logo ] .

rec:OutdoorSpace a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Outdoor space"^^xsd:string ;
    rdfs:subClassOf s223:PhysicalSpace,
        rec:Architecture .

rec:OutpatientServicesRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Outpatient services room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:Pantry a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Pantry"^^xsd:string ;
    rdfs:subClassOf rec:FoodHandlingRoom .

rec:ParkingSpace a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Parking space"^^xsd:string ;
    rdfs:subClassOf rec:Zone .

rec:Partition a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Partition"^^xsd:string ;
    rdfs:subClassOf rec:BarrierAsset .

rec:PeopleCountSensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "People Count Sensor"^^xsd:string ;
    rdfs:comment "People count sensor."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:Person a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Person"^^xsd:string ;
    rdfs:comment "A natural person (i.e., an individual human being)."^^xsd:string ;
    rdfs:subClassOf rec:Agent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:path rec:givenName ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:anyURI ;
            sh:description "URL link to an image that represents the person."^^xsd:string ;
            sh:name "image"^^xsd:string ;
            sh:path rec:image ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:name "gender"^^xsd:string ;
            sh:path rec:gender ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:path rec:familyName ] .

rec:PersonalHygiene a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Personal hygiene room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:PharmacyRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Pharmacy room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:PhoneBooth a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "PhoneBooth"^^xsd:string ;
    rdfs:subClassOf rec:Office .

rec:Point a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Point"^^xsd:string ;
    rdfs:subClassOf rec:Geometry ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype <https://geojson.org/Point> ;
            sh:description "A GeoJSON Point coordinate listing. Coordinate may be expressed in two or three dimensions. Ex: [30.0, 10.0, 0.0]."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "coordinates"^^xsd:string ;
            sh:path rec:coordinates ] .

rec:PointEvent a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Point event"^^xsd:string ;
    rdfs:comment "An event emanating from or targeting a Point; e.g., an individual Observation from a Sensor point, or an Actuation sent to a Command point. In other terms, the Points indicate the capability of some Space or Equipment to emit or accept data, while this class represents those actual data messages. Note that in most non-trivially sized systems, these events are not stored in the knowledge graph itself, but are rather forwarded to some C&C system or time series database."^^xsd:string ;
    rdfs:subClassOf rec:Event .

rec:PointOfInterest a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Point of Interest"^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:name "object of interest"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:objectOfInterest ] .

rec:Polygon a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Polygon"^^xsd:string ;
    rdfs:subClassOf rec:Geometry ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype <https://geojson.org/Polygon> ;
            sh:description "A GeoJSON Polygon coordinate listing. Coordinates may be expressed in two or three dimensions. Ex: [[30.0, 10.0, 0.0], [40.0, 40.0, 2.0], [20.0, 40.0, 2.0], [10.0, 20.0, 2.0], [30.0, 10.0, 0.0]]."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "coordinates"^^xsd:string ;
            sh:path rec:coordinates ] .

rec:Portfolio a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Portfolio"^^xsd:string ;
    rdfs:comment "A portfolio is a grouping of buildings, sites, apartments, campuses, etc. that share some business-relevant commonality, e.g., are managed by the same company, are rented out to the same tenant, share utilization or legal definition (industrial vs commercial), etc."^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:PostalAddress a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Postal address"^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "address line 1"^^xsd:string ;
            sh:path rec:addressLine1 ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "address line 2"^^xsd:string ;
            sh:path rec:addressLine2 ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:description "The country, e.g., USA, Sweden, Argentina, or optionally a two-letter ISO 3166-1 alpha-2 country code, e.g., \"SE\", \"US\", etc."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "country"^^xsd:string ;
            sh:path rec:country ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "region"^^xsd:string ;
            sh:path rec:region ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "postal code"^^xsd:string ;
            sh:path rec:postalCode ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:name "city"^^xsd:string ;
            sh:path rec:city ] .

rec:PowerObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Power observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Power ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Premises a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Premises"^^xsd:string ;
    rdfs:comment "A premises is an administrative grouping of spaces that are used for some commercial or industrial purpose by a real estate holder or tenant. E.g, a suite of offices, a shop, or an industrial workshop."^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Architecture ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:PressureObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Pressure observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Pressure ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:PrinterCart a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Printer cart"^^xsd:string ;
    rdfs:subClassOf rec:Cart .

rec:PrinterStand a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Printer stand"^^xsd:string ;
    rdfs:subClassOf rec:Stand .

rec:RadiologyRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Radiology room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:RealEstate a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Real Estate"^^xsd:string ;
    rdfs:comment "The legal/administrative representation of some lands and/or buildings. I.e., \"Fastighet\" (Swedish), \"Ejendom\" (Denmark), etc."^^xsd:string ;
    rdfs:subClassOf rec:Collection ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Architecture ;
            sh:minCount 1 ;
            sh:name "includes"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:includes ] .

rec:Reception a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Reception"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ReceptionTable a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Reception table"^^xsd:string ;
    rdfs:subClassOf rec:Table .

rec:RecordingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Recording room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:RecreationalRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Recreational room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Region a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Region"^^xsd:string ;
    rdfs:comment "An administrative geospatial unit larger than the individual real estate. For instance, \"Lombary\", \"North America\", \"The Back Bay\", \"Elnätsområde Syd\", etc."^^xsd:string ;
    rdfs:subClassOf rec:Space .

rec:RelativeHumidityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Relative humidity observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:RelativeHumidity ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:ResistanceObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Resistance observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:RestingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Resting room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:RetailRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Retail room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Roof a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Roof"^^xsd:string ;
    rdfs:subClassOf rec:BuildingElement .

rec:RoofLevel a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Roof level"^^xsd:string ;
    rdfs:subClassOf rec:Level .

rec:Room a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Room"^^xsd:string ;
    rdfs:subClassOf s223:PhysicalSpace,
        rec:Architecture .

rec:Safe a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Safe"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Sauna a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sauna"^^xsd:string ;
    rdfs:subClassOf rec:PersonalHygiene .

rec:School a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "School"^^xsd:string ;
    rdfs:subClassOf rec:Building .

rec:SecurityRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Security room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:SensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sensor Equipment"^^xsd:string ;
    rdfs:comment "Sensor equipment."^^xsd:string ;
    rdfs:subClassOf rec:ICTEquipment ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:name "Battery Percentage"^^xsd:string ;
            sh:path rec:batteryPercentage ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:name "Wi-Fi Signal Strength"^^xsd:string ;
            sh:path rec:wifiSignalStrength ] .

rec:Server a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Server"^^xsd:string ;
    rdfs:comment "Server."^^xsd:string ;
    rdfs:subClassOf rec:ICTHardware .

rec:ServiceEntrance a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Service entrance"^^xsd:string ;
    rdfs:subClassOf rec:Entrance .

rec:ServiceObject a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Service object"^^xsd:string ;
    rdfs:subClassOf rec:Information ;
    sh:property [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:maxCount 1 ;
            sh:name "closed by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:closedBy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:name "closed time"^^xsd:string ;
            sh:path rec:closedTime ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:name "created time"^^xsd:string ;
            sh:path rec:createdTime ],
        [ a sh:PropertyShape ;
            sh:class brick:Point ;
            sh:name "produced by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:producedBy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "Severe"^^xsd:string "Major"^^xsd:string "Minor"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "severity"^^xsd:string ;
            sh:path rec:severity ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:maxCount 1 ;
            sh:name "acknowledged by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:acknowledgedBy ],
        [ a sh:PropertyShape ;
            sh:minCount 1 ;
            sh:name "related to"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:relatedTo ],
        [ a sh:PropertyShape ;
            sh:class rec:Agent ;
            sh:maxCount 1 ;
            sh:name "created by"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:createdBy ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "Unacknowledged"^^xsd:string "Acknowledged"^^xsd:string "Closed"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "status"^^xsd:string ;
            sh:path rec:status ],
        [ a sh:PropertyShape ;
            sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:name "acknowledged time"^^xsd:string ;
            sh:path rec:acknowledgedTime ] .

rec:ServiceShaft a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Service shaft"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Shelter a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Shelter"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:ShelterGasLock a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Shelter gas lock"^^xsd:string ;
    rdfs:subClassOf rec:Shelter .

rec:ShelterRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Shelter room"^^xsd:string ;
    rdfs:subClassOf rec:Shelter .

rec:ShoppingMall a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Shopping mall"^^xsd:string ;
    rdfs:subClassOf rec:Building .

rec:ShowerRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Shower room"^^xsd:string ;
    rdfs:subClassOf rec:PersonalHygiene .

rec:Site a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Site"^^xsd:string ;
    rdfs:comment "A piece of land upon which zero or more buildings may be situated."^^xsd:string ;
    rdfs:subClassOf rec:Architecture .

rec:Slab a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Slab"^^xsd:string ;
    rdfs:subClassOf rec:BuildingElement .

rec:SmallStudyRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Small study room"^^xsd:string ;
    rdfs:subClassOf rec:EducationalRoom .

rec:Sofa a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sofa"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:SoundPressureObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sound pressure observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:SoundPressure ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Space a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Space"^^xsd:string ;
    rdfs:comment "A contiguous part of the physical world that contains or can contain sub-spaces. E.g., a Region can contain many Sites, which in turn can contain many Buildings."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource ;
    sh:property [ a sh:PropertyShape ;
            sh:name "is location of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isLocationOf ],
        [ a sh:PropertyShape ;
            sh:class rec:Georeference ;
            sh:description "A georeference creates a relationship between the local coordinate system used within a building (e.g., measured in meters) and a geographic coordinate system (e.g., lat, long, alt), such that locally placed Spaces can be resolved and rendered in that geographic coordinate system (e.g., for mapping purposes)."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "georeference"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:georeference ],
        [ a sh:PropertyShape ;
            sh:class rec:Space ;
            sh:maxCount 1 ;
            sh:name "is part of"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:isPartOf ],
        [ a sh:PropertyShape ;
            sh:class rec:Geometry ;
            sh:description "Polygon representing the spatial extent of this Space."^^xsd:string ;
            sh:maxCount 1 ;
            sh:name "geometry"^^xsd:string ;
            sh:path rec:geometry ],
        [ a sh:PropertyShape ;
            sh:class rec:Space ;
            sh:name "has part"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path rec:hasPart ] .

rec:SprinklerRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sprinkler room"^^xsd:string ;
    rdfs:subClassOf rec:UtilitiesRoom .

rec:Stadium a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Stadium"^^xsd:string ;
    rdfs:subClassOf rec:Building .

rec:StaffRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Staff room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Stairwell a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Stairwell"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Stand a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Stand"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:Storage a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Storage"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:StorageCabinet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Storage cabinet"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:SubBuilding a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Sub-building"^^xsd:string ;
    rdfs:subClassOf rec:Architecture .

rec:TVStand a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "TV stand"^^xsd:string ;
    rdfs:subClassOf rec:Stand .

rec:Table a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Table"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:TelecommunicationRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Telecommunication room"^^xsd:string ;
    rdfs:subClassOf rec:CableRoom .

rec:TemperatureObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Temperature observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Temperature ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Theater a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Theater"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:TherapyRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Therapy room"^^xsd:string ;
    rdfs:subClassOf rec:HealthcareRoom .

rec:ThermostatEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Thermostat"^^xsd:string ;
    rdfs:comment "Thermostat."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:ThrustObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Thrust observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Thrust ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:TimeSpanObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Timespan observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Time ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Toilet a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Toilet"^^xsd:string ;
    rdfs:subClassOf rec:PersonalHygiene .

rec:TorqueObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Torque observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Torque ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:TreatmentRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Treatment room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:TreatmentWaitingRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Treatment waiting room"^^xsd:string ;
    rdfs:subClassOf rec:TreatmentRoom .

rec:UtilitiesRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Utilities room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:VelocityObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Velocity observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Velocity ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:VibrationSensorEquipment a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Vibration Sensor"^^xsd:string ;
    rdfs:comment "Vibration sensor."^^xsd:string ;
    rdfs:subClassOf rec:SensorEquipment .

rec:VirtualBuilding a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Virtual building"^^xsd:string ;
    rdfs:subClassOf rec:Building .

rec:VoltageObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Voltage observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Voltage ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:VolumeFlowRateObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Volume flow rate observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:VolumeFlowRate ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:VolumeObservation a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Volume observation"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Volume ;
    rdfs:subClassOf rec:ObservationEvent ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "value"^^xsd:string ;
            sh:path rec:value ] .

rec:Wall a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Wall"^^xsd:string ;
    rdfs:subClassOf rec:BuildingElement .

rec:WallInner a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Wall (inner)"^^xsd:string ;
    rdfs:subClassOf rec:Wall .

rec:WasteBasket a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Waste basket"^^xsd:string ;
    rdfs:subClassOf rec:Furniture .

rec:WasteManagementRoom a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Waste management room"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Window a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Window"^^xsd:string ;
    rdfs:subClassOf rec:BarrierAsset .

rec:WirelessAccessPoint a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Wireless Access Point"^^xsd:string ;
    rdfs:comment "Wireless access point."^^xsd:string ;
    rdfs:subClassOf rec:DataNetworkEquipment ;
    sh:property [ a sh:PropertyShape ;
            sh:datatype xsd:string ;
            sh:in ( "WiFi4"^^xsd:string "WiFi5"^^xsd:string "WiFi6"^^xsd:string "WiFi6E"^^xsd:string "WiFi7"^^xsd:string ) ;
            sh:maxCount 1 ;
            sh:name "Generation"^^xsd:string ;
            sh:path rec:generation ] .

rec:WorkOrder a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Work order"^^xsd:string ;
    rdfs:subClassOf rec:ServiceObject .

rec:Workshop a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Workshop"^^xsd:string ;
    rdfs:subClassOf rec:Room .

rec:Workspace a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Workspace"^^xsd:string ;
    rdfs:subClassOf rec:Zone .

rec:Zone a rdfs:Class,
        sh:NodeShape ;
    rdfs:label "Zone"^^xsd:string ;
    rdfs:comment "A sub-zone within or outside of a building defined to support some technology and/or use, e.g., an HVAC zone, a parking space, a security zone, etc."^^xsd:string ;
    rdfs:subClassOf rec:Architecture .

s223:AbstractClassShape a sh:NodeShape ;
    sh:sparql [ a sh:SPARQLConstraint ;
            sh:message "s223: {$this} cannot be declared an instance of only {?c}, which is an abstract class."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
            SELECT $this ?c
            WHERE {
              $this a ?c .
              ?c   a s223:AbstractClass .
              FILTER NOT EXISTS {
                $this a ?nonAbs .
                ?nonAbs rdfs:subClassOf+ ?c .
                FILTER NOT EXISTS { ?nonAbs a s223:AbstractClass }
              }
            }
        """^^xsd:string ] ;
    sh:targetClass s223:AbstractClass ;
    sh:targetSubjectsOf rdf:type .

s223:ActuatablePropertyShape a sh:NodeShape ;
    sh:property [ rdfs:comment "An `ActuatableProperty` normally is referred to by `Equipment` using the relation `actuatedByProperty`."^^xsd:string ;
            sh:class s223:Equipment ;
            sh:message "s223: An `ActuatableProperty` normally is referred to by `Equipment` using the relation `actuatedByProperty`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path [ sh:inversePath s223:actuatedByProperty ] ;
            sh:severity sh:Warning ] ;
    sh:targetClass s223:ActuatableProperty .

s223:Actuator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Actuator"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that receives control signals and electrically, pneumatically, or hydraulically makes changes in the
physical world, such as the position of a valve or damper."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `Actuator` shall be associated with at least one `ActuatableProperty` using the relation `actuatedByProperty`."^^xsd:string ;
            sh:class s223:ActuatableProperty ;
            sh:message "s223: An `Actuator` shall be associated with at least one `ActuatableProperty` using the relation `actuatedByProperty`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:actuatedByProperty ],
        [ rdfs:comment "An `Actuator` shall be associated with zero or more pieces of `Equipment` using the relation `actuates`."^^xsd:string ;
            sh:class s223:Equipment ;
            sh:message "s223: An `Actuator` shall be associated with zero or more pieces of `Equipment` using the relation `actuates`."^^xsd:string ;
            sh:path s223:actuates ] .

s223:AirHandlingUnit a s223:Class,
        sh:NodeShape ;
    rdfs:label "Air handling unit"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` consisting of a fan or fans and other equipment necessary to perform one or more of the following functions:
circulating, filtration, heating, cooling, heat recovery, humidifying, dehumidifying, and mixing of air."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `AirHandlingUnit` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: An `AirHandlingUnit` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `AirHandlingUnit` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: An `AirHandlingUnit` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:AirToAirHeatPump a s223:Class,
        sh:NodeShape ;
    rdfs:label "Air-to-air heat pump"^^xsd:string ;
    rdfs:comment "A `HeatPump` that transfers thermal energy between two bodies of air."^^xsd:string ;
    rdfs:subClassOf s223:HeatPump ;
    sh:property [ rdfs:comment "An `AirToAirHeatPump` shall have at least two outlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: An `AirToAirHeatPump` shall have at least two outlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `AirToAirHeatPump` shall have at least two inlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: An `AirToAirHeatPump` shall have at least two inlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:BACnetExternalReferenceShape a sh:NodeShape ;
    sh:property [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one BACnet object identifier using the relation `bacnet:object-identifier`."^^xsd:string ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:object-identifier ;
            sh:pattern "^[A-Za-z0-9-]+,[1-9][0-9]*$"^^xsd:string ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one string value using the relation `bacnet:property-identifier`. The string value shall be either a decimal number or exactly equal to the ASHRAE 135-2024 Clause 21 identifier text of BACnetPropertyIdentifier. If it is omitted, it defaults to \"present-value\", except for BACnet File objects, where absence of `bacnet:property-identifier` refers to the entire content of the file accessed with Stream Access."^^xsd:string ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:property-identifier ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one BACnet device identifier using the relation `bacnet:device-identifier`."^^xsd:string ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:device-identifier ;
            sh:pattern "^[A-Za-z0-9-]+,[1-9][0-9]*$"^^xsd:string ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one priority for writing values using the relation `bacnet:priority-for-writing`."^^xsd:string ;
            sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:priority-for-writing ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one BACnet device name using the relation `bacnet:device-name`."^^xsd:string ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:device-name ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one BACnet object name using the relation `bacnet:object-name`."^^xsd:string ;
            sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:object-name ],
        [ a sh:PropertyShape ;
            rdfs:comment "A `BACnetExternalReferenceShape` shall be associated with at most one index for reading items from a BACnet property that is an array using the relation `bacnet:property-array-index`."^^xsd:string ;
            sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:minCount 0 ;
            sh:path ns4:property-array-index ] ;
    sh:targetClass s223:BACnetExternalReference .

s223:Bathtub a s223:Class,
        sh:NodeShape ;
    rdfs:label "Bathtub"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` for bathing that receives as an input hot or cold water dispensed from one or two `Faucet`s, and is designed to hold a specific volume of water and release the held water through a `Drain`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Bathtub` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Bathtub` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Bathtub` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Bathtub` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:BatteryCPShape a sh:NodeShape ;
    rdfs:label "Battery CP shape"^^xsd:string ;
    rdfs:comment "A `Battery` shall have at least one outlet or bidirectional connection point using the medium `Constituent-Electricity`."^^xsd:string ;
    sh:message "s223: A `Battery` shall have at least one outlet or bidirectional connection point using the medium `Constituent-Electricity`."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Battery` shall have at least one outlet or bidirectional connection point using the medium `Constituent-Electricity`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                                sh:path s223:hasMedium ] ] ] ] ] [ sh:property [ rdfs:comment "A `Battery` shall have at least one outlet or bidirectional connection point using the medium `Constituent-Electricity`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                                sh:path s223:hasMedium ] ] ] ] ] ) ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Battery .

s223:Boiler a s223:Class,
        sh:NodeShape ;
    rdfs:label "Boiler"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that uses fuel or electricity to heat water or other fluids and supply steam or hot water for heating, humidification, or other applications."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Boiler` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Boiler` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Boiler` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Boiler` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ChilledBeamShape a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "A `ChilledBeam` must always have the role `Role-Cooling`"^^xsd:string ;
            sh:object s223:Role-Cooling ;
            sh:predicate s223:hasRole ;
            sh:subject sh:this ] ;
    sh:targetClass s223:ChilledBeam .

s223:Chiller a s223:Class,
        sh:NodeShape ;
    rdfs:label "Chiller"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that removes heat from a liquid coolant via a vapor-compression, adsorption refrigeration, or absorption refrigeration cycles."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Chiller` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Chiller` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Chiller` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Chiller` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ClosedWorld223Shape a sh:NodeShape ;
    rdfs:label "Closed-world s223 shape"^^xsd:string ;
    rdfs:comment "Ensure that all instances of an s223 class use only the relations defined for that class. Note that this only applies to s223 relations."^^xsd:string ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment """Ensure that all instances of an s223 class use only the relations defined for that class. Note that only s223
relations are checked by this validation."""^^xsd:string ;
            sh:message "s223: s223 predicate {?p} is not defined for instance {$this}."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this ?p ?o
WHERE {
?p a/rdfs:subClassOf* s223:Relation .
$this ?p ?o .
FILTER NOT EXISTS {$this a sh:NodeShape}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
			?class sh:property/sh:path ?p .
}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
?class sh:xone/rdf:rest*/rdf:first/sh:property/sh:path ?p .
}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
?class sh:or/rdf:rest*/rdf:first/sh:property/sh:path ?p .
}
}
"""^^xsd:string ] ;
    sh:targetClass s223:Concept .

s223:ClosedWorldQUDTShape a sh:NodeShape ;
    rdfs:label "Closed-world QUDT shape"^^xsd:string ;
    rdfs:comment "Ensure that all instances of an s223 class use only the relations defined for that class. Note that this only applies to QUDT relations."^^xsd:string ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment """Ensure that all instances of an s223 class use only the relations defined for that class. Note that only QUDT
relations are checked by this validation."""^^xsd:string ;
            sh:message "s223: QUDT predicate {?p} is not defined for instance {$this}."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this ?p ?o
WHERE {
$this ?p ?o .
FILTER(STRSTARTS (str(?p), "http://qudt.org/schema/qudt"))
FILTER NOT EXISTS {$this a sh:NodeShape}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
			?class sh:property/sh:path ?p .
}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
?class sh:xone/rdf:rest*/rdf:first/sh:property/sh:path ?p .
}
FILTER NOT EXISTS {$this a/rdfs:subClassOf* ?class .
?class sh:or/rdf:rest*/rdf:first/sh:property/sh:path ?p .
}
}
"""^^xsd:string ] ;
    sh:targetClass s223:Concept .

s223:ClothesWasher a s223:Class,
        sh:NodeShape ;
    rdfs:label "Clothes washer"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that automatically cleans a load of textiles (e.g., clothing, bedding)."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `ClothesWasher` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `ClothesWasher` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `ClothesWasher` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `ClothesWasher` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `ClothesWasher` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `ClothesWasher` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:CoaxialCable a s223:Class,
        sh:NodeShape ;
    rdfs:label "Coaxial cable"^^xsd:string ;
    rdfs:comment "A type of `Waveguide` that consists of a central conductor, surrounded by an insulator, a metallic shield, and an outer jacket, all sharing the same geometric axis - which allows it to efficiently transmit high-frequency signals over long distances with minimal interference - and is used for `Wideband-DOCSIS` and `Wideband-CATV` communication."^^xsd:string ;
    rdfs:subClassOf s223:Waveguide ;
    sh:property [ rdfs:comment "A `CoaxialCable` shall be associated with exactly one `Wideband-DOCSIS` or `Wideband-CATV` using the relation `hasMedium`."^^xsd:string ;
            sh:maxCount 1 ;
            sh:message "s223: A `CoaxialCable` shall be associated with exactly one `Wideband-DOCSIS` or `Wideband-CATV` using the relation `hasMedium`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasMedium ;
            sh:xor ( [ sh:class s223:Wideband-DOCSIS ] [ sh:class s223:Wideband-CATV ] ) ] .

s223:CoffeeMaker a s223:Class,
        sh:NodeShape ;
    rdfs:label "Coffee maker"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that automatically brews coffee."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `CoffeeMaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `CoffeeMaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Compressor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Compressor"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that mechanically increases the pressure of a gas."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Compressor` shall have at least one inlet."^^xsd:string ;
            sh:message "s223: A `Compressor` shall have at least one inlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ],
        [ rdfs:comment "A `Compressor` shall have at least one outlet."^^xsd:string ;
            sh:message "s223: A `Compressor` shall have at least one outlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ] .

s223:ComputerPrinter a s223:Class,
        sh:NodeShape ;
    rdfs:label "Computer printer"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that processes an input electrical or RF signal, typically from a `Computer`, and outputs a durable representation of information, typically text and/or graphics, typically on paper."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `ComputerPrinter` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `ComputerPrinter` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `ComputerPrinter` shall have at least one inlet using the medium `Electricity-Signal` or `EM-RF`."^^xsd:string ;
            sh:message "s223: A `ComputerPrinter` shall have at least one inlet using the medium `Electricity-Signal` or `EM-RF`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:or ( [ sh:class s223:Electricity-Signal ] [ sh:class s223:EM-RF ] ) ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ConcentrationSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Concentration sensor"^^xsd:string ;
    rdfs:comment """A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a concentration of a miscible constituent in a medium,
in contrast to a `ParticulateSensor` that `observes` a `QuantifiableObservableProperty` that represents an amount of a particulate in a medium
(see {s223:ParticulateSensor}). The 223 standard does not constrain the `Unit` or `QuantityKind` reported by a `ConcentrationSensor`, but possible
`QuantityKind`s include `Concentration` (moles per volume), `Density` (mass per volume), `MoleFraction`, and `VolumeFraction`."""^^xsd:string ;
    rdfs:subClassOf s223:Sensor .

s223:ConceptShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Add an rdfs:label if it is missing."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this rdfs:label ?newLabel .}
WHERE {
FILTER (NOT EXISTS {$this rdfs:label ?something}) .
BIND(REPLACE(STR($this), "^.*/([^/]*)$", "$1") AS ?localNameWithoutHash)
BIND(REPLACE(?localNameWithoutHash, "^.*#(.*)$", "$1") AS ?localName)
BIND(REPLACE(?localName, "-", " ", "i") AS ?newLabel)
}
"""^^xsd:string ;
            sh:name "AddLabelFromLocalName"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Concept .

s223:ConductorShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasElectricalPhase` value from any connected `ConnectionPoint`s."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasElectricalPhase ?phase .}
WHERE {
$this s223:cnx/s223:hasElectricalPhase ?phase .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Conductor .

s223:ConnectableShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connected` relation for BiDirectional connections"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connected ?d2 .}
WHERE {
$this s223:connectedThrough/^s223:connectedThrough ?d2 .
FILTER ($this != ?d2) .
FILTER NOT EXISTS {$this s223:contains* ?d2} .
FILTER NOT EXISTS {?d2 s223:contains* $this} .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToDownstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connected` relation for BiDirectional connections"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connected ?d2 .}
WHERE {
$this s223:connectedThrough/^s223:connectedThrough ?d2 .
FILTER ($this != ?d2) .
FILTER NOT EXISTS {$this s223:contains* ?d2} .
FILTER NOT EXISTS {?d2 s223:contains* $this} .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToDownstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `cnx` relation using `isConnectionPointOf`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:cnx ?thing .}
WHERE {
$this ^s223:isConnectionPointOf ?thing .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToConnectionPointCnxPropertyFromInverse"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connected` relation using `connectedTo`"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connected ?thing .}
WHERE {
$this s223:connectedTo ?thing .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToEquipmentPropertyfromconnectedTo"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connected` relation using `connectedFrom`"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connected ?thing .}
WHERE {
$this s223:connectedFrom ?thing .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToEquipmentPropertyfromconnectedFrom"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasConnectionPoint` relation using `cnx`"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasConnectionPoint ?thing .}
WHERE {
$this s223:cnx ?thing .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToConnectionPointProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectedThrough` relation using `hasConnectionPoint` and `connectsThrough`"^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectedThrough ?connection .}
WHERE {
$this s223:hasConnectionPoint/s223:connectsThrough ?connection .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToConnectionProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `cnx` relationship using `hasConnectionPoint`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:cnx ?thing .}
WHERE {
$this s223:hasConnectionPoint ?thing .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToConnectionPointCnxProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectedTo` relation using `connectsThrough` and `connectsTo`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectedTo ?equipment .}
WHERE {
$this s223:hasConnectionPoint ?cp .
?cp a s223:OutletConnectionPoint .
?cp s223:connectsThrough/s223:connectsTo ?equipment .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToDownstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectedFrom` relations using `connectsThrough` and `connectsFrom`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectedFrom ?equipment .}
WHERE {
$this s223:hasConnectionPoint ?cp .
?cp a s223:InletConnectionPoint .
?cp s223:connectsThrough/s223:connectsFrom ?equipment .
}
"""^^xsd:string ;
            sh:name "InferredEquipmentToUpstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Connectable .

s223:ConnectionCnxShape a sh:NodeShape ;
    rdfs:label "Connection cnx shape"^^xsd:string ;
    rdfs:comment "You need either an `InletConnectionPoint` and an `OutletConnectionPoint`, or at least one `BidirectionalConnectionPoint` and another `ConnectionPoint` of any type."^^xsd:string ;
    sh:message "s223: You need either an `InletConnectionPoint` and an `OutletConnectionPoint`, or at least one `BidirectionalConnectionPoint` and another `ConnectionPoint` of any type."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Connection` shall have at least two `connectsAt` relations allowing flow in and out of the `Connection`."^^xsd:string ;
                        sh:path s223:connectsAt ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ;
                        sh:severity sh:Warning ],
                    [ rdfs:comment "A `Connection` shall have at least two `connectsAt` relations allowing flow in and out of the `Connection`."^^xsd:string ;
                        sh:path s223:connectsAt ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ;
                        sh:severity sh:Warning ] ] [ sh:property [ rdfs:comment "A `Connection` shall have at least two `connectsAt` relations allowing flow in and out of the `Connection`."^^xsd:string ;
                        sh:path s223:connectsAt ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ;
                        sh:severity sh:Warning ] ] ) ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Connection .

s223:ConnectionPointShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasElectricalPhase` value from any connected `Conductor`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasElectricalPhase ?phase .}
WHERE {
$this s223:connectsThrough/s223:hasElectricalPhase ?phase .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:ConnectionPoint .

s223:ConnectionShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectsFrom` relation using the relation `connectsAt`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectsFrom ?equipment .}
WHERE {
$this s223:connectsAt ?cp .
?cp a s223:OutletConnectionPoint .
?cp s223:isConnectionPointOf ?equipment .
}
"""^^xsd:string ;
            sh:name "InferredConnectionToUpstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectsTo` relation using the relation `connectsAt`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectsTo ?equipment .}
WHERE {
$this s223:connectsAt ?cp .
?cp a s223:InletConnectionPoint .
?cp s223:isConnectionPointOf ?equipment .
}
"""^^xsd:string ;
            sh:name "InferredConnectionToDownstreamEquipmentProperty"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer `cnx` relation using the relation `connectsThrough`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:cnx ?thing .}
WHERE {
$this ^s223:connectsThrough ?thing .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `connectsAt` relation using the relation `cnx`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:connectsAt ?thing .}
WHERE {
$this s223:cnx ?thing .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer `cnx` relation using the relation `connectsAt`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:cnx ?thing .}
WHERE {
$this s223:connectsAt ?thing .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Connection .

s223:ContainmentLoopShape a sh:NodeShape ;
    rdfs:label "Containment loop shape"^^xsd:string ;
    rdfs:comment "`Equipment` and `PhysicalSpace`s must not contain themselves, directly or indirectly."^^xsd:string ;
    sh:message "s223: `Equipment` and `PhysicalSpace`s must not contain themselves, directly or indirectly."^^xsd:string ;
    sh:property [ rdfs:comment "`Equipment` and `PhysicalSpace`s must not contain themselves, directly or indirectly."^^xsd:string ;
            sh:path s223:hasZone ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "`Equipment` and `PhysicalSpace`s must not contain themselves, directly or indirectly."^^xsd:string ;
                    sh:message "s223: Problem with {$this}. `Equipment` and `PhysicalSpace`s must not contain themselves, directly or indirectly."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this
WHERE {
$this s223:contains+ $this .
}
"""^^xsd:string ] ] ;
    sh:targetSubjectsOf s223:contains .

s223:Controller a s223:Class,
        sh:NodeShape ;
    rdfs:label "Controller"^^xsd:string ;
    rdfs:comment "A piece of equipment for regulation of a system or component in normal operation, which executes one or more `Function`s."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Controller` shall be associated with zero or more `Function`s using the relation `executes`."^^xsd:string ;
            sh:class s223:Function ;
            sh:message "s223: A `Controller` shall be associated with zero or more `Function`s using the relation `executes`."^^xsd:string ;
            sh:path s223:executes ] .

s223:CoolingCoilShape a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "A `CoolingCoil` must always have the role `Role-Cooling`"^^xsd:string ;
            sh:object s223:Role-Cooling ;
            sh:predicate s223:hasRole ;
            sh:subject sh:this ] ;
    sh:targetClass s223:CoolingCoil .

s223:CoolingTower a s223:Class,
        sh:NodeShape ;
    rdfs:label "Cooling tower"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that uses atmospheric air to cool warm water, generally by direct contact via evaporation."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `CoolingTower` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `CoolingTower` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `CoolingTower` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `CoolingTower` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:CopyMachine a s223:Class,
        sh:NodeShape ;
    rdfs:label "Copy machine"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that processes an input of one or more durable representation(s) of information, typically text and/or graphics and typically on paper, and outputs one or more reproductions of the information for each input, typically on paper."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `CopyMachine` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `CopyMachine` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:CorrelatedColorTemperatureSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Correlated color temperature sensor"^^xsd:string ;
    rdfs:comment """A `LightSensor` that `observes` a `QuantifiableObservableProperty` that represents a correlated color temperature (CCT) of a
light source, defined as the absolute temperature of a blackbody whose chromaticity most nearly resembles that of the light source."""^^xsd:string ;
    rdfs:subClassOf s223:LightSensor ;
    sh:property [ rdfs:comment "A `CorrelatedColorTemperatureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `CorrelatedColorTemperature`."^^xsd:string ;
            sh:message "s223: A `CorrelatedColorTemperatureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `CorrelatedColorTemperature`."^^xsd:string ;
            sh:path s223:observes ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:in ( qudtqk:CorrelatedColorTemperature ) ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

s223:Dishwasher a s223:Class,
        sh:NodeShape ;
    rdfs:label "Dishwasher"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that automatically cleans dishware, cookware, and cutlery."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Dishwasher` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Dishwasher` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Dishwasher` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Dishwasher` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Dishwasher` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Dishwasher` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:DomainSpaceShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer a `hasDomain` relation by checking any enclosing `Zone` to determine the domain."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasDomain ?domain .}
WHERE {
$this ^s223:hasDomainSpace/s223:hasDomain ?domain .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:DomainSpace .

s223:Door a s223:Class,
        sh:NodeShape ;
    rdfs:label "Door"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` consisting of hinged, sliding, or revolving barrier at the entrance to a building or room."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Door` shall have at least two bidirectional connection points using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Door` shall have at least two bidirectional connection points using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Drain a s223:Class,
        sh:NodeShape ;
    rdfs:label "Drain"^^xsd:string ;
    rdfs:comment "A `Valve` that allows, regulates, or stops the flow of water from a `Sink`, `Shower`, `Bathtub`, or other plumbing service equipment into a plumbing drainage system that typically carries the mixture to a sewer system or septic tank."^^xsd:string ;
    rdfs:subClassOf s223:Valve ;
    sh:property [ rdfs:comment "A `Drain` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Drain` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Drain` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Drain` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:DualDuctTerminal a s223:Class,
        sh:NodeShape ;
    rdfs:label "Dual duct terminal"^^xsd:string ;
    rdfs:comment "A `TerminalUnit` that mixes two independent sources of primary air."^^xsd:string ;
    rdfs:subClassOf s223:TerminalUnit ;
    sh:property [ rdfs:comment "A `DualDuctTerminal` shall have at least two inlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `DualDuctTerminal` shall have at least two inlets using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Duct a s223:Class,
        sh:NodeShape ;
    rdfs:label "Duct"^^xsd:string ;
    rdfs:comment "A `Connection` that is used to transport air such as supply, return, and exhaust in HVAC (Heating, Ventilation, and Air Conditioning) systems."^^xsd:string ;
    rdfs:subClassOf s223:Connection .

s223:DuvSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Duv sensor"^^xsd:string ;
    rdfs:comment """A `LightSensor` that `observes` a `QuantifiableObservableProperty` that represents a Duv of a light source, defined as the
distance between the chromaticity of the light source and a blackbody radiator of equal correlated color temperature (CCT)."""^^xsd:string ;
    rdfs:subClassOf s223:LightSensor ;
    sh:property [ rdfs:comment "A `DuvSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Duv`."^^xsd:string ;
            sh:message "s223: A `DuvSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Duv`."^^xsd:string ;
            sh:path s223:observes ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:in ( qudtqk:Duv ) ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

s223:EM a s223:Class,
        sh:NodeShape ;
    rdfs:label "EM connection"^^xsd:string ;
    rdfs:comment "A type of `Connection` that represents air, a vacuum, outer space, or a similar environment used to convey electromagnetic energy i.e., `Constituent-EM`, without the use of a solid materials such as fiber optic cables or other such `Waveguide`s."^^xsd:string ;
    rdfs:subClassOf s223:Connection ;
    sh:property [ rdfs:comment "An `EM` shall be associated with exactly one `Constituent-EM` using the relation `hasMedium`."^^xsd:string ;
            sh:class s223:Constituent-EM ;
            sh:maxCount 1 ;
            sh:message "s223: An `EM` shall be associated with exactly one `Constituent-EM` using the relation `hasMedium`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasMedium ] .

s223:ElectricClothesDryer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric clothes dryer"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that automatically removes moisture from a load of textiles (e.g., clothing, bedding), typically after they are washed in a `ClothesWasher`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricClothesDryer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricClothesDryer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricCooktop a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric cooktop"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` with a flat surface containing one or more heat sources designed for cooking with pots and pans."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricCooktop` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricCooktop` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricEnergyDCDCConverter a s223:Class,
        sh:NodeShape ;
    rdfs:label "DC-DC converter"^^xsd:string ;
    rdfs:comment "An `ElectricEnergyConverter` that transforms direct current (DC) electric power from one voltage to another voltage."^^xsd:string ;
    rdfs:subClassOf s223:ElectricEnergyConverter ;
    sh:property [ rdfs:comment "An `ElectricEnergyDCDCConverter` shall have at least two connection points using the medium `Electricity-DC`."^^xsd:string ;
            sh:message "s223: An `ElectricEnergyDCDCConverter` shall have at least two connection points using the medium `Electricity-DC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:ConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-DC ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricEnergyInverter a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric energy inverter"^^xsd:string ;
    rdfs:comment "An `ElectricEnergyConverter` that tranforms direct current (DC) electric power to alternating current (AC) electric power, or vice versa."^^xsd:string ;
    rdfs:subClassOf s223:ElectricEnergyConverter ;
    sh:property [ rdfs:comment "An `ElectricEnergyInverter` shall have at least one connection point using the medium `Electricity-AC`."^^xsd:string ;
            sh:message "s223: An `ElectricEnergyInverter` shall have at least one connection point using the medium `Electricity-AC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:ConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-AC ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `ElectricEnergyInverter` shall have at least one connection point using the medium `Electricity-DC`."^^xsd:string ;
            sh:message "s223: An `ElectricEnergyInverter` shall have at least one connection point using the medium `Electricity-DC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:ConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-DC ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricEnergyTransformer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric energy transformer"^^xsd:string ;
    rdfs:comment "An `ElectricEnergyConverter` that transforms alternating current (AC) electric power from one voltage to another voltage."^^xsd:string ;
    rdfs:subClassOf s223:ElectricEnergyConverter ;
    sh:property [ rdfs:comment "An `ElectricEnergyTransformer` shall have at least two connection points using the medium `Electricity-AC`."^^xsd:string ;
            sh:message "s223: An `ElectricEnergyTransformer` shall have at least two connection points using the medium `Electricity-AC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:ConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-AC ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricWaterDispenser a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric water dispenser"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that dispenses water and optionally heats and/or cools the water prior to dispensing."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricWaterDispenser` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: An `ElectricWaterDispenser` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `ElectricWaterDispenser` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricWaterDispenser` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricityBreaker a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electricity breaker"^^xsd:string ;
    rdfs:comment "A piece of equipment that automatically opens an electric circuit automatically at a predetermined overcurrent, so as to prevent damage to the circuit, the equipment connected to the circuit, and the building containing the circuit."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricityBreaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricityBreaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `ElectricityBreaker` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricityBreaker` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricityMeterSensorLocationShape a sh:NodeShape ;
    rdfs:comment "An `ElectricityMeter` shall contain a `VoltageSensor` and `ElectricCurrentSensor` with the same observation location."^^xsd:string ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "An `ElectricityMeter` shall contain a `VoltageSensor` and `ElectricCurrentSensor` with the same observation location."^^xsd:string ;
            sh:message "s223: {$this} does not contain a `VoltageSensor` and `ElectricCurrentSensor` with a shared observation location."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
WHERE {
  FILTER NOT EXISTS {
    $this s223:contains ?voltageSensor .
    $this s223:contains ?currentSensor .
    ?voltageSensor a/rdfs:subClassOf* s223:VoltageSensor ;
                   s223:hasObservationLocation ?location .
    ?currentSensor a/rdfs:subClassOf* s223:ElectricCurrentSensor ;
                   s223:hasObservationLocation ?location .
  }
}
"""^^xsd:string ] ;
    sh:targetClass s223:ElectricityMeter .

s223:ElectricityOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electricity outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more receptacles for connecting electrical equipment to electrical power, typically via a plug and cord. Not to be confused with an `OutletConnectionPoint` with the medium `Constituent-Electricity`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricityOutlet` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricityOutlet` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `ElectricityOutlet` shall have exactly one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricityOutlet` shall have exactly one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Elevator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Elevator"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that vertically transports people or freight between floors or levels of a building via a vertical shaft commonly referred to as a hoistway. The people or freight are typically situated on a platform, or in a container commonly referred to as a car, cab, cabin, cage, or carriage."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `Elevator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `Elevator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:EquipmentShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "For equipment containing another piece of equipment, use the `mapsTo` relation to infer a Medium from the contained equipment."^^xsd:string ;
            sh:construct """
CONSTRUCT {
    ?parentCp s223:hasMedium ?medium .
}
WHERE {
  $this s223:hasConnectionPoint ?cp .
  ?cp s223:mapsTo ?parentCp .
  ?cp s223:connectsThrough ?connection .
  ?cp s223:hasMedium ?medium .
  FILTER NOT EXISTS {?parentCp s223:hasMedium ?something} .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "For equipment contained within another piece of equipment use the `mapsTo` relation to infer a Medium from the containing equipment."^^xsd:string ;
            sh:construct """
CONSTRUCT {
    ?childCp s223:hasMedium ?medium .
}
WHERE {
  $this s223:hasConnectionPoint ?cp .
  ?childCp s223:mapsTo ?cp .
  ?cp s223:connectsThrough ?connection .
  ?cp s223:hasMedium ?medium .
  FILTER NOT EXISTS {?childCp s223:hasMedium ?something} .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Equipment .

s223:Escalator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Escalator"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that vertically transports people between floors or levels of a building via a moving staircase."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `Escalator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `Escalator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:EthernetCable-Cat1 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat1"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat1"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat2 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat2"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat2"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat3 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat3"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat3"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat4 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat4"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat4"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat5 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat5"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat5"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat5e a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat5e"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat5e"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat6 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat6"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat6"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat6a a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat6a"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat6a"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat7 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat7"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat7"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat7a a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat7a"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat7a"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetCable-Cat8 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet Cable Cat8"^^xsd:string ;
    rdfs:comment "EthernetCable-Cat8"^^xsd:string ;
    rdfs:subClassOf s223:EthernetCable .

s223:EthernetPort a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet port"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that connects a single instance of electrical equipment, such as `Computer`s and Wi-Fi access points,
to an Ethernet network so it can communicate with other equipment and, optionally, with the Internet."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `EthernetPort` shall have at least one inlet using the medium `Electricity-DC`."^^xsd:string ;
            sh:message "s223: An `EthernetPort` shall have at least one inlet using the medium `Electricity-DC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-DC ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `EthernetPort` shall have at least two bidirectional connection points using the medium `Signal-WiredEthernet` or `Signal-FiberEthernet`."^^xsd:string ;
            sh:message "s223: An `EthernetPort` shall have at least two bidirectional connection points using the medium `Signal-WiredEthernet` or `Signal-FiberEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:or ( [ sh:class s223:Signal-WiredEthernet ] [ sh:class s223:Signal-FiberEthernet ] ) ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:EthernetSwitch a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ethernet switch"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that connects one or more instances of electrical equipment, such as `Computer`s and Wi-Fi access points,
to an Ethernet network so they can communicate with each other and, optionally, to the Internet."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `EthernetSwitch` shall have at least two bidirectional connection points using the medium `Signal-WiredEthernet` or `Signal-FiberEthernet`."^^xsd:string ;
            sh:message "s223: An `EthernetSwitch` shall have at least two bidirectional connection points using the medium `Signal-WiredEthernet` or `Signal-FiberEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:or ( [ sh:class s223:Signal-WiredEthernet ] [ sh:class s223:Signal-FiberEthernet ] ) ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `EthernetSwitch` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `EthernetSwitch` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FanCoilUnit a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fan coil unit"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` consisting of a `Coil` and a `Fan` that regulates the temperature of one or more spaces."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `FanCoilUnit` shall at least have the role `Role-Cooling` or `Role-Heating`."^^xsd:string ;
            sh:message "s223: A `FanCoilUnit` shall at least have the role `Role-Cooling` or `Role-Heating`."^^xsd:string ;
            sh:path s223:hasRole ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:xor ( [ sh:class s223:Role-Cooling ] [ sh:class s223:Role-Heating ] ) ] ],
        [ rdfs:comment "A `FanCoilUnit` shall contain at least one `Fan`."^^xsd:string ;
            sh:message "s223: A `FanCoilUnit` shall contain at least one `Fan`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Fan ] ],
        [ rdfs:comment "A `FanCoilUnit` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `FanCoilUnit` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `FanCoilUnit` shall contain at least one `Coil`."^^xsd:string ;
            sh:message "s223: A `FanCoilUnit` shall contain at least one `Coil`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Coil ] ],
        [ rdfs:comment "A `FanCoilUnit` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `FanCoilUnit` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FanPoweredTerminal a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fan-powered terminal"^^xsd:string ;
    rdfs:comment "A `TerminalUnit` that contains a fan, and optionally has supplemental heating or cooling. Airflow may pass through or be parallel to the fan."^^xsd:string ;
    rdfs:subClassOf s223:TerminalUnit ;
    sh:property [ rdfs:comment "A `FanPoweredTerminal` shall contain at least one `Fan`."^^xsd:string ;
            sh:message "s223: A `FanPoweredTerminal` shall contain at least one `Fan`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Fan ] ] .

s223:Faucet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Faucet"^^xsd:string ;
    rdfs:comment "A `Valve` that allows, regulates, or stops the flow of hot or cold water from a plumbing supply system into a `Sink`, `Shower`, `Bathtub`, or other plumbing service equipment."^^xsd:string ;
    rdfs:subClassOf s223:Valve ;
    sh:property [ rdfs:comment "A `Faucet` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Faucet` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Faucet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Faucet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FiberEthernetOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more receptacles for connecting electrical equipment to a fiber Ethernet communication network, typically via a fiber Ethernet cable."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `FiberEthernetOutlet` shall have at least one outlet using the medium `Signal-FiberEthernet`."^^xsd:string ;
            sh:message "s223: A `FiberEthernetOutlet` shall have at least one outlet using the medium `Signal-FiberEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-FiberEthernet ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `FiberEthernetOutlet` shall have exactly one inlet using the medium `Signal-FiberEthernet`."^^xsd:string ;
            sh:message "s223: A `FiberEthernetOutlet` shall have exactly one inlet using the medium `Signal-FiberEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-FiberEthernet ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FiberOpticCable-OM1 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OM1"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OM1"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OM2 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OM2"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OM2"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OM3 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OM3"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OM3"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OM4 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fibe Optic Cable OM4"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OM4"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OM5 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OM5"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OM5"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OS1 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OS1"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OS1"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:FiberOpticCable-OS2 a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fiber Optic Cable OS2"^^xsd:string ;
    rdfs:comment "FiberOpticCable-OS2"^^xsd:string ;
    rdfs:subClassOf s223:FiberOpticCable .

s223:Filter a s223:Class,
        sh:NodeShape ;
    rdfs:label "Filter"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that removes contaminants from gases or liquids. See {s223:Substance-Medium} for
more details on validating compatible mediums upstream and downstream of a `Filter`."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "Incompatible Medium. Case 3: Associated `ConnectionPoint`s with mediums having constituents."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 3: Two mediums with constituents."^^xsd:string ;
                    sh:message "s223: For `Filter` {$this} there is no compatible substance between medium {?m2} and medium {?m1}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT ?this ?m2 ?m1
WHERE {
  ?this s223:cnx ?cp1, ?cp2 .
  ?cp1 a/rdfs:subClassOf* s223:ConnectionPoint .
  ?cp2 a/rdfs:subClassOf* s223:ConnectionPoint .
  FILTER (?cp1 != ?cp2) .
  ?cp1 s223:hasMedium ?m1 .
  ?cp2 s223:hasMedium ?m2 .
    ?m1 s223:composedOf/s223:ofConstituent ?s1 .
    ?m2 s223:composedOf/s223:ofConstituent ?s2 .
  FILTER NOT EXISTS {
    ?m1 s223:composedOf/s223:ofConstituent ?s11 .
    ?m2 s223:composedOf/s223:ofConstituent ?s12 .
    FILTER (?s11 = ?s12) .
  }
  FILTER NOT EXISTS {
    ?m1 s223:composedOf/s223:ofConstituent ?s21 .
    ?m2 s223:composedOf/s223:ofConstituent ?s22 .
    {?s22 rdfs:subClassOf* ?s21} UNION {?s21 rdfs:subClassOf* ?s22} .
  }
}
"""^^xsd:string ] ],
        [ rdfs:comment "A `Filter` shall have at least one inlet."^^xsd:string ;
            sh:message "s223: A `Filter` shall have at least one inlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ],
        [ rdfs:comment "Incompatible Medium. Case 1: Associated `ConnectionPoint`s with two pure mediums."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 1: Two pure mediums."^^xsd:string ;
                    sh:message "s223: {$this} with inlet medium {?m2} is incompatible with outlet medium {?m1}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m2 ?m1
WHERE {
$this s223:cnx ?cp1, ?cp2 .
?cp1 a/rdfs:subClassOf* s223:ConnectionPoint .
?cp2 a/rdfs:subClassOf* s223:ConnectionPoint .
FILTER (?cp1 != ?cp2) .
?cp1 s223:hasMedium ?m1 .
?cp2 s223:hasMedium ?m2 .
FILTER NOT EXISTS {?m1 s223:composedOf ?c1} .
FILTER NOT EXISTS {?m2 s223:composedOf ?c2}
FILTER (NOT EXISTS {?m2 rdfs:subClassOf* ?m1}) .
FILTER (NOT EXISTS {?m1 rdfs:subClassOf* ?m2}) .
}
"""^^xsd:string ] ],
        [ rdfs:comment "Incompatible Medium. Case 2: Associated `ConnectionPoint`s, one with a pure medium and one with a medium having constituents.."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "Incompatible Medium. Case 2: A medium with constituents and a pure medium."^^xsd:string ;
                    sh:message "s223: {$this} has an incompatible medium {?m1} with any constituent of {?m2}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?m2 ?m1
WHERE {
$this s223:cnx ?cp1, ?cp2 .
?cp1 a/rdfs:subClassOf* s223:ConnectionPoint .
?cp2 a/rdfs:subClassOf* s223:ConnectionPoint .
FILTER (?cp1 != ?cp2) .
?cp1 s223:hasMedium ?m1 .
?cp2 s223:hasMedium ?m2 .
?m2 s223:composedOf/s223:ofConstituent ?s2 .
FILTER NOT EXISTS {?m1 s223:composedOf ?c1} .
FILTER NOT EXISTS {
  ?m2 s223:composedOf/s223:ofConstituent ?s12 .
  {?s12 rdfs:subClassOf* ?m1} UNION {?m1 rdfs:subClassOf* ?s12} .
}
}
"""^^xsd:string ] ],
        [ rdfs:comment "A `Filter` shall have at least one outlet."^^xsd:string ;
            sh:message "s223: A `Filter` shall have at least one outlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ] .

s223:FlowSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Flow sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of flow of fluid, typically with a `QuantityKind` of `VolumeFlowRate`."^^xsd:string ;
    rdfs:subClassOf s223:Sensor .

s223:FlushToilet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Flush toilet"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that collects human waste (i.e., urine and/or feces, and sometimes toilet paper) in a chamber containing water,
and contains an integral manual or automatic actuator that triggers the release of an additional volume of water that flushes everything from the chamber into
a drainage system that typically carries the mixture to a sewer system or septic tank."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `FlushToilet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `FlushToilet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `FlushToilet` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `FlushToilet` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Freezer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Freezer"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that maintains an internal temperature below the freezing point of water."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Freezer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Freezer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FumeHood a s223:Class,
        sh:NodeShape ;
    rdfs:label "Fume hood"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that is typically mounted over a work area (e.g., a space, table, or shelf) and conducts unwanted gases away from the area."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `FumeHood` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `FumeHood` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `FumeHood` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `FumeHood` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:FunctionPropertyShape a sh:NodeShape ;
    rdfs:label "Function property shape"^^xsd:string ;
    rdfs:comment "A `Function` shall be associated with at least one `Property` using either the relation `hasInput` or `hasOutput`."^^xsd:string ;
    sh:message "s223: A `Function` shall be associated with at least one `Property` using either the relation `hasInput` or `hasOutput`."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Function` shall be associated with at least one `Property` using either the relation `hasInput` or `hasOutput`."^^xsd:string ;
                        sh:class s223:Property ;
                        sh:minCount 1 ;
                        sh:path s223:hasInput ] ] [ sh:property [ rdfs:comment "A `Function` shall be associated with at least one `Property` using either the relation `hasInput` or `hasOutput`."^^xsd:string ;
                        sh:class s223:Property ;
                        sh:minCount 1 ;
                        sh:path s223:hasOutput ] ] ) ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Function .

s223:Furnace a s223:Class,
        sh:NodeShape ;
    rdfs:label "Furnace"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts fuel or electrical energy into heat."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Furnace` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Furnace` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Furnace` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Furnace` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:GaugePressureSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Gauge pressure sensor"^^xsd:string ;
    rdfs:comment """A `PressureSensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of pressure relative to atmospheric pressure.
Such sensors are commonly used to monitor compressed gas cylinders, for example, where a gauge reading of zero signifies that the measured pressure
is equal to the atmospheric pressure, not a vacuum."""^^xsd:string ;
    rdfs:subClassOf s223:PressureSensor ;
    sh:property [ rdfs:comment "A `GaugePressureSensor` shall always observe a `QuantifiableObservableProperty` that has a value of true for `qudt:isDeltaQuantity`."^^xsd:string ;
            sh:maxCount 1 ;
            sh:message "s223: A `GaugePressureSensor` shall always observe a `QuantifiableObservableProperty` that has a value of true for `qudt:isDeltaQuantity`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path ( s223:observes qudt:isDeltaQuantity ) ;
            sh:value true ],
        [ rdfs:comment "A `GaugePressureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of GaugePressure."^^xsd:string ;
            sh:message "s223: A `GaugePressureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of GaugePressure."^^xsd:string ;
            sh:path ( s223:observes qudt:hasQuantityKind ) ;
            sh:value qudtqk:GaugePressure ] .

s223:Generator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Generator"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts non-electric energy into electric energy."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Generator` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Generator` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:GroundToAirHeatPump a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ground-to-air heat pump"^^xsd:string ;
    rdfs:comment "A `HeatPump` that transfers thermal energy between air and the ground."^^xsd:string ;
    rdfs:subClassOf s223:HeatPump ;
    sh:property [ rdfs:comment "A `GroundToAirHeatPump` shall have at least one bidirectional connection point using the medium `Medium-ThermalContact`."^^xsd:string ;
            sh:message "s223: A `GroundToAirHeatPump` shall have at least one bidirectional connection point using the medium `Medium-ThermalContact`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Medium-ThermalContact ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `GroundToAirHeatPump` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `GroundToAirHeatPump` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `GroundToAirHeatPump` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `GroundToAirHeatPump` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:HeatTransferRoleShape a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "Infer the `hasRole` s223:Role-HeatTransfer relation for every instance of the listed targetClass values."^^xsd:string ;
            sh:object s223:Role-HeatTransfer ;
            sh:predicate s223:hasRole ;
            sh:subject sh:this ] ;
    sh:targetClass s223:AirHeatExchanger,
        s223:ChilledBeam,
        s223:Coil,
        s223:ElectricResistanceElement,
        s223:HydronicHeatExchanger,
        s223:RadiantHeater,
        s223:Radiator .

s223:HeatingCoilShape a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "Heating coils must always have the role `Role-Heating`"^^xsd:string ;
            sh:object s223:Role-Heating ;
            sh:predicate s223:hasRole ;
            sh:subject sh:this ] ;
    sh:targetClass s223:HeatingCoil .

s223:Humidifier a s223:Class,
        sh:NodeShape ;
    rdfs:label "Humidifier"^^xsd:string ;
    rdfs:comment "A piece of equipment that adds moisture to a gas (e.g., air)."^^xsd:string ;
    rdfs:subClassOf s223:Equipment .

s223:Humidistat a s223:Class,
        sh:NodeShape ;
    rdfs:label "Humidistat"^^xsd:string ;
    rdfs:comment "A piece of equipment that measures the relative humidity of the air and then uses this information to automatically adjust the amount of moisture in air."^^xsd:string ;
    rdfs:subClassOf s223:Equipment .

s223:HumiditySensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Humidity sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of relative or absolute humidity."^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "A `HumiditySensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of either `RelativeHumidity` or `AbsoluteHumidity`."^^xsd:string ;
            sh:class s223:QuantifiableObservableProperty ;
            sh:message "s223: A `HumiditySensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of either `RelativeHumidity` or `AbsoluteHumidity`."^^xsd:string ;
            sh:node [ sh:property [ sh:in ( qudtqk:RelativeHumidity qudtqk:AbsoluteHumidity ) ;
                            sh:path qudt:hasQuantityKind ] ] ;
            sh:path s223:observes ] .

s223:IceMaker a s223:Class,
        sh:NodeShape ;
    rdfs:label "Ice maker"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that makes ice."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `IceMaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `IceMaker` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `IceMaker` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: An `IceMaker` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:IlluminanceSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Illuminance sensor"^^xsd:string ;
    rdfs:comment """A `LightSensor` that `observes` a `QuantifiableObservableProperty` that represents an illuminance, defined as the areal density of the
luminous flux incident at a point on a surface."""^^xsd:string ;
    rdfs:subClassOf s223:LightSensor ;
    sh:property [ rdfs:comment "An `IlluminanceSensor` shall observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Illuminance`."^^xsd:string ;
            sh:message "s223: An `IlluminanceSensor` shall observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Illuminance`."^^xsd:string ;
            sh:path s223:observes ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:in ( qudtqk:Illuminance ) ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

s223:JunctionCPShape a sh:NodeShape ;
    rdfs:label "Junction CP shape"^^xsd:string ;
    rdfs:comment "A `Junction` shall have at least two `ConnectionPoint`s including (a) at least one inlet and one outlet, or (b) at least one bidirectional connection point."^^xsd:string ;
    sh:message "s223: A `Junction` shall have at least two `ConnectionPoint`s including (a) at least one inlet and one outlet, or (b) at least one bidirectional connection point."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Junction` shall have at least two `ConnectionPoint`s including (a) at least one inlet and one outlet, or (b) at least one bidirectional connection point."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ],
                    [ rdfs:comment "A `Junction` shall have at least two `ConnectionPoint`s including (a) at least one inlet and one outlet, or (b) at least one bidirectional connection point."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] [ sh:property [ rdfs:comment "A `Junction` shall have at least two `ConnectionPoint`s including (a) at least one inlet and one outlet, or (b) at least one bidirectional connection point."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] ) ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Junction .

s223:JunctionUsageWarning a sh:NodeShape ;
    rdfs:label "Junction usage warning"^^xsd:string ;
    rdfs:comment "This `Junction` is not used to model significant details of a branching point in a connection, and may not be required."^^xsd:string ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "This `Junction` is not used to model significant details of a branching point in a connection, and may not be required."^^xsd:string ;
            sh:message "s223: This `Junction` {$this} is not used to model significant details of a branching point in a connection, and may not be required."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
            SELECT $this
            WHERE {
                $this s223:hasConnectionPoint? | s223:connectedThrough? ?junc_cp_conn .

                FILTER NOT EXISTS {
                    # Connection has a relation that is not in the structural or required relationships
                    { ?junc_cp_conn ?p ?o . } UNION {?o ?p ?junc_cp_conn . }
                    FILTER (?p NOT IN (
                        s223:connected, s223:connectedTo, s223:connectedThrough, s223:hasConnectionPoint,
                        s223:connectsAt, s223:isConnectionPointOf, s223:cnx, rdf:type, rdfs:label, rdfs:comment
                    ))
                } .
            }
        """^^xsd:string ;
            sh:severity sh:Warning ] ;
    sh:targetClass s223:Junction .

s223:MicrowaveOven a s223:Class,
        sh:NodeShape ;
    rdfs:label "Microwave oven"^^xsd:string ;
    rdfs:comment "An `ElectricOven` that cooks food by exposing it to electromagnetic radiation in the microwave frequency range."^^xsd:string ;
    rdfs:subClassOf s223:ElectricOven ;
    sh:property [ rdfs:comment "A `MicrowaveOven` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `MicrowaveOven` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Monitor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Monitor"^^xsd:string ;
    rdfs:comment "An `ElectronicDisplay` designed primarily for the output of visual information supplied by a `Computer`."^^xsd:string ;
    rdfs:subClassOf s223:ElectronicDisplay .

s223:Motor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Motor"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts electrical energy into mechanical energy."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Motor` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Motor` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:MultipleContainerShape sh:property [ rdfs:comment "An entity can be contained by at most one other entity."^^xsd:string ;
            sh:maxCount 1 ;
            sh:message "s223: An entity can be contained by at most one other entity."^^xsd:string ;
            sh:path [ sh:inversePath s223:contains ] ] ;
    sh:targetObjectsOf s223:contains .

s223:OccupantCountSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Occupant count sensor"^^xsd:string ;
    rdfs:comment """An `OccupancySensor` that `observes` a `QuantifiableObservableProperty` that represents a population, usually of humans, within
  a sensing region."""^^xsd:string ;
    rdfs:subClassOf s223:OccupancySensor ;
    sh:property [ rdfs:comment "An `OccupantCountSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Population` and a `Unit` of `NUM`."^^xsd:string ;
            sh:class s223:QuantifiableObservableProperty ;
            sh:message "s223: An `OccupantCountSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Population` and a `Unit` of `NUM`."^^xsd:string ;
            sh:minCount 1 ;
            sh:node [ sh:property [ sh:in ( qudtqk:Population ) ;
                            sh:maxCount 1 ;
                            sh:path qudt:hasQuantityKind ],
                        [ sh:in ( unit:NUM ) ;
                            sh:maxCount 1 ;
                            sh:path qudt:hasUnit ] ] ;
            sh:path s223:observes ] .

s223:OccupantPresenceSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Occupant presence sensor"^^xsd:string ;
    rdfs:comment "An `OccupancySensor` that `observes` a `ObservableProperty` that represents presence within a sensing region."^^xsd:string ;
    rdfs:subClassOf s223:OccupancySensor ;
    sh:property [ rdfs:comment "An `OccupantPresenceSensor` shall always observe an `EnumeratedObservableProperty` that has an `EnumerationKind` of `Occupancy-Presence`."^^xsd:string ;
            sh:class s223:EnumeratedObservableProperty ;
            sh:message "s223: An `OccupantPresenceSensor` shall always observe an `EnumeratedObservableProperty` that has an `EnumerationKind` of `Occupancy-Presence`."^^xsd:string ;
            sh:minCount 1 ;
            sh:node [ sh:property [ sh:class s223:Occupancy-Presence ;
                            sh:maxCount 1 ;
                            sh:path s223:hasEnumerationKind ] ] ;
            sh:path s223:observes ] .

s223:OutdoorPhysicalSpace a s223:Class,
        sh:NodeShape ;
    rdfs:label "Outdoor physical space"^^xsd:string ;
    rdfs:comment "A `PhysicalSpace` that is outside of the building where, for example, outdoor ambient properties might be measured, within a suitably defined `DomainSpace`."^^xsd:string ;
    rdfs:subClassOf s223:PhysicalSpace .

s223:ParticulateSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Particulate sensor"^^xsd:string ;
    rdfs:comment """A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents an amount of a particulate in a medium, in contrast
to a `ConcentrationSensor` that `observes` a `QuantifiableObservableProperty` that represents a concentration of a miscible constituent in a medium
(see {s223:ConcentrationSensor}).

The 223 standard does not constrain the `Unit` or `QuantityKind` reported by a `ParticulateSensor`, but possible
`QuantityKind`s include `Density` (mass per volume), `ParticleNumberDensity` (count per volume), and `DimensionlessRatio` (with units such as `PPM` or
`PPB`). Some particulate sensors may claim to report a raw count of particles, for which a `QuantityKind` of `Count` could be used, but the required
context for such a measurement should be provided in the sensor's documentation to specify if it in fact measures a count per volume (e.g., `ParticleNumberDensity`),
time (e.g., `CountRate` or `ParticleCurrent`), or some
other combination. Explicitly declaring the `QuantityKind` of a sensor's output is preferable to relying on implicit assumptions."""^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "A `ParticulateSensor` shall be associated with zero or more `Substance-Particulate`s using the relation `ofSubstance`."^^xsd:string ;
            sh:class s223:Substance-Particulate ;
            sh:message "s223: A `ParticulateSensor` shall be associated with zero or more `Substance-Particulate`s using the relation `ofSubstance`."^^xsd:string ;
            sh:path s223:ofSubstance ] .

s223:PersonalComputer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Personal computer"^^xsd:string ;
    rdfs:comment "A `Computer` designed primarily used by a single person."^^xsd:string ;
    rdfs:subClassOf s223:Computer ;
    sh:property [ rdfs:comment "A `PersonalComputer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `PersonalComputer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:PhotovoltaicModule a s223:Class,
        sh:NodeShape ;
    rdfs:label "Photovoltaic module"^^xsd:string ;
    rdfs:comment "A piece of equipment that converts sunlight into electricity."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `PhotovoltaicModule` shall have at least one inlet using the medium `EM-Light`."^^xsd:string ;
            sh:message "s223: A `PhotovoltaicModule` shall have at least one inlet using the medium `EM-Light`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:EM-Light ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `PhotovoltaicModule` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `PhotovoltaicModule` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Pipe a s223:Class,
        sh:NodeShape ;
    rdfs:label "Pipe"^^xsd:string ;
    rdfs:comment "A `Connection` that is used primarily to transport liquids and gases such as water, sewage, natural gas, and compressed air."^^xsd:string ;
    rdfs:subClassOf s223:Connection .

s223:PowerOverEthernetPort a s223:Class,
        sh:NodeShape ;
    rdfs:label "Power over ethernet port"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that connects and is capable of powering one instance of electrical equipment, such as computers and Wi-Fi access points, as well as connect it to an Ethernet network so it can communicate with other equipment and, optionally, with the Internet."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `PowerOverEthernetPort` shall have at least one inlet using the medium `Electricity-DC`."^^xsd:string ;
            sh:message "s223: A `PowerOverEthernetPort` shall have at least one inlet using the medium `Electricity-DC`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Electricity-DC ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `PowerOverEthernetPort` shall have at least one bidirectional connection point using the medium `PowerAndSignal-PoE`."^^xsd:string ;
            sh:message "s223: A `PowerOverEthernetPort` shall have at least one bidirectional connection point using the medium `PowerAndSignal-PoE`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:PowerAndSignal-PoE ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:PowerOverEthernetSwitch a s223:Class,
        sh:NodeShape ;
    rdfs:label "Power over Ethernet (PoE) switch"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that connects and is capable of powering one or more instances of electrical equipment, such as computers and Wi-Fi access points, as well as connect the equipment to an Ethernet network so they can communicate with each other and, optionally, to the Internet."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `PowerOverEthernetSwitch` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `PowerOverEthernetSwitch` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `PowerOverEthernetSwitch` shall have at least one bidirectional connection point using the medium `PowerAndSignal-PoE`."^^xsd:string ;
            sh:message "s223: A `PowerOverEthernetSwitch` shall have at least one bidirectional connection point using the medium `PowerAndSignal-PoE`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:PowerAndSignal-PoE ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Pump a s223:Class,
        sh:NodeShape ;
    rdfs:label "Pump"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that imparts energy to a fluid, drawing a fluid into itself through an inlet port, and forcing the fluid out through an outlet port."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Pump` shall have at least one outlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
            sh:message "s223: A `Pump` shall have at least one outlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ rdfs:comment "A `Pump` shall have at least one outlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
                            sh:message "s223: A `Pump` shall have at least one outlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
                            sh:or ( [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Constituent-Refrigerant ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Fluid-Oil ;
                                                sh:path s223:hasMedium ] ] ) ;
                            sh:severity sh:Warning ] ] ],
        [ rdfs:comment "A `Pump` shall have at least one inlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
            sh:message "s223: A `Pump` shall have at least one inlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ rdfs:comment "A `Pump` shall have at least one inlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
                            sh:message "s223: A `Pump` shall have at least one inlet using the medium `Fluid-Water`, `Fluid-Oil` or `Constituent-Refrigerant`."^^xsd:string ;
                            sh:or ( [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Constituent-Refrigerant ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Fluid-Oil ;
                                                sh:path s223:hasMedium ] ] ) ;
                            sh:severity sh:Warning ] ] ],
        [ rdfs:comment "The non-electrical `ConnectionPoint`s of a `Pump` must have compatible media."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "The non-electrical `ConnectionPoint`s of a `Pump` must have compatible media."^^xsd:string ;
                    sh:message "s223: {?cpa} and {?cpb} on the `Pump` {$this} have incompatible Media {$mediuma} and {$mediumb}."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this ?cpa ?cpb ?mediuma ?mediumb
WHERE {
  $this s223:hasConnectionPoint ?cpa .
  $this s223:hasConnectionPoint ?cpb .
  FILTER (?cpa != ?cpb) .
  ?cpa s223:hasMedium ?mediuma .
  FILTER (NOT EXISTS {?mediuma a/rdfs:subClassOf* s223:Constituent-Electricity}) .
  ?cpb s223:hasMedium ?mediumb .
  FILTER (NOT EXISTS {?mediumb a/rdfs:subClassOf* s223:Constituent-Electricity}) .
  FILTER (?mediuma != ?mediumb) .
  FILTER (NOT EXISTS {?mediumb a/rdfs:subClassOf* ?mediuma}) .
  FILTER (NOT EXISTS {?mediuma a/rdfs:subClassOf* ?mediumb}) .
}
"""^^xsd:string ] ] .

s223:QuantifiablePropertyShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasAspect s223:Aspect-Threshold` for properties referred to by `hasThreshold`"^^xsd:string ;
            sh:construct """
CONSTRUCT {?y s223:hasAspect  s223:Aspect-Threshold}
WHERE {
?prop s223:hasThreshold ?y .
FILTER NOT EXISTS {?y s223:hasAspect s223:Aspect-Threshold}
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasAspect s223:Aspect-Setpoint` for properties referred to by `hasSetpoint`"^^xsd:string ;
            sh:construct """
CONSTRUCT {?y s223:hasAspect  s223:Aspect-Setpoint}
WHERE {
?prop s223:hasSetpoint ?y .
FILTER NOT EXISTS {?y s223:hasAspect s223:Aspect-Setpoint}
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasAspect s223:Aspect-Deadband` for properties referred to by `hasDeadband`"^^xsd:string ;
            sh:construct """
CONSTRUCT {?y s223:hasAspect  s223:Aspect-Deadband}
WHERE {
?prop s223:hasDeadband ?y .
FILTER NOT EXISTS {?y s223:hasAspect s223:Aspect-Deadband}
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasQuantityKind` relation if it is unambiguous."^^xsd:string ;
            sh:construct """
CONSTRUCT {
$this qudt:hasQuantityKind ?uniqueqk
}
WHERE {
{
SELECT $this (COUNT (DISTINCT (?qk)) AS ?count)
WHERE {
FILTER (NOT EXISTS {$this qudt:hasQuantityKind ?something}) .
$this qudt:hasUnit/qudt:hasQuantityKind ?qk .
}
GROUP BY $this
}
FILTER (?count = 1)
$this qudt:hasUnit/qudt:hasQuantityKind ?uniqueqk .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:QuantifiableProperty .

s223:RFOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Radio frequency outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more receptacles for connecting electrical equipment to a radio frequency (RF) communication network, via, for example, a coaxial cable."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `RFOutlet` shall have at least one outlet using the medium `RF-Signal`."^^xsd:string ;
            sh:message "s223: A `RFOutlet` shall have at least one outlet using the medium `RF-Signal`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:RF-Signal ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `RFOutlet` shall have exactly one inlet using the medium `RF-Signal`."^^xsd:string ;
            sh:message "s223: A `RFOutlet` shall have exactly one inlet using the medium `RF-Signal`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:RF-Signal ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:RadiatorInletShape a sh:NodeShape ;
    rdfs:label "Radiator inlet shape"^^xsd:string ;
    rdfs:comment "A `Radiator` shall have at least one inlet using the medium Electricity or inlet and outlet of Water."^^xsd:string ;
    sh:message "s223: A `Radiator` shall have at least one inlet using the medium Electricity or inlet and outlet of Water."^^xsd:string ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Radiator ;
    sh:xone ( [ sh:property [ rdfs:comment "A `Radiator` shall have at least one inlet using the medium Electricity or inlet and outlet of Water."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                                sh:path s223:hasMedium ] ] ] ] ] [ sh:property [ rdfs:comment "A `Radiator` shall have at least one outlet using the medium Water."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] ] ],
                    [ rdfs:comment "A `Radiator` shall have at least one inlet using the medium Electricity or Water."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] ] ] ] ) .

s223:Refrigerator a s223:Class,
        sh:NodeShape ;
    rdfs:label "Refrigerator"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that maintains an internal temperature below the surrounding ambient temperature but above the freezing point of water."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Refrigerator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Refrigerator` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:RelationWithInverseShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Declare the inverse triples for relations that have defined inverse relations"^^xsd:string ;
            sh:construct """
CONSTRUCT {
?o ?invP $this .
}
WHERE {
  $this ?p ?o .
  ?p s223:inverseOf ?invP .
}
			"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Concept .

s223:RequiredCommentsShape1 a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every SPARQLConstraint must have an rdfs:comment."^^xsd:string ;
            sh:message "s223: The SPARQLConstraint for path {?path} for Class {$this} must have an rdfs:comment."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this ?path
WHERE {
$this sh:property ?propshape .
?propshape sh:sparql ?sparqlconstraint .
?propshape sh:path ?path .
FILTER NOT EXISTS {?sparqlconstraint rdfs:comment ?comment} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredCommentsShape2 a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every SHACL property shape must have an rdfs:comment."^^xsd:string ;
            sh:message "s223: The property shape with path {?path} for Class {$this} must have an rdfs:comment."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this ?path
WHERE {
$this sh:property ?propshape .
?propshape sh:path ?path .
FILTER NOT EXISTS {?propshape rdfs:comment ?comment} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredCommentsShape3 a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every SPARQLRule must have an rdfs:comment."^^xsd:string ;
            sh:message "s223: Every SPARQLRule for Class {$this} must have an rdfs:comment."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
WHERE {
$this sh:rule ?rule .
?rule a sh:SPARQLRule .
FILTER NOT EXISTS {?rule rdfs:comment ?comment} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredCommentsShape4 a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every TripleRule must have an rdfs:comment."^^xsd:string ;
            sh:message "s223: The TripleRule inferring {?pred} for Class {$this} must have an rdfs:comment."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this ?pred
WHERE {
$this sh:rule ?rule .
?rule a sh:TripleRule .
?rule sh:predicate ?pred .
FILTER NOT EXISTS {?rule rdfs:comment ?comment} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredCommentsShape5 a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every class of the 223 standard must have an rdfs:comment."^^xsd:string ;
            sh:message "s223: Class {$this} must have an rdfs:comment."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
WHERE {
FILTER NOT EXISTS {$this rdfs:comment ?comment} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredConceptShape a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every class of the 223 standard must be a direct or indirect subclass of s223:Concept."^^xsd:string ;
            sh:message "s223: Class {$this} must be within the rdfs:subClassOf hierarchy under s223:Concept."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
WHERE {
FILTER NOT EXISTS {$this rdfs:subClassOf* rdf:Property} .
FILTER NOT EXISTS {$this rdfs:subClassOf* s223:Concept} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:RequiredNodeShape a sh:NodeShape ;
    sh:severity sh:Info ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Every class of the 223 standard must also be an instance of sh:NodeShape."^^xsd:string ;
            sh:message "s223: Class {$this} must be declared as an instance of sh:NodeShape."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
WHERE {
FILTER NOT EXISTS {$this a sh:NodeShape} .
}
"""^^xsd:string ] ;
    sh:targetClass s223:Class .

s223:SensorObservationLocationShape a sh:NodeShape ;
    rdfs:label "Sensor observation location shape"^^xsd:string ;
    rdfs:comment "A `Sensor` shall be associated with exactly 1 of `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasObservationLocation`."^^xsd:string ;
    sh:message "s223: A `Sensor` shall be associated with exactly 1 of `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasObservationLocation`."^^xsd:string ;
    sh:targetClass s223:Sensor ;
    sh:xone ( [ sh:property [ rdfs:comment "A `Sensor` shall be associated with exactly 1 of `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasObservationLocation`."^^xsd:string ;
                        sh:class s223:Connectable ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path s223:hasObservationLocation ] ] [ sh:property [ rdfs:comment "A `Sensor` shall be associated with exactly 1 of `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasObservationLocation`."^^xsd:string ;
                        sh:class s223:Connection ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path s223:hasObservationLocation ] ] [ sh:property [ rdfs:comment "A `Sensor` shall be associated with exactly 1 of `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasObservationLocation`."^^xsd:string ;
                        sh:class s223:ConnectionPoint ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path s223:hasObservationLocation ] ] ) .

s223:SensorObservesShape a sh:NodeShape ;
    rdfs:label "Sensor observes shape"^^xsd:string ;
    rdfs:comment "A `Sensor` shall be associated with exactly 1 of `QuantifiableObservableProperty` or `EnumeratedObservableProperty` using the relation `observes`."^^xsd:string ;
    sh:message "s223: A `Sensor` shall be associated with exactly 1 of `QuantifiableObservableProperty` or `EnumeratedObservableProperty` using the relation `observes`."^^xsd:string ;
    sh:targetClass s223:Sensor ;
    sh:xone ( [ sh:property [ rdfs:comment "A `Sensor` shall be associated with exactly 1 of `QuantifiableObservableProperty` or `EnumeratedObservableProperty` using the relation `observes`."^^xsd:string ;
                        sh:class s223:QuantifiableObservableProperty ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path s223:observes ] ] [ sh:property [ rdfs:comment "A `Sensor` shall be associated with exactly 1 of `QuantifiableObservableProperty` or `EnumeratedObservableProperty` using the relation `observes`."^^xsd:string ;
                        sh:class s223:EnumeratedObservableProperty ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path s223:observes ] ] ) .

s223:SensorReferenceLocationShape a sh:NodeShape ;
    rdfs:label "Sensor reference location shape"^^xsd:string ;
    rdfs:comment "A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
    sh:message "s223: A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:class s223:Connectable ;
                        sh:message "s223: A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:path s223:hasReferenceLocation ] ] [ sh:property [ rdfs:comment "A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:class s223:Connection ;
                        sh:message "s223: A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:path s223:hasReferenceLocation ] ] [ sh:property [ rdfs:comment "A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:class s223:ConnectionPoint ;
                        sh:message "s223: A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
                        sh:path s223:hasReferenceLocation ] ] ) ;
    sh:property [ rdfs:comment "A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
            sh:maxCount 1 ;
            sh:message "s223: A `Sensor` can be associated with a maximum of one `Connectable`, `Connection`, or `ConnectionPoint` using the relation `hasReferenceLocation`."^^xsd:string ;
            sh:path s223:hasReferenceLocation ] ;
    sh:targetClass s223:Sensor .

s223:SensorShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasObservationLocation` relation for a `Sensor` from the `Property` that it is observing, only if that `Property` is associated with a single entity."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasObservationLocation ?something .}
WHERE {
{
SELECT ?prop (COUNT (DISTINCT ?measurementLocation) AS ?count) $this
WHERE {
FILTER (NOT EXISTS {$this s223:hasObservationLocation ?anything}) .
$this s223:observes ?prop .
?measurementLocation s223:hasProperty ?prop .
}
GROUP BY ?prop $this
}
FILTER (?count = 1) .
?something s223:hasProperty ?prop .
{?something a/rdfs:subClassOf* s223:Connectable}
UNION
{?something a/rdfs:subClassOf* s223:Connection}
UNION
{?something a/rdfs:subClassOf* s223:ConnectionPoint}
}
"""^^xsd:string ;
            sh:name "InferredMeasurementLocation"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Sensor .

s223:ServerComputer a s223:Class,
        sh:NodeShape ;
    rdfs:label "Server computer"^^xsd:string ;
    rdfs:comment "A `Computer` that is primarily used by multiple people, or for the execution of tasks not directly coupled to human interaction."^^xsd:string ;
    rdfs:subClassOf s223:Computer ;
    sh:property [ rdfs:comment "A `ServerComputer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `ServerComputer` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:Shower a s223:Class,
        sh:NodeShape ;
    rdfs:label "Shower"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` for showering that receives as an input hot or cold water dispensed from one or two `Faucet`s, and is designed to hold a specific volume of water and release the held water through a `Drain`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Shower` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Shower` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Shower` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Shower` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:SingleDuctTerminal a s223:Class,
        sh:NodeShape ;
    rdfs:label "Single duct terminal"^^xsd:string ;
    rdfs:comment "A `TerminalUnit` unit that has one ducted air inlet and a damper for regulating the flow of air."^^xsd:string ;
    rdfs:subClassOf s223:TerminalUnit ;
    sh:property [ rdfs:comment "A `SingleDuctTerminal` shall contain at least one `Damper`."^^xsd:string ;
            sh:message "s223: A `SingleDuctTerminal` shall contain at least one `Damper`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Damper ] ] .

s223:Sink a s223:Class,
        sh:NodeShape ;
    rdfs:label "Sink"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` for manually washing hands, dishes, or other items that receives as an input hot or cold water dispensed from one or two `Faucet`s, and is designed to hold a specific volume of water and release the held water through a `Drain`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Sink` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Sink` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `Sink` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `Sink` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:SolarThermalCollector a s223:Class,
        sh:NodeShape ;
    rdfs:label "Solar thermal collector"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts sunlight into thermal energy."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `SolarThermalCollector` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `SolarThermalCollector` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `SolarThermalCollector` shall have at least one inlet using the medium `EM-Light`."^^xsd:string ;
            sh:message "s223: A `SolarThermalCollector` shall have at least one inlet using the medium `EM-Light`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:EM-Light ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:SteamInjector a s223:Class,
        sh:NodeShape ;
    rdfs:label "Steam injector"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` for increasing the humidity of an air stream by injecting steam into the air stream."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `SteamInjector` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `SteamInjector` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "A `SteamInjector` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `SteamInjector` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "A `SteamInjector` shall have at least one inlet using the medium `Water-Steam`."^^xsd:string ;
            sh:message "s223: A `SteamInjector` shall have at least one inlet using the medium `Water-Steam`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Water-Steam ;
                                    sh:path s223:hasMedium ] ] ] ;
            sh:qualifiedValueShapesDisjoint true ] .

s223:SymmetricRelationShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Declare the inverse triples for symmetric relations"^^xsd:string ;
            sh:construct """
CONSTRUCT {
?o ?p $this .
}
WHERE {
  $this ?p ?o .
  ?p a s223:SymmetricRelation .
}
			"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Concept .

s223:SystemShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer the `hasBoundaryConnectionPoint` relation using `hasOptionalConnectionPoint`."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasBoundaryConnectionPoint ?thing .}
WHERE {
$this s223:hasOptionalConnectionPoint ?thing .
}
"""^^xsd:string ;
            sh:name "InferredSystemToBoundaryConnectionPointFromOptional"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:System .

s223:Television a s223:Class,
        sh:NodeShape ;
    rdfs:label "Television"^^xsd:string ;
    rdfs:comment "An `ElectronicDisplay` that is designed primarily for the output of visual information supplied by a media broadcaster, and that typically has an integral tuner that is capable of selecting a single channel for display from the available input channel range."^^xsd:string ;
    rdfs:subClassOf s223:ElectronicDisplay .

s223:TemperatureSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Temperature sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of temperature."^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "A `TemperatureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Temperature`."^^xsd:string ;
            sh:message "s223: A `TemperatureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `Temperature`."^^xsd:string ;
            sh:path s223:observes ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Property ;
                    sh:node [ sh:property [ sh:in ( qudtqk:Temperature ) ;
                                    sh:path qudt:hasQuantityKind ] ] ] ] .

s223:ThermalEnergyStorageUnit a s223:Class,
        sh:NodeShape ;
    rdfs:label "Thermal energy storage unit"^^xsd:string ;
    rdfs:comment "A device that stores thermal energy."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `ThermalEnergyStorageUnit` shall be associated with at least two connection points using the relation `hasConnectionPoint`."^^xsd:string ;
            sh:message "s223: A `ThermalEnergyStorageUnit` shall be associated with at least two connection points using the relation `hasConnectionPoint`."^^xsd:string ;
            sh:minCount 2 ;
            sh:path s223:hasConnectionPoint ] .

s223:Thermostat a s223:Class,
        sh:NodeShape ;
    rdfs:label "Thermostat"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that maintains temperature at a fixed or adjustable setpoint."^^xsd:string ;
    rdfs:subClassOf s223:Equipment .

s223:ThreeWayValve a s223:Class,
        sh:NodeShape ;
    rdfs:label "Three-way valve"^^xsd:string ;
    rdfs:comment "A `Valve` that can divert a fluid in one of three directions."^^xsd:string ;
    rdfs:subClassOf s223:Valve ;
    sh:property [ rdfs:comment "A `ThreeWayValve` shall be associated with at least three connection points using the relation `hasConnectionPoint`."^^xsd:string ;
            sh:message "s223: A `ThreeWayValve` shall be associated with at least three connection points using the relation `hasConnectionPoint`."^^xsd:string ;
            sh:minCount 3 ;
            sh:path s223:hasConnectionPoint ] .

s223:Turbine a s223:Class,
        sh:NodeShape ;
    rdfs:label "Turbine"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that converts mechanical energy into electric energy."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Turbine` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `Turbine` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:TwoWayValve a s223:Class,
        sh:NodeShape ;
    rdfs:label "Two-way valve"^^xsd:string ;
    rdfs:comment "A `Valve` that can divert a fluid in one of two directions."^^xsd:string ;
    rdfs:subClassOf s223:Valve ;
    sh:property [ rdfs:comment "A `TwoWayValve` shall have at least one inlet."^^xsd:string ;
            sh:message "s223: A `TwoWayValve` shall have at least one inlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ],
        [ rdfs:comment "A `TwoWayValve` shall have at least one outlet."^^xsd:string ;
            sh:message "s223: A `TwoWayValve` shall have at least one outlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ] .

s223:USBCable a s223:Class,
        sh:NodeShape ;
    rdfs:label "USB cable"^^xsd:string ;
    rdfs:comment "A type of `Conductor` that consists of 1 to 5 pairs of twisted wire and is used for `Signal-USB` communication."^^xsd:string ;
    rdfs:subClassOf s223:Conductor ;
    sh:property [ rdfs:comment "A `USBCable` shall be associated with exactly one `Signal-USB` using the relation `hasMedium`."^^xsd:string ;
            sh:class s223:Signal-USB ;
            sh:maxCount 1 ;
            sh:message "s223: A `USBCable` shall be associated with exactly one `Signal-USB` using the relation `hasMedium`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path s223:hasMedium ] .

s223:USBOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "USB outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more receptacles for connecting electrical equipment to a USB communication network, typically via a USB cable."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `USBOutlet` shall have at least one outlet using the medium `Signal-USB`."^^xsd:string ;
            sh:message "s223: A `USBOutlet` shall have at least one outlet using the medium `Signal-USB`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-USB ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `USBOutlet` shall have exactly one inlet using the medium `Signal-USB`."^^xsd:string ;
            sh:message "s223: A `USBOutlet` shall have exactly one inlet using the medium `Signal-USB`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-USB ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ValveCPShape a sh:NodeShape ;
    rdfs:label "Valve CP shape"^^xsd:string ;
    rdfs:comment "A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
    sh:message "s223: A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:message "s223: A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ],
                    [ rdfs:comment "A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:message "s223: A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] [ sh:property [ rdfs:comment "A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:message "s223: A `Valve` shall have at least one inlet and one outlet or two bidirectional connection points."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 2 ;
                        sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ] ;
                        sh:qualifiedValueShapesDisjoint true ] ] ) ;
    sh:severity sh:Warning ;
    sh:targetClass s223:Valve .

s223:VariableFrequencyDrive a s223:Class,
        sh:NodeShape ;
    rdfs:label "Variable frequency drive"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that varies its output frequency to vary the rotating speed and torque of a motor, given a fixed input frequency. Used with fans or pumps to vary the flow in the system as a function of a maintained pressure."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `VariableFrequencyDrive` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `VariableFrequencyDrive` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ;
            sh:severity sh:Warning ],
        [ rdfs:comment "A `VariableFrequencyDrive` shall be associated with zero or more pieces of `Equipment` using the relation `connectedTo`."^^xsd:string ;
            sh:class s223:Equipment ;
            sh:message "s223: A `VariableFrequencyDrive` shall be associated with zero or more pieces of `Equipment` using the relation `connectedTo`."^^xsd:string ;
            sh:path s223:connectedTo ],
        [ rdfs:comment "A `VariableFrequencyDrive` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: A `VariableFrequencyDrive` shall have at least one outlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:WaterOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Water outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more pipe fittings for connecting plumbing equipment (e.g., `Faucet`) to a plumbing system."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `WaterOutlet` shall have exactly one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterOutlet` shall have exactly one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WaterOutlet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterOutlet` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:WaterToAirHeatPump a s223:Class,
        sh:NodeShape ;
    rdfs:label "Water-to-air heat pump"^^xsd:string ;
    rdfs:comment "A `HeatPump` that transfers thermal energy between air and a body of water."^^xsd:string ;
    rdfs:subClassOf s223:HeatPump ;
    sh:property [ rdfs:comment "A `WaterToAirHeatPump` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `WaterToAirHeatPump` shall have at least one outlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WaterToAirHeatPump` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterToAirHeatPump` shall have at least one inlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WaterToAirHeatPump` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterToAirHeatPump` shall have at least one outlet using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WaterToAirHeatPump` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `WaterToAirHeatPump` shall have at least one inlet using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:WaterToWaterHeatPump a s223:Class,
        sh:NodeShape ;
    rdfs:label "Water-to-water heat pump"^^xsd:string ;
    rdfs:comment "A `HeatPump` that transfers thermal energy between two flows of water."^^xsd:string ;
    rdfs:subClassOf s223:HeatPump ;
    sh:property [ rdfs:comment "A `WaterToWaterHeatPump` shall have at least two inlets using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterToWaterHeatPump` shall have at least two inlets using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WaterToWaterHeatPump` shall have at least two outlets using the medium `Fluid-Water`."^^xsd:string ;
            sh:message "s223: A `WaterToWaterHeatPump` shall have at least two outlets using the medium `Fluid-Water`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:WindowShade a s223:Class,
        sh:NodeShape ;
    rdfs:label "Window shade"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that can be adjusted to allow, regulate, or stop the flow of light through a `Window`."^^xsd:string ;
    rdfs:subClassOf s223:Equipment .

s223:WiredEthernetOutlet a s223:Class,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet outlet"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that contains one or more receptacles for connecting electrical equipment to a wired Ethernet communication network, typically via a wired Ethernet cable."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `WiredEthernetOutlet` shall have at least one outlet using the medium `Signal-WiredEthernet`."^^xsd:string ;
            sh:message "s223: A `WiredEthernetOutlet` shall have at least one outlet using the medium `Signal-WiredEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-WiredEthernet ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `WiredEthernetOutlet` shall have exactly one inlet using the medium `Signal-WiredEthernet`."^^xsd:string ;
            sh:message "s223: A `WiredEthernetOutlet` shall have exactly one inlet using the medium `Signal-WiredEthernet`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Signal-WiredEthernet ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ZoneLoopShape a sh:NodeShape ;
    rdfs:label "Zone loop shape"^^xsd:string ;
    rdfs:comment "A `Zone` must not contain itself, directly or indirectly."^^xsd:string ;
    sh:message "s223: A `Zone` must not contain itself, directly or indirectly."^^xsd:string ;
    sh:property [ rdfs:comment "A `Zone` must not contain itself, directly or indirectly."^^xsd:string ;
            sh:message "s223: A `Zone` must not contain itself, directly or indirectly."^^xsd:string ;
            sh:path s223:hasZone ;
            sh:sparql [ a sh:SPARQLConstraint ;
                    rdfs:comment "A `Zone` must not contain itself, directly or indirectly."^^xsd:string ;
                    sh:message "s223: `Zone` {$this} must not contain itself (via s223:hasZone), directly or indirectly."^^xsd:string ;
                    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
                    sh:select """
SELECT $this
WHERE {
$this s223:hasZone+ ?nestedZone .
FILTER ($this = ?nestedZone) .
}
"""^^xsd:string ] ] ;
    sh:targetClass s223:Zone .

s223:ZoneShape a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            rdfs:comment "Infer a `hasDomain` relation by checking any enclosed `DomainSpace`s to determine the domain."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasDomain ?domain .}
WHERE {
$this s223:hasDomainSpace/s223:hasDomain ?domain .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ],
        [ a sh:SPARQLRule ;
            rdfs:comment "Infer a `hasDomain` relation by checking any enclosed `Zone` to determine the domain."^^xsd:string ;
            sh:construct """
CONSTRUCT {$this s223:hasDomain ?domain .}
WHERE {
$this s223:hasZone/s223:hasDomain ?domain .
}
"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass s223:Zone .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterCoilAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:CoolingCoil matches the constraints defined by g36:ChilledWaterCoil, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterCoil> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterCoil> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:CoolingCoil .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValveAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Valve matches the constraints defined by g36:ChilledWaterValve, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValve>,
                <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValveOrShape1> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValve> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Valve .

<http://data.ashrae.org/standard223/1.0/extensions/g36#DamperAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Damper matches the constraints defined by g36:Damper, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#Damper>,
                <http://data.ashrae.org/standard223/1.0/extensions/g36#DamperOrShape1> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#Damper> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Damper .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ElectricHeatingCoilAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:ElectricResistanceElement matches the constraints defined by g36:ElectricHeatingCoil, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#ElectricHeatingCoil> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#ElectricHeatingCoil> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:ElectricResistanceElement .

<http://data.ashrae.org/standard223/1.0/extensions/g36#FanAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Fan matches the constraints defined by g36:Fan, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#Fan> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#Fan> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Fan .

<http://data.ashrae.org/standard223/1.0/extensions/g36#FanWithVFDAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Fan matches the constraints defined by g36:FanWithVFD, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#FanWithVFD> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#FanWithVFD> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Fan .

<http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterCoilAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:HeatingCoil matches the constraints defined by g36:HotWaterCoil, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterCoil> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterCoil> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:HeatingCoil .

<http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValveAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Valve matches the constraints defined by g36:HotWaterValve, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValve>,
                <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValveOrShape1> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValve> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Valve .

<http://data.ashrae.org/standard223/1.0/extensions/g36#TwoPositionDamperAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of s223:Damper matches the constraints defined by g36:TwoPositionDamper, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#TwoPositionDamper> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#TwoPositionDamper> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Damper .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ZoneAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of `Zone` matches the constraints defined by g36:Zone, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#Zone> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#Zone> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Zone .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ZoneGroupAnnotation> a sh:NodeShape ;
    sh:rule [ a sh:TripleRule ;
            rdfs:comment "If an instance of `Zone` matches the constraints defined by g36:ZoneGroup, it will be declared as an instance of that class."^^xsd:string ;
            sh:condition <http://data.ashrae.org/standard223/1.0/extensions/g36#ZoneGroup> ;
            sh:object <http://data.ashrae.org/standard223/1.0/extensions/g36#ZoneGroup> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetClass s223:Zone .

<http://data.ashrae.org/standard223/1.0/extensions/settings> rdfs:comment """This file can be used to control which extensions are to be loaded with the 223 ontology by importing the appropriate graph(s). Options include:
For validation of the schema, model, or data - http://data.ashrae.org/standard223/1.0/validation/schema (or model or data).  
For inferred relations - http://data.ashrae.org/standard223/1.0/inference/model-rules (and/or schema-rules, data-rules).
For G36 extensions - http://data.ashrae.org/standard223/1.0/extensions/g36/core (and/or vav-terminal-unit, multiple-zone-vav-air-handling-unit, etc.)."""^^xsd:string .

<http://data.ashrae.org/standard223/1.0/model/all> a owl:Ontology ;
    owl:versionInfo "1.0.0-ppr.2.1"^^xsd:string .

<http://datashapes.org/dash> rdfs:label "DASH Data Shapes Vocabulary"^^xsd:string ;
    rdfs:comment "DASH is a SHACL library for frequently needed features and design patterns. The constraint components in this library are 100% standards compliant and will work on any engine that fully supports SHACL."^^xsd:string .

ns3:ActionTestCase a ns3:ShapeClass ;
    rdfs:label "Action test case"^^xsd:string ;
    rdfs:comment """A test case that evaluates a dash:Action using provided input parameters. Requires exactly one value for dash:action and will operate on the test case's graph (with imports) as both data and shapes graph.

Currently only supports read-only actions, allowing the comparison of actual results with the expected results."""^^xsd:string ;
    rdfs:subClassOf ns3:TestCase .

ns3:AllObjects a ns3:AllObjectsTarget ;
    rdfs:label "All objects"^^xsd:string ;
    rdfs:comment "A reusable instance of dash:AllObjectsTarget."^^xsd:string .

ns3:AllSubjects a ns3:AllSubjectsTarget ;
    rdfs:label "All subjects"^^xsd:string ;
    rdfs:comment "A reusable instance of dash:AllSubjectsTarget."^^xsd:string .

ns3:AutoCompleteEditor a ns3:SingleEditor ;
    rdfs:label "Auto-complete editor"^^xsd:string ;
    rdfs:comment "An auto-complete field to enter the label of instances of a class. This is the fallback editor for any URI resource if no other editors are more suitable."^^xsd:string .

ns3:BlankNodeViewer a ns3:SingleViewer ;
    rdfs:label "Blank node viewer"^^xsd:string ;
    rdfs:comment "A Viewer for blank nodes, rendering as the label of the blank node."^^xsd:string .

ns3:BooleanSelectEditor a ns3:SingleEditor ;
    rdfs:label "Boolean select editor"^^xsd:string ;
    rdfs:comment """An editor for boolean literals, rendering as a select box with values true and false.

Also displays the current value (such as "1"^^xsd:boolean), but only allows to switch to true or false."""^^xsd:string .

ns3:ChangeScript a ns3:ShapeClass ;
    rdfs:label "Change script"^^xsd:string ;
    rdfs:comment """Class of ADS scripts that are executed after edits to the data graph were made, but within the same edit.

These scripts may access the current changes from the graphs with names dataset.addedGraphURI and dataset.deletedGraphURI to learn about which resource values have been added or deleted. For example query them using graph.withDataGraph(dataset.addedGraphURI, ...) or via SPARQL's GRAPH keyword.

Change scripts may then perform further changes which would again become visible to other change scripts. They MUST NOT have other side effects though, because they may get executed in Preview mode, or the change may cause constraint violations and then be rejected. For side effects, after the change has been applied, use commit scripts (dash:CommitScript).

Change scripts are executed by their relative sh:order, with a default value of 0. Use lower values to execute before other scripts."""^^xsd:string ;
    rdfs:subClassOf ns3:Script .

ns3:ClosedByTypesConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Closed by types constraint component"^^xsd:string ;
    rdfs:comment "A constraint component that can be used to declare that focus nodes are \"closed\" based on their rdf:types, meaning that focus nodes may only have values for the properties that are explicitly enumerated via sh:property/sh:path in property constraints at their rdf:types and the superclasses of those. This assumes that the type classes are also shapes."^^xsd:string ;
    sh:nodeValidator [ a sh:SPARQLSelectValidator ;
            sh:message "Property {?path} is not among those permitted for any of the types"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT $this (?predicate AS ?path) ?value
WHERE {
	FILTER ($closedByTypes) .
    $this ?predicate ?value .
	FILTER (?predicate != rdf:type) .
	FILTER NOT EXISTS {
		$this rdf:type ?type .
		?type rdfs:subClassOf* ?class .
		GRAPH $shapesGraph {
			?class sh:property/sh:path ?predicate .
		}
	}
}"""^^xsd:string ] ;
    sh:parameter ns3:ClosedByTypesConstraintComponent-closedByTypes .

ns3:CoExistsWithConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Co-exists-with constraint component"^^xsd:string ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to express a constraint on property shapes so that if the property path has any value then the given property must also have a value, and vice versa."^^xsd:string ;
    sh:message "Values must co-exist with values of {$coExistsWith}"^^xsd:string ;
    sh:parameter ns3:CoExistsWithConstraintComponent-coExistsWith ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT $this
WHERE {
	{
    	FILTER (EXISTS { $this $PATH ?any } && NOT EXISTS { $this $coExistsWith ?any })
	}
	UNION
	{
    	FILTER (NOT EXISTS { $this $PATH ?any } && EXISTS { $this $coExistsWith ?any })
	}
}"""^^xsd:string ] .

ns3:CommitScript a ns3:ShapeClass ;
    rdfs:label "Commit script"^^xsd:string ;
    rdfs:comment """Class of ADS scripts that are executed after edits to the data graph were made and have been committed.

These scripts may access the changes that have just happened from the graphs with names dataset.addedGraphURI and dataset.deletedGraphURI to learn about which resource values have been added or deleted. For example query them using graph.withDataGraph(dataset.addedGraphURI, ...) or via SPARQL's GRAPH keyword.

Commit scripts may then perform side effects such as updating other graphs or sending out notifications to external systems. For edits that should be made within a finishing change, use change scripts (dash:ChangeScript).

Commit scripts are executed by their relative sh:order, with a default value of 0. Use lower values to execute before other scripts."""^^xsd:string ;
    rdfs:subClassOf ns3:Script .

ns3:Constructor a ns3:ShapeClass ;
    rdfs:label "Constructor"^^xsd:string ;
    rdfs:comment """A script that is executed when a new instance of the class associated via dash:constructor is created, e.g. from a New button. Such scripts typically declare one or more parameters that are collected from the user when the script starts. The values of these parameters can be used as named variables in the script for arbitrary purposes such as setting the URI or initializing some property values of the new instance.

The variable focusNode will hold the named node of the selected type, for example when a constructor is associated with a superclass but the user has pressed New for a subclass.

The last expression of the script will be used as result of the constructor, so that the surrounding tool knows which resource shall be navigated to next."""^^xsd:string ;
    rdfs:subClassOf ns3:Script,
        sh:Parameterizable .

ns3:DateOrDateTime a rdf:List ;
    rdfs:label "Date or date time"^^xsd:string ;
    rdf:first [ sh:datatype xsd:date ] ;
    rdf:rest ( [ sh:datatype xsd:dateTime ] ) ;
    rdfs:comment "An rdf:List that can be used in property constraints as value for sh:or to indicate that all values of a property must be either xsd:date or xsd:dateTime."^^xsd:string .

ns3:DatePickerEditor a ns3:SingleEditor ;
    rdfs:label "Date picker editor"^^xsd:string ;
    rdfs:comment "An editor for xsd:date literals, offering a calendar-like date picker."^^xsd:string .

ns3:DateTimePickerEditor a ns3:SingleEditor ;
    rdfs:label "Date time picker editor"^^xsd:string ;
    rdfs:comment "An editor for xsd:dateTime literals, offering a calendar-like date picker and a time selector."^^xsd:string .

ns3:DepictionRole a ns3:PropertyRole ;
    rdfs:label "Depiction"^^xsd:string ;
    rdfs:comment "Depiction properties provide images representing the focus nodes. Typical examples may be a photo of an animal or the map of a country."^^xsd:string .

ns3:Deprecated a ns3:APIStatus ;
    rdfs:label "deprecated"^^xsd:string ;
    rdfs:comment "Features that have been marked deprecated will remain in the API but should no longer be used by new code and may get deleted in the foreseeable future (e.g., with the next major release)."^^xsd:string .

ns3:DescriptionRole a ns3:PropertyRole ;
    rdfs:label "Description"^^xsd:string ;
    rdfs:comment "Description properties should produce text literals that may be used as an introduction/summary of what a focus node does."^^xsd:string .

ns3:DetailsEditor a ns3:SingleEditor ;
    rdfs:label "Details editor"^^xsd:string ;
    rdfs:comment "An editor for non-literal values, typically displaying a nested form where the values of the linked resource can be edited directly on the \"parent\" form. Implementations that do not support this (yet) could fall back to an auto-complete widget."^^xsd:string .

ns3:DetailsViewer a ns3:SingleViewer ;
    rdfs:label "Details viewer"^^xsd:string ;
    rdfs:comment "A Viewer for resources that shows the details of the value using its default view shape as a nested form-like display."^^xsd:string .

ns3:EnumSelectEditor a ns3:SingleEditor ;
    rdfs:label "Enum select editor"^^xsd:string ;
    rdfs:comment "A drop-down editor for enumerated values (typically based on sh:in lists)."^^xsd:string .

ns3:Experimental a ns3:APIStatus ;
    rdfs:label "experimental"^^xsd:string ;
    rdfs:comment "Features that are marked experimental can be used by early adopters but there is no guarantee that they will reach stable state."^^xsd:string .

ns3:ExploreAction a ns3:ShapeClass ;
    rdfs:label "Explore action"^^xsd:string ;
    rdfs:comment "An action typically showing up in an Explore section of a selected resource. Cannot make changes to the data."^^xsd:string ;
    rdfs:subClassOf ns3:ResourceAction .

ns3:FunctionTestCase a ns3:ShapeClass ;
    rdfs:label "Function test case"^^xsd:string ;
    rdfs:comment "A test case that verifies that a given SPARQL expression produces a given, expected result."^^xsd:string ;
    rdfs:subClassOf ns3:TestCase .

ns3:GraphService a ns3:ShapeClass ;
    rdfs:label "Graph service"^^xsd:string ;
    rdfs:comment "A service that does not apply to a specific resource (as ResourceService does) but operates on the whole graph. The focusNode variable will be the URI of the current base graph (e.g. <urn:x-evn-master:geo> as a NamedNode."^^xsd:string ;
    rdfs:subClassOf ns3:Service .

ns3:GraphStoreTestCase a ns3:ShapeClass ;
    rdfs:label "Graph store test case"^^xsd:string ;
    rdfs:comment "A test case that can be used to verify that an RDF file could be loaded (from a file) and that the resulting RDF graph is equivalent to a given TTL file."^^xsd:string ;
    rdfs:subClassOf ns3:TestCase .

ns3:HTMLOrStringOrLangString a rdf:List ;
    rdfs:label "HTML or string or langString"^^xsd:string ;
    rdf:first [ sh:datatype rdf:HTML ] ;
    rdf:rest ( [ sh:datatype xsd:string ] [ sh:datatype rdf:langString ] ) ;
    rdfs:comment "An rdf:List that can be used in property constraints as value for sh:or to indicate that all values of a property must be either rdf:HTML, xsd:string or rdf:langString (in that order of preference)."^^xsd:string .

ns3:HTMLViewer a ns3:SingleViewer ;
    rdfs:label "HTML viewer"^^xsd:string ;
    rdfs:comment "A Viewer for HTML encoded text from rdf:HTML literals, rendering as parsed HTML DOM elements. Also displays the language if the HTML has a lang attribute on its root DOM element."^^xsd:string .

ns3:HasValueInConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Has value in constraint component"^^xsd:string ;
    rdfs:comment "A constraint component that can be used to express a constraint on property shapes so that one of the values of the property path must be a member of a given list of nodes."^^xsd:string ;
    sh:message "At least one of the values must be in {$hasValueIn}"^^xsd:string ;
    sh:parameter ns3:HasValueInConstraintComponent-hasValueIn ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT $this
WHERE {
	FILTER NOT EXISTS {
    	$this $PATH ?value .
		GRAPH $shapesGraph {
			$hasValueIn rdf:rest*/rdf:first ?value .
		}
	}
}"""^^xsd:string ] .

ns3:HasValueTarget a sh:SPARQLTargetType ;
    rdfs:label "Has Value target"^^xsd:string ;
    rdfs:comment "A target type for all subjects where a given predicate has a certain object value."^^xsd:string ;
    rdfs:subClassOf sh:Target ;
    sh:labelTemplate "All subjects where {$predicate} has value {$object}"^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:description "The value that is expected to be present."^^xsd:string ;
            sh:name "object"^^xsd:string ;
            sh:path ns3:object ],
        [ a sh:Parameter ;
            sh:description "The predicate property."^^xsd:string ;
            sh:name "predicate"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path ns3:predicate ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:select """SELECT DISTINCT ?this
WHERE {
    ?this $predicate $object .
}"""^^xsd:string .

ns3:HasValueWithClassConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Has value with class constraint component"^^xsd:string ;
    rdfs:comment "A constraint component that can be used to express a constraint on property shapes so that one of the values of the property path must be an instance of a given class."^^xsd:string ;
    sh:message "At least one of the values must be an instance of class {$hasValueWithClass}"^^xsd:string ;
    sh:parameter ns3:HasValueWithClassConstraintComponent-hasValueWithClass ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT $this
WHERE {
	FILTER NOT EXISTS {
    	$this $PATH ?value .
		?value a ?type .
		?type rdfs:subClassOf* $hasValueWithClass .
	}
}"""^^xsd:string ] .

ns3:HyperlinkViewer a ns3:SingleViewer ;
    rdfs:label "Hyperlink viewer"^^xsd:string ;
    rdfs:comment """A Viewer for literals, rendering as a hyperlink to a URL.

For literals it assumes the lexical form is the URL.

This is often used as default viewer for xsd:anyURI literals. Unsupported for blank nodes."""^^xsd:string .

ns3:IDRole a ns3:PropertyRole ;
    rdfs:label "ID"^^xsd:string ;
    rdfs:comment "ID properties are short strings or other literals that identify the focus node among siblings. Examples may include social security numbers."^^xsd:string .

ns3:IconRole a ns3:PropertyRole ;
    rdfs:label "Icon"^^xsd:string ;
    rdfs:comment """Icon properties produce images that are typically small and almost square-shaped, and that may be displayed in the upper left corner of a focus node's display. Values should be xsd:string or xsd:anyURI literals or IRI nodes pointing at URLs. Those URLs should ideally be vector graphics such as .svg files.

Instances of the same class often have the same icon, and this icon may be computed using a sh:values rule or as sh:defaultValue.

If the value is a relative URL then those should be resolved against the server that delivered the surrounding page."""^^xsd:string .

ns3:ImageViewer a ns3:SingleViewer ;
    rdfs:label "Image viewer"^^xsd:string ;
    rdfs:comment "A Viewer for URI values that are recognized as images by a browser, rendering as an image."^^xsd:string .

ns3:IncludedScript a ns3:ShapeClass ;
    rdfs:label "Included script"^^xsd:string ;
    rdfs:comment """The code associated with instances of this class will get injected into the generated APIs, as global code snippets. Typically used to declare libraries of utility functions or constants that are (compared to shape scripts) not necessarily associated with specific classes or shapes.

Note that the JavaScript code stored in dash:js cannot use the export keyword because the code must also work in external scripts (such as on Node.js). Instead, you need to enumerate the exported symbols via dash:exports."""^^xsd:string ;
    rdfs:subClassOf ns3:Script .

ns3:IndexedConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Indexed constraint component"^^xsd:string ;
    rdfs:comment "A constraint component that can be used to mark property shapes to be indexed, meaning that each of its value nodes must carry a dash:index from 0 to N."^^xsd:string ;
    sh:parameter ns3:IndexedConstraintComponent-indexed .

ns3:InferencingTestCase a ns3:ShapeClass ;
    rdfs:label "Inferencing test case"^^xsd:string ;
    rdfs:comment "A test case to verify whether an inferencing engine is producing identical results to those stored as expected results."^^xsd:string ;
    rdfs:subClassOf ns3:TestCase .

ns3:InlineViewer a ns3:MultiViewer ;
    rdfs:label "Inline viewer"^^xsd:string ;
    rdfs:comment "A multi-viewer that renders all values horizontally, in a more compact form that just a single value per row."^^xsd:string .

ns3:InstancesSelectEditor a ns3:SingleEditor ;
    rdfs:label "Instances select editor"^^xsd:string ;
    rdfs:comment "A drop-down editor for all instances of the target class (based on sh:class of the property)."^^xsd:string .

ns3:JSONTableViewer a ns3:SingleViewer ;
    rdfs:label "JSON table viewer"^^xsd:string ;
    rdfs:comment """A tabular viewer for rdf:JSON literals with a lexical form in the following format:

{
	vars: [ 'col1', 'col2' ],                   // These are the column keys
	headerLabels: [ 'Column 1', 'Column 2' ],   // Optional, for the column headers
	bindings: [                                 // These become the rows
		{
			col1: {
				lex: 'Value2',
				datatype: '...#string',
			},
			col2: {
				uri: 'http://.../Instance',
				label: 'Example Instance',
			},
		},
		...
	],
}

The resulting table will use the headerLabels (if they exist) as column headers, otherwise derive the headers from the variable names. The vars must match the fields in the bindings. The table will contain one row for each binding.

Using Active Data Shapes, you can construct such literals dynamically using a sh:values rule, e.g.

ex:MyClass-myProperty
	a sh:PropertyShape ;
	sh:path ex:myProperty ;
	sh:values [
		dash:js \"\"\"
			DataViewers.createTableViewerJSON(focusNode.select(`
				SELECT ?col1 ?col2
				WHERE {
					$this ex:prop1 ?col1 .
					$this ex:prop2 ?col2 .
				}
			`))\"\"\"
	] .

You may also produce the JSON literal programmatically in JavaScript, or assert the triples by other means."""^^xsd:string .

ns3:KeyInfoRole a ns3:PropertyRole ;
    rdfs:label "Key info"^^xsd:string ;
    rdfs:comment "The Key info role may be assigned to properties that are likely of special interest to a reader, so that they should appear whenever a summary of a focus node is shown."^^xsd:string .

ns3:LabelRole a ns3:PropertyRole ;
    rdfs:label "Label"^^xsd:string ;
    rdfs:comment "Properties with this role produce strings that may serve as display label for the focus nodes. Labels should be either plain string literals or strings with a language tag. The values should also be single-line."^^xsd:string .

ns3:LabelViewer a ns3:SingleViewer ;
    rdfs:label "Label viewer"^^xsd:string ;
    rdfs:comment "A Viewer for URI resources, rendering as a hyperlink to that URI based on the display label of the resource. Also includes other ways of interacting with the URI such as opening a nested summary display."^^xsd:string .

ns3:LangStringViewer a ns3:SingleViewer ;
    rdfs:label "LangString viewer"^^xsd:string ;
    rdfs:comment "A Viewer for literals with a language tag, rendering as the text plus a language indicator."^^xsd:string .

ns3:LiteralViewer a ns3:SingleViewer ;
    rdfs:label "Literal viewer"^^xsd:string ;
    rdfs:comment "A simple viewer for literals, rendering the lexical form of the value."^^xsd:string .

ns3:ModifyAction a ns3:ShapeClass ;
    rdfs:label "Modify action"^^xsd:string ;
    rdfs:comment "An action typically showing up in a Modify section of a selected resource. May make changes to the data."^^xsd:string ;
    rdfs:subClassOf ns3:ResourceAction .

ns3:MultiEditor a ns3:ShapeClass ;
    rdfs:label "Multi editor"^^xsd:string ;
    rdfs:comment "An editor for multiple/all value nodes at once."^^xsd:string ;
    rdfs:subClassOf ns3:Editor .

ns3:NoSuitableEditor a ns3:SingleEditor ;
    rdfs:label "No suitable editor"^^xsd:string ;
    rdfs:comment "An \"editor\" that simply informs the user that the values cannot be edited here, but for example through source code editing."^^xsd:string .

ns3:NodeExpressionViewer a ns3:SingleViewer ;
    rdfs:label "Node expression viewer"^^xsd:string ;
    rdfs:comment "A viewer for SHACL Node Expressions."^^rdf:HTML .

ns3:NonRecursiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Non-recursive constraint component"^^xsd:string ;
    rdfs:comment "Used to state that a property or path must not point back to itself."^^xsd:string ;
    sh:message "Points back at itself (recursively)"^^xsd:string ;
    sh:parameter ns3:NonRecursiveConstraintComponent-nonRecursive ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT DISTINCT $this ($this AS ?value)
WHERE {
	{
		FILTER (?nonRecursive)
	}
    $this $PATH $this .
}"""^^xsd:string ] .

ns3:None a sh:NodeShape ;
    rdfs:label "None"^^xsd:string ;
    rdfs:comment "A Shape that is no node can conform to."^^xsd:string ;
    sh:in () .

ns3:ParameterConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Parameter constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that all value nodes conform to the given Parameter."@en ;
    sh:parameter ns3:ParameterConstraintComponent-parameter .

ns3:PrimaryKeyConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Primary key constraint component"^^xsd:string ;
    ns3:localConstraint true ;
    rdfs:comment "Enforces a constraint that the given property (sh:path) serves as primary key for all resources in the target of the shape. If a property has been declared to be the primary key then each resource must have exactly one value for that property. Furthermore, the URIs of those resources must start with a given string (dash:uriStart), followed by the URL-encoded primary key value. For example if dash:uriStart is \"http://example.org/country-\" and the primary key for an instance is \"de\" then the URI must be \"http://example.org/country-de\". Finally, as a result of the URI policy, there can not be any other resource with the same value under the same primary key policy."^^xsd:string ;
    sh:labelTemplate "The property {?predicate} is the primary key and URIs start with {?uriStart}"^^xsd:string ;
    sh:message "Violation of primary key constraint"^^xsd:string ;
    sh:parameter ns3:PrimaryKeyConstraintComponent-uriStart ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT DISTINCT $this
WHERE {
        FILTER (
			# Must have a value for the primary key
			NOT EXISTS { ?this $PATH ?any }
			||
			# Must have no more than one value for the primary key
			EXISTS {
				?this $PATH ?value1 .
				?this $PATH ?value2 .
				FILTER (?value1 != ?value2) .
			}
			||
			# The value of the primary key must align with the derived URI
			EXISTS {
				{
        			?this $PATH ?value .
					FILTER NOT EXISTS { ?this $PATH ?value2 . FILTER (?value != ?value2) }
				}
        		BIND (CONCAT($uriStart, ENCODE_FOR_URI(str(?value))) AS ?uri) .
        		FILTER (str(?this) != ?uri) .
    		}
		)
}"""^^xsd:string ] .

ns3:QueryTestCase a ns3:ShapeClass ;
    rdfs:label "Query test case"^^xsd:string ;
    rdfs:comment "A test case running a given SPARQL SELECT query and comparing its results with those stored as JSON Result Set in the expected result property."^^xsd:string ;
    rdfs:subClassOf ns3:TestCase,
        sh:SPARQLSelectExecutable .

ns3:ReifiableByConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Reifiable-by constraint component"^^xsd:string ;
    sh:labelTemplate "Reifiable by {$reifiableBy}"^^xsd:string ;
    sh:parameter ns3:ReifiableByConstraintComponent-reifiableBy .

ns3:ResourceService a ns3:ShapeClass ;
    rdfs:label "Resource service"^^xsd:string ;
    rdfs:comment "A Service that can (and must) be applied to a given resource as focus node. Use dash:resourceService to link a class to the services that apply to its instances."^^xsd:string ;
    rdfs:subClassOf ns3:Service .

ns3:RichTextEditor a ns3:SingleEditor ;
    rdfs:label "Rich text editor"^^xsd:string ;
    rdfs:comment "A rich text editor to enter the lexical value of a literal and a drop down to select language. The selected language is stored in the HTML lang attribute of the root node in the HTML DOM tree."^^xsd:string .

ns3:RootClassConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Root class constraint component"^^xsd:string ;
    rdfs:comment "A constraint component defining the parameter dash:rootClass, which restricts the values to be either the root class itself or one of its subclasses. This is typically used in conjunction with properties that have rdfs:Class as their type."^^xsd:string ;
    sh:labelTemplate "Root class {$rootClass}"^^xsd:string ;
    sh:message "Value must be subclass of {$rootClass}"^^xsd:string ;
    sh:parameter ns3:RootClassConstraintComponent-rootClass ;
    sh:validator ns3:hasRootClass .

ns3:ScriptAPIShape a sh:NodeShape ;
    rdfs:label "Script API"^^xsd:string ;
    rdfs:comment "Defines the properties that instruct the ADS Script API generator about what prefixes, constants and classes to generate."^^xsd:string ;
    sh:property ns3:ScriptAPIShape-generateClass,
        ns3:ScriptAPIShape-generatePrefixClasses,
        ns3:ScriptAPIShape-generatePrefixConstants ;
    sh:targetClass owl:Ontology .

ns3:ScriptConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Script constraint component"^^xsd:string ;
    sh:parameter ns3:ScriptConstraintComponent-scriptConstraint .

ns3:ScriptSuggestionGenerator a ns3:ShapeClass ;
    rdfs:label "Script suggestion generator"^^xsd:string ;
    rdfs:comment """A Suggestion Generator that is backed by an Active Data Shapes script. The script needs to return a JSON object or an array of JSON objects if it shall generate multiple suggestions. It may also return null to indicate that nothing was suggested. Note that the whole script is evaluated as a (JavaScript) expression, and those will use the last value as result. So simply putting an object at the end of your script should do. Alternatively, define the bulk of the operation as a function and simply call that function in the script.

Each response object can have the following fields:

{
	message: "The human readable message",  // Defaults to the rdfs:label(s) of the suggestion generator
	add: [ // An array of triples to add, each triple as an array with three nodes
		[ subject, predicate, object ],
		[ ... ]
	],
	delete: [
		... like add, for the triples to delete
	]
}

Suggestions with neither added nor deleted triples will be discarded.

At execution time, the script operates on the data graph as the active graph, with the following pre-bound variables:
- focusNode: the NamedNode that is the sh:focusNode of the validation result
- predicate: the NamedNode representing the predicate of the validation result, assuming sh:resultPath is a URI
- value: the value node from the validation result's sh:value, cast into the most suitable JS object
- the other pre-bound variables for the parameters of the constraint, e.g. in a sh:maxCount constraint it would be maxCount

The script will be executed in read-only mode, i.e. it cannot modify the graph.

Example with dash:js:

({
	message: `Copy labels into ${graph.localName(predicate)}`,
	add: focusNode.values(rdfs.label).map(label => 
		[ focusNode, predicate, label ]
    )
})"""^^xsd:string ;
    rdfs:subClassOf ns3:Script,
        ns3:SuggestionGenerator .

ns3:ScriptTestCase a ns3:ShapeClass ;
    rdfs:label "Script test case"^^xsd:string ;
    rdfs:comment """A test case that evaluates a script. Requires exactly one value for dash:js and will operate on the test case's graph (with imports) as both data and shapes graph.

Supports read-only scripts only at this stage."""^^xsd:string ;
    rdfs:subClassOf ns3:Script,
        ns3:TestCase .

ns3:ScriptValidator a ns3:ShapeClass ;
    rdfs:label "Script validator"^^xsd:string ;
    rdfs:comment """A SHACL validator based on an Active Data Shapes script.

See the comment at dash:ScriptConstraint for the basic evaluation approach. Note that in addition to focusNode and value/values, the script can access pre-bound variables for each declared argument of the constraint component."""^^xsd:string ;
    rdfs:subClassOf ns3:Script,
        sh:Validator .

ns3:SingleLineConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Single line constraint component"^^xsd:string ;
    rdfs:comment """A constraint component that can be used to declare that all values that are literals must have a lexical form that contains no line breaks ('\\n' or '\\r').

User interfaces may use the dash:singleLine flag to prefer a text field over a (multi-line) text area."""^^xsd:string ;
    sh:message "Must not contain line breaks."^^xsd:string ;
    sh:parameter ns3:SingleLineConstraintComponent-singleLine ;
    sh:validator [ a sh:SPARQLAskValidator ;
            sh:ask """ASK {
    FILTER (!$singleLine || !isLiteral($value) || (!contains(str($value), '\\n') && !contains(str($value), '\\r')))
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] .

ns3:StemConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Stem constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that every value node is an IRI and the IRI starts with a given string value."@en ;
    sh:labelTemplate "Value needs to have stem {$stem}"^^xsd:string ;
    sh:message "Value does not have stem {$stem}"^^xsd:string ;
    sh:parameter ns3:StemConstraintComponent-stem ;
    sh:validator ns3:hasStem .

ns3:StringOrLangStringOrHTML a rdf:List ;
    rdfs:label "string or langString or HTML"^^xsd:string ;
    rdf:first [ sh:datatype xsd:string ] ;
    rdf:rest ( [ sh:datatype rdf:langString ] [ sh:datatype rdf:HTML ] ) ;
    rdfs:comment "An rdf:List that can be used in property constraints as value for sh:or to indicate that all values of a property must be either xsd:string, rdf:langString or rdf:HTML (in that order of preference)."^^xsd:string .

ns3:SubClassEditor a ns3:SingleEditor ;
    rdfs:label "Sub-Class editor"^^xsd:string ;
    rdfs:comment "An editor for properties that declare a dash:rootClass. The editor allows selecting either the class itself or one of its subclasses."^^xsd:string .

ns3:SubSetOfConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Sub set of constraint component"^^xsd:string ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to state that the set of value nodes must be a subset of the value of a given property."^^xsd:string ;
    sh:message "Must be one of the values of {$subSetOf}"^^xsd:string ;
    sh:parameter ns3:SubSetOfConstraintComponent-subSetOf ;
    sh:propertyValidator [ a sh:SPARQLAskValidator ;
            sh:ask """ASK {
    $this $subSetOf $value .
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] .

ns3:SymmetricConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Symmetric constraint component"^^xsd:string ;
    rdfs:comment "A contraint component for property shapes to validate that a property is symmetric. For symmetric properties, if A relates to B then B must relate to A."^^xsd:string ;
    sh:message "Symmetric value expected"^^xsd:string ;
    sh:parameter ns3:SymmetricConstraintComponent-symmetric ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT $this ?value {
	FILTER ($symmetric) .
	$this $PATH ?value .
	FILTER NOT EXISTS {
    	?value $PATH $this .
	}
}"""^^xsd:string ] .

ns3:TextAreaEditor a ns3:SingleEditor ;
    rdfs:label "Text area editor"^^xsd:string ;
    rdfs:comment "A multi-line text area to enter the value of a literal."^^xsd:string .

ns3:TextAreaWithLangEditor a ns3:SingleEditor ;
    rdfs:label "Text area with lang editor"^^xsd:string ;
    rdfs:comment "A multi-line text area to enter the value of a literal and a drop down to select a language."^^xsd:string .

ns3:TextFieldEditor a ns3:SingleEditor ;
    rdfs:label "Text field editor"^^xsd:string ;
    rdfs:comment """A simple input field to enter the value of a literal, without the ability to change language or datatype.

This is the fallback editor for any literal if no other editors are more suitable."""^^xsd:string .

ns3:TextFieldWithLangEditor a ns3:SingleEditor ;
    rdfs:label "Text field with lang editor"^^xsd:string ;
    rdfs:comment "A single-line input field to enter the value of a literal and a drop down to select language, which is mandatory unless xsd:string is among the permissible datatypes."^^xsd:string .

ns3:URIEditor a ns3:SingleEditor ;
    rdfs:label "URI editor"^^xsd:string ;
    rdfs:comment "An input field to enter the URI of a resource, e.g. rdfs:seeAlso links or images."^^xsd:string .

ns3:URIViewer a ns3:SingleViewer ;
    rdfs:label "URI viewer"^^xsd:string ;
    rdfs:comment "A Viewer for URI resources, rendering as a hyperlink to that URI. Also includes other ways of interacting with the URI such as opening a nested summary display."^^xsd:string .

ns3:UniqueValueForClassConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Unique value for class constraint component"^^xsd:string ;
    rdfs:comment "A constraint component that can be used to state that the values of a property must be unique for all instances of a given class (and its subclasses)."^^xsd:string ;
    sh:labelTemplate "Values must be unique among all instances of {?uniqueValueForClass}"^^xsd:string ;
    sh:parameter ns3:UniqueValueForClassConstraintComponent-uniqueValueForClass ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:message "Value {?value} must be unique but is also used by {?other}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """SELECT DISTINCT $this ?value ?other
WHERE {
	{
    	$this $PATH ?value .
		?other $PATH ?value .
		FILTER (?other != $this) .
	}
	?other a ?type .
	?type rdfs:subClassOf* $uniqueValueForClass .
}"""^^xsd:string ] .

ns3:UntrustedHTMLViewer a ns3:SingleViewer ;
    rdfs:label "Untrusted HTML viewer"^^xsd:string ;
    rdfs:comment "A Viewer for HTML content from untrusted sources. This viewer will sanitize the HTML before rendering. Any a, button, checkbox, form, hidden, input, img, script, select, style and textarea tags and class and style attributes will be removed."^^xsd:string .

ns3:ValueTableViewer a ns3:MultiViewer ;
    rdfs:label "Value table viewer"^^xsd:string ;
    rdfs:comment "A viewer that renders all values of a given property as a table, with one value per row, and the columns defined by the shape that is the sh:node or sh:class of the property."^^xsd:string .

ns3:abstract a rdf:Property ;
    rdfs:label "abstract"^^xsd:string ;
    rdfs:comment "Indicates that a class is \"abstract\" and cannot be used in asserted rdf:type triples. Only non-abstract subclasses of abstract classes should be instantiated directly."^^xsd:string ;
    rdfs:domain rdfs:Class ;
    rdfs:range xsd:boolean .

ns3:actionGroup a rdf:Property ;
    rdfs:label "action group"^^xsd:string ;
    rdfs:comment "Links an Action with the ActionGroup that it should be arranged in."^^xsd:string ;
    rdfs:domain ns3:Action ;
    rdfs:range ns3:ActionGroup .

ns3:actionIconClass a rdf:Property ;
    rdfs:label "action icon class"^^xsd:string ;
    rdfs:comment "The (CSS) class of an Action for display purposes alongside the label."^^xsd:string ;
    rdfs:domain ns3:Action ;
    rdfs:range xsd:string .

ns3:addedTriple a rdf:Property ;
    rdfs:label "added triple"^^xsd:string ;
    rdfs:comment "May link a dash:GraphUpdate with one or more triples (represented as instances of rdf:Statement) that should be added to fix the source of the result."^^xsd:string ;
    rdfs:domain ns3:GraphUpdate ;
    rdfs:range rdf:Statement .

ns3:all a rdfs:Resource ;
    rdfs:label "all"^^xsd:string ;
    rdfs:comment "Represents all users/roles, for example as a possible value of the default view for role property."^^xsd:string .

ns3:apiStatus a rdf:Property ;
    rdfs:label "API status"^^xsd:string ;
    rdfs:comment "Defines how and whether the associated feature is part of an external API. APIs may be implemented as (REST) web services, via GraphQL or ADS Script APIs."^^xsd:string ;
    rdfs:range ns3:APIStatus .

ns3:applicableToClass a rdf:Property ;
    rdfs:label "applicable to class"^^xsd:string ;
    rdfs:comment "Can be used to state that a shape is applicable to instances of a given class. This is a softer statement than \"target class\": a target means that all instances of the class must conform to the shape. Being applicable to simply means that the shape may apply to (some) instances of the class. This information can be used by algorithms or humans."^^xsd:string ;
    rdfs:domain sh:Shape ;
    rdfs:range rdfs:Class .

ns3:cachable a rdf:Property ;
    rdfs:label "cachable"^^xsd:string ;
    rdfs:comment "If set to true then the results of the SHACL function can be cached in between invocations with the same arguments. In other words, they are stateless and do not depend on triples in any graph, or the current time stamp etc."^^xsd:string ;
    rdfs:domain sh:Function ;
    rdfs:range xsd:boolean .

ns3:composite a rdf:Property ;
    rdfs:label "composite"^^xsd:string ;
    rdfs:comment "Can be used to indicate that a property/path represented by a property constraint represents a composite relationship. In a composite relationship, the life cycle of a \"child\" object (value of the property/path) depends on the \"parent\" object (focus node). If the parent gets deleted, then the child objects should be deleted, too. Tools may use dash:composite (if set to true) to implement cascading delete operations."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range xsd:boolean .

ns3:contextFree a rdf:Property ;
    rdfs:label "context-free"^^xsd:string ;
    rdfs:comment "Used to mark certain parameterizables as context-free, meaning that the outcome of a process does not depend on the currently active query graph."^^xsd:string ;
    rdfs:range xsd:boolean .

ns3:defaultLang a rdf:Property ;
    rdfs:label "default language"^^xsd:string ;
    rdfs:comment "Can be used to annotate a graph (usually the owl:Ontology) with the default language that tools should suggest for new literal values. For example, predominantly English graphs should have \"en\" as default language."^^xsd:string ;
    rdfs:domain owl:Ontology ;
    rdfs:range xsd:string .

ns3:defaultViewForRole a rdf:Property ;
    rdfs:label "default view for role"^^xsd:string ;
    rdfs:comment "Links a node shape with the roles for which it shall be used as default view. User interfaces can use these values to select how to present a given RDF resource. The values of this property are URIs representing a group of users or agents. There is a dedicated URI dash:all representing all users."^^xsd:string ;
    rdfs:domain sh:NodeShape .

ns3:deletedTriple a rdf:Property ;
    rdfs:label "deleted triple"^^xsd:string ;
    rdfs:comment "May link a dash:GraphUpdate result with one or more triples (represented as instances of rdf:Statement) that should be deleted to fix the source of the result."^^xsd:string ;
    rdfs:domain ns3:GraphUpdate ;
    rdfs:range rdf:Statement .

ns3:dependencyPredicate a rdf:Property ;
    rdfs:label "dependency predicate"^^xsd:string ;
    rdfs:comment "Can be used in dash:js node expressions to enumerate the predicates that the computation of the values may depend on. This can be used by clients to determine whether an edit requires re-computation of values on a form or elsewhere. For example, if the dash:js is something like \"focusNode.firstName + focusNode.lastName\" then the dependency predicates should be ex:firstName and ex:lastName."^^xsd:string ;
    rdfs:range rdf:Property .

ns3:detailsEndpoint a rdf:Property ;
    rdfs:label "details endpoint"^^xsd:string ;
    rdfs:comment """Can be used to link a SHACL property shape with the URL of a SPARQL endpoint that may contain further RDF triples for the value nodes delivered by the property. This can be used to inform a processor that it should switch to values from an external graph when the user wants to retrieve more information about a value.

This property should be regarded as an "annotation", i.e. it does not have any impact on validation or other built-in SHACL features. However, selected tools may want to use this information. One implementation strategy would be to periodically fetch the values specified by the sh:node or sh:class shape associated with the property, using the property shapes in that shape, and add the resulting triples into the main query graph.

An example value is "https://query.wikidata.org/sparql"."""^^xsd:string .

ns3:detailsGraph a rdf:Property ;
    rdfs:label "details graph"^^xsd:string ;
    rdfs:comment """Can be used to link a SHACL property shape with a SHACL node expression that produces the URIs of one or more graphs that contain further RDF triples for the value nodes delivered by the property. This can be used to inform a processor that it should switch to another data graph when the user wants to retrieve more information about a value.

The node expressions are evaluated with the focus node as input. (It is unclear whether there are also cases where the result may be different for each specific value, in which case the node expression would need a second input argument).

This property should be regarded as an "annotation", i.e. it does not have any impact on validation or other built-in SHACL features. However, selected tools may want to use this information."""^^xsd:string .

ns3:editor a rdf:Property ;
    rdfs:label "editor"^^xsd:string ;
    rdfs:comment "Can be used to link a property shape with an editor, to state a preferred editing widget in user interfaces."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range ns3:Editor .

ns3:expectedResult a rdf:Property ;
    rdfs:label "expected result"^^xsd:string ;
    rdfs:comment "The expected result(s) of a test case. The value range of this property is different for each kind of test cases."^^xsd:string ;
    rdfs:domain ns3:TestCase .

ns3:expectedResultIsJSON a rdf:Property ;
    rdfs:label "expected result is JSON"^^xsd:string ;
    rdfs:comment "A flag to indicate that the expected result represents a JSON string. If set to true, then tests would compare JSON structures (regardless of whitespaces) instead of actual syntax."^^xsd:string ;
    rdfs:range xsd:boolean .

ns3:expectedResultIsTTL a rdf:Property ;
    rdfs:label "expected result is Turtle"^^xsd:string ;
    rdfs:comment "A flag to indicate that the expected result represents an RDF graph encoded as a Turtle file. If set to true, then tests would compare graphs instead of actual syntax."^^xsd:string ;
    rdfs:domain ns3:TestCase ;
    rdfs:range xsd:boolean .

ns3:fixed a rdf:Property ;
    rdfs:label "fixed"^^xsd:string ;
    rdfs:comment "Can be used to mark that certain validation results have already been fixed."^^xsd:string ;
    rdfs:domain sh:ValidationResult ;
    rdfs:range xsd:boolean .

ns3:height a rdf:Property ;
    rdfs:label "height"^^xsd:string ;
    rdfs:comment "The height."^^xsd:string ;
    rdfs:range xsd:integer .

ns3:hidden a rdf:Property ;
    rdfs:label "hidden"^^xsd:string ;
    rdfs:comment "Properties marked as hidden do not appear in user interfaces, yet remain part of the shape for other purposes such as validation and scripting or GraphQL schema generation."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range xsd:boolean .

ns3:index a rdf:Property ;
    rdfs:label "index"^^xsd:string ;
    rdfs:range xsd:integer .

ns3:isDeactivated a sh:SPARQLFunction ;
    rdfs:label "is deactivated"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    rdfs:comment "Checks whether a given shape or constraint has been marked as \"deactivated\" using sh:deactivated."^^xsd:string ;
    sh:ask """ASK {
    ?constraintOrShape sh:deactivated true .
}"""^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:description "The sh:Constraint or sh:Shape to test."^^xsd:string ;
            sh:name "constraint or shape"^^xsd:string ;
            sh:path ns3:constraintOrShape ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:boolean .

ns3:isNodeKindBlankNode a sh:SPARQLFunction ;
    rdfs:label "is NodeKind BlankNode"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    ns3:cachable true ;
    ns3:contextFree true ;
    rdfs:comment "Checks if a given sh:NodeKind is one that includes BlankNodes."^^xsd:string ;
    sh:ask """ASK {
	FILTER ($nodeKind IN ( sh:BlankNode, sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral ))
}"""^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:class sh:NodeKind ;
            sh:description "The sh:NodeKind to check."^^xsd:string ;
            sh:name "node kind"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path ns3:nodeKind ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:boolean .

ns3:isNodeKindIRI a sh:SPARQLFunction ;
    rdfs:label "is NodeKind IRI"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    ns3:cachable true ;
    ns3:contextFree true ;
    rdfs:comment "Checks if a given sh:NodeKind is one that includes IRIs."^^xsd:string ;
    sh:ask """ASK {
	FILTER ($nodeKind IN ( sh:IRI, sh:BlankNodeOrIRI, sh:IRIOrLiteral ))
}"""^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:class sh:NodeKind ;
            sh:description "The sh:NodeKind to check."^^xsd:string ;
            sh:name "node kind"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path ns3:nodeKind ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:boolean .

ns3:isNodeKindLiteral a sh:SPARQLFunction ;
    rdfs:label "is NodeKind Literal"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    ns3:cachable true ;
    ns3:contextFree true ;
    rdfs:comment "Checks if a given sh:NodeKind is one that includes Literals."^^xsd:string ;
    sh:ask """ASK {
	FILTER ($nodeKind IN ( sh:Literal, sh:BlankNodeOrLiteral, sh:IRIOrLiteral ))
}"""^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:class sh:NodeKind ;
            sh:description "The sh:NodeKind to check."^^xsd:string ;
            sh:name "node kind"^^xsd:string ;
            sh:nodeKind sh:IRI ;
            sh:path ns3:nodeKind ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:boolean .

ns3:isSubClassOf a sh:SPARQLFunction ;
    rdfs:label "is subclass of"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    rdfs:comment "Returns true if a given class (first argument) is a subclass of a given other class (second argument), or identical to that class. This is equivalent to an rdfs:subClassOf* check."^^xsd:string ;
    sh:ask """ASK {
    $subclass rdfs:subClassOf* $superclass .
}"""^^xsd:string ;
    sh:parameter ns3:isSubClassOf-subclass,
        ns3:isSubClassOf-superclass ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:boolean .

ns3:js a rdf:Property ;
    rdfs:label "JavaScript source code"^^xsd:string ;
    rdfs:comment "The JavaScript source code of a Script."^^xsd:string ;
    rdfs:domain ns3:Script ;
    rdfs:range xsd:string .

ns3:localConstraint a rdf:Property ;
    rdfs:label "local constraint"^^xsd:string ;
    rdfs:comment """Can be set to true for those constraint components where the validation does not require to visit any other triples than the shape definitions and the direct property values of the focus node mentioned in the property constraints. Examples of this include sh:minCount and sh:hasValue.

Constraint components that are marked as such can be optimized by engines, e.g. they can be evaluated client-side at form submission time, without having to make a round-trip to a server, assuming the client has downloaded a complete snapshot of the resource.

Any component marked with dash:staticConstraint is also a dash:localConstraint."""^^xsd:string ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:range xsd:boolean .

ns3:mimeTypes a rdf:Property ;
    rdfs:label "mime types"^^xsd:string ;
    rdfs:comment """For file-typed properties, this can be used to specify the expected/allowed mime types of its values. This can be used, for example, to limit file input boxes or file selectors. If multiple values are allowed then they need to be separated by commas.

Example values are listed at https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types"""^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range xsd:string .

ns3:neverMaterialize a rdf:Property ;
    rdfs:label "never materialize"^^xsd:string ;
    rdfs:comment "If set to true at a property shape then any sh:values and sh:defaultValue rules of this property will be ignored when 'all inferences' are computed. This is useful for property values that shall only be computed for individual focus nodes (e.g. when a user visits a resource) but not for large inference runs."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range xsd:boolean .

ns3:onAllValues a rdf:Property ;
    rdfs:label "on all values"^^xsd:string ;
    rdfs:comment "If set to true for a ScriptConstraint or ScriptValidator, then the associated script will receive all value nodes at once, as a value of the variable values. By default (or false), the script is called for each value node individually."^^xsd:string ;
    rdfs:range xsd:boolean .

ns3:propertySuggestionGenerator a rdf:Property ;
    rdfs:label "property suggestion generator"^^xsd:string ;
    rdfs:comment "Links the constraint component with instances of dash:SuggestionGenerator that may be used to produce suggestions for a given validation result that was produced by a property constraint."^^xsd:string ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:range ns3:SuggestionGenerator .

ns3:readOnly a rdf:Property ;
    rdfs:label "read only"^^xsd:string ;
    rdfs:comment "Used as a hint for user interfaces that values of the associated property should not be editable. The values of this may be the boolean literals true or false or, more generally, a SHACL node expression that must evaluate to true or false."^^xsd:string ;
    rdfs:domain sh:PropertyShape .

ns3:resourceAction a rdf:Property ;
    rdfs:label "resource action"^^xsd:string ;
    rdfs:comment "Links a class with the Resource Actions that can be applied to instances of that class."^^xsd:string ;
    rdfs:domain rdfs:Class ;
    rdfs:range ns3:ResourceAction .

ns3:shape a rdf:Property ;
    rdfs:label "shape"^^xsd:string ;
    rdfs:comment "States that a subject resource has a given shape. This property can, for example, be used to capture results of SHACL validation on static data."^^xsd:string ;
    rdfs:range sh:Shape .

ns3:shapeScript a rdf:Property ;
    rdfs:label "shape script"^^xsd:string ;
    rdfs:domain sh:NodeShape .

ns3:staticConstraint a rdf:Property ;
    rdfs:label "static constraint"^^xsd:string ;
    rdfs:comment """Can be set to true for those constraint components where the validation does not require to visit any other triples than the parameters. Examples of this include sh:datatype or sh:nodeKind, where no further triples need to be queried to determine the result.

Constraint components that are marked as such can be optimized by engines, e.g. they can be evaluated client-side at form submission time, without having to make a round-trip to a server."""^^xsd:string ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:range xsd:boolean .

ns3:suggestion a rdf:Property ;
    rdfs:label "suggestion"^^xsd:string ;
    rdfs:comment "Can be used to link a result with one or more suggestions on how to address or improve the underlying issue."^^xsd:string ;
    rdfs:domain sh:AbstractResult ;
    rdfs:range ns3:Suggestion .

ns3:suggestionConfidence a rdf:Property ;
    rdfs:label "suggestion confidence"^^xsd:string ;
    rdfs:comment "An optional confidence between 0% and 100%. Suggestions with 100% confidence are strongly recommended. Can be used to sort recommended updates."^^xsd:string ;
    rdfs:domain ns3:Suggestion ;
    rdfs:range xsd:decimal .

ns3:suggestionGenerator a rdf:Property ;
    rdfs:label "suggestion generator"^^xsd:string ;
    rdfs:comment "Links a sh:SPARQLConstraint or sh:JSConstraint with instances of dash:SuggestionGenerator that may be used to produce suggestions for a given validation result that was produced by the constraint."^^xsd:string ;
    rdfs:range ns3:SuggestionGenerator .

ns3:suggestionGroup a rdf:Property ;
    rdfs:label "suggestion"^^xsd:string ;
    rdfs:comment "Can be used to link a suggestion with the group identifier to which it belongs. By default this is a link to the dash:SuggestionGenerator, but in principle this could be any value."^^xsd:string ;
    rdfs:domain ns3:Suggestion .

ns3:toString a sh:SPARQLFunction ;
    rdfs:label "to string"^^xsd:string ;
    ns3:cachable true ;
    rdfs:comment "Returns a literal with datatype xsd:string that has the input value as its string. If the input value is an (URI) resource then its URI will be used."^^xsd:string ;
    sh:labelTemplate "Convert {$arg} to xsd:string"^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:description "The input value."^^xsd:string ;
            sh:name "arg"^^xsd:string ;
            sh:nodeKind sh:IRIOrLiteral ;
            sh:path ns3:arg ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:string ;
    sh:select """SELECT (xsd:string($arg) AS ?result)
WHERE {
}"""^^xsd:string .

ns3:uriTemplate a sh:SPARQLFunction ;
    rdfs:label "URI template"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    ns3:cachable true ;
    ns3:contextFree true ;
    rdfs:comment """Inserts a given value into a given URI template, producing a new xsd:anyURI literal.

In the future this should support RFC 6570 but for now it is limited to simple {...} patterns."""^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:datatype xsd:string ;
            sh:description "The URI template, e.g. \"http://example.org/{symbol}\"."^^xsd:string ;
            sh:name "template"^^xsd:string ;
            sh:order 0 ;
            sh:path ns3:template ],
        [ a sh:Parameter ;
            sh:description "The literal value to insert into the template. Will use the URI-encoded string of the lexical form (for now)."^^xsd:string ;
            sh:name "value"^^xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:order 1 ;
            sh:path ns3:value ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:anyURI ;
    sh:select """SELECT ?result
WHERE {
    	BIND (xsd:anyURI(REPLACE(?template, "\\\\{[a-zA-Z]+\\\\}", $value)) AS ?result)
}"""^^xsd:string .

ns3:validateShapes a rdf:Property ;
    rdfs:label "validate shapes"^^xsd:string ;
    rdfs:comment "True to also validate the shapes itself (i.e. parameter declarations)."^^xsd:string ;
    rdfs:domain ns3:GraphValidationTestCase ;
    rdfs:range xsd:boolean .

ns3:valueCount a sh:SPARQLFunction ;
    rdfs:label "value count"^^xsd:string ;
    ns3:apiStatus ns3:Stable ;
    rdfs:comment "Computes the number of objects for a given subject/predicate combination."^^xsd:string ;
    sh:parameter [ a sh:Parameter ;
            sh:class rdfs:Resource ;
            sh:description "The predicate to get the number of objects of."^^xsd:string ;
            sh:name "predicate"^^xsd:string ;
            sh:order 1 ;
            sh:path ns3:predicate ],
        [ a sh:Parameter ;
            sh:class rdfs:Resource ;
            sh:description "The subject to get the number of objects of."^^xsd:string ;
            sh:name "subject"^^xsd:string ;
            sh:order 0 ;
            sh:path ns3:subject ] ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:returnType xsd:integer ;
    sh:select """
		SELECT (COUNT(?object) AS ?result)
		WHERE {
    		$subject $predicate ?object .
		}
"""^^xsd:string .

ns3:viewer a rdf:Property ;
    rdfs:label "viewer"^^xsd:string ;
    rdfs:comment "Can be used to link a property shape with a viewer, to state a preferred viewing widget in user interfaces."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range ns3:Viewer .

ns3:width a rdf:Property ;
    rdfs:label "width"^^xsd:string ;
    rdfs:comment "The width."^^xsd:string ;
    rdfs:range xsd:integer .

ns3:x a rdf:Property ;
    rdfs:label "x"^^xsd:string ;
    rdfs:comment "The x position."^^xsd:string ;
    rdfs:range xsd:integer .

ns3:y a rdf:Property ;
    rdfs:label "y"^^xsd:string ;
    rdfs:comment "The y position."^^xsd:string ;
    rdfs:range xsd:integer .

dcterms:creator a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "creator"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

dcterms:replaces a owl:AnnotationProperty ;
    rdfs:label "replaces"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range rdfs:Resource .

qudt:ALPHANUMERIC a qudt:CharacterType ;
    rdfs:label "ALPHANUMERIC"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:id "T001-00"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns1:code 106 ;
    ns1:literal "alphanumeric"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:AllValuesMustHaveSameDataTypeShape a sh:NodeShape ;
    rdfs:label "All Values must have same DataType Shape"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:severity sh:Violation ;
    sh:sparql [ sh:message "Data Item {$this} has type {?valueType}."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
        SELECT $this ?valueType
        WHERE {
              $this qudt:datatype/qudt:rdfsDatatype ?datatype .
              $this qudt:value ?valueList.
              ?valueList rdf:rest*/rdf:first ?value .
              BIND(datatype(?value) as ?valueType) .
              FILTER(?valueType != ?datatype)
        }
        """^^xsd:string ] ;
    sh:targetClass qudt:HomogeneousArray .

qudt:Array2DvalueList a rdfs:Resource ;
    rdfs:label "2D Array Value List"^^xsd:string ;
    dcterms:description """
  An rdf:List for a 2D array.
  For example "[[1,2], [3,4], [5,6]]"
  """^^xsd:string ;
    rdf:first [ sh:datatype qudt:List ] ;
    rdf:rest ( [ sh:datatype qudt:List ] ) ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf rdf:List .

qudt:AuralCueEnumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:AuralCue ;
    sh:path qudt:defaultValue .

qudt:BOOLEAN a qudt:BooleanType ;
    rdfs:label "BOOLEAN"^^xsd:string ;
    dcterms:description """
  <p>In computer science, the Boolean or logical data type is a data type,
   having two values (usually denoted true and false), intended to represent the truth values of logic and Boolean algebra. 
  The Boolean data type is the primary result of conditional statements,
   which allow different actions and change control flow depending on whether a programmer-specified boolean condition evaluates to true or false.
  </p>
  """^^rdf:HTML ;
    qudt:ansiSQLName "BOOLEAN"^^xsd:string ;
    qudt:encoding qudt:BooleanEncoding ;
    qudt:id "T000-01"^^xsd:string ;
    qudt:javaName "boolean"^^xsd:string ;
    qudt:jsName "Boolean()"^^xsd:string ;
    qudt:microsoftSQLServerName "bit"^^xsd:string ;
    qudt:mySQLName "BOOL"^^xsd:string,
        "BOOLEAN"^^xsd:string,
        "TINYINT(1)"^^xsd:string ;
    qudt:odbcName "SQL_BIT"^^xsd:string ;
    qudt:oleDBName "DBTYPE_BOOL"^^xsd:string ;
    qudt:oracleSQLName "RAW(1)"^^xsd:string ;
    qudt:protocolBuffersName "bool"^^xsd:string ;
    qudt:pythonName "bool"^^xsd:string ;
    qudt:rdfsDatatype xsd:boolean ;
    ns1:code 1 ;
    ns1:literal "boolean"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/Boolean%5Fdata%5Ftype>,
        <http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx>,
        "http://en.wikipedia.org/wiki/Boolean%5Fdata%5Ftype"^^xsd:anyURI,
        "http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx"^^xsd:anyURI .

qudt:BYTE a qudt:SignedShortIntegerType ;
    rdfs:label "Byte"^^xsd:string ;
    dcterms:description """
  <p>The byte data type is an 8-bit signed two's complement integer. 
  It has a minimum value of -128 and a maximum value of 127 (inclusive). 
  The byte data type can be useful for saving memory in large arrays, where the memory savings actually matters. 
  They can also be used in place of int where their limits help to clarify your code; the fact that a variable's range is limited can serve as a form of documentation.
  </p>
  """^^rdf:HTML ;
    qudt:abbreviation "SI8"^^xsd:string ;
    qudt:bytes 1 ;
    qudt:cName "Byte"^^xsd:string ;
    qudt:encoding qudt:OctetEncoding ;
    qudt:id "T002-01"^^xsd:string ;
    qudt:maxInclusive 127 ;
    qudt:minInclusive -128 ;
    qudt:rdfsDatatype xsd:byte ;
    qudt:signedness qudt:Signed ;
    ns1:code "800"^^xsd:string ;
    ns1:literal "byte"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html>,
        "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI .

qudt:CDF a qudt:MultiDimensionalDataFormat ;
    rdfs:label "Common Data Format (CDF)"^^xsd:string ;
    dcterms:description "CDF (Common Data format), a data format for storing and manipulating scalar and multidimensional data in a platform and discipline independent manner, making interoperability between applications and tools easier. CDF provides device independent view of the CDF data model by software programming interface insulting developers from actual physical file format. CDF was developed by NASA, and is described at http://cdf.gsfc.nasa.gov/."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CFN_ConcatenateMatrixRows a qudt:CompositionFunction ;
    rdfs:label "Concatenate Matrix Rows"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:COLOR_AMBER a qudt:ColorCue ;
    rdfs:label "Amber Color"^^xsd:string ;
    qudt:rgbCode "#FFBF00"^^xsd:string ;
    ns1:literal "amber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:COLOR_GREEN a qudt:ColorCue ;
    rdfs:label "Green color"^^xsd:string ;
    qudt:rgbCode "#008000"^^xsd:string ;
    ns1:literal "green"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:COLOR_ORANGE a qudt:ColorCue ;
    rdfs:label "Orange color"^^xsd:string ;
    qudt:rgbCode "#FFA500"^^xsd:string ;
    ns1:literal "orange"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:COLOR_RED a qudt:ColorCue ;
    rdfs:label "Red color"^^xsd:string ;
    qudt:rgbCode "#FF0000"^^xsd:string ;
    ns1:literal "red"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:COLOR_YELLOW a qudt:ColorCue ;
    rdfs:label "Yellow color"^^xsd:string ;
    qudt:rgbCode "#FFFF00"^^xsd:string ;
    ns1:literal "yellow"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CRC32 a rdfs:Datatype ;
    rdfs:label "CRC-32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf xsd:integer .

qudt:Collection-memberQuantity a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Quantity ;
    sh:maxCount 1 ;
    sh:path qudt:quantify .

qudt:Collection-memberUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Unit ;
    sh:maxCount 1 ;
    sh:path qudt:hasUnit .

qudt:CompositeDatatype-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:QuantityKind ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasQuantityKind .

qudt:ConsistentDimensionVectorConstraint a sh:NodeShape ;
    rdfs:label "Consistent Dimension Vector Constraint"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/collection/usertest> ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Checks for consistent dimension vectors for a QuantityKind and the Unit"^^xsd:string ;
            sh:message "s223: Inconsistent dimensionalities for a Quantity's Unit and Quantity Kind"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
SELECT $this
   WHERE 
{
      $this qudt:hasQuantityKind/qudt:hasDimensionVector ?qkdv1 .
      $this qudt:hasUnit/qudt:hasDimensionVector ?qkdv2 .
FILTER (?qkdv1 != ?qkdv2) .
}
"""^^xsd:string ] ;
    sh:targetClass qudt:Quantity .

qudt:Coordinates-2D-SinglePrecision-float_X a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:float_X .

qudt:Coordinates-2D-SinglePrecision-float_Y a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:float_Y .

qudt:DATE a qudt:DateStringType ;
    rdfs:label "Date"^^xsd:string ;
    dcterms:description """
  <p>Provides the date expressed in year, month and day.
  Expressed as "YYYY:MM:DD", where YYYY is a 4 digit year, MM is a 2 digit month and DD is a 2 digit day.
  </p>
  """^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:id "T004-01"^^xsd:string ;
    qudt:rdfsDatatype xsd:date ;
    ns1:code 255 ;
    ns1:literal "date"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:DECIMAL a qudt:NumericType ;
    rdfs:label "Decimal"^^xsd:string ;
    qudt:ansiSQLName "DECIMAL(p,s)"^^xsd:string ;
    qudt:odbcName "SQL_DECIMAL(p,s)"^^xsd:string ;
    qudt:oracleSQLName "NUMBER(p,s)"^^xsd:string ;
    qudt:rdfsDatatype xsd:decimal ;
    ns1:code 101 ;
    ns1:literal "numeric"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:DIGIT a qudt:CharacterType ;
    rdfs:label "DIGIT"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:id "T001-02"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns1:literal "digit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Datatype-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:deactivated true ;
    sh:maxCount 1 ;
    sh:path ns2:description .

qudt:DateTypeUnion a rdf:List ;
    rdfs:label "Date Type Union"^^xsd:string ;
    dcterms:description """
  An rdf:List that can be used in property constraints as the type in an sh:or to indicate
   that all values of a property must be an xsd date type.
  """^^xsd:string ;
    rdf:first [ sh:datatype xsd:date ] ;
    rdf:rest ( [ sh:datatype xsd:dateTime ] [ sh:datatype xsd:gYear ] [ sh:datatype xsd:gMonth ] ) ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:DontReferToDeprecatedConceptConstraint a sh:NodeShape ;
    rdfs:label "Warning about use of a deprecated QUDT resource"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/collection/usertest> ;
    sh:severity sh:Warning ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Warns if a deprecated QUDT resource is used"^^xsd:string ;
            sh:message "Resource '{?s}' refers to deprecated resource '{$this}', which will be removed in the next major version of QUDT. {?replacementMessage}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
    SELECT ?s $this ?replacementMessage
    WHERE {
        $this qudt:deprecated true .
        ?s ?p $this .
        OPTIONAL {
            $this dcterms:isReplacedBy ?replacement .
        }
        BIND(IF(
                BOUND(?replacement),
                CONCAT("Please refer to ", STR(?replacement), " instead."),
                "Please do not refer to this resource any longer - it will be removed without replacement.")
            AS ?replacementMessage)
    }
    """^^xsd:string ] ;
    sh:targetClass qudt:Concept .

qudt:DontUseDeprecatedPropertyConstraint a sh:NodeShape ;
    rdfs:label "Warning about use of a deprecated QUDT property"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/collection/usertest> ;
    sh:severity sh:Warning ;
    sh:sparql [ a sh:SPARQLConstraint ;
            rdfs:comment "Warns if a deprecated QUDT property is used"^^xsd:string ;
            sh:message "Resource '{?s}' uses the deprecated property '{$this}', which will be removed in the next major version of QUDT.{?replacementMessage}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
    SELECT ?s $this ?replacementMessage
        WHERE {
        $this qudt:deprecated true .
        ?s $this ?o .
        OPTIONAL {
            $this dcterms:isReplacedBy ?replacement .
        }
        BIND(IF(
            BOUND(?replacement),
            CONCAT(" Please use ", STR(?replacement), " instead."),
            " Please do not use this property any longer - it will be removed without replacement.")
        AS ?replacementMessage)
    }"""^^xsd:string ] ;
    sh:targetClass rdf:Property .

qudt:ECS_EC-EMEPM a qudt:EarthCoordinateSystem ;
    rdfs:label "Earth centered earth mean equator and prime meridian coordinate system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-03"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_EMEPM ;
    ns1:code 10 ;
    ns1:literal "EC-EMEP"^^xsd:string ;
    ns2:acronym "EC-EMEP"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth Centered Earth Mean Equator And Prime Meridian Coordinate System"^^xsd:string .

qudt:ECS_EC-ETEPME a qudt:EarthCoordinateSystem ;
    rdfs:label "Earth centered earth true equator and prime meridian of epoch coordinate system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-04"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_ETEPME ;
    ns1:code 12 ;
    ns1:literal "EC-ETEP"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth Centered Earth True Equator And Prime Meridian Of Epoch Coordinate System"^^xsd:string .

qudt:ECS_EC-ICRF a qudt:EarthCoordinateSystem ;
    rdfs:label "Earth centered international celestial reference system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-01"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_ICRF ;
    ns1:code 14 ;
    ns1:literal "EC-IC"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth Centered International Celestial Reference System"^^xsd:string .

qudt:ECS_EC-ITRF a qudt:EarthCoordinateSystem ;
    rdfs:label "Earth centered international terrestrial reference system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-02"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_ITRF ;
    ns1:code 16 ;
    ns1:literal "EC-IT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth Centered International Terrestrial Reference System"^^xsd:string .

qudt:ECS_SC-ICRF a qudt:EarthCoordinateSystem ;
    rdfs:label "Sun-Centered international celestial reference system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-05"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_ICRF ;
    ns1:code 90 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Sun Centered International Celestial Reference System"^^xsd:string .

qudt:ECS_VC-ICRF a qudt:EarthCoordinateSystem ;
    rdfs:label "Vehicle centered international celestial reference system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TECS-06"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_ICRF ;
    ns1:code 100 ;
    ns1:literal "VC-IC"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Vehicle Centered International Celestial Reference System"^^xsd:string .

qudt:FALSE a qudt:BooleanTypeEnumeratedValue ;
    rdfs:label "False"^^xsd:string ;
    ns1:literal "false"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:FLAG a qudt:BooleanType ;
    rdfs:label "FLAG"^^xsd:string ;
    qudt:id "T000-02"^^xsd:string ;
    qudt:rdfsDatatype xsd:boolean ;
    ns1:code 2 ;
    ns1:literal "flag"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:FLOAT-SP a qudt:RealSinglePrecisionType ;
    rdfs:label "Single Precision Real"^^xsd:string ;
    dcterms:description """
  <p>
  A single precision real is a 32 bit signed floating point representation. 
  Numbers of type single are stored using 32 bits, they require less memory than numbers of type double, which use 64 bits. 
  However, because they are stored with fewer bits, numbers of type single are represented to less precision than numbers of type double.
  </p>
  """^^rdf:HTML ;
    qudt:ansiSQLName "FLOAT"^^xsd:string ;
    qudt:bits 32 ;
    qudt:bytes 4 ;
    qudt:cName "float"^^xsd:string ;
    qudt:encoding qudt:SinglePrecisionRealEncoding ;
    qudt:id "T006-01"^^xsd:string ;
    qudt:javaName "float"^^xsd:string ;
    qudt:jsName "float"^^xsd:string ;
    qudt:matlabName "single"^^xsd:string ;
    qudt:maxExclusive "$(2-2^{-23}) \\times 2^127$"^^xsd:string ;
    qudt:maxExponent 23 ;
    qudt:microsoftSQLServerName "real"^^xsd:string ;
    qudt:minExclusive "-(2-2^{-23}) \\times 2^{127}"^^xsd:string ;
    qudt:mySQLName "FLOAT"^^xsd:string ;
    qudt:odbcName "SQL_FLOAT"^^xsd:string ;
    qudt:oleDBName "DBTYPE_R4"^^xsd:string ;
    qudt:oracleSQLName "FLOAT(23)"^^xsd:string ;
    qudt:rdfsDatatype xsd:float ;
    ns1:literal "single"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/floating-point-types.html>,
        <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html>,
        <http://en.wikipedia.org/wiki/Floating_point>,
        <http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx>,
        <http://www-01.ibm.com/support/docview.wss?uid=swg21325957>,
        <http://www.mathworks.com/help/matlab/matlab_prog/floating-point-numbers.html>,
        <http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10764/apb.htm> .

qudt:FieldType-optional a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:optional .

qudt:GlobalPositionVector-DP a qudt:StateSpaceVector ;
    rdfs:label "Global Position Vector - double precision"^^xsd:string ;
    qudt:datatype qudt:FLOAT-DP ;
    qudt:dimensionality 1 ;
    qudt:dimensions ( 3 ) ;
    ns1:code 360 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:HDF5 a qudt:MultiDimensionalDataFormat ;
    rdfs:label "HDF5"^^xsd:string ;
    dcterms:description """
  <p>The Hierarchical Data Format (HDF) is a common data format and a collection of application programming libraries developed at the NSCA primarily for the scientific community and for the exchange of scientific datasets. 
  A commonly-used version of HDF is HDF5 which offers a simple data model and application interfaces for encoding and exchanging data without the added burden of defining mappings to the underlying machine representations.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:HDF6 a qudt:MultiDimensionalDataFormat ;
    rdfs:label "HDF6"^^xsd:string ;
    dcterms:description "A \"Hierarchical Data Format\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:HEXBINARY a qudt:HexBinaryType ;
    rdfs:label "HEXBINARY"^^xsd:string ;
    qudt:dimensionality 1 ;
    qudt:rdfsDatatype qudt:hexbinary ;
    ns1:code 803 ;
    ns1:literal "hexbinary"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:HighToLow a qudt:MemoryOrderType ;
    rdfs:label "High to Low"^^xsd:string ;
    ns1:literal "high_to_low"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:IEEE754_1985RealEncoding a qudt:FloatingPointEncodingType ;
    rdfs:label "IEEE 754 1985 Real Encoding"^^xsd:string ;
    qudt:bytes 32 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:INTEGER a qudt:SignedIntegerType ;
    rdfs:label "Integer"^^xsd:string ;
    dcterms:description """
  <p>An <em>Integer</em> is an XML Schema Definition (XSD) datatype that represents arbitrary-precision whole numbers
   (positive, negative, or zero) without fractional or decimal components. 
  It is derived from xsd:decimal by restricting values to integers only..
  """^^rdf:HTML ;
    qudt:abbreviation "SI"^^xsd:string ;
    qudt:ansiSQLName "INT"^^xsd:string ;
    qudt:bits 16 ;
    qudt:bytes 2 ;
    qudt:encoding qudt:ShortSignedIntegerEncoding ;
    qudt:id "T002-03"^^xsd:string ;
    qudt:javaName "integer"^^xsd:string ;
    qudt:jsName "integer"^^xsd:string ;
    qudt:matlabName "int"^^xsd:string ;
    qudt:microsoftSQLServerName "int"^^xsd:string ;
    qudt:mySQLName "INT"^^xsd:string ;
    qudt:rdfsDatatype xsd:integer ;
    ns1:code 104 ;
    ns1:literal "SI"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ISO8601-UTCDateTime-BasicFormat a qudt:DateTimeStringEncodingType ;
    rdfs:label "ISO 8601 UTC Date Time - Basic Format"^^xsd:string ;
    qudt:allowedPattern "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}.[0-9]+Z"^^xsd:string,
        "[0-9]{4}[0-9]{2}[0-9]{2}T[0-9]{2}[0-9]{2}[0-9]{2}Z"^^xsd:string ;
    rdfs:isDefinedBy <file:///Users/ralphtq/git-qudt/qudt-public-repo/qudt>,
        <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:IconicCueEnumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:IconicCue ;
    sh:path qudt:defaultValue .

qudt:InterpolatedTABLE a qudt:InterpolatedTable ;
    rdfs:label "Interpolated table"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:KinestheticCueEnumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:KinestheticCue ;
    sh:path qudt:defaultValue .

qudt:Konopliv2001 a qudt:Citation ;
    rdfs:label "Konopliv2001"^^xsd:string ;
    dcterms:description """
  <p>"Recent Gravity Models as a Result of the Lunar Prospector Mission", A. S. Konopliv, S. W. Asmar, E. Carranza, W. L. Sjogren,
   and D. N. Yuan, Academic Press, Icarus 150, 1-18 (2001).
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:LCS_LC-LMEBF a qudt:LunarCoordinateSystem ;
    rdfs:label "Lunar mean earth body fixed Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_MoonCentered ;
    qudt:id "TLCS-01"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_LMEBF ;
    ns1:code 40 ;
    ns1:literal "LMEBF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Lunar Mean Earth Body Fixed Coordinate System"^^xsd:string .

qudt:LCS_LC-LPABF a qudt:LunarCoordinateSystem ;
    rdfs:label "Lunar principal axis body fixed Coordinate System"^^xsd:string ;
    dcterms:description "Lunar body-fixed coordinate frame aligned with the principal axes of the Moon."^^rdf:HTML ;
    qudt:coordinateCenter qudt:CCT_MoonCentered ;
    qudt:id "TLCS-02"^^xsd:string ;
    qudt:realization "This is a fixed rotation from LMEBF"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_LPABF ;
    ns1:code 42 ;
    ns1:literal "LPABF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Lunar Principal Axis Body Fixed Coordinate System"^^xsd:string .

qudt:LCS_LC-LPAE a qudt:LunarCoordinateSystem ;
    rdfs:label "Lunar Principal Axis of Epoch Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_MoonCentered ;
    qudt:id "TLCS-03"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_LPAE ;
    ns1:code 42 ;
    ns1:literal "LPABF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:LETTER a qudt:CharacterType ;
    rdfs:label "LETTER"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:id "T001-03"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns1:literal "letter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:LowToHigh a qudt:MemoryOrderType ;
    rdfs:label "Low to High"^^xsd:string ;
    ns1:literal "low_to_high"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:MCS_MC-MMEIAUE a qudt:MarsCoordinateSystem ;
    rdfs:label "Mars mean equator and IAU-Node of epoch Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_MarsCentered ;
    qudt:id "TMCS-01"^^xsd:string ;
    qudt:referenceFrame qudt:NRIF_MMEIAUE ;
    ns1:code 50 ;
    ns1:literal "MMEIAUE"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Mars Mean Equator And IAU-Node Of Epoch Coordinate System"^^xsd:string .

qudt:MCS_MC-MMEPMBF a qudt:MarsCoordinateSystem ;
    rdfs:label "Mars mean equator and prime meridian body-fixed Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_MarsCentered ;
    qudt:id "TMCS-02"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_MMEPMBF ;
    ns1:code 52 ;
    ns1:literal "MMEPMBF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Mars Mean Equator And Prime Meridian Body-Fixed Coordinate System"^^xsd:string .

qudt:MassPropertiesArray a rdf:Class,
        sh:NodeShape ;
    rdfs:label "Mass Properties Array"^^xsd:string ;
    dcterms:description """
  <p>A <em>Mass Properties Array</em> holds, for an object, four values for the properties:
   Center of Gravity, Mass, Moment of Inertia, and Product of Inertia. </p>
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf qudt:HeterogenousArray ;
    sh:property qudt:QuantityKindsPropertyShape .

qudt:MatrixElementOrder-byRow a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:byRow .

qudt:MatrixElementOrder-dataOrder a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:MatrixElementOrder ;
    sh:maxCount 1 ;
    sh:path qudt:dataOrder .

qudt:NO a qudt:YesNoType ;
    rdfs:label "No"^^xsd:string ;
    ns1:literal "N"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NUMERIC a qudt:NumericType ;
    rdfs:label "Numeric"^^xsd:string ;
    qudt:ansiSQLName "DECIMAL(p,s)"^^xsd:string ;
    qudt:odbcName "SQL_DECIMAL(p,s)"^^xsd:string ;
    qudt:oracleSQLName "NUMBER(p,s)"^^xsd:string ;
    ns1:code 101 ;
    ns1:literal "numeric"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NetCDF a qudt:MultiDimensionalDataFormat ;
    rdfs:label "NetCDF"^^xsd:string ;
    dcterms:description """
  <p><em>NetCDF</em> (network Common Data Form) is a set of interfaces for array-oriented data access and a freely-distributed collection of data access libraries for C, Fortran, C++, Java, and other languages. 
  The netCDF libraries support a machine-independent format for representing scientific data. 
  Together, the interfaces, libraries, and format support the creation, access, and sharing of scientific data.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NonModifiableParameter a qudt:ParameterModifiabilityType ;
    rdfs:label "Non modifiable parameter"^^xsd:string ;
    ns1:code "0"^^xsd:string ;
    ns1:literal "fixed"^^xsd:string ;
    rdfs:comment "Parameter is fixed, not modifiable."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:NonNegativeIntegerUnionList a rdf:List ;
    rdfs:label "Non-negative union list"^^xsd:string ;
    rdf:first [ sh:datatype xsd:nonNegativeInteger ] ;
    rdf:rest ( [ sh:datatype xsd:positiveInteger ] ) ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:OCTET a qudt:OctetType ;
    rdfs:label "Octet"^^xsd:string ;
    qudt:abbreviation "octet"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:cName "Byte"^^xsd:string ;
    qudt:encoding qudt:OctetEncoding ;
    qudt:id "T002-01"^^xsd:string ;
    qudt:maxInclusive 255 ;
    qudt:minInclusive 0 ;
    qudt:rdfsDatatype xsd:byte ;
    qudt:signedness qudt:Unsigned ;
    ns1:code "800"^^xsd:string ;
    ns1:literal "octet"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:OFF a qudt:OnOffStateType ;
    rdfs:label "Off"^^xsd:string ;
    ns1:code "0"^^xsd:string ;
    ns1:literal "off"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:OFFstate a qudt:OnOffState ;
    rdfs:label "Off"^^xsd:string ;
    ns1:code "0"^^xsd:string ;
    ns1:literal "off"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ON a qudt:OnOffStateType ;
    rdfs:label "On"^^xsd:string ;
    ns1:code "1"^^xsd:string ;
    ns1:literal "on"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:ONstate a qudt:OnOffState ;
    rdfs:label "On"^^xsd:string ;
    ns1:code "0"^^xsd:string ;
    ns1:literal "on"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:OneMeansOff a qudt:OnOffStateType ;
    rdfs:label "One means off"^^xsd:string ;
    qudt:inverted true ;
    ns1:literal "off"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:POSITIVE-BIG-INTEGER a qudt:PositiveBigIntegerType ;
    rdfs:label "Positive Big Integer"^^xsd:string ;
    qudt:abbreviation "PI64"^^xsd:string ;
    qudt:bits 64 ;
    qudt:bytes 8 ;
    qudt:maxInclusive "2^{64}-1"^^xsd:string ;
    qudt:minInclusive "1"^^xsd:string ;
    qudt:mySQLName "BIGINT"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedLong ;
    qudt:signedness qudt:Unsigned ;
    ns1:literal "PI64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:POSITIVE-LONG-INTEGER a qudt:PositiveIntegerType ;
    rdfs:label "Unsigned Long Integer"^^xsd:string ;
    qudt:abbreviation "UI32"^^xsd:string ;
    qudt:bits 32 ;
    qudt:bytes 4 ;
    qudt:encoding qudt:UnsignedIntegerEncoding ;
    qudt:maxInclusive "2^{32}-1"^^xsd:string ;
    qudt:minInclusive "1"^^xsd:string ;
    qudt:mySQLName "INT"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedInt ;
    qudt:signedness qudt:Unsigned ;
    ns1:literal "PI32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Pointer a qudt:ReferenceDatatype ;
    rdfs:label "Pointer"^^xsd:string ;
    dcterms:description """
  A pointer is a programming language data type whose value refers directly to (or "points to") another value stored elsewhere in the computer memory using its address. 
  It references a value stored elsewhere in memory, and obtaining or requesting the value to which a pointer refers is called dereferencing the pointer. 
  A pointer is a simple implementation of the general reference data type. 
  Pointers to data improve performance for repetitive operations such as traversing string and tree structures.
  While "pointer" has been used to refer to references in general, it more properly applies to data structures whose interface explicitly allows the pointer to be manipulated as a memory address.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:QuaternionVector-DP a qudt:Vector ;
    rdfs:label "Quaternion Vector - double precision"^^xsd:string ;
    dcterms:description """
  <p>This vector type is intended to hold the (real-valued) coefficients to a quaternion number. 
  That is, if $V=[a,b,c,d]$ is a vector of type <i>QUATERNION-VECTOR</i>,
   then the proper interpretation of this vector is with respect to the basis elements $1,i,j,k$ of the quaternion algebra. 
  Specifically, the V corresponds to the quaternion $v = a*1 + b*i + c*j + d*k$. 
  Note that for most computations, the quaternion basis elements will be replaced with their 4 X 4 dimensional matrix representations,
   which are elements of type <i>QuaternionBasisMatrix</i>. 
  In this case, the resulting quaternion will be a 4 X 4 dimensional matrix of the form:
  </p>
<pre> a   b  c  d
-b   a -d  c
-c   d  a -b
-d  -c  b  a
</pre>
"""^^rdf:HTML ;
    qudt:datatype qudt:FLOAT-DP ;
    qudt:dimensionality 4 ;
    qudt:dimensions ( 4 4 4 4 ) ;
    ns1:code 340 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:RELATIVE-DATETIME a qudt:DateStringType ;
    rdfs:label "Relative Date And Time"^^xsd:string ;
    dcterms:description "Days and time relative to some Epoch"^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:id "T004-08"^^xsd:string ;
    ns1:code 76 ;
    ns1:literal "reldate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:RN_BINARY-BASE a qudt:RealNumberType ;
    rdfs:label "Real number binary base"^^xsd:string ;
    dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 2, and then the values of m and e are determined given this choice of base."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:RN_DECIMAL-BASE a qudt:RealNumberType ;
    rdfs:label "Real number decminal base"^^xsd:string ;
    dcterms:description "A rational number can be expressed in the form m*b^e, where m (the mantissa), b (the base), and e (the exponent) are integers. In this case b is chosen to be 10, and then the values of m and e are determined given this choice of base."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:RRF_LVLH a qudt:RotatingReferenceFrame ;
    rdfs:label "Local Vertical Local Horizontal"^^xsd:string ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-13"^^xsd:string ;
    qudt:realization "Defined by the position and velocity vectors associated with a Relationships: vehicle and thus directly related to the coordinate system in which those vectors are expressed."^^xsd:string ;
    qudt:xAxisDefinition "Defined as the circle that intersects the vehicle center-of-mass, is centered on the central body center, and lies in the vehicle orbit plane, positive in the direction of motion."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame and is positive in the direction of vehicle motion."^^xsd:string ;
    qudt:zAxisDefinition "Defined as a line that lies along the radius vector from the central body center to the vehicle center-of-mass and is positive toward the central body center."^^xsd:string ;
    ns1:literal "LVLH"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:SIGNED-BIG-INTEGER a qudt:SignedBigIntegerType ;
    rdfs:label "Signed Big Integer"^^xsd:string ;
    dcterms:description """
  <p>The <em>Signed Big Integer</em>, (<em>long</em> in Java) data type is a 64-bit signed two's complement integer. 
  It has a minimum value of -9,223,372,036,854,775,808 and a maximum value of 9,223,372,036,854,775,807 (inclusive). 
  Use this data type when you need a range of values wider than those provided by int.
  """^^rdf:HTML ;
    qudt:abbreviation "SI64"^^xsd:string ;
    qudt:bits 64 ;
    qudt:bytes 8 ;
    qudt:encoding qudt:LongUnsignedIntegerEncoding ;
    qudt:id "T002-02"^^xsd:string ;
    qudt:javaName "long"^^xsd:string ;
    qudt:matlabName "int64"^^xsd:string ;
    qudt:maxInclusive "2^{63}-1"^^xsd:string ;
    qudt:minInclusive "-2^{63}"^^xsd:string ;
    qudt:mySQLName "BIGINT"^^xsd:string ;
    qudt:protocolBuffersName "int64"^^xsd:string ;
    qudt:rdfsDatatype xsd:long ;
    qudt:signedness qudt:Signed ;
    ns1:code 109 ;
    ns1:literal "SI64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html>,
        <http://docs.python.org/2/library/stdtypes.html>,
        <http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx>,
        <http://www.mathworks.com/help/matlab/ref/int16.html>,
        "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI,
        "http://docs.python.org/2/library/stdtypes.html"^^xsd:anyURI,
        "http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx"^^xsd:anyURI,
        "http://www.mathworks.com/help/matlab/ref/int16.html"^^xsd:anyURI .

qudt:SIGNED-INTEGER a qudt:SignedIntegerType ;
    rdfs:label "Signed Integer"^^xsd:string ;
    dcterms:description """
  <p>A <em>Signed Integer</em> or 'short' data type is a 16-bit signed two's complement integer. 
  It has a minimum value of -32,768 and a maximum (inclusive) value of 32,767. 
  As with byte, the same guidelines apply: you can use a short to save memory in large arrays,
   in situations where the memory savings actually matters.
  """^^rdf:HTML ;
    qudt:abbreviation "SI16"^^xsd:string ;
    qudt:ansiSQLName "SMALLINT"^^xsd:string ;
    qudt:bits 16 ;
    qudt:bytes 2 ;
    qudt:encoding qudt:ShortSignedIntegerEncoding ;
    qudt:id "T002-03"^^xsd:string ;
    qudt:javaName "short"^^xsd:string ;
    qudt:jsName "short"^^xsd:string ;
    qudt:matlabName "int16"^^xsd:string ;
    qudt:maxInclusive "32767"^^xsd:string ;
    qudt:microsoftSQLServerName "smallint"^^xsd:string ;
    qudt:minInclusive "-32767"^^xsd:string ;
    qudt:mySQLName "SMALLINT"^^xsd:string ;
    qudt:rdfsDatatype xsd:short ;
    ns1:code 105 ;
    ns1:literal "SI16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html>,
        <http://docs.python.org/2/library/stdtypes.html>,
        <http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx>,
        <http://www.mathworks.com/help/matlab/ref/int16.html> .

qudt:SIGNED-LONG-INTEGER a qudt:SignedLongIntegerType ;
    rdfs:label "Signed Long Integer"^^xsd:string ;
    dcterms:description """
  <p>A <em>Signed Long Integer</em> is a 32 bit signed integer in 2's complement form.  
  It has a minimum value of -2,147,483,648 and a maximum value of 2,147,483,647 (inclusive). 
  For integral values, this data type is generally the default choice unless there is a reason (like the above) to choose something else. 
  This data type will most likely be large enough for the numbers a program will use.
  If a wider range of values is needed use long instead.
  """^^rdf:HTML ;
    qudt:abbreviation "SI32"^^xsd:string ;
    qudt:ansiSQLName "INTEGER"^^xsd:string ;
    qudt:bits 32 ;
    qudt:bytes 4 ;
    qudt:cName "int"^^xsd:string ;
    qudt:id "T002-04"^^xsd:string ;
    qudt:javaName "int"^^xsd:string ;
    qudt:jsName "int"^^xsd:string ;
    qudt:matlabName "int32"^^xsd:string ;
    qudt:maxInclusive "2^{31}-1"^^xsd:string ;
    qudt:microsoftSQLServerName "integer"^^xsd:string ;
    qudt:minInclusive "-2^{31}"^^xsd:string ;
    qudt:mySQLName "INT"^^xsd:string ;
    qudt:odbcName "SQL_INTEGER"^^xsd:string ;
    qudt:oleDBName "DBTYPE_I4"^^xsd:string ;
    qudt:oracleSQLName "NUMBER(10)"^^xsd:string ;
    qudt:protocolBuffersName "int32"^^xsd:string ;
    qudt:rdfsDatatype xsd:int ;
    qudt:signedness qudt:Signed ;
    ns1:literal "SI32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html>,
        <http://docs.python.org/2/library/stdtypes.html>,
        <http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx>,
        "http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html"^^xsd:anyURI,
        "http://docs.python.org/2/library/stdtypes.html"^^xsd:anyURI,
        "http://msdn.microsoft.com/en-us/library/4xwz0t37(v=vs.71).aspx"^^xsd:anyURI .

qudt:SIGNED-MEDIUM-INTEGER a qudt:SignedMediumIntegerType ;
    rdfs:label "Signed Medium Integer"^^xsd:string ;
    qudt:abbreviation "SI24"^^xsd:string ;
    qudt:bits 24 ;
    qudt:bytes 3 ;
    qudt:maxInclusive 8388607 ;
    qudt:minInclusive -8388608 ;
    qudt:mySQLName "MEDIUMINT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/integer-types.html> .

qudt:SIGNED-SHORT-INTEGER a qudt:SignedShortIntegerType ;
    rdfs:label "Signed Short Integer"^^xsd:string ;
    dcterms:description "Unsigned 8 bit integer."^^rdf:HTML ;
    qudt:abbreviation "SI8"^^xsd:string ;
    qudt:ansiSQLName "NUMERIC(3,0)"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:encoding qudt:OctetEncoding ;
    qudt:id "T002-06"^^xsd:string ;
    qudt:maxInclusive "127"^^xsd:string ;
    qudt:microsoftSQLServerName "tinyint"^^xsd:string ;
    qudt:minInclusive "-127"^^xsd:string ;
    qudt:mySQLName "TINYINT"^^xsd:string ;
    qudt:odbcName "SQL_TINYINT"^^xsd:string ;
    qudt:oleDBName "DBTYPE_I1"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns1:code 103 ;
    ns1:literal "SI8"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:STRING a qudt:StringType ;
    rdfs:label "String"^^xsd:string ;
    dcterms:description """
  <p>A <em>String</em> is an ordered list of characters.
  Typically the characters are UTF-8 characters.
  </p>
  """^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:memberDatatype qudt:CHAR ;
    qudt:protocolBuffersName "string"^^xsd:string ;
    qudt:rdfsDatatype xsd:string ;
    ns1:literal "string"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Seidelmann2000 a qudt:Citation ;
    rdfs:label "Seidelmann2000"^^xsd:string ;
    dcterms:description """
  <p>“Report of the IAU/IAG Working Group on Cartographic Coordinates and Rotational Elements of the Planets and Satellites: 2000”,
   P.K. Seidelmann, V. K. Abalakin, M. Bursa, M. E. Davies, C. DeBergh, J. H. Lieske, J. Oberst, J. L. Simon, E. M. Standish, P. Stooke, and P. C. Thomas,
   Celestial Mechanics and Dynamical Astronomy 82: 83-110, 2002 (http://springerlink.metapress.com,
   follow the links from “Browse by Online Libraries (subject areas)”, then “Physics and Astronomy”,
   then “Celestial Mechanics and Dynamical Astronomy”, then “Volume 82 - Number 1/January 2002”,
   then follow the links to download the paper.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:StringType-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CharacterType ;
    sh:path qudt:elementDatatype .

qudt:StructuredData-dimensionality a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:dimensionality .

qudt:SystemModifiableParameter a qudt:ParameterModifiabilityType ;
    rdfs:label "System modifiable parameter"^^xsd:string ;
    ns1:code "1"^^xsd:string ;
    ns1:literal "system"^^xsd:string ;
    rdfs:comment "Parameter is modifiable by a (computer) system."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:TBRCS_EC-EMR a qudt:ThreeBodyRotatingCoordinateSystem ;
    rdfs:label "Earth-Centered Earth-Moon Rotating Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TTBRCS-01"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_EMR ;
    ns1:code 20 ;
    ns1:literal "EM-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:TBRCS_EC-SER a qudt:ThreeBodyRotatingCoordinateSystem ;
    rdfs:label "Earth-Centered Sun Earth Rotating Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_EarthCentered ;
    qudt:id "TTBRCS-02"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_SER ;
    ns1:code 92 ;
    ns1:literal "SE-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Earth-Centered Sun Earth Rotating Coordinate System"^^xsd:string .

qudt:TBRCS_MC-EMR a qudt:ThreeBodyRotatingCoordinateSystem ;
    rdfs:label "Moon-Centered Earth-Moon Rotating Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_MoonCentered ;
    qudt:id "TTBRCS-03"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_EMR ;
    ns1:code 20 ;
    ns1:literal "EM-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:TBRCS_SC-SER a qudt:ThreeBodyRotatingCoordinateSystem ;
    rdfs:label "Sun-Centered Sun Earth Rotating Coordinate System"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_SunCentered ;
    qudt:id "TTBRCS-04"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_SER ;
    ns1:code 92 ;
    ns1:literal "SE-ROT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Sun-Centered Sun Earth Rotating Coordinate System"^^xsd:string .

qudt:TRUE a qudt:BooleanTypeEnumeratedValue ;
    rdfs:label "True"^^xsd:string ;
    ns1:literal "true"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:TYPE-MATRIX-4by4-FLOATDP a qudt:TypeList ;
    rdfs:label "TYPE-MATRIX-4by4-FLOATDP"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:TimeSeriesArray-dimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:int ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensions .

qudt:True a qudt:BooleanStateType ;
    rdfs:label "true"^^xsd:string ;
    ns1:code "1"^^xsd:string ;
    ns1:literal "true"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:UNARY-FUNCTION a qudt:FunctionDatatype ;
    rdfs:label "UNARY-FUNCTION"^^xsd:string ;
    dcterms:description "This type identifies functions that have exactly one argument."^^rdf:HTML ;
    qudt:functionArity 1 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UNSIGNED-BIG-INTEGER a qudt:UnsignedBigIntegerType ;
    rdfs:label "Unsigned Big Integer"^^xsd:string ;
    qudt:abbreviation "UI64"^^xsd:string ;
    qudt:bits 64 ;
    qudt:bytes 8 ;
    qudt:id "T002-08"^^xsd:string ;
    qudt:maxInclusive "2^{64}-1"^^xsd:string ;
    qudt:minInclusive "0"^^xsd:string ;
    qudt:mySQLName "BIGINT"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedLong ;
    qudt:signedness qudt:Unsigned ;
    ns1:code 117 ;
    ns1:literal "UI64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UNSIGNED-INTEGER a qudt:UnsignedIntegerType ;
    rdfs:label "Unsigned Integer"^^xsd:string ;
    dcterms:description "An unsigned 16-bit integer in the range 0 to 65,535"^^rdf:HTML ;
    qudt:abbreviation "UI16"^^xsd:string ;
    qudt:bits 16 ;
    qudt:id "T002-09"^^xsd:string ;
    qudt:maxInclusive "65535"^^xsd:string ;
    qudt:microsoftSQLServerName "smallint"^^xsd:string ;
    qudt:minInclusive "0"^^xsd:string ;
    qudt:mySQLName "SMALLINT"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedShort ;
    qudt:signedness qudt:Unsigned ;
    ns1:code 113 ;
    ns1:literal "UI16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UNSIGNED-LONG-INTEGER a qudt:UnsignedLongIntegerType ;
    rdfs:label "Unsigned Long Integer"^^xsd:string ;
    qudt:abbreviation "UI32"^^xsd:string ;
    qudt:bits 32 ;
    qudt:bytes 4 ;
    qudt:encoding qudt:UnsignedIntegerEncoding ;
    qudt:id "T002-10"^^xsd:string ;
    qudt:maxInclusive "2^{32}-1"^^xsd:string ;
    qudt:minInclusive "0"^^xsd:string ;
    qudt:mySQLName "INT"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedInt ;
    qudt:signedness qudt:Unsigned ;
    ns1:code 115 ;
    ns1:literal "UI32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UNSIGNED-MEDIUM-INTEGER a qudt:UnsignedMediumIntegerType ;
    rdfs:label "Unsigned Medium Integer"^^xsd:string ;
    qudt:abbreviation "UI24"^^xsd:string ;
    qudt:bits 24 ;
    qudt:bytes 3 ;
    qudt:maxInclusive 8388607 ;
    qudt:minInclusive -8388608 ;
    qudt:mySQLName "MEDIUMINT"^^xsd:string ;
    qudt:signedness qudt:Unsigned ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/integer-types.html> .

qudt:UNSIGNED-SHORT-INTEGER a qudt:OctetType ;
    rdfs:label "Unsigned Short Integer"^^xsd:string ;
    qudt:abbreviation "UI8"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:id "T002-13"^^xsd:string ;
    qudt:maxInclusive 255 ;
    qudt:microsoftSQLServerName "tinyint"^^xsd:string ;
    qudt:minInclusive 0 ;
    qudt:oleDBName "DBTYPE_UI1"^^xsd:string ;
    qudt:rdfsDatatype xsd:unsignedByte ;
    qudt:signedness qudt:Unsigned ;
    ns1:code 111 ;
    ns1:literal "UI8"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx>,
        "http://msdn.microsoft.com/en-us/library/aa275635(v=sql.80).aspx"^^xsd:anyURI .

qudt:UTC-DAYTIME a qudt:DateStringType ;
    rdfs:label "UTC DAY TIME"^^xsd:string ;
    dcterms:description """
  <p>
  UTC day time is expressed as "YYYY-DDDThh:mm:ss.ddZ", where each character is an ASCII character using one octet with the following meanings:
   YYYY = Year in four-character subfield with values 0001-9999,
   DDD = Day of year in three-character subfield with values 001-365 or -366,
   T =  Calendar-Time separator,
   hh = Hour in two-character subfield with values 00-23,
   mm = Minute in two-character subfield with values 00-59,
   ss = Second in two-character subfield with values 00-59 (-58 or -60 during leap seconds),
   dd = Decimal fraction of second in one- to n-character subfield, each d has values 0-9, and Z = time code terminator (optional)" 
  </p>
  """^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:id "T004-14"^^xsd:string ;
    qudt:rdfsDatatype qudt:UTC-DayTime ;
    ns1:code 79 ;
    ns1:literal "utc-dayTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UTF16-STRING a qudt:StringUTF16 ;
    rdfs:label "UTF16 String"^^xsd:string ;
    qudt:dimensionality 1 ;
    qudt:encoding qudt:UTF16-StringEncoding ;
    qudt:memberDatatype qudt:UTF16-CHAR ;
    qudt:rdfsDatatype xsd:string ;
    ns1:literal "utf16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UTF8-STRING a qudt:StringUTF8 ;
    rdfs:label "UTF8 String"^^xsd:string ;
    dcterms:description "String consisting of UTF-8 characters"^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:encoding qudt:UTF8-StringEncoding ;
    qudt:memberDatatype qudt:UTF8-CHAR ;
    qudt:rdfsDatatype xsd:string ;
    ns1:literal "utf8"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/datatype> .

qudt:UserModifiableParameter a qudt:ParameterModifiabilityType ;
    rdfs:label "User modifiable parameter"^^xsd:string ;
    ns1:code "2"^^xsd:string ;
    ns1:literal "user"^^xsd:string ;
    rdfs:comment "Parameter is modifiable by a user."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:VCS_VC-LVC a qudt:LocalCoordinateSystem,
        qudt:VehicleCoordinateSystem ;
    rdfs:label "Vehicle centered local vertical curvilinear coordinate system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_VehicleCentered ;
    qudt:id "TVCS-01"^^xsd:string ;
    qudt:referenceFrame qudt:RRF_LVC ;
    ns1:code 30 ;
    ns1:literal "VC-LVC"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:VCS_VC-LVLH a qudt:LocalCoordinateSystem,
        qudt:VehicleCoordinateSystem ;
    rdfs:label "Local vertical local horizontal coordinate system"^^xsd:string ;
    qudt:coordinateCenter qudt:CCT_VehicleCentered ;
    qudt:id "TVCS-02"^^xsd:string ;
    ns1:code 32 ;
    ns1:literal "LVLH"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Local Vertical Local Horizontal Coordinate System"^^xsd:string .

qudt:ValidateQuantityHasUnitShape a sh:NodeShape ;
    rdfs:label "Validate Quantity has Unit Shape"^^xsd:string ;
    dcterms:description """
  <p>Specifies and checks an optional property for a quantified value.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:property qudt:MaybeQuantityPropertyShape,
        qudt:MaybeUnitPropertyShape ;
    sh:severity sh:Warning ;
    sh:sparql [ sh:message "Quantity \"{$this}\" must have a unit."^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
        SELECT $this
        WHERE {
             $this qudt:quantity ?quantity .
             FILTER NOT EXISTS {?quantity qudt:hasUnit ?unit} 
             }
        """^^xsd:string ] ;
    sh:targetClass qudt:Array,
        qudt:List,
        qudt:Quantity,
        qudt:Vector .

qudt:VisualCueEnumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:VisualCue ;
    sh:path qudt:defaultValue .

qudt:WDST_DRY a qudt:WetDryState,
        qudt:WetDryStateType ;
    rdfs:label "Dry"^^xsd:string ;
    ns1:code "2"^^xsd:string ;
    ns1:literal "dry"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:WDST_WET a qudt:WetDryState,
        qudt:WetDryStateType ;
    rdfs:label "Wet"^^xsd:string ;
    ns1:code "1"^^xsd:string ;
    ns1:literal "wet"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:XSDatomicTypeUnion a rdf:List ;
    rdfs:label "XSD Atomic Type Union"^^xsd:string ;
    dcterms:description """
  <p>In XML Schema Definition (XSD) xsd:anySimpleType is the base type for all simple types.
  Simple types in XSD represent atomic values without any child elements or complex structures.
  All simple types are compliant with xsd:anySimpleType.
  </p>
  <p>In XSD, the atomic types are: xsd:string, xsd:boolean, xsd:decimal, xsd:float,
   xsd:double, xsd:duration, xsd:dateTime, xsd:time, xsd:date, xsd:gYearMonth, xsd:gYear, xsd:gMonthDay,
   xsd:gDay, xsd:gMonth, xsd:hexBinary, xsd:base64Binary, xsd:anyURI, xsd:QName, and xsd:NOTATION.
  """^^rdf:HTML ;
    rdf:first [ sh:datatype xsd:anySimpleType ] ;
    rdf:rest ( [ sh:datatype xsd:anySimpleType ] ) ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:YDT a qudt:DateStringType ;
    rdfs:label "Year Day Time"^^xsd:string ;
    qudt:dimensionality 1 ;
    qudt:id "T004-16"^^xsd:string ;
    qudt:rdfsDatatype xsd:string ;
    ns1:code 215 ;
    ns1:literal "YDT"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:YES a qudt:YesNoType ;
    rdfs:label "Yes"^^xsd:string ;
    ns1:literal "Y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Yes a qudt:YesNoType ;
    rdfs:label "Yes"^^xsd:string ;
    ns1:literal "Y"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:acronym a rdf:Property ;
    rdfs:label "acronym"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:applicablePlanckUnit a rdf:Property ;
    rdfs:label "applicable Planck unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:arg1Type a rdf:Property ;
    rdfs:label "arg1Type"^^xsd:string ;
    dcterms:description "This property relates a funciton data type with the type of its arg1."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:argType .

qudt:arg2Type a rdf:Property ;
    rdfs:label "arg2Type"^^xsd:string ;
    dcterms:description "This property relates a funciton data type with the type of its arg2."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:argType .

qudt:arg3Type a rdf:Property ;
    rdfs:label "arg3Type"^^xsd:string ;
    dcterms:description "This property relates a funciton data type with the type of its arg3."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:argType .

qudt:baseUnitOfSystem a rdf:Property ;
    rdfs:label "is base unit of system"^^xsd:string ;
    dcterms:description """
  This property relates a unit of measure to the system of units in which it is defined as a base unit for the system. 
  The base units of a system are used to define the derived units of the system by expressing the derived units as products of the base units raised to a rational power.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:definedUnitOfSystem .

qudt:categorizedAs a rdf:Property ;
    rdfs:label "categorized as"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:coherentUnitSystem a rdf:Property ;
    rdfs:label "coherent unit system"^^xsd:string ;
    dcterms:description """
  <p>A system of units is coherent with respect to a system of quantities and equations if the system of units is chosen in such a way that the equations between numerical values have exactly the same form (including the numerical factors) as the corresponding equations between the quantities. 
  In such a coherent system, no numerical factor other than the number 1 ever occurs in the expressions for the derived units in terms of the base units. 
  For example, the $newton$ and the $joule$. 
  These two are, respectively, the force that causes one kilogram to be accelerated at 1 metre per (1) second per (1) second, and the work done by 1 newton acting over 1 metre. 
  Being coherent refers to this consistent use of 1. 
  In the old c.g.s. system , with its base units the centimetre and the gram, the corresponding coherent units were the dyne and the erg,
   respectively the force that causes 1 gram to be accelerated at 1 centimetre per (1) second per (1) second, and the work done by 1 dyne acting over 1 centimetre. 
  So $1\\,newton = 10^5 dyne$, $1 joule = 10^7 erg$, making each of the four compatible in a decimal sense within its respective other system, but not coherent therein.</p>
  """^^qudt:LatexString ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Coherence_(units_of_measurement)"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasUnitSystem .

qudt:denominatorDimensionVector a rdf:Property ;
    rdfs:label "denominator dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:derivedNonCoherentUnitOfSystem a rdf:Property ;
    rdfs:label "is non-coherent derived unit of system"^^xsd:string ;
    dcterms:description """
  This property relates a unit of measure to the unit system in which the unit is derived from the system's
   base units without proportionality constant of one.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:derivedUnitOfSystem .

qudt:dimensionExponent a rdf:Property ;
    rdfs:label "dimension exponent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionInverse a rdf:Property ;
    rdfs:label "dimension inverse"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:elementTypeList a rdf:Property ;
    rdfs:label "element type list"^^xsd:string ;
    dcterms:description """
  This property is used to define the data type of the elements of a structured data type. 
  It is used for structured data types with elements that are of different types.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:fieldCode a rdf:Property ;
    rdfs:label "field code"^^xsd:string ;
    qudt:plainTextDescription """
  A field code is a generic property for representing unique codes that make up other identifiers. 
  For example each QuantityKind class caries a domain code as its field code.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:fieldLabels a rdf:Property ;
    rdfs:label "field labels"^^xsd:string ;
    dcterms:description "This property is used to list the field labels for a record type."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:fieldName a rdf:Property ;
    rdfs:label "field name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:figure a rdf:Property ;
    rdfs:label "figure"^^xsd:string ;
    dcterms:description "Provides a link to an image."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasDenominatorPart a rdf:Property ;
    rdfs:label "has quantity kind dimension vector denominator part"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasDerivedNonCoherentUnit a rdf:Property ;
    rdfs:label "has coherent derived unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasDerivedUnit .

qudt:hasDimension a rdf:Property ;
    rdfs:label "has dimension"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasDimensionExpression a rdf:Property ;
    rdfs:label "dimension expression"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasNumeratorPart a rdf:Property ;
    rdfs:label "has numerator part"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasPrefixUnit a rdf:Property ;
    rdfs:label "prefix unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasDefinedUnit .

qudt:hasQuantity a rdf:Property ;
    rdfs:label "has quantity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasVocabulary a rdf:Property ;
    rdfs:label "has vocabulary"^^xsd:string ;
    qudt:plainTextDescription "Used to relate a class to one or more graphs where vocabularies for the class are defined."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:integer1to12 a rdfs:Datatype,
        sh:NodeShape ;
    rdfs:label "integer 1..12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf xsd:int ;
    sh:datatype xsd:int ;
    sh:maxInclusive 12 ;
    sh:minInclusive 1 .

qudt:integer1to31 a rdfs:Datatype ;
    rdfs:label "integer 1..31"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf xsd:int ;
    sh:datatype xsd:int ;
    sh:maxInclusive 31 ;
    sh:minInclusive 1 .

qudt:isDimensionInSystem a rdf:Property ;
    rdfs:label "is dimension in system"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:isMetricUnit a rdf:Property ;
    rdfs:label "is metric unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:mantissa a rdf:Property ;
    rdfs:label "mantissa"^^xsd:string ;
    rdfs:comment "In scientific notation, the mantissa of a real number is the integer coefficient preceding the base raised to the exponent."^^xsd:string .

qudt:member a rdf:Property ;
    rdfs:label "member"^^xsd:string ;
    dcterms:description """
  This property is used to define a collection's elements. 
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:minValue a rdf:Property ;
    rdfs:label "minimum value"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:modifiability a rdf:Property ;
    rdfs:label "modifiability"^^xsd:string ;
    rdfs:comment "Reference to one in a list of enumerated elements that indicates whether data (e.g. variable or parameter) can be changed."^^xsd:string .

qudt:negative a qudt:Polarity ;
    rdfs:label "negative"^^xsd:string ;
    ns1:code "1"^^xsd:string ;
    ns1:literal "negative"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:negativeDeltaLimit a rdf:Property ;
    rdfs:label "negative delta limit"^^xsd:string ;
    dcterms:description "A negative change limit between consecutive sample values for a parameter. The Negative Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:numeratorDimensionVector a rdf:Property ;
    rdfs:label "numerator dimension vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:numericValue a rdf:Property ;
    rdfs:label "numeric value"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:onlineReference a rdf:Property ;
    rdfs:label "online reference"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:outOfScope a rdf:Property ;
    rdfs:label "out of scope"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:positive a qudt:Polarity ;
    rdfs:label "positive"^^xsd:string ;
    ns1:code "2"^^xsd:string ;
    ns1:literal "positive"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:positiveDeltaLimit a rdf:Property ;
    rdfs:label "Positive delta limit"^^xsd:string ;
    dcterms:description "A positive change limit between consecutive sample values for a parameter. The Positive Delta may be the encoded value or engineering units value depending on whether or not a Calibrator is defined."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:reference a rdf:Property ;
    rdfs:label "reference"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:referenceFrameType a rdf:Property ;
    rdfs:label "reference frame type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:referenceUnit a rdf:Property ;
    rdfs:label "reference unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:relevantQuantityKind a rdf:Property ;
    rdfs:label "relevant quantity kind"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:relevantUnit a rdf:Property ;
    rdfs:label "Relevant Unit"^^xsd:string ;
    dcterms:description "This property is used for qudt:Discipline instances to identify the Unit instances that are used within a given discipline."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:significantDigits a rdf:Property ;
    rdfs:label "significant digits"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:stringValue a rdf:Property ;
    rdfs:label "string value"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:scalarValue .

qudt:systemDefinition a rdf:Property ;
    rdfs:label "system definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:systemDimension a rdf:Property ;
    rdfs:label "system dimension"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:timeDatatype a rdf:Property ;
    rdfs:label "time datatype"^^xsd:string ;
    rdfs:subPropertyOf qudt:type .

qudt:totalDigits a rdf:Property ;
    rdfs:label "total digits"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:typeVector a rdf:Property ;
    rdfs:label "type vector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:unitFor a rdf:Property ;
    rdfs:label "unit for"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:valueQuantity a rdf:Property ;
    rdfs:label "value for quantity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:valueRange a rdf:Property ;
    rdfs:label "value range"^^xsd:string .

qudt:valueType a rdf:Property ;
    rdfs:label "value type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:valueVector a rdf:Property ;
    rdfs:label "value vector"^^xsd:string ;
    rdfs:comment "A list of the values of elements in a Partial Array."^^xsd:string .

<http://qudt.org/vocab/constant/AlphaParticleElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "Alpha particle-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleMass> a qudt:PhysicalConstant ;
    rdfs:label "Alpha particle mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "alpha particle mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "Alpha particle mass energy equivalent in Me V"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "alpha particle mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "alpha particle molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AlphaParticleProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "alpha particle-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AlphaParticleProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/AngstromStar> a qudt:PhysicalConstant ;
    rdfs:label "Angstrom star"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AngstromStar> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/AtomicMassConstant> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass constant"@en ;
    dcterms:description """
  The $\\textit{Atomic Mass Constant}$ is one twelfth of the mass of an unbound atom of carbon-12 at rest
   and in its ground state.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:latexSymbol "$m_u$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/AtomicMassConstantEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass constant energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_constant> .

<http://qudt.org/vocab/constant/AtomicMassConstantEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass constant energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_constant> .

<http://qudt.org/vocab/constant/AtomicMassUnitElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/AtomicMassUnitHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicMassUnitHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicMassUnitInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-inverse metre relationship"@en,
        "atomic mass unit-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicMassUnitJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-joule relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicMassUnitKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicMassUnitKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "atomic mass unit-kilogram relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicMassUnitKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/AtomicUnitOf1stHyperpolarizablity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of 1st hyperpolarizablity"@en ;
    qudt:hasQuantityKind qudtqk:CubicElectricDipoleMomentPerSquareEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOf1stHyperpolarizability> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOf2ndHyperpolarizablity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of 2nd hyperpolarizablity"@en ;
    qudt:hasQuantityKind qudtqk:QuarticElectricDipoleMomentPerCubicEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOf2ndHyperpolarizability> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfAction> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of action"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfAction> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfChargeDensity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of charge density"@en ;
    qudt:hasQuantityKind qudtqk:ElectricChargeVolumeDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfChargeDensity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfCurrent> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of current"@en ;
    qudt:hasQuantityKind qudtqk:ElectricCurrent ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfCurrent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricDipoleMoment> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric dipole mom."@en ;
    qudt:hasQuantityKind qudtqk:ElectricDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricDipoleMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricField> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric field"@en ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricField> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricFieldGradient> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric field gradient"@en ;
    qudt:hasQuantityKind qudtqk:EnergyPerAreaElectricCharge ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricFieldGradient> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricPolarizablity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric polarizablity"@en ;
    qudt:hasQuantityKind qudtqk:Polarizability ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPolarizability> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricPotential> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric potential"@en ;
    qudt:hasQuantityKind qudtqk:EnergyPerElectricCharge ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPotential> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfElectricQuadrupoleMoment> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of electric quadrupole moment"@en ;
    qudt:hasQuantityKind qudtqk:ElectricQuadrupoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricQuadrupoleMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfEnergy> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of energy"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfEnergy> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfForce> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of force"@en ;
    qudt:hasQuantityKind qudtqk:Force ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfForce> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfLength> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of length"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfLength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfMagneticDipoleMoment> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of magnetic dipole moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticDipoleMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfMagneticFluxDensity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of magnetic flux density"@en ;
    qudt:hasQuantityKind qudtqk:MagneticFluxDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticFluxDensity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfMagnetizability> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of magnetizability"@en ;
    qudt:hasQuantityKind qudtqk:EnergyPerSquareMagneticFluxDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfMagnetizability> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfMass> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfMomentum> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of momentum"@en ;
    qudt:hasQuantityKind qudtqk:LinearMomentum ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfMomentum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfPermittivity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of permittivity"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfPermittivity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfTime> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of time"@en ;
    qudt:hasQuantityKind qudtqk:Time ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfTime> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AtomicUnitOfVelocity> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of velocity"@en ;
    qudt:hasQuantityKind qudtqk:LinearVelocity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfVelocity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/AvogadroConstant> a qudt:PhysicalConstant ;
    rdfs:label "Avogadro constant"@en ;
    dcterms:description """
  The $\\textit{Avogadro Constant}$ is defined as the ratio of the number of constituent particles N in
   a sample to the amount of substance $n$ through the relationship $NA = N/n$. 
  Thus, it is the proportionality factor that relates the molar mass of an entity, that is,
   the mass per amount of substance, to the mass of said entity.
  """^^qudt:LatexString ;
    qudt:abbreviation "mole^{-1}"^^xsd:string ;
    qudt:applicableUnit unit:PER-MOL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Avogadro_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L0I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:InverseAmountOfSubstance ;
    qudt:iec61360Code "0112/2///62720#UAD015"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Avogadro_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD015"^^xsd:anyURI ;
    qudt:latexDefinition "$L = \\frac{N}{n}$, where $N$ is the number of particles and $n$ is amount of substance."^^qudt:LatexString ;
    qudt:latexSymbol "$L, N_A$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AvogadroConstant> ;
    qudt:siExactMatch <https://si-digital-framework.org/constants/AvogadroConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/BohrMagnetonInEVPerT> a qudt:PhysicalConstant ;
    rdfs:label "Bohr magneton in eV per T"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrMagnetonInEVPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/BohrMagnetonInHzPerT> a qudt:PhysicalConstant ;
    rdfs:label "Bohr magneton in Hz perT"@en ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrMagnetonInHzPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/BohrMagnetonInInverseMetersPerTesla> a qudt:PhysicalConstant ;
    rdfs:label "Bohr magneton in inverse metres per tesla"@en,
        "Bohr magneton in inverse meters per tesla"@en-us ;
    qudt:hasQuantityKind qudtqk:MagneticReluctivity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrMagnetonInInverseMetersPerTesla> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/BohrMagnetonInKPerT> a qudt:PhysicalConstant ;
    rdfs:label "Bohr magneton in K per T"@en ;
    qudt:hasQuantityKind qudtqk:TemperaturePerMagneticFluxDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrMagnetonInKPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/BohrRadius> a qudt:PhysicalConstant ;
    rdfs:label "Bohr Radius"@en ;
    dcterms:description """
  The $\\textit{Bohr Radius}$ is a physical constant, approximately equal to the most probable distance
   between the proton and electron in a hydrogen atom in its ground state. 
  It is named after Niels Bohr, due to its role in the Bohr model of an atom.
  The precise definition of the Bohr radius is: 
  
  $$a_0 = \\frac{4\\pi \\epsilon_0 \\hbar^2}{me^2}$$

  Where,
   $a_0$ is the Bohr radius,
   $\\epsilon_0$ is the permittivity of a vacuum,
   $m_e$ is the mass of an electron,
   $\\hbar$ is the reduced Planck's constant,
   $e$ is the elementary charge.

  When rearranged to highlight the role of the Coulomb constant and the elementary charge,
   the formula can be shown as:

  $$a_0 \\equiv \\frac{{\\hbar ^2 }}{{m_e ke^2 }}$$
  
  Where,
   $a_0$ is the Bohr radius,
   $m_e$ is the mass of an electron,
   $\\hbar$ is the reduced Planck's constant,
   $k$ is the Coulomb Constant,
   $e$ is the elementary charge.

  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:applicableUnit unit:M ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bohr_radius"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bohr_radius"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "http://www.deepnlp.org/blog/atomic-electro-chemical-equations"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI,
        "https://byjus.com/physics/bohr-radius/"^^xsd:anyURI ;
    qudt:latexDefinition "$a_0 = \\frac{4\\pi \\varepsilon_0 \\hbar^2}{m_ee^2}$, where $\\varepsilon_0$ is the electric constant, $\\hbar$ is the reduced Planck constant, $m_e$  is the rest mass of electron, and $e$ is the elementary charge."^^qudt:LatexString ;
    qudt:latexSymbol "$a_0$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrRadius> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/BoltzmannConstant> a qudt:PhysicalConstant ;
    rdfs:label "Boltzmann Constant"@en ;
    dcterms:description """
  The $\\textit{Boltzmann Constant}$, symbol $k$ or $kB$, is the physical constant relating energy at the individual particle level with temperature,
   which must necessarily be observed at the collective or bulk level. 
  It is the gas constant $R$ divided by the Avogadro constant $N_A$, having the same dimension as entropy. 
  It is named after the Austrian physicist Ludwig Boltzmann.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-K ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Boltzmann_constant"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:HeatCapacity ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Boltzmann_constant?oldid=495542430"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$k$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BoltzmannConstant> ;
    qudt:siExactMatch <https://si-digital-framework.org/constants/BoltzmannConstant> ;
    qudt:ucumCode "[k]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/BoltzmannConstantInEVPerK> a qudt:PhysicalConstant ;
    rdfs:label "Boltzmann constant in eV per K"@en ;
    qudt:hasQuantityKind qudtqk:HeatCapacity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BoltzmannConstantInEVPerK> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Boltzmann_constant> .

<http://qudt.org/vocab/constant/BoltzmannConstantInHzPerK> a qudt:PhysicalConstant ;
    rdfs:label "Boltzmann constant in Hz per K"@en ;
    qudt:hasQuantityKind qudtqk:InverseTimeTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BoltzmannConstantInHzPerK> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Boltzmann_constant> .

<http://qudt.org/vocab/constant/BoltzmannConstantInInverseMetersPerKelvin> a qudt:PhysicalConstant ;
    rdfs:label "Boltzmann constant in inverse metres per kelvin"@en,
        "Boltzmann constant in inverse meters per kelvin"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLengthTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BoltzmannConstantInInverseMetersPerKelvin> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Boltzmann_constant> .

<http://qudt.org/vocab/constant/CharacteristicImpedanceOfVacuum> a qudt:PhysicalConstant ;
    rdfs:label "characteristic impedance of vacuum"@en ;
    dcterms:description """
  The constant $\\textit{Characteristic Impedance of Vacuum}$, symbol $Z0$ is the impedance of free space.
  This is a physical constant relating the magnitudes of the electric and magnetic fields of electromagnetic radiation travelling through free space. 
  That is, $Z0 = |E|/|H|$, where $|E|$ is the electric field strength and $|H|$ magnetic field strength. 
  It has an exact value, given approximately as 376.73031 ohms. 
  The impedance of free space equals the product of the vacuum permeability or magnetic constant $μ0$ and the speed of light in vacuum $c0$. 
  Since the numerical values of the magnetic constant and of the speed of light are fixed by the definitions of the ampere and the metre respectively,
   the exact value of the impedance of free space is likewise fixed by definition and is not subject to experimental error.
  """^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Impedance_of_free_space"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_CharacteristicImpedanceOfVacuum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ClassicalElectronRadius> a qudt:PhysicalConstant ;
    rdfs:label "classical electron radius"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Classical_electron_radius"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ClassicalElectronRadius> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ComptonWavelength> a qudt:PhysicalConstant ;
    rdfs:label "Compton Wavelength"@en ;
    dcterms:description """
  The constant $\\textit{Compton Wavelength}$ is a quantum mechanical property of a particle. 
  It was introduced by Arthur Compton in his explanation of the scattering of photons by electrons.
  The process is known as Compton scattering. 
  The Compton Wavelength of a particle is equivalent to the wavelength of a photon whose energy
   is the same as the rest-mass energy of the particle.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:M ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Compton_wavelength"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Compton_wavelength"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:latexDefinition "$\\lambda_C = \\frac{h}{mc_0}$, where $h$ is the Planck constant, $m$ is the rest mass of a particle, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ;
    qudt:latexSymbol "$\\lambda_C$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ComptonWavelength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ComptonWavelengthOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "Compton wavelength over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ComptonWavelengthOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/ConductanceQuantum> a qudt:PhysicalConstant ;
    rdfs:label "conductance quantum"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Conductance_quantum"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:ElectricConductivity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ConductanceQuantum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ConventionalValueOfJosephsonConstant> a qudt:PhysicalConstant ;
    rdfs:label "conventional value of Josephson constant"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:InverseMagneticFlux ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ConventionalValueOfJosephsonConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_flux_quantum> .

<http://qudt.org/vocab/constant/ConventionalValueOfVonKlitzingConstant> a qudt:PhysicalConstant ;
    rdfs:label "conventional value of von Klitzing constant"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ConventionalValueOfVonKlitzingConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Quantum_Hall_effect> .

<http://qudt.org/vocab/constant/CuXUnit> a qudt:PhysicalConstant ;
    rdfs:label "Cu x unit"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_CuXUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/X_unit> .

<http://qudt.org/vocab/constant/DeuteronElectronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron-electron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronElectronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_magnetic_dipole_moment> .

<http://qudt.org/vocab/constant/DeuteronElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/DeuteronGFactor> a qudt:PhysicalConstant ;
    rdfs:label "deuteron g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/DeuteronMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "deuteron magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/DeuteronMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/DeuteronMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/DeuteronMass> a qudt:PhysicalConstant ;
    rdfs:label "deuteron mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/DeuteronMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "deuteron mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/DeuteronMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "deuteron mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/DeuteronMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "deuteron mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/DeuteronMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "deuteron molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/DeuteronNeutronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron-neutron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronNeutronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron_magnetic_moment> .

<http://qudt.org/vocab/constant/DeuteronProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron-proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/DeuteronProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "deuteron-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/DeuteronRmsChargeRadius> a qudt:PhysicalConstant ;
    rdfs:label "deuteron rms charge radius"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_DeuteronRmsChargeRadius> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nucleon> .

<http://qudt.org/vocab/constant/ElectricConstant> a qudt:PhysicalConstant ;
    rdfs:label "electric constant"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Vacuum_permittivity"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectricConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronChargeToMassQuotient> a qudt:PhysicalConstant ;
    rdfs:label "electron charge to mass quotient"@en ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronChargeToMassQuotient> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass-to-charge_ratio> .

<http://qudt.org/vocab/constant/ElectronDeuteronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-deuteron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronDeuteronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronDeuteronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-deuteron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronDeuteronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronGFactor> a qudt:PhysicalConstant ;
    rdfs:label "electron g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronGyromagneticRatio> a qudt:PhysicalConstant ;
    rdfs:label "Electron Gyromagnetic Ratio"@en ;
    dcterms:description """
  The $\\textit{Electron Gyromagnetic Ratio}$ is a property that an isolated electron has for its angular momentum and magnetic moment resulting from its spin. 
  While an electron's spin is sometimes visualized as a literal rotation about an axis, it is in fact a fundamentally different, quantum-mechanical phenomenon with no true analogue in classical physics. 
  As a consequence there is no reason to expect the above classical relation to hold.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:A-M2-PER-J-SEC ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gyromagnetic_ratio#Gyromagnetic_ratio_for_an_isolated_electron"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu = \\gamma_e J$, where $\\mu$ is the magnetic dipole moment, and $J$ is the total angular momentum."^^qudt:LatexString ;
    qudt:latexSymbol "$\\gamma_e$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ElectronGyromagneticRatioOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "electron gyromagnetic ratio over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatioOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ElectronMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "electron magnetic moment"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Electron_magnetic_dipole_moment"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronMagneticMomentAnomaly> a qudt:PhysicalConstant ;
    rdfs:label "electron magnetic moment anomaly"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMagneticMomentAnomaly> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_magnetic_dipole_moment> .

<http://qudt.org/vocab/constant/ElectronMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton>,
        <http://dbpedia.org/resource/Electron_magnetic_dipole_moment> .

<http://qudt.org/vocab/constant/ElectronMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_magnetic_dipole_moment>,
        <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/ElectronMass> a qudt:PhysicalConstant ;
    rdfs:label "Electron Mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:latexSymbol "$m_e$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMass> ;
    qudt:ucumCode "[m_e]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron> .

<http://qudt.org/vocab/constant/ElectronMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "electron mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/ElectronMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "electron mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/ElectronMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "electron mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/ElectronMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "electron molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronMuonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-muon magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMuonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronMuonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-muon mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronMuonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronNeutronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-neutron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronNeutronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron_magnetic_moment> .

<http://qudt.org/vocab/constant/ElectronNeutronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-neutron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronNeutronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronTauMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron-tau mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronTauMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElectronToAlphaParticleMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron to alpha particle mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronToAlphaParticleMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Alpha_particle> .

<http://qudt.org/vocab/constant/ElectronToShieldedHelionMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron to shielded helion magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronToShieldedHelionMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronToShieldedProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "electron to shielded proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronToShieldedProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ElectronVoltAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-inverse metre relationship"@en,
        "electron volt-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-joule relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElectronVoltKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "electron volt-kilogram relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElectronVoltKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/ElementaryChargeOverH> a qudt:PhysicalConstant ;
    rdfs:label "elementary charge over h"@en ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElementaryChargeOverH> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Elementary_charge> .

<http://qudt.org/vocab/constant/FaradayConstant> a qudt:PhysicalConstant ;
    rdfs:label "Faraday constant"@en ;
    dcterms:description """
  The $\\textit{Faraday Constant}$ is a constant equal to the product of electrical elementary charge and Avogadro constant; 
  this is approximately $9.64853321233100184 \\times 10^{4}\\ C/mol$.
  """^^qudt:LatexString ;
    qudt:abbreviation "c mol^{-1}"^^xsd:string ;
    qudt:applicableUnit unit:C-PER-MOL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Faraday_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E1L0I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerAmountOfSubstance ;
    qudt:iec61360Code "0112/2///62720#UAD052"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Faraday_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD052"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$F = N_A e$, where $N_A$ is the Avogadro constant and $e$ is the elementary charge."^^qudt:LatexString ;
    qudt:latexSymbol "$F$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "Physikalische Konstante, gleich dem Produkt aus elektrischer Elementarladung und Avogadro-Konstante; sie beträgt annähernd 96 485,3 C/mol"@de ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_FaradayConstant> ;
    qudt:symbol "0173-1#Z4-BAJ422#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/FermiCouplingConstant> a qudt:PhysicalConstant ;
    rdfs:label "Fermi coupling constant"@en ;
    qudt:hasQuantityKind qudtqk:InverseSquareEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_FermiCouplingConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Coupling_constant> .

<http://qudt.org/vocab/constant/FineStructureConstant> a qudt:PhysicalConstant ;
    rdfs:label "Fine-Structure Constant"@en ;
    dcterms:description """
  The $\\textit{Fine-structure Constant}$ is a fundamental physical constant, namely the coupling constant
   characterizing the strength of the electromagnetic interaction.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Fine-structure_constant"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fine-structure_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$a = \\frac{e^2}{4\\pi\\varepsilon_0\\hbar c_0}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, item $\\hbar$ is the reduced Planck constant, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ;
    qudt:latexSymbol "$a$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_FineStructureConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/FirstRadiationConstant> a qudt:PhysicalConstant ;
    rdfs:label "first radiation constant"@en ;
    dcterms:description """
  The constant $\\textit{First Radiation Constant}$ is defined in Planck's radiation law about the dependence
   of the spectral density of various radiation variables on the wavelength of the electromagnetic radiation
    and the absolute temperature of the black emitter.
  This is composed of the product of twice $Pi$ times Planck's quantum of action multiplied by the square of
   the velocity of light.
   """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:PowerArea ;
    qudt:iec61360Code "0112/2///62720#UAD053"^^xsd:string ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD053"^^xsd:anyURI ;
    qudt:plainTextDescription "Konstante im Planckschen Strahlungsgesetz über die Abhängigkeit der spektralen Dichte verschiedener Strahlungsgrößen von der Wellenlänge der elektromagnetischen Strahlung und der absoluten Temperatur beim schwarzen Strahler, welche sich zusammensetzt aus dem Produkt zwei Pi mal Plancksches Wirkungsquantum mal dem Quadrat der Lichtgeschwindigkeit"@de ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_FirstRadiationConstant> ;
    qudt:symbol "0173-1#Z4-BAJ455#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/FirstRadiationConstantForSpectralRadiance> a qudt:PhysicalConstant ;
    rdfs:label "first radiation constant for spectral radiance"@en ;
    qudt:hasQuantityKind qudtqk:PowerAreaPerSolidAngle ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_FirstRadiationConstantForSpectralRadiance> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/GravitationalConstant> a qudt:PhysicalConstant ;
    rdfs:label "Gravitational constant"@en ;
    dcterms:description """
  The $\\textit{Gravitational Constant}$ (also known as the universal gravitational constant, is the Newtonian constant of gravitation, or the Cavendish gravitational constant).
  Denoted by the letter $G$, it is an empirical physical constant involved in the calculation of gravitational effects in Sir Isaac Newton's law of universal gravitation 
  and in Albert Einstein's general theory of relativity.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:N-M2-PER-KiloGM2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasQuantityKind qudtqk:GravitationalAttraction ;
    qudt:iec61360Code "0112/2///62720#UAD059"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD059"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Gravitational_constant"^^xsd:anyURI ;
    qudt:plainTextDescription "Empirisch ermittelte Naturkonstante, die bei bekanntem Mittelpunktsabstand zweier kugelsymmetrischer Körper deren gegenseitige Massenanziehungskraft bestimmt"@de ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_GravitationalConstant> ;
    qudt:symbol "0173-1#Z4-BAJ474#002"^^xsd:string ;
    qudt:ucumCode "[G]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/HartreeElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/HartreeEnergy> a qudt:PhysicalConstant ;
    rdfs:label "Hartree Energy"@en ;
    dcterms:description """
  The constant $\\textit{Hartree Energy}$ (symbol: $E_h$ or $Ha$), also known as the $\\textit{Hartree}$, is the atomic unit of energy. 
  The hartree energy is equal to the absolute value of the electric potential energy of the hydrogen atom in its ground state. 
  The energy of the electron in an H-atom in its ground state is $-E_H$, where $E_H= 2 R_\\infty \\cdot hc_0$. 
  The 2006 CODATA recommended value was $E_H = 4.35974394(22)\\ \\times 10^{-18}\\ J = 27.21138386(68)\\ eV$.
  """^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Hartree"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$E_H= \\frac{e^2}{4\\pi \\varepsilon_0 a_0 }$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, and $a_0$ is the Bohr radius."^^qudt:LatexString ;
    qudt:latexSymbol "$E_h$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeEnergy> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeEnergyInEV> a qudt:PhysicalConstant ;
    rdfs:label "Hartree energy in eV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeEnergyInEV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Hartree> .

<http://qudt.org/vocab/constant/HartreeHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-inverse metre relationship"@en,
        "hartree-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-joule relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HartreeKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hartree-kilogram relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HartreeKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HelionElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "helion-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HelionMass> a qudt:PhysicalConstant ;
    rdfs:label "helion mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HelionMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "helion mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/HelionMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "helion mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/HelionMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "helion mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/HelionMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "helion molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HelionProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "helion-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HelionProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HertzAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/HertzElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/HertzHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HertzInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-inverse metre relationship"@en,
        "hertz-inverse meter relationship"@en-us ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HertzJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-joule relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HertzKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/HertzKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "hertz-kilogram relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_HertzKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseFineStructureConstant> a qudt:PhysicalConstant ;
    rdfs:label "inverse fine-structure constant"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseFineStructureConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Fine-structure_constant> .

<http://qudt.org/vocab/constant/InverseMeterAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-atomic mass unit relationship"@en,
        "inverse meter-atomic mass unit relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/InverseMeterElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-electron volt relationship"@en,
        "inverse meter-electron volt relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/InverseMeterHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-hartree relationship"@en,
        "inverse meter-hartree relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseMeterHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-hertz relationship"@en,
        "inverse meter-hertz relationship"@en-us ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseMeterJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-joule relationship"@en,
        "inverse meter-joule relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseMeterKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-kelvin relationship"@en,
        "inverse meter-kelvin relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseMeterKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "inverse metre-kilogram relationship"@en,
        "inverse meter-kilogram relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseMeterKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/InverseOfConductanceQuantum> a qudt:PhysicalConstant ;
    rdfs:label "inverse of conductance quantum"@en ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_InverseOfConductanceQuantum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Conductance_quantum> .

<http://qudt.org/vocab/constant/JosephsonConstant> a qudt:PhysicalConstant ;
    rdfs:label "Josephson Constant"@en ;
    dcterms:description """
  The constant $\\textit{Josephson Constant}$ is a proportionality factor between voltage and frequency of an
   alternating current corresponding to the product of two elementary charges $e$ and Planck's action quantum $h$.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-WB ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux_quantum"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T2D0> ;
    qudt:hasQuantityKind qudtqk:InverseMagneticFlux ;
    qudt:iec61360Code "0112/2///62720#UAD069"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_flux_quantum"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD069"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$K_J = \\frac{1}{\\Phi_0}$, where $\\Phi_0$ is the magnetic flux quantum."^^qudt:LatexString ;
    qudt:latexSymbol "$K_J$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "Proportionalitätsfaktor zwischen elektrischer Spannung und Frequenz beim Wechselstrom entsprechend dem Produkt aus zwei Elementarladungen e und Planckschen Wirkungsquantum h"@de ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JosephsonConstant> ;
    qudt:symbol "0173-1#Z4-BAJ452#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://qudt.org/vocab/constant/MagneticFluxQuantum> .

<http://qudt.org/vocab/constant/JouleAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/JouleElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/JouleHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/JouleHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/JouleInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-inverse metre relationship"@en,
        "joule-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/JouleKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/JouleKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "joule-kilogram relationship"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_JouleKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KelvinAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/KelvinElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/KelvinHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KelvinHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KelvinInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-inverse metre relationship"@en,
        "kelvin-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KelvinJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-joule relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KelvinKilogramRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kelvin-kilogram relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KelvinKilogramRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KilogramAtomicMassUnitRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-atomic mass unit relationship"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramAtomicMassUnitRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/KilogramElectronVoltRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-electron volt relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramElectronVoltRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_volt> .

<http://qudt.org/vocab/constant/KilogramHartreeRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-hartree relationship"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramHartreeRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KilogramHertzRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-hertz relationship"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramHertzRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KilogramInverseMeterRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-inverse metre relationship"@en,
        "kilogram-inverse meter relationship"@en-us ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramInverseMeterRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KilogramJouleRelationship> a qudt:PhysicalConstant ;
    rdfs:label "Kilogram-Joule Relationship"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramJouleRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/KilogramKelvinRelationship> a qudt:PhysicalConstant ;
    rdfs:label "kilogram-kelvin relationship"@en ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_KilogramKelvinRelationship> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/LatticeParameterOfSilicon> a qudt:PhysicalConstant ;
    rdfs:label "lattice parametre of silicon"@en,
        "lattice parameter of silicon"@en-us ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_LatticeParameterOfSilicon> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/LatticeSpacingOfSilicon> a qudt:PhysicalConstant ;
    rdfs:label "lattice spacing of silicon"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_LatticeSpacingOfSilicon> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/LoschmidtConstant273dot15K101dot325KPa> a qudt:PhysicalConstant ;
    rdfs:label "Loschmidt constant 273.15 K 101.325 kPa"@en ;
    qudt:hasQuantityKind qudtqk:NumberDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_LoschmidtConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Loschmidt_constant> .

<http://qudt.org/vocab/constant/MoXUnit> a qudt:PhysicalConstant ;
    rdfs:label "Mo x unit"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MoXUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/X_unit> .

<http://qudt.org/vocab/constant/MolarMassConstant> a qudt:PhysicalConstant ;
    rdfs:label "molar mass constant"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Molar_mass_constant"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarMassConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarMassOfCarbon12> a qudt:PhysicalConstant ;
    rdfs:label "molar mass of carbon-12"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarMassOfCarbon12> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarPlanckConstant> a qudt:PhysicalConstant ;
    rdfs:label "molar Planck constant"@en ;
    qudt:hasQuantityKind qudtqk:MolarAngularMomentum ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarPlanckConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/MolarPlanckConstantTimesC> a qudt:PhysicalConstant ;
    rdfs:label "molar Planck constant times c"@en ;
    qudt:hasQuantityKind qudtqk:LengthMolarEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarPlanckConstantTimesC> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K100KPa> a qudt:PhysicalConstant ;
    rdfs:label "molar volume of ideal gas 273.15 K 100 kPa"@en ;
    dcterms:isReplacedBy <http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K100KiloPA> ;
    qudt:deprecated true ;
    qudt:hasQuantityKind qudtqk:MolarVolume ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas273dot15K100KiloPA> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K101dot325KPa> a qudt:PhysicalConstant ;
    rdfs:label "molar volume of ideal gas 273.15 K 101.325 kPa"@en ;
    dcterms:isReplacedBy <http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K101dot325KiloPA> ;
    qudt:deprecated true ;
    qudt:hasQuantityKind qudtqk:MolarVolume ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas273dot15K101dot325KiloPA> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarVolumeOfSilicon> a qudt:PhysicalConstant ;
    rdfs:label "molar volume of silicon"@en ;
    qudt:hasQuantityKind qudtqk:MolarVolume ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarVolumeOfSilicon> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonComptonWavelength> a qudt:PhysicalConstant ;
    rdfs:label "muon Compton wavelength"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonComptonWavelength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/MuonComptonWavelengthOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "muon Compton wavelength over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonComptonWavelengthOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/MuonElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonGFactor> a qudt:PhysicalConstant ;
    rdfs:label "muon g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/MuonMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "muon magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/MuonMagneticMomentAnomaly> a qudt:PhysicalConstant ;
    rdfs:label "muon magnetic moment anomaly"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMagneticMomentAnomaly> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/MuonMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/MuonMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/MuonMass> a qudt:PhysicalConstant ;
    rdfs:label "muon mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "muon mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/MuonMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "muon mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/MuonMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "muon mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/MuonMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "muon molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonNeutronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon-neutron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonNeutronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon-proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/MuonProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MuonTauMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "muon-tau mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MuonTauMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NaturalUnitOfAction> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of action"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfAction> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfActionInEVS> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of action in eV s"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfActionInEVS> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfEnergy> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of energy"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergy> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfEnergyInMeV> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of energy in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergyInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfLength> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of length"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfLength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfMass> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfMomentum> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of momentum"@en ;
    qudt:hasQuantityKind qudtqk:LinearMomentum ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfMomentumInMeV-PER-c> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of momentum in MeV PER c"@en ;
    qudt:hasQuantityKind qudtqk:LinearMomentum ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentumInMeVPerC> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfTime> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of time"@en ;
    qudt:hasQuantityKind qudtqk:Time ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfTime> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NaturalUnitOfVelocity> a qudt:PhysicalConstant ;
    rdfs:label "natural unit of velocity"@en ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:LinearVelocity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NaturalUnitOfVelocity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Natural_units> .

<http://qudt.org/vocab/constant/NeutronComptonWavelength> a qudt:PhysicalConstant ;
    rdfs:label "neutron Compton wavelength"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronComptonWavelength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/NeutronComptonWavelengthOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "neutron Compton wavelength over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronComptonWavelengthOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/NeutronElectronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-electron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronElectronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_magnetic_dipole_moment> .

<http://qudt.org/vocab/constant/NeutronElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronGFactor> a qudt:PhysicalConstant ;
    rdfs:label "neutron g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/NeutronGyromagneticRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron gyromagnetic ratio"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/NeutronGyromagneticRatioOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "neutron gyromagnetic ratio over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatioOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/NeutronMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "neutron magnetic moment"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Neutron_magnetic_moment"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton>,
        <http://dbpedia.org/resource/Neutron_magnetic_moment> .

<http://qudt.org/vocab/constant/NeutronMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron_magnetic_moment>,
        <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/NeutronMass> a qudt:PhysicalConstant ;
    rdfs:label "neutron mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron> .

<http://qudt.org/vocab/constant/NeutronMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "neutron mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/NeutronMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "neutron mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/NeutronMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "neutron mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/NeutronMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "neutron molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronMuonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-muon mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronMuonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/NeutronProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronTauMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron-tau mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronTauMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NeutronToShieldedProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "neutron to shielded proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NeutronToShieldedProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/NewtonianConstantOfGravitation> a qudt:PhysicalConstant ;
    rdfs:label "Newtonian constant of gravitation"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gravitational_constant"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:GravitationalAttraction ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitation> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/NuclearMagneton> a qudt:PhysicalConstant ;
    rdfs:label "Nuclear Magneton"@en ;
    dcterms:description """
  The constant $\\textit{Nuclear Magneton}$ is the natural unit for expressing magnetic dipole moments of
   heavy particles such as nucleons and atomic nuclei.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-T ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nuclear_magneton"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_magneton"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_N = \\frac{e\\hbar}{2m_p}$, where $e$ is the elementary charge, $\\hbar$ is the Planck constant, and $m_p$ is the rest mass of proton."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu_N$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NuclearMagneton> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:related <http://qudt.org/vocab/constant/BohrMagneton> .

<http://qudt.org/vocab/constant/NuclearMagnetonInEVPerT> a qudt:PhysicalConstant ;
    rdfs:label "nuclear magneton in eV per T"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NuclearMagnetonInEVPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/NuclearMagnetonInInverseMetersPerTesla> a qudt:PhysicalConstant ;
    rdfs:label "nuclear magneton in inverse metres per tesla"@en,
        "nuclear magneton in inverse meters per tesla"@en-us ;
    qudt:hasQuantityKind qudtqk:MagneticReluctivity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NuclearMagnetonInInverseMetersPerTesla> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/NuclearMagnetonInKPerT> a qudt:PhysicalConstant ;
    rdfs:label "nuclear magneton in K per T"@en ;
    qudt:hasQuantityKind qudtqk:TemperaturePerMagneticFluxDensity ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NuclearMagnetonInKPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/NuclearMagnetonInMHzPerT> a qudt:PhysicalConstant ;
    rdfs:label "nuclear magneton in MHz per T"@en ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_NuclearMagnetonInMHzPerT> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/Pi> a qudt:PhysicalConstant ;
    rdfs:label "Pi"@en ;
    dcterms:description """
  The constant $\\pi$ is the ratio of a circle's circumference to its diameter, commonly approximated as 3.14159.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pi"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Angle ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pi"^^xsd:anyURI ;
    qudt:latexDefinition "$\\pi = \\frac{C}{d}$, where $C$ is the circumference of a circle and $d$ is the diameter of a circle."^^qudt:LatexString ;
    qudt:latexSymbol "$\\pi$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PlanckConstantInEVS> a qudt:PhysicalConstant ;
    rdfs:label "Planck constant in eV s"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstantInEVS> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/PlanckConstantOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "Planck constant over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstantOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/PlanckConstantOver2PiInEVS> a qudt:PhysicalConstant ;
    rdfs:label "Planck constant over 2 pi in eV s"@en ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiInEVS> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/PlanckConstantOver2PiTimesCInMeVFm> a qudt:PhysicalConstant ;
    rdfs:label "Planck constant over 2 pi times c in MeV fm"@en ;
    qudt:hasQuantityKind qudtqk:LengthEnergy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiTimesCInMeVFm> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_constant> .

<http://qudt.org/vocab/constant/PlanckLength> a qudt:PhysicalConstant ;
    rdfs:label "Planck length"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_length"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckLength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PlanckMass> a qudt:PhysicalConstant ;
    rdfs:label "Planck mass"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_mass"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PlanckMassEnergyEquivalentInGeV> a qudt:PhysicalConstant ;
    rdfs:label "Planck mass energy equivalent in GeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckMassEnergyEquivalentInGeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Planck_mass> .

<http://qudt.org/vocab/constant/PlanckTemperature> a qudt:PhysicalConstant ;
    rdfs:label "Planck temperature"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_temperature"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:ThermodynamicTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckTemperature> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PlanckTime> a qudt:PhysicalConstant ;
    rdfs:label "Planck time"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_time"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Time ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckTime> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonChargeToMassQuotient> a qudt:PhysicalConstant ;
    rdfs:label "proton charge to mass quotient"@en ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonChargeToMassQuotient> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass-to-charge_ratio> .

<http://qudt.org/vocab/constant/ProtonComptonWavelength> a qudt:PhysicalConstant ;
    rdfs:label "proton Compton wavelength"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonComptonWavelength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/ProtonComptonWavelengthOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "proton Compton wavelength over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonComptonWavelengthOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/ProtonElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonGFactor> a qudt:PhysicalConstant ;
    rdfs:label "proton g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ProtonGyromagneticRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton gyromagnetic ratio"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ProtonGyromagneticRatioOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "proton gyromagnetic ratio over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatioOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ProtonMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "proton magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/ProtonMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/ProtonMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/ProtonMagneticShieldingCorrection> a qudt:PhysicalConstant ;
    rdfs:label "proton mag. shielding correction"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMagneticShieldingCorrection> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonMass> a qudt:PhysicalConstant ;
    rdfs:label "proton mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMass> ;
    qudt:ucumCode "[m_p]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Proton> .

<http://qudt.org/vocab/constant/ProtonMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "proton mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/ProtonMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "proton mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/ProtonMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "proton mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/ProtonMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "proton molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonMuonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton-muon mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonMuonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonNeutronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton-neutron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonNeutronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron_magnetic_moment> .

<http://qudt.org/vocab/constant/ProtonNeutronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton-neutron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonNeutronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ProtonRmsChargeRadius> a qudt:PhysicalConstant ;
    rdfs:label "proton rms charge radius"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonRmsChargeRadius> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nucleon> .

<http://qudt.org/vocab/constant/ProtonTauMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "proton-tau mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ProtonTauMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/QuantumOfCirculation> a qudt:PhysicalConstant ;
    rdfs:label "quantum of circulation"@en ;
    qudt:hasQuantityKind qudtqk:Circulation ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_QuantumOfCirculation> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Circulation_%28fluid_dynamics%29> .

<http://qudt.org/vocab/constant/QuantumOfCirculationTimes2> a qudt:PhysicalConstant ;
    rdfs:label "quantum of circulation times 2"@en ;
    qudt:hasQuantityKind qudtqk:Circulation ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_QuantumOfCirculationTimes2> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Circulation_%28fluid_dynamics%29> .

<http://qudt.org/vocab/constant/ReducedPlanckConstant> a qudt:PhysicalConstant ;
    rdfs:label "Reduced Planck Constant"@en ;
    dcterms:description """
  The $\\textit{Reduced Planck Constant}$, or $\\textit{Dirac Constant}$, is used in applications where
   frequency is expressed in terms of radians per second ($\\textit{angular frequency}$) instead of cycles per second. 
  In such cases a factor of $\\pi$ is absorbed into the constant.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-SEC ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_constant"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\hbar = \\frac{h}{2\\pi}$, where $h$ is the Planck constant."^^qudt:LatexString ;
    qudt:latexSymbol "$\\hbar$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstantOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:broader <http://qudt.org/vocab/constant/PlanckConstant> .

<http://qudt.org/vocab/constant/RydbergConstant> a qudt:PhysicalConstant ;
    rdfs:label "Rydberg Constant"@en ;
    dcterms:description """
  The $\\textit{Rydberg constant}$, named after the Swedish physicist Johannes Rydberg, is a physical constant
   relating to atomic spectra, in the science of spectroscopy.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-M ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Rydberg_constant"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:InverseLength ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Rydberg_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$R_\\infty = \\frac{e^2}{8\\pi \\varepsilon_0 a_0 h c_0 }$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, $a_0$ is the Bohr radius, $h$ is the Planck constant, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ;
    qudt:latexSymbol "$R_\\infty$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_RydbergConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/RydbergConstantTimesCInHz> a qudt:PhysicalConstant ;
    rdfs:label "Rydberg constant times c in Hz"@en ;
    qudt:hasQuantityKind qudtqk:Frequency ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_RydbergConstantTimesCInHz> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Rydberg_constant> .

<http://qudt.org/vocab/constant/RydbergConstantTimesHcInEV> a qudt:PhysicalConstant ;
    rdfs:label "Rydberg constant times hc in eV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInEV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Rydberg_constant> .

<http://qudt.org/vocab/constant/RydbergConstantTimesHcInJ> a qudt:PhysicalConstant ;
    rdfs:label "Rydberg constant times hc in J"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInJ> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Rydberg_constant> .

<http://qudt.org/vocab/constant/SackurTetrodeConstant1K100KPa> a qudt:PhysicalConstant ;
    rdfs:label "Sackur-Tetrode constant 1 K 100 kPa"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K100KPa> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/SackurTetrodeConstant1K101dot325KPa> a qudt:PhysicalConstant ;
    rdfs:label "Sackur-Tetrode constant 1 K 101.325 kPa"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101dot325KPa> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/SecondRadiationConstant> a qudt:PhysicalConstant ;
    rdfs:label "second radiation constant"@en ;
    qudt:hasQuantityKind qudtqk:LengthTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_SecondRadiationConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ShieldedHelionGyromagneticRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion gyromagnetic ratio"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ShieldedHelionGyromagneticRatioOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion gyromagnetic ratio over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatioOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ShieldedHelionMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/ShieldedHelionMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/ShieldedHelionMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/ShieldedHelionToProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion to proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionToProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ShieldedHelionToShieldedProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded helion to shielded proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedHelionToShieldedProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/ShieldedProtonGyromagneticRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded proton gyromagnetic ratio"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ShieldedProtonGyromagneticRatioOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "shielded proton gyromagnetic ratio over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:GyromagneticRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatioOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Gyromagnetic_ratio> .

<http://qudt.org/vocab/constant/ShieldedProtonMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "shielded proton magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/ShieldedProtonMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded proton magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/ShieldedProtonMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "shielded proton magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/StandardAccelerationOfGravity> a qudt:PhysicalConstant ;
    rdfs:label "standard acceleration of gravity"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Standard_gravity"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:LinearAcceleration ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_StandardAccelerationOfGravity> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/StandardAtmosphere> a qudt:PhysicalConstant ;
    rdfs:label "standard atmosphere"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Standard_atmosphere"^^xsd:anyURI ;
    qudt:exactConstant true ;
    qudt:hasQuantityKind qudtqk:Pressure ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_StandardAtmosphere> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/StefanBoltzmannConstant> a qudt:PhysicalConstant ;
    rdfs:label "Stefan-Boltzmann Constant"@en ;
    dcterms:description """
  The $\\textit{Stefan Boltzmann Constant}$ is a proportionality factor between the specific radiant heat
   of a black body and the 4th power of its absolute temperature.
  """^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Stefan%E2%80%93Boltzmann_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-4T-3D0> ;
    qudt:hasQuantityKind qudtqk:PowerPerAreaQuarticTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:plainTextDescription "Proportionalitätsfaktor zwischen der spezifischen Strahlungswärme eines schwarzen Strahlers und seiner absoluten Temperatur in der 4. Potenz"@de ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_StefanBoltzmannConstant> ;
    qudt:symbol "0173-1#Z4-BAJ444#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauComptonWavelength> a qudt:PhysicalConstant ;
    rdfs:label "tau Compton wavelength"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauComptonWavelength> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/TauComptonWavelengthOver2Pi> a qudt:PhysicalConstant ;
    rdfs:label "tau Compton wavelength over 2 pi"@en ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauComptonWavelengthOver2Pi> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Compton_wavelength> .

<http://qudt.org/vocab/constant/TauElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "tau-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauMass> a qudt:PhysicalConstant ;
    rdfs:label "tau mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "tau mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/TauMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "tau mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/TauMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "tau mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/TauMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "tau molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauMuonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "tau-muon mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauMuonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauNeutronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "tau-neutron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauNeutronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TauProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "tau-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TauProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ThomsonCrossSection> a qudt:PhysicalConstant ;
    rdfs:label "Thomson cross section"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Thomson_scattering"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ThomsonCrossSection> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TritonElectronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton-electron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonElectronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Electron_magnetic_dipole_moment> .

<http://qudt.org/vocab/constant/TritonElectronMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton-electron mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonElectronMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TritonGFactor> a qudt:PhysicalConstant ;
    rdfs:label "triton g factor"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonGFactor> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/TritonMagneticMoment> a qudt:PhysicalConstant ;
    rdfs:label "triton magnetic moment"@en ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMagneticMoment> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Magnetic_moment> .

<http://qudt.org/vocab/constant/TritonMagneticMomentToBohrMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton magnetic moment to Bohr magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMagneticMomentToBohrMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Bohr_magneton> .

<http://qudt.org/vocab/constant/TritonMagneticMomentToNuclearMagnetonRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton magnetic moment to nuclear magneton ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMagneticMomentToNuclearMagnetonRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Nuclear_magneton> .

<http://qudt.org/vocab/constant/TritonMass> a qudt:PhysicalConstant ;
    rdfs:label "triton mass"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TritonMassEnergyEquivalent> a qudt:PhysicalConstant ;
    rdfs:label "triton mass energy equivalent"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalent> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/TritonMassEnergyEquivalentInMeV> a qudt:PhysicalConstant ;
    rdfs:label "triton mass energy equivalent in MeV"@en ;
    qudt:hasQuantityKind qudtqk:Energy ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalentInMeV> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Mass%E2%80%93energy_equivalence> .

<http://qudt.org/vocab/constant/TritonMassInAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "triton mass in atomic mass unit"@en ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMassInAtomicMassUnit> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_mass_unit> .

<http://qudt.org/vocab/constant/TritonMolarMass> a qudt:PhysicalConstant ;
    rdfs:label "triton molar mass"@en ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonMolarMass> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/TritonNeutronMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton-neutron magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonNeutronMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Neutron_magnetic_moment> .

<http://qudt.org/vocab/constant/TritonProtonMagneticMomentRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton-proton magnetic moment ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonProtonMagneticMomentRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/G-factor> .

<http://qudt.org/vocab/constant/TritonProtonMassRatio> a qudt:PhysicalConstant ;
    rdfs:label "triton-proton mass ratio"@en ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_TritonProtonMassRatio> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/UnifiedAtomicMassUnit> a qudt:PhysicalConstant ;
    rdfs:label "unified atomic mass unit"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_mass_unit"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:Mass ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_UnifiedAtomicMassUnit> ;
    qudt:ucumCode "u"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FaradayConstantForConventionalElectricCurrent> a qudt:ConstantValue ;
    rdfs:label "Faraday constant for conventional electric current"^^xsd:string ;
    qudt:hasUnit unit:C-PER-MOL ;
    qudt:value 96485.33212 ;
    qudt:valueSN 9.648533e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?f90#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas> a qudt:ConstantValue ;
    rdfs:label "Value for molar volume of ideal gas 273.15 K 101.325 kPa"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasUnit unit:M3-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000039 ;
    qudt:standardUncertaintySN 3.9e-08 ;
    qudt:value 0.022710981 ;
    qudt:valueSN 2.271098e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mvol#mid"^^xsd:anyURI,
        "http://physics.nist.gov/cgi-bin/cuu/Value?mvolstd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitationOverHbarC> a qudt:ConstantValue ;
    rdfs:label "Newtonian constant of gravitation over hbar c"^^xsd:string ;
    qudt:hasUnit unit:PER-PlanckMass2 ;
    qudt:relativeStandardUncertainty 2.2e-05 ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000000015 ;
    qudt:standardUncertaintySN 1.5e-43 ;
    qudt:value 0.00000000000000000000000000000000000000670883 ;
    qudt:valueSN 6.70883e-39 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?bgspu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SpeedOfLight> a qudt:ConstantValue ;
    rdfs:label "Value for velocity of light"^^xsd:string ;
    qudt:hasUnit unit:M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 299792458.0 ;
    qudt:valueSN 2.997925e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/VonKlitzingConstant> a qudt:PhysicalConstant ;
    rdfs:label "Von Klitzing constant"@en ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_VonKlitzingConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Quantum_Hall_effect> .

<http://qudt.org/vocab/constant/WeakMixingAngle> a qudt:PhysicalConstant ;
    rdfs:label "Weak mixing angle"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Weinberg_angle"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:DimensionlessRatio ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_WeakMixingAngle> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/WienFrequencyDisplacementLawConstant> a qudt:PhysicalConstant ;
    rdfs:label "Wien frequency displacement law constant"@en ;
    qudt:hasQuantityKind qudtqk:InverseTimeTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_WienFrequencyDisplacementLawConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Black_body> .

<http://qudt.org/vocab/constant/WienWavelengthDisplacementLawConstant> a qudt:PhysicalConstant ;
    rdfs:label "Wien wavelength displacement law constant"@en ;
    qudt:hasQuantityKind qudtqk:LengthTemperature ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_WienWavelengthDisplacementLawConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Wien%27s_displacement_law> .

<http://qudt.org/vocab/currency/AED> a qudt:CurrencyUnit ;
    rdfs:label "United Arab Emirates dirham"@en ;
    dcterms:isReplacedBy unit:CCY_AED ;
    qudt:currencyCode "AED"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "784"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/United_Arab_Emirates_dirham"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$AED$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/United_Arab_Emirates_dirham?oldid=491806142"^^xsd:anyURI ;
    qudt:symbol "د.إ"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AFN> a qudt:CurrencyUnit ;
    rdfs:label "Afghani"@en ;
    dcterms:isReplacedBy unit:CCY_AFN ;
    qudt:currencyCode "AFN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "971"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Afghani"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Afghani?oldid=485904590"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ALL> a qudt:CurrencyUnit ;
    rdfs:label "Lek"@en ;
    dcterms:isReplacedBy unit:CCY_ALL ;
    qudt:currencyCode "ALL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "008"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lek"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ALL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lek?oldid=495195665"^^xsd:anyURI ;
    qudt:symbol "L"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AMD> a qudt:CurrencyUnit ;
    rdfs:label "Armenian Dram"@en ;
    dcterms:isReplacedBy unit:CCY_AMD ;
    qudt:currencyCode "AMD"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "051"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Armenian_dram"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Armenian_dram?oldid=492709723"^^xsd:anyURI ;
    qudt:symbol "֏"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ANG> a qudt:CurrencyUnit ;
    rdfs:label "Netherlands Antillian Guilder"@en ;
    dcterms:isReplacedBy unit:CCY_ANG ;
    qudt:currencyCode "ANG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "532"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Netherlands_Antillean_guilder"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ANG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Netherlands_Antillean_guilder?oldid=490030382"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AOA> a qudt:CurrencyUnit ;
    rdfs:label "Kwanza"@en ;
    dcterms:isReplacedBy unit:CCY_AOA ;
    qudt:currencyCode "AOA"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "973"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Angolan_kwanza"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$AOA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Angolan_kwanza?oldid=491748749"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ARS> a qudt:CurrencyUnit ;
    rdfs:label "Argentine Peso"@en ;
    dcterms:isReplacedBy unit:CCY_ARS ;
    qudt:currencyCode "ARS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "032"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Argentine_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Argentine_peso?oldid=491431588"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AUD> a qudt:CurrencyUnit ;
    rdfs:label "Australian Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_AUD ;
    qudt:currencyCode "AUD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "036"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Australian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Australian_dollar?oldid=495046408"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/AustralianDollar> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AWG> a qudt:CurrencyUnit ;
    rdfs:label "Aruban Guilder"@en ;
    dcterms:isReplacedBy unit:CCY_AWG ;
    qudt:currencyCode "AWG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "533"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Aruban_florin"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Aruban_florin?oldid=492925638"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/AZN> a qudt:CurrencyUnit ;
    rdfs:label "Azerbaijanian Manat"@en ;
    dcterms:isReplacedBy unit:CCY_AZN ;
    qudt:currencyCode "AZN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "944"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Azerbaijani_manat"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Azerbaijani_manat?oldid=495479090"^^xsd:anyURI ;
    qudt:symbol "₼"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BAM> a qudt:CurrencyUnit ;
    rdfs:label "Convertible Marks"@en ;
    dcterms:isReplacedBy unit:CCY_BAM ;
    qudt:currencyCode "BAM"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "977"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$BAM$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol "KM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BBD> a qudt:CurrencyUnit ;
    rdfs:label "Barbados Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_BBD ;
    qudt:currencyCode "BBD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "052"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Barbadian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Barbadian_dollar?oldid=494388633"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BDT> a qudt:CurrencyUnit ;
    rdfs:label "Bangladeshi Taka"@en ;
    dcterms:isReplacedBy unit:CCY_BDT ;
    qudt:currencyCode "BDT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "050"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bangladeshi_taka"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bangladeshi_taka?oldid=492673895"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BGN> a qudt:CurrencyUnit ;
    rdfs:label "Bulgarian Lev"@en ;
    dcterms:isReplacedBy unit:CCY_BGN ;
    qudt:currencyCode "BGN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "975"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bulgarian_lev"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BGN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bulgarian_lev?oldid=494947467"^^xsd:anyURI ;
    qudt:symbol "лв."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BHD> a qudt:CurrencyUnit ;
    rdfs:label "Bahraini Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_BHD ;
    qudt:currencyCode "BHD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "048"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bahraini_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bahraini_dinar?oldid=493086643"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BIF> a qudt:CurrencyUnit ;
    rdfs:label "Burundian Franc"@en ;
    dcterms:isReplacedBy unit:CCY_BIF ;
    qudt:currencyCode "BIF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "108"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Burundian_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BIF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Burundian_franc?oldid=489383699"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BMD> a qudt:CurrencyUnit ;
    rdfs:label "Bermuda Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_BMD ;
    qudt:currencyCode "BMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "060"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bermudian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bermudian_dollar?oldid=492670344"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BND> a qudt:CurrencyUnit ;
    rdfs:label "Brunei Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_BND ;
    qudt:currencyCode "BND"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "096"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Brunei_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Brunei_dollar?oldid=495134546"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BOB> a qudt:CurrencyUnit ;
    rdfs:label "Boliviano"@en ;
    dcterms:isReplacedBy unit:CCY_BOB ;
    qudt:currencyCode "BOB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "068"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bolivian_boliviano"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BOB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bolivian_boliviano?oldid=494873944"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BOV> a qudt:CurrencyUnit ;
    rdfs:label "Bolivian Mvdol (Funds code)"@en ;
    dcterms:isReplacedBy unit:CCY_BOV ;
    qudt:currencyCode "BOV"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "984"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$BOV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BRL> a qudt:CurrencyUnit ;
    rdfs:label "Brazilian Real"@en ;
    dcterms:isReplacedBy unit:CCY_BRL ;
    qudt:currencyCode "BRL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "986"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Brazilian_real"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BRL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Brazilian_real?oldid=495278259"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/BrazilianReal> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BSD> a qudt:CurrencyUnit ;
    rdfs:label "Bahamian Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_BSD ;
    qudt:currencyCode "BSD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "044"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bahamian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bahamian_dollar?oldid=492776024"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BTN> a qudt:CurrencyUnit ;
    rdfs:label "Ngultrum"@en ;
    dcterms:isReplacedBy unit:CCY_BTN ;
    qudt:currencyCode "BTN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "064"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bhutanese_ngultrum"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BTN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bhutanese_ngultrum?oldid=491579260"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BWP> a qudt:CurrencyUnit ;
    rdfs:label "Pula"@en ;
    dcterms:isReplacedBy unit:CCY_BWP ;
    qudt:currencyCode "BWP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "072"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pula"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BWP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pula?oldid=495207177"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BYN> a qudt:CurrencyUnit ;
    rdfs:label "Belarussian Ruble"@en ;
    dcterms:isReplacedBy unit:CCY_BYN ;
    qudt:currencyCode "BYN"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "933"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Belarusian_ruble"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Belarusian_ruble?oldid=494143246"^^xsd:anyURI ;
    qudt:symbol "Rbl"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/BZD> a qudt:CurrencyUnit ;
    rdfs:label "Belize Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_BZD ;
    qudt:currencyCode "BZD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "084"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Belize_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$BZD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Belize_dollar?oldid=462662376"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CAD> a qudt:CurrencyUnit ;
    rdfs:label "Canadian Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_CAD ;
    qudt:currencyCode "CAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "124"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Canadian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Canadian_dollar?oldid=494738466"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/CanadianDollar> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CDF> a qudt:CurrencyUnit ;
    rdfs:label "Franc Congolais"@en ;
    dcterms:isReplacedBy unit:CCY_CDF ;
    qudt:currencyCode "CDF"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "976"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Congolese_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CDF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Congolese_franc?oldid=490314640"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CHE> a qudt:CurrencyUnit ;
    rdfs:label "WIR Euro (complementary currency)"@en ;
    dcterms:isReplacedBy unit:CCY_CHE ;
    qudt:currencyCode "CHE"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "947"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$CHE$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CHF> a qudt:CurrencyUnit ;
    rdfs:label "Swiss Franc"@en ;
    dcterms:isReplacedBy unit:CCY_CHF ;
    qudt:currencyCode "CHF"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "756"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Swiss_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CHF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Swiss_franc?oldid=492548706"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SwissFranc> ;
    qudt:symbol "CHF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CHW> a qudt:CurrencyUnit ;
    rdfs:label "WIR Franc (complementary currency)"@en ;
    dcterms:isReplacedBy unit:CCY_CHW ;
    qudt:currencyCode "CHW"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "948"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$CHW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CLF> a qudt:CurrencyUnit ;
    rdfs:label "Unidades de formento (Funds code)"@en ;
    dcterms:isReplacedBy unit:CCY_CLF ;
    qudt:currencyCode "CLF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "990"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$CLF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CLP> a qudt:CurrencyUnit ;
    rdfs:label "Chilean Peso"@en ;
    dcterms:isReplacedBy unit:CCY_CLP ;
    qudt:currencyCode "CLP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "152"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Chilean_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CLP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Chilean_peso?oldid=495455481"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CNY> a qudt:CurrencyUnit ;
    rdfs:label "Yuan Renminbi"@en ;
    dcterms:isReplacedBy unit:CCY_CNY ;
    qudt:currencyCode "CNY"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "156"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Renminbi"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CNY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Renminbi?oldid=494799454"^^xsd:anyURI ;
    qudt:symbol "¥"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/COP> a qudt:CurrencyUnit ;
    rdfs:label "Colombian Peso"@en ;
    dcterms:isReplacedBy unit:CCY_COP ;
    qudt:currencyCode "COP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "170"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Colombian_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$COP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Colombian_peso?oldid=490834575"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/COU> a qudt:CurrencyUnit ;
    rdfs:label "Unidad de Valor Real"@en ;
    dcterms:isReplacedBy unit:CCY_COU ;
    qudt:currencyCode "COU"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "970"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$COU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CRC> a qudt:CurrencyUnit ;
    rdfs:label "Costa Rican Colon"@en ;
    dcterms:isReplacedBy unit:CCY_CRC ;
    qudt:currencyCode "CRC"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "188"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Costa_Rican_col%C3%B3n"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CRC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Costa_Rican_colón?oldid=491007608"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CUP> a qudt:CurrencyUnit ;
    rdfs:label "Cuban Peso"@en ;
    dcterms:isReplacedBy unit:CCY_CUP ;
    qudt:currencyCode "CUP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "192"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cuban_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CUP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cuban_peso?oldid=486492974"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CVE> a qudt:CurrencyUnit ;
    rdfs:label "Cape Verde Escudo"@en ;
    dcterms:isReplacedBy unit:CCY_CVE ;
    qudt:currencyCode "CVE"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "132"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cape_Verdean_escudo"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CVE$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cape_Verdean_escudo?oldid=491416749"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CYP> a qudt:CurrencyUnit ;
    rdfs:label "Cyprus Pound"@en ;
    dcterms:isReplacedBy unit:CCY_CYP ;
    qudt:currencyCode "CYP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "196"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cypriot_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CYP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cypriot_pound?oldid=492644935"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/CZK> a qudt:CurrencyUnit ;
    rdfs:label "Czech Koruna"@en ;
    dcterms:isReplacedBy unit:CCY_CZK ;
    qudt:currencyCode "CZK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "203"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Czech_koruna"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$CZK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Czech_koruna?oldid=493991393"^^xsd:anyURI ;
    qudt:symbol "Kč"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/DJF> a qudt:CurrencyUnit ;
    rdfs:label "Djibouti Franc"@en ;
    dcterms:isReplacedBy unit:CCY_DJF ;
    qudt:currencyCode "DJF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "262"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Djiboutian_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$DJF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Djiboutian_franc?oldid=486807423"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/DKK> a qudt:CurrencyUnit ;
    rdfs:label "Danish Krone"@en ;
    dcterms:isReplacedBy unit:CCY_DKK ;
    qudt:currencyCode "DKK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "208"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Danish_krone"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$DKK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Danish_krone?oldid=491168880"^^xsd:anyURI ;
    qudt:symbol "kr"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/DOP> a qudt:CurrencyUnit ;
    rdfs:label "Dominican Peso"@en ;
    dcterms:isReplacedBy unit:CCY_DOP ;
    qudt:currencyCode "DOP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "214"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dominican_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$DOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dominican_peso?oldid=493950199"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/DZD> a qudt:CurrencyUnit ;
    rdfs:label "Algerian Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_DZD ;
    qudt:currencyCode "DZD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "012"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Algerian_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Algerian_dinar?oldid=492845503"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/EEK> a qudt:CurrencyUnit ;
    rdfs:label "Kroon"@en ;
    dcterms:isReplacedBy unit:CCY_EEK ;
    qudt:currencyCode "EEK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "233"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Estonian_kroon"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$EEK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Estonian_kroon?oldid=492626188"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/EGP> a qudt:CurrencyUnit ;
    rdfs:label "Egyptian Pound"@en ;
    dcterms:isReplacedBy unit:CCY_EGP ;
    qudt:currencyCode "EGP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "818"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Egyptian_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$EGP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Egyptian_pound?oldid=494670285"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ERN> a qudt:CurrencyUnit ;
    rdfs:label "Nakfa"@en ;
    dcterms:isReplacedBy unit:CCY_ERN ;
    qudt:currencyCode "ERN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "232"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nakfa"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ERN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nakfa?oldid=415286274"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ETB> a qudt:CurrencyUnit ;
    rdfs:label "Ethiopian Birr"@en ;
    dcterms:isReplacedBy unit:CCY_ETB ;
    qudt:currencyCode "ETB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "230"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ethiopian_birr"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ETB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ethiopian_birr?oldid=493373507"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/EUR> a qudt:CurrencyUnit ;
    rdfs:label "Euro"@en ;
    dcterms:isReplacedBy unit:CCY_EUR ;
    qudt:currencyCode "EUR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "978"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Euro"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$EUR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Euro?oldid=495293446"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/euro> ;
    qudt:symbol "€"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/FJD> a qudt:CurrencyUnit ;
    rdfs:label "Fiji Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_FJD ;
    qudt:currencyCode "FJD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "242"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Fijian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$FJD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fijian_dollar?oldid=494373740"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/FKP> a qudt:CurrencyUnit ;
    rdfs:label "Falkland Islands Pound"@en ;
    dcterms:isReplacedBy unit:CCY_FKP ;
    qudt:currencyCode "FKP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "238"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Falkland_Islands_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$FKP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Falkland_Islands_pound?oldid=489513616"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GBP> a qudt:CurrencyUnit ;
    rdfs:label "Pound Sterling"@en ;
    dcterms:isReplacedBy unit:CCY_GBP ;
    qudt:currencyCode "GBP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "826"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pound_sterling"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GBP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pound_sterling?oldid=495524329"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/poundSterling> ;
    qudt:symbol "£"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GEL> a qudt:CurrencyUnit ;
    rdfs:label "Lari"@en ;
    dcterms:isReplacedBy unit:CCY_GEL ;
    qudt:currencyCode "GEL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "981"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lari"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GEL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lari?oldid=486808394"^^xsd:anyURI ;
    qudt:symbol "₾"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GHS> a qudt:CurrencyUnit ;
    rdfs:label "Cedi"@en ;
    dcterms:isReplacedBy unit:CCY_GHS ;
    qudt:currencyCode "GHS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "936"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ghanaian_cedi"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GHS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ghanaian_cedi?oldid=415914569"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GIP> a qudt:CurrencyUnit ;
    rdfs:label "Gibraltar pound"@en ;
    dcterms:isReplacedBy unit:CCY_GIP ;
    qudt:currencyCode "GIP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "292"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gibraltar_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GIP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gibraltar_pound?oldid=494842600"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GMD> a qudt:CurrencyUnit ;
    rdfs:label "Dalasi"@en ;
    dcterms:isReplacedBy unit:CCY_GMD ;
    qudt:currencyCode "GMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "270"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gambian_dalasi"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gambian_dalasi?oldid=489522429"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GNF> a qudt:CurrencyUnit ;
    rdfs:label "Guinea Franc"@en ;
    dcterms:isReplacedBy unit:CCY_GNF ;
    qudt:currencyCode "GNF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "324"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Guinean_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GNF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guinean_franc?oldid=489527042"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GTQ> a qudt:CurrencyUnit ;
    rdfs:label "Quetzal"@en ;
    dcterms:isReplacedBy unit:CCY_GTQ ;
    qudt:currencyCode "GTQ"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "320"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Quetzal"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GTQ$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Quetzal?oldid=489813522"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/GYD> a qudt:CurrencyUnit ;
    rdfs:label "Guyana Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_GYD ;
    qudt:currencyCode "GYD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "328"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Guyanese_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$GYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guyanese_dollar?oldid=495070062"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/HKD> a qudt:CurrencyUnit ;
    rdfs:label "Hong Kong Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_HKD ;
    qudt:currencyCode "HKD"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "344"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Hong_Kong_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$HKD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Hong_Kong_dollar?oldid=495133277"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/HongKongDollar> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/HNL> a qudt:CurrencyUnit ;
    rdfs:label "Lempira"@en ;
    dcterms:isReplacedBy unit:CCY_HNL ;
    qudt:currencyCode "HNL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "340"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lempira"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$HNL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lempira?oldid=389955747"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/HRK> a qudt:CurrencyUnit ;
    rdfs:label "Croatian Kuna"@en ;
    dcterms:isReplacedBy unit:CCY_HRK ;
    qudt:currencyCode "HRK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "191"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Croatian_kuna"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$HRK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Croatian_kuna?oldid=490959527"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/HTG> a qudt:CurrencyUnit ;
    rdfs:label "Haiti Gourde"@en ;
    dcterms:isReplacedBy unit:CCY_HTG ;
    qudt:currencyCode "HTG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "332"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Haitian_gourde"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$HTG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Haitian_gourde?oldid=486090975"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/HUF> a qudt:CurrencyUnit ;
    rdfs:label "Forint"@en ;
    dcterms:isReplacedBy unit:CCY_HUF ;
    qudt:currencyCode "HUF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "348"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Hungarian_forint"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$HUF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Hungarian_forint?oldid=492818607"^^xsd:anyURI ;
    qudt:symbol "Ft"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/IDR> a qudt:CurrencyUnit ;
    rdfs:label "Rupiah"@en ;
    dcterms:isReplacedBy unit:CCY_IDR ;
    qudt:currencyCode "IDR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "360"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Indonesian_rupiah"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$IDR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Indonesian_rupiah?oldid=489729458"^^xsd:anyURI ;
    qudt:symbol "Rp"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ILS> a qudt:CurrencyUnit ;
    rdfs:label "New Israeli Shekel"@en ;
    dcterms:isReplacedBy unit:CCY_ILS ;
    qudt:currencyCode "ILS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "376"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Israeli_new_sheqel"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ILS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Israeli_new_sheqel?oldid=316213924"^^xsd:anyURI ;
    qudt:symbol "₪"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/INR> a qudt:CurrencyUnit ;
    rdfs:label "Indian Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_INR ;
    qudt:currencyCode "INR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "356"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Indian_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$INR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Indian_rupee?oldid=495120167"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/IndianRupee> ;
    qudt:symbol "₹"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/IQD> a qudt:CurrencyUnit ;
    rdfs:label "Iraqi Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_IQD ;
    qudt:currencyCode "IQD"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "368"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Iraqi_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$IQD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Iraqi_dinar?oldid=494793908"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/IRR> a qudt:CurrencyUnit ;
    rdfs:label "Iranian Rial"@en ;
    dcterms:isReplacedBy unit:CCY_IRR ;
    qudt:currencyCode "IRR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "364"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Iranian_rial"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$IRR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Iranian_rial?oldid=495299431"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ISK> a qudt:CurrencyUnit ;
    rdfs:label "Iceland Krona"@en ;
    dcterms:isReplacedBy unit:CCY_ISK ;
    qudt:currencyCode "ISK"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "352"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Icelandic_kr%C3%B3na"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ISK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Icelandic_króna?oldid=495457496"^^xsd:anyURI ;
    qudt:symbol "kr"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/JMD> a qudt:CurrencyUnit ;
    rdfs:label "Jamaican Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_JMD ;
    qudt:currencyCode "JMD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "388"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Jamaican_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$JMD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Jamaican_dollar?oldid=494039981"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/JOD> a qudt:CurrencyUnit ;
    rdfs:label "Jordanian Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_JOD ;
    qudt:currencyCode "JOD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "400"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Jordanian_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$JOD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Jordanian_dinar?oldid=495270728"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/JPY> a qudt:CurrencyUnit ;
    rdfs:label "Japanese yen"@en ;
    dcterms:isReplacedBy unit:CCY_JPY ;
    qudt:currencyCode "JPY"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "392"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Japanese_yen"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$JPY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Japanese_yen?oldid=493771966"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/JapaneseYen> ;
    qudt:symbol "¥"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KES> a qudt:CurrencyUnit ;
    rdfs:label "Kenyan Shilling"@en ;
    dcterms:isReplacedBy unit:CCY_KES ;
    qudt:currencyCode "KES"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "404"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kenyan_shilling"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KES$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kenyan_shilling?oldid=489547027"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KGS> a qudt:CurrencyUnit ;
    rdfs:label "Som"@en ;
    dcterms:isReplacedBy unit:CCY_KGS ;
    qudt:currencyCode "KGS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "417"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Som"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KGS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Som?oldid=495411674"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KHR> a qudt:CurrencyUnit ;
    rdfs:label "Riel"@en ;
    dcterms:isReplacedBy unit:CCY_KHR ;
    qudt:currencyCode "KHR"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "116"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Riel"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KHR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Riel?oldid=473309240"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KMF> a qudt:CurrencyUnit ;
    rdfs:label "Comoro Franc"@en ;
    dcterms:isReplacedBy unit:CCY_KMF ;
    qudt:currencyCode "KMF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "174"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Comorian_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KMF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Comorian_franc?oldid=489502162"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KPW> a qudt:CurrencyUnit ;
    rdfs:label "North Korean Won"@en ;
    dcterms:isReplacedBy unit:CCY_KPW ;
    qudt:currencyCode "KPW"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "408"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/North_Korean_won"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KPW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/North_Korean_won?oldid=495081686"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KRW> a qudt:CurrencyUnit ;
    rdfs:label "South Korean Won"@en ;
    dcterms:isReplacedBy unit:CCY_KRW ;
    qudt:currencyCode "KRW"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "410"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/South_Korean_won"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KRW$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/South_Korean_won?oldid=494404062"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SouthKoreanWon> ;
    qudt:symbol "₩"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KWD> a qudt:CurrencyUnit ;
    rdfs:label "Kuwaiti Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_KWD ;
    qudt:currencyCode "KWD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "414"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kuwaiti_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kuwaiti_dinar?oldid=489547428"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KYD> a qudt:CurrencyUnit ;
    rdfs:label "Cayman Islands Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_KYD ;
    qudt:currencyCode "KYD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "136"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cayman_Islands_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cayman_Islands_dollar?oldid=494206112"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/KZT> a qudt:CurrencyUnit ;
    rdfs:label "Tenge"@en ;
    dcterms:isReplacedBy unit:CCY_KZT ;
    qudt:currencyCode "KZT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "398"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kazakhstani_tenge"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$KZT$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kazakhstani_tenge?oldid=490523058"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LAK> a qudt:CurrencyUnit ;
    rdfs:label "Lao kip"@en ;
    dcterms:isReplacedBy unit:CCY_LAK ;
    qudt:currencyCode "LAK"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "418"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol " ₭"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LBP> a qudt:CurrencyUnit ;
    rdfs:label "Lebanese Pound"@en ;
    dcterms:isReplacedBy unit:CCY_LBP ;
    qudt:currencyCode "LBP"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "422"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lebanese_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LBP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lebanese_pound?oldid=495528740"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LKR> a qudt:CurrencyUnit ;
    rdfs:label "Sri Lanka Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_LKR ;
    qudt:currencyCode "LKR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "144"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Sri_Lankan_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LKR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sri_Lankan_rupee?oldid=495359963"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LRD> a qudt:CurrencyUnit ;
    rdfs:label "Liberian Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_LRD ;
    qudt:currencyCode "LRD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "430"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Liberian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LRD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Liberian_dollar?oldid=489549110"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LSL> a qudt:CurrencyUnit ;
    rdfs:label "Loti"@en ;
    dcterms:isReplacedBy unit:CCY_LSL ;
    qudt:currencyCode "LSL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "426"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Loti"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LSL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Loti?oldid=384534708"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LTL> a qudt:CurrencyUnit ;
    rdfs:label "Lithuanian Litas"@en ;
    dcterms:isReplacedBy unit:CCY_LTL ;
    qudt:currencyCode "LTL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "440"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lithuanian_litas"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LTL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lithuanian_litas?oldid=493046592"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LVL> a qudt:CurrencyUnit ;
    rdfs:label "Latvian Lats"@en ;
    dcterms:isReplacedBy unit:CCY_LVL ;
    qudt:currencyCode "LVL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "428"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Latvian_lats"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LVL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Latvian_lats?oldid=492800402"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/LYD> a qudt:CurrencyUnit ;
    rdfs:label "Libyan Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_LYD ;
    qudt:currencyCode "LYD"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "434"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Libyan_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$LYD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Libyan_dinar?oldid=491421981"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MAD> a qudt:CurrencyUnit ;
    rdfs:label "Moroccan Dirham"@en ;
    dcterms:isReplacedBy unit:CCY_MAD ;
    qudt:currencyCode "MAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "504"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Moroccan_dirham"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MAD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Moroccan_dirham?oldid=490560557"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MDL> a qudt:CurrencyUnit ;
    rdfs:label "Moldovan Leu"@en ;
    dcterms:isReplacedBy unit:CCY_MDL ;
    qudt:currencyCode "MDL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "498"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Moldovan_leu"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MDL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Moldovan_leu?oldid=490027766"^^xsd:anyURI ;
    qudt:symbol "L"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MGA> a qudt:CurrencyUnit ;
    rdfs:label "Malagasy Ariary"@en ;
    dcterms:isReplacedBy unit:CCY_MGA ;
    qudt:currencyCode "MGA"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "969"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Malagasy_ariary"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MGA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Malagasy_ariary?oldid=489551279"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MKD> a qudt:CurrencyUnit ;
    rdfs:label "Denar"@en ;
    dcterms:isReplacedBy unit:CCY_MKD ;
    qudt:currencyCode "MKD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "807"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Macedonian_denar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MKD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Macedonian_denar?oldid=489550202"^^xsd:anyURI ;
    qudt:symbol "ден"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MMK> a qudt:CurrencyUnit ;
    rdfs:label "Kyat"@en ;
    dcterms:isReplacedBy unit:CCY_MMK ;
    qudt:currencyCode "MMK"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "104"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Myanma_kyat"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MMK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Myanma_kyat?oldid=441109905"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MNT> a qudt:CurrencyUnit ;
    rdfs:label "Mongolian Tugrik"@en ;
    dcterms:isReplacedBy unit:CCY_MNT ;
    qudt:currencyExponent 2 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mongolian_t%C3%B6gr%C3%B6g"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mongolian_tögrög?oldid=495408271"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MOP> a qudt:CurrencyUnit ;
    rdfs:label "Pataca"@en ;
    dcterms:isReplacedBy unit:CCY_MOP ;
    qudt:currencyCode "MOP"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "446"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pataca"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pataca?oldid=482490442"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MRU> a qudt:CurrencyUnit ;
    rdfs:label "Ouguiya"@en ;
    dcterms:isReplacedBy unit:CCY_MRU ;
    qudt:currencyCode "MRU"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "929"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritanian_ouguiya"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MRO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritanian_ouguiya?oldid=490027072"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MTL> a qudt:CurrencyUnit ;
    rdfs:label "Maltese Lira"@en ;
    dcterms:isReplacedBy unit:CCY_MTL ;
    qudt:currencyCode "MTL"^^xsd:string ;
    qudt:currencyNumber "470"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Maltese_lira"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MTL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maltese_lira?oldid=493810797"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MUR> a qudt:CurrencyUnit ;
    rdfs:label "Mauritius Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_MUR ;
    qudt:currencyCode "MUR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "480"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mauritian_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MUR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mauritian_rupee?oldid=487629200"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MVR> a qudt:CurrencyUnit ;
    rdfs:label "Rufiyaa"@en ;
    dcterms:isReplacedBy unit:CCY_MVR ;
    qudt:currencyCode "MVR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "462"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Maldivian_rufiyaa"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MVR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maldivian_rufiyaa?oldid=491578728"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MWK> a qudt:CurrencyUnit ;
    rdfs:label "Malawi Kwacha"@en ;
    dcterms:isReplacedBy unit:CCY_MWK ;
    qudt:currencyCode "MWK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "454"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$MWK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MXN> a qudt:CurrencyUnit ;
    rdfs:label "Mexican Peso"@en ;
    dcterms:isReplacedBy unit:CCY_MXN ;
    qudt:currencyCode "MXN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "484"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mexican_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MXN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mexican_peso?oldid=494829813"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/MexicanPeso> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MXV> a qudt:CurrencyUnit ;
    rdfs:label "Mexican Unidad de Inversion (UDI) (Funds code)"@en ;
    dcterms:isReplacedBy unit:CCY_MXV ;
    qudt:currencyCode "MXV"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "979"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$MXV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MYR> a qudt:CurrencyUnit ;
    rdfs:label "Malaysian Ringgit"@en ;
    dcterms:isReplacedBy unit:CCY_MYR ;
    qudt:currencyCode "MYR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "458"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Malaysian_ringgit"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MYR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Malaysian_ringgit?oldid=494417091"^^xsd:anyURI ;
    qudt:symbol "RM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/MZN> a qudt:CurrencyUnit ;
    rdfs:label "Metical"@en ;
    dcterms:isReplacedBy unit:CCY_MZN ;
    qudt:currencyCode "MZN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "943"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mozambican_metical"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$MZN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mozambican_metical?oldid=488225670"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NAD> a qudt:CurrencyUnit ;
    rdfs:label "Namibian Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_NAD ;
    qudt:currencyCode "NAD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "516"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Namibian_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NAD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Namibian_dollar?oldid=495250023"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NGN> a qudt:CurrencyUnit ;
    rdfs:label "Naira"@en ;
    dcterms:isReplacedBy unit:CCY_NGN ;
    qudt:currencyCode "NGN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "566"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nigerian_naira"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NGN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nigerian_naira?oldid=493462003"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NIO> a qudt:CurrencyUnit ;
    rdfs:label "Cordoba Oro"@en ;
    dcterms:isReplacedBy unit:CCY_NIO ;
    qudt:currencyCode "NIO"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "558"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nicaraguan_c%C3%B3rdoba"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NIO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nicaraguan_córdoba?oldid=486140595"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NOK> a qudt:CurrencyUnit ;
    rdfs:label "Norwegian Krone"@en ;
    dcterms:isReplacedBy unit:CCY_NOK ;
    qudt:currencyCode "NOK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "578"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Norwegian_krone"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NOK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Norwegian_krone?oldid=495283934"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/NorwegianKrone> ;
    qudt:symbol "kr"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NPR> a qudt:CurrencyUnit ;
    rdfs:label "Nepalese Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_NPR ;
    qudt:currencyCode "NPR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "524"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Nepalese_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NPR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nepalese_rupee?oldid=476894226"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/NZD> a qudt:CurrencyUnit ;
    rdfs:label "New Zealand Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_NZD ;
    qudt:currencyCode "NZD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "554"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/New_Zealand_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$NZD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/New_Zealand_dollar?oldid=495487722"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/NewZealandDollar> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/OMR> a qudt:CurrencyUnit ;
    rdfs:label "Rial Omani"@en ;
    dcterms:isReplacedBy unit:CCY_OMR ;
    qudt:currencyCode "OMR"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "512"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Omani_rial"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$OMR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Omani_rial?oldid=491748879"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PAB> a qudt:CurrencyUnit ;
    rdfs:label "Balboa"@en ;
    dcterms:isReplacedBy unit:CCY_PAB ;
    qudt:currencyCode "PAB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "590"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Balboa"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Balboa?oldid=482550791"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PEN> a qudt:CurrencyUnit ;
    rdfs:label "Nuevo Sol"@en ;
    dcterms:isReplacedBy unit:CCY_PEN ;
    qudt:currencyCode "PEN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "604"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Peruvian_nuevo_sol"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PEN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Peruvian_nuevo_sol?oldid=494237249"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PGK> a qudt:CurrencyUnit ;
    rdfs:label "Kina"@en ;
    dcterms:isReplacedBy unit:CCY_PGK ;
    qudt:currencyCode "PGK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "598"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kina"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PGK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kina?oldid=477155361"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PHP> a qudt:CurrencyUnit ;
    rdfs:label "Philippine Peso"@en ;
    dcterms:isReplacedBy unit:CCY_PHP ;
    qudt:currencyCode "PHP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "608"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Philippine_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PHP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Philippine_peso?oldid=495411811"^^xsd:anyURI ;
    qudt:symbol "₱"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PKR> a qudt:CurrencyUnit ;
    rdfs:label "Pakistan Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_PKR ;
    qudt:currencyCode "PKR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "586"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Pakistani_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PKR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pakistani_rupee?oldid=494937873"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PLN> a qudt:CurrencyUnit ;
    rdfs:label "Zloty"@en ;
    dcterms:isReplacedBy unit:CCY_PLN ;
    qudt:currencyCode "PLN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "985"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Polish_z%C5%82oty"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PLN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Polish_złoty?oldid=492697733"^^xsd:anyURI ;
    qudt:symbol "zł"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/PYG> a qudt:CurrencyUnit ;
    rdfs:label "Guarani"@en ;
    dcterms:isReplacedBy unit:CCY_PYG ;
    qudt:currencyCode "PYG"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "600"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Guaran%C3%AD"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$PYG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Guaraní?oldid=412592698"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/QAR> a qudt:CurrencyUnit ;
    rdfs:label "Qatari Rial"@en ;
    dcterms:isReplacedBy unit:CCY_QAR ;
    qudt:currencyCode "QAR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "634"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Qatari_riyal"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$QAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Qatari_riyal?oldid=491747452"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/RON> a qudt:CurrencyUnit ;
    rdfs:label "Romanian New Leu"@en ;
    dcterms:isReplacedBy unit:CCY_RON ;
    qudt:currencyCode "RON"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "946"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$RON$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol "L"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/RSD> a qudt:CurrencyUnit ;
    rdfs:label "Serbian Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_RSD ;
    qudt:currencyCode "RSD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "941"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Serbian_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$RSD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Serbian_dinar?oldid=495146650"^^xsd:anyURI ;
    qudt:symbol "дин"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/RUB> a qudt:CurrencyUnit ;
    rdfs:label "Russian Ruble"@en ;
    dcterms:isReplacedBy unit:CCY_RUB ;
    qudt:currencyCode "RUB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "643"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Russian_ruble"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$RUB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Russian_ruble?oldid=494336467"^^xsd:anyURI ;
    qudt:symbol "₽"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/RWF> a qudt:CurrencyUnit ;
    rdfs:label "Rwanda Franc"@en ;
    dcterms:isReplacedBy unit:CCY_RWF ;
    qudt:currencyCode "RWF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "646"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Rwandan_franc"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$RWF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Rwandan_franc?oldid=489727903"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SAR> a qudt:CurrencyUnit ;
    rdfs:label "Saudi Riyal"@en ;
    dcterms:isReplacedBy unit:CCY_SAR ;
    qudt:currencyCode "SAR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "682"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Saudi_riyal"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Saudi_riyal?oldid=491092981"^^xsd:anyURI ;
    qudt:symbol "﷼"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SBD> a qudt:CurrencyUnit ;
    rdfs:label "Solomon Islands Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_SBD ;
    qudt:currencyCode "SBD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "090"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Solomon_Islands_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SBD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Solomon_Islands_dollar?oldid=490313285"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SCR> a qudt:CurrencyUnit ;
    rdfs:label "Seychelles Rupee"@en ;
    dcterms:isReplacedBy unit:CCY_SCR ;
    qudt:currencyCode "SCR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "690"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Seychellois_rupee"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SCR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Seychellois_rupee?oldid=492242185"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SDG> a qudt:CurrencyUnit ;
    rdfs:label "Sudanese Pound"@en ;
    dcterms:isReplacedBy unit:CCY_SDG ;
    qudt:currencyCode "SDG"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "938"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Sudanese_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SDG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sudanese_pound?oldid=495263707"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SEK> a qudt:CurrencyUnit ;
    rdfs:label "Swedish Krona"@en ;
    dcterms:isReplacedBy unit:CCY_SEK ;
    qudt:currencyCode "SEK"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "752"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Swedish_krona"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SEK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Swedish_krona?oldid=492703602"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SwedishKrona> ;
    qudt:symbol "kr"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SGD> a qudt:CurrencyUnit ;
    rdfs:label "Singapore Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_SGD ;
    qudt:currencyCode "SGD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "702"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Singapore_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SGD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Singapore_dollar?oldid=492228311"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SingaporeDollar> ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SHP> a qudt:CurrencyUnit ;
    rdfs:label "Saint Helena Pound"@en ;
    dcterms:isReplacedBy unit:CCY_SHP ;
    qudt:currencyCode "SHP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "654"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Saint_Helena_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SHP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Saint_Helena_pound?oldid=490152057"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SKK> a qudt:CurrencyUnit ;
    rdfs:label "Slovak Koruna"@en ;
    dcterms:isReplacedBy unit:CCY_SKK ;
    qudt:currencyCode "SKK"^^xsd:string ;
    qudt:currencyNumber "703"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Slovak_koruna"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SKK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Slovak_koruna?oldid=492625951"^^xsd:anyURI ;
    qudt:symbol "Sk"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SLE> a qudt:CurrencyUnit ;
    rdfs:label "Leone"@en ;
    dcterms:isReplacedBy unit:CCY_SLE ;
    qudt:currencyCode "SLE"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "925"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Sierra_Leonean_leone"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SLL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sierra_Leonean_leone?oldid=493517965"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SOS> a qudt:CurrencyUnit ;
    rdfs:label "Somali Shilling"@en ;
    dcterms:isReplacedBy unit:CCY_SOS ;
    qudt:currencyCode "SOS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "706"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Somali_shilling"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SOS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Somali_shilling?oldid=494434126"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SRD> a qudt:CurrencyUnit ;
    rdfs:label "Surinam Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_SRD ;
    qudt:currencyCode "SRD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "968"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Surinamese_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SRD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Surinamese_dollar?oldid=490316270"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/STN> a qudt:CurrencyUnit ;
    rdfs:label "Dobra"@en ;
    dcterms:isReplacedBy unit:CCY_STN ;
    qudt:currencyCode "STN"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "930"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dobra"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$STD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dobra?oldid=475725328"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SYP> a qudt:CurrencyUnit ;
    rdfs:label "Syrian Pound"@en ;
    dcterms:isReplacedBy unit:CCY_SYP ;
    qudt:currencyCode "SYP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "760"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Syrian_pound"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SYP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Syrian_pound?oldid=484294722"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/SZL> a qudt:CurrencyUnit ;
    rdfs:label "Lilangeni"@en ;
    dcterms:isReplacedBy unit:CCY_SZL ;
    qudt:currencyCode "SZL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "748"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Swazi_lilangeni"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$SZL$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Swazi_lilangeni?oldid=490323340"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/THB> a qudt:CurrencyUnit ;
    rdfs:label "Baht"@en ;
    dcterms:isReplacedBy unit:CCY_THB ;
    qudt:currencyCode "THB"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "764"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Thai_baht"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thai_baht?oldid=493286022"^^xsd:anyURI ;
    qudt:symbol "฿"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TJS> a qudt:CurrencyUnit ;
    rdfs:label "Somoni"@en ;
    dcterms:isReplacedBy unit:CCY_TJS ;
    qudt:currencyCode "TJS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "972"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tajikistani_somoni"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TJS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tajikistani_somoni?oldid=492500781"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TMT> a qudt:CurrencyUnit ;
    rdfs:label "Manat"@en ;
    dcterms:isReplacedBy unit:CCY_TMT ;
    qudt:currencyCode "TMT"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "934"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Manat"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TMM$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Manat?oldid=486967490"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TND> a qudt:CurrencyUnit ;
    rdfs:label "Tunisian Dinar"@en ;
    dcterms:isReplacedBy unit:CCY_TND ;
    qudt:currencyCode "TND"^^xsd:string ;
    qudt:currencyExponent 3 ;
    qudt:currencyNumber "788"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tunisian_dinar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tunisian_dinar?oldid=491218035"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TOP> a qudt:CurrencyUnit ;
    rdfs:label "Pa'anga"@en ;
    dcterms:isReplacedBy unit:CCY_TOP ;
    qudt:currencyCode "TOP"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "776"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tongan_pa%CA%BBanga"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TOP$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tongan_paʻanga?oldid=482738012"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TRY> a qudt:CurrencyUnit ;
    rdfs:label "New Turkish Lira"@en ;
    dcterms:isReplacedBy unit:CCY_TRY ;
    qudt:currencyCode "TRY"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "949"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Turkish_lira"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TRY$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Turkish_lira?oldid=494097764"^^xsd:anyURI ;
    qudt:symbol "₺"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TTD> a qudt:CurrencyUnit ;
    rdfs:label "Trinidad and Tobago Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_TTD ;
    qudt:currencyCode "TTD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "780"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Trinidad_and_Tobago_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TTD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Trinidad_and_Tobago_dollar?oldid=490325306"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TWD> a qudt:CurrencyUnit ;
    rdfs:label "New Taiwan Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_TWD ;
    qudt:currencyCode "TWD"^^xsd:string ;
    qudt:currencyExponent 1 ;
    qudt:currencyNumber "901"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/New_Taiwan_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/New_Taiwan_dollar?oldid=493996933"^^xsd:anyURI ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/TZS> a qudt:CurrencyUnit ;
    rdfs:label "Tanzanian Shilling"@en ;
    dcterms:isReplacedBy unit:CCY_TZS ;
    qudt:currencyCode "TZS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "834"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tanzanian_shilling"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$TZS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tanzanian_shilling?oldid=492257527"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/UAH> a qudt:CurrencyUnit ;
    rdfs:label "Hryvnia"@en ;
    dcterms:isReplacedBy unit:CCY_UAH ;
    qudt:currencyCode "UAH"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "980"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ukrainian_hryvnia"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$UAH$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ukrainian_hryvnia?oldid=493064633"^^xsd:anyURI ;
    qudt:symbol "₴"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/UGX> a qudt:CurrencyUnit ;
    rdfs:label "Uganda Shilling"@en ;
    dcterms:isReplacedBy unit:CCY_UGX ;
    qudt:currencyCode "UGX"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "800"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ugandan_shilling"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$UGX$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ugandan_shilling?oldid=495383966"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/USD> a qudt:CurrencyUnit ;
    rdfs:label "US Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_USD ;
    qudt:altSymbol "US$"^^xsd:string ;
    qudt:currencyCode "USD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "840"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol "$"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/USN> a qudt:CurrencyUnit ;
    rdfs:label "United States Dollar (next day) (funds code)"@en ;
    dcterms:isReplacedBy unit:CCY_USN ;
    qudt:currencyCode "USN"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "997"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$USN$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/USS> a qudt:CurrencyUnit ;
    rdfs:label "United States Dollar (same day) (funds code)"@en ;
    dcterms:isReplacedBy unit:CCY_USS ;
    qudt:currencyCode "USS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "998"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/UYU> a qudt:CurrencyUnit ;
    rdfs:label "Peso Uruguayo"@en ;
    dcterms:isReplacedBy unit:CCY_UYU ;
    qudt:currencyCode "UYU"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "858"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Uruguayan_peso"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$UYU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Uruguayan_peso?oldid=487528781"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/UZS> a qudt:CurrencyUnit ;
    rdfs:label "Uzbekistan Som"@en ;
    dcterms:isReplacedBy unit:CCY_UZS ;
    qudt:currencyCode "UZS"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "860"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Uzbekistani_som"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$UZS$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Uzbekistani_som?oldid=490522228"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/VES> a qudt:CurrencyUnit ;
    rdfs:label "Venezuelan bolvar"@en ;
    dcterms:isReplacedBy unit:CCY_VES ;
    qudt:currencyCode "VES"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "928"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$VEB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/VND> a qudt:CurrencyUnit ;
    rdfs:label "Vietnamese ??ng"@en ;
    dcterms:isReplacedBy unit:CCY_VND ;
    qudt:currencyCode "VND"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "704"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$VND$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/VUV> a qudt:CurrencyUnit ;
    rdfs:label "Vatu"@en ;
    dcterms:isReplacedBy unit:CCY_VUV ;
    qudt:currencyCode "VUV"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "548"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Vanuatu_vatu"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$VUV$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Vanuatu_vatu?oldid=494667103"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/WST> a qudt:CurrencyUnit ;
    rdfs:label "Samoan Tala"@en ;
    dcterms:isReplacedBy unit:CCY_WST ;
    qudt:currencyCode "WST"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "882"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Samoan_tala"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$WST$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Samoan_tala?oldid=423898531"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XAF> a qudt:CurrencyUnit ;
    rdfs:label "CFA Franc BEAC"@en ;
    dcterms:isReplacedBy unit:CCY_XAF ;
    qudt:currencyCode "XAF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "950"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XAG> a qudt:CurrencyUnit ;
    rdfs:label "Silver (one Troy ounce)"@en ;
    dcterms:isReplacedBy unit:CCY_XAG ;
    qudt:currencyCode "XAG"^^xsd:string ;
    qudt:currencyNumber "961"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XAG$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:ucumCode "[oz_tr]{Ag}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XAU> a qudt:CurrencyUnit ;
    rdfs:label "Gold (one Troy ounce)"@en ;
    dcterms:isReplacedBy unit:CCY_XAU ;
    qudt:currencyCode "XAU"^^xsd:string ;
    qudt:currencyNumber "959"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XAU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:ucumCode "[oz_tr]{Au}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XBA> a qudt:CurrencyUnit ;
    rdfs:label "European Composite Unit (EURCO) (Bonds market unit)"@en ;
    dcterms:isReplacedBy unit:CCY_XBA ;
    qudt:currencyCode "XBA"^^xsd:string ;
    qudt:currencyNumber "955"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XBA$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XBB> a qudt:CurrencyUnit ;
    rdfs:label "European Monetary Unit (E.M.U.-6) (Bonds market unit)"@en ;
    dcterms:isReplacedBy unit:CCY_XBB ;
    qudt:currencyCode "XBB"^^xsd:string ;
    qudt:currencyNumber "956"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XBB$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XBC> a qudt:CurrencyUnit ;
    rdfs:label "European Unit of Account 9 (E.U.A.-9) (Bonds market unit)"@en ;
    dcterms:isReplacedBy unit:CCY_XBC ;
    qudt:currencyCode "XBC"^^xsd:string ;
    qudt:currencyNumber "957"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XBC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XBD> a qudt:CurrencyUnit ;
    rdfs:label "European Unit of Account 17 (E.U.A.-17) (Bonds market unit)"@en ;
    dcterms:isReplacedBy unit:CCY_XBD ;
    qudt:currencyCode "XBD"^^xsd:string ;
    qudt:currencyNumber "958"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XBD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XCD> a qudt:CurrencyUnit ;
    rdfs:label "East Caribbean Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_XCD ;
    qudt:currencyCode "XCD"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "951"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/East_Caribbean_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$XCD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/East_Caribbean_dollar?oldid=493020176"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XDR> a qudt:CurrencyUnit ;
    rdfs:label "Special Drawing Rights"@en ;
    dcterms:isReplacedBy unit:CCY_XDR ;
    qudt:currencyCode "XDR"^^xsd:string ;
    qudt:currencyNumber "960"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Special_Drawing_Rights"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$XDR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Special_Drawing_Rights?oldid=467224374"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XFO> a qudt:CurrencyUnit ;
    rdfs:label "Gold franc (special settlement currency)"@en ;
    dcterms:isReplacedBy unit:CCY_XFO ;
    qudt:currencyCode "XFO"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XFO$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XFU> a qudt:CurrencyUnit ;
    rdfs:label "UIC franc (special settlement currency)"@en ;
    dcterms:isReplacedBy unit:CCY_XFU ;
    qudt:currencyCode "XFU"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XFU$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XOF> a qudt:CurrencyUnit ;
    rdfs:label "CFA Franc BCEAO"@en ;
    dcterms:isReplacedBy unit:CCY_XOF ;
    qudt:currencyCode "XOF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "952"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XPD> a qudt:CurrencyUnit ;
    rdfs:label "Palladium (one Troy ounce)"@en ;
    dcterms:isReplacedBy unit:CCY_XPD ;
    qudt:currencyCode "XPD"^^xsd:string ;
    qudt:currencyNumber "964"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XPD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:ucumCode "[oz_tr]{Pd}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XPF> a qudt:CurrencyUnit ;
    rdfs:label "CFP franc"@en ;
    dcterms:isReplacedBy unit:CCY_XPF ;
    qudt:currencyCode "XPF"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "953"^^xsd:string ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/XPT> a qudt:CurrencyUnit ;
    rdfs:label "Platinum (one Troy ounce)"@en ;
    dcterms:isReplacedBy unit:CCY_XPT ;
    qudt:currencyCode "XPT"^^xsd:string ;
    qudt:currencyNumber "962"^^xsd:string ;
    qudt:deprecated true ;
    qudt:expression "$XPT$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:ucumCode "[oz_tr]{Pt}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/YER> a qudt:CurrencyUnit ;
    rdfs:label "Yemeni Rial"@en ;
    dcterms:isReplacedBy unit:CCY_YER ;
    qudt:currencyCode "YER"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "886"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Yemeni_rial"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$YER$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Yemeni_rial?oldid=494507603"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ZAR> a qudt:CurrencyUnit ;
    rdfs:label "South African Rand"@en ;
    dcterms:isReplacedBy unit:CCY_ZAR ;
    qudt:currencyCode "ZAR"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "710"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/South_African_rand"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ZAR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/South_African_rand?oldid=493780395"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/SouthAfricanRand> ;
    qudt:symbol "R"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ZMW> a qudt:CurrencyUnit ;
    rdfs:label "Zambian Kwacha"@en ;
    dcterms:isReplacedBy unit:CCY_ZMW ;
    qudt:currencyCode "ZMW"^^xsd:string ;
    qudt:currencyExponent 0 ;
    qudt:currencyNumber "967"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zambian_kwacha"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ZMK$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zambian_kwacha?oldid=490328608"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/currency/ZWL> a qudt:CurrencyUnit ;
    rdfs:label "Zimbabwe Dollar"@en ;
    dcterms:isReplacedBy unit:CCY_ZWL ;
    qudt:currencyCode "ZWL"^^xsd:string ;
    qudt:currencyExponent 2 ;
    qudt:currencyNumber "932"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Zimbabwean_dollar"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:expression "$ZWD$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Zimbabwean_dollar?oldid=491532675"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/dimensionvector/A0E-1L-5I0M1H0T-4D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E-1L-5I0M1H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength -5 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E^-1 L^-5 M^1 T^-4 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-9L0I0M0H-1T0D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E-9L0I0M0H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -9 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E^-9 Θ^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-1D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L-0.5I0M0.5H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "-0.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-0.5 M^0.5 T^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M0dot5H0T-2D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L-0.5I0M0.5H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "-0.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-0.5 M^0.5 T^-2$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H0T3D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M-1H0T3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-1 M^-1 T^3 Θ$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T2D0> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M0H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^{-1} T^2$"^^qudt:LatexString ;
    ns2:todo "Should be M-1L-2T4E2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1dot5I0M0dot5H0T-1D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L-1.5I0M0.5H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "-1.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-1.5 M^0.5 T^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1dot5I0M0dot5H0T0D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L-1.5I0M0.5H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "-1.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-1.5 M^0.5$"^^qudt:LatexString ;
    ns2:todo "Suspicious. Electric Charge per Area would be ET/L**2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-3D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L-2I0M0H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-2 T^-3 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H-1T-3D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L-2I0M1H-1T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-2 M Θ^-1 T^-3 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-3D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M1H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind qudtqk:RadiantIntensity ;
    qudt:latexDefinition "$L^-2 M T^-3$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-2D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L-2I0M2H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-2 M^2 T^-2$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-4I0M0H0T-3D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L-4I0M0H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-4 T^-3 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L0I0M0H0T0D0"^^xsd:string ;
    qudt:deprecated true ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D1> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M1H0T-3D1"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent -1 ;
    qudt:latexDefinition "$U^-1 M T^-3$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0dot5I0M0dot5H0T-1D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L0.5I0M0.5H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "0.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^0.5 M^0.5 T^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0dot5I0M0dot5H0T-2D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L0.5I0M0.5H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "0.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^0.5 M^0.5 T^-2$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0dot5I0M0dot5H0T0D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L0.5I0M0.5H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "0.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^0.5 M^0.5$"^^qudt:LatexString ;
    ns2:todo "Electric Charge should be ET"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L1dot5I0M0dot5H0T-1D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L1.5I0M0.5H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "1.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^1.5 M^0.5 T^-1$"^^qudt:LatexString ;
    ns2:todo "Suspicious"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L1dot5I0M0dot5H0T-2D0> a qudt:QuantityKindDimensionVector_CGS ;
    rdfs:label "A0E0L1.5I0M0.5H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "1.5"^^xsd:float ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass "0.5"^^xsd:float ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^1.5 M^0.5 T^-2$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T-1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L2I0M-1H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^2 M^-1 T^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-3D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H-1T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^2 T^-3 Θ^-1 N^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D-1> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M1H0T-3D-1"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent -1 ;
    qudt:latexDefinition "$U^-1 L^2 M T^-3$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-4D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L2I0M1H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance "0"^^xsd:string ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength "2"^^xsd:string ;
    qudt:dimensionExponentForLuminousIntensity "0"^^xsd:string ;
    qudt:dimensionExponentForMass "1"^^xsd:string ;
    qudt:dimensionExponentForThermodynamicTemperature "0"^^xsd:string ;
    qudt:dimensionExponentForTime "-4"^^xsd:string ;
    qudt:dimensionlessExponent "0"^^xsd:string ;
    qudt:latexDefinition "$L^2 M T^-4 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-1D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L3I0M1H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind qudtqk:MomentOfForce ;
    qudt:latexDefinition "$L^3 M T^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T0D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A1E0L-3I0M1H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-3D-1> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L4I0M1H0T-3D-1"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent -1 ;
    qudt:latexDefinition "$U^-1 L^4 M T^-3$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T4D0> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L0I0M-1H0T4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 4 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D-1> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L0I0M0H0T0D-1"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent -1 ;
    qudt:latexDefinition "$U^-1 I$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L-1I0M-1H0T4D0> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L-1I0M-1H0T4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 4 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L-4I0M-1H0T3D0> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L-4I0M-1H0T3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength -4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 3 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E3L-1I0M-2H0T7D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E3L-1I0M-2H0T7D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 3 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 7 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind qudtqk:CubicElectricDipoleMomentPerSquareEnergy ;
    qudt:latexDefinition "$L^-1 M^-2 T^7 I^3$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E3L0I0M0H-1T0D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E3L0I0M0H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 3 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E^3 Θ^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E4L-5I0M-3H0T10D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E4L-5I0M-3H0T10D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 4 ;
    qudt:dimensionExponentForLength -5 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -3 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 10 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^-5 M^-3 T^10 I^4$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L-2I0M1H0T2D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A1E0L-2I0M1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$N L^-2 M T^2 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/prefix/Yobi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Yobi"^^xsd:string,
        "Yobi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{8}$, or $2^{80}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1208925819614629174706176.0 ;
    qudt:prefixMultiplierSN 1.208926e+24 ;
    qudt:symbol "Yi"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Zebi> a qudt:BinaryPrefix,
        qudt:Prefix ;
    rdfs:label "Zebi"^^xsd:string,
        "Zebi"@en ;
    dcterms:description "A binary prefix for expressing a value with a scaling of $1024^{7}$, or $2^{70}$."^^qudt:LatexString ;
    qudt:prefixMultiplier 1180591620717411303424.0 ;
    qudt:prefixMultiplierSN 1.180592e+21 ;
    qudt:symbol "Zi"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

qudtqk:AbsoluteTypographicMeasurement a qudt:QuantityKind ;
    rdfs:label "absolute typographic measurement"^^xsd:string ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD372"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD372"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:AccelerationOfGravity a qudt:QuantityKind ;
    rdfs:label "Acceleration Of Gravity"@en ;
    dcterms:description "The acceleration of freely falling bodies under the influence of terrestrial gravity, equal to approximately 9.81 meters (32 feet) per second per second."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-SEC2,
        unit:FT-PER-SEC2,
        unit:G,
        unit:GALILEO,
        unit:IN-PER-SEC2,
        unit:KN-PER-SEC,
        unit:KiloM-PER-SEC2,
        unit:KiloPA-M2-PER-GM,
        unit:M-PER-SEC2,
        unit:MI_US-PER-SEC2,
        unit:MicroG,
        unit:MicroGALILEO,
        unit:MicroM-PER-SEC2,
        unit:MilliG,
        unit:MilliGALILEO,
        unit:MilliM-PER-SEC2,
        unit:YD-PER-SEC2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:plainTextDescription "The acceleration of freely falling bodies under the influence of terrestrial gravity, equal to approximately 9.81 meters (32 feet) per second per second."^^xsd:string ;
    qudt:symbol "g"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30006> ;
    rdfs:comment "Applicable units are those of quantitykind:Acceleration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Acceleration .

qudtqk:AcceptorDensity a qudt:QuantityKind ;
    rdfs:label "Acceptor Density"@en ;
    dcterms:description "\"Acceptor Density\" is the number per volume of acceptor levels."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Acceptor Density\" is the number per volume of acceptor levels."^^xsd:string ;
    qudt:symbol "n_a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105979968> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:ActionTime a qudt:QuantityKind ;
    rdfs:label "Action Time"@en ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    rdfs:comment "Action Time (sec) "^^xsd:string,
        "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:ActiveEnergy a qudt:QuantityKind ;
    rdfs:label "Active Energy"@en ;
    dcterms:description """
  $\\textit{Active Energy}$ is the electrical energy transformable into some other form of energy.
  """^^qudt:LatexString ;
    qudt:abbreviation "active-energy"^^xsd:string ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=601-01-19"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$W = \\int_{t_1}^{t_2} p dt$, where $p$ is instantaneous power and the integral interval is the time interval from $t_1$ to $t_2$."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Active Energy\" is the electrical energy transformable into some other form of energy."^^xsd:string ;
    qudt:symbol "W"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79813678> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:InstantaneousPower ;
    skos:broader qudtqk:Energy .

qudtqk:ActivityRelatedByMass a qudt:QuantityKind ;
    rdfs:label "activity related by mass"@en-us ;
    dcterms:description """
  $\\textit{Activity Related By Mass}$ is quantitative data of the radioactivity of the amount of a radionuclide in a particular state of energy at a defined point in time, 
   divided by the related mass of this quantity.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:BQ-PER-KiloGM,
        unit:CI-PER-KiloGM,
        unit:KiloBQ-PER-KiloGM,
        unit:MegaBQ-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:plainTextDescription "quantitative Angabe der Radioaktivität einer Menge eines Radionuklids in einem bestimmten Energiezustand zu einem gegebenen Zeitpunkt dividiert durch die zugehörige Masse dieser Menge"@de,
        "quantitative data of the radioactivity of the amount of a radionuclide in a particular state of energy at a defined point in time, divided by the related mass of this quantity"@en ;
    qudt:symbol "0173-1#Z4-BAJ342#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassicActivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassicActivity .

qudtqk:AlphaDisintegrationEnergy a qudt:QuantityKind ;
    rdfs:label "Alpha Disintegration Energy"@en ;
    dcterms:description "The \"Alpha Disintegration Energy\" is the sum of the kinetic energy of the $\\alpha$-particle produced in the disintegration process and the recoil energy of the product atom in the reference frame in which the emitting nucleus is at rest before its disintegration."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:latexSymbol "$Q_a$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Alpha Disintegration Energy\" is the sum of the kinetic energy of the alpha-particle produced in the disintegration process and the recoil energy of the product atom in the reference frame in which the emitting nucleus is at rest before its disintegration."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98146025> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:AmbientPressure a qudt:QuantityKind ;
    rdfs:label "Ambient Pressure"@en ;
    dcterms:description """The ambient pressure on an object is the pressure of the surrounding medium, such as a gas or liquid, which comes into contact with the object.
The SI unit of pressure is the pascal (Pa), which is a very small unit relative to atmospheric pressure on Earth, so kilopascals ($kPa$) are more commonly used in this context. """^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:symbol "p_a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q789775> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:AmountOfBiologicallyActiveSubstance a qudt:QuantityKind ;
    rdfs:label "amount of biologically active substance"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD370"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD370"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AmountOfSubstanceIonConcentration a qudt:QuantityKind ;
    rdfs:label "Ion Concentration"@en ;
    dcterms:description "\"Ion Concentration\" is the moles of ions per volume of solution."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "\"Ion Concentration\" is the moles of ions per volume of solution."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Concentration .

qudtqk:AngleOfAttack a qudt:QuantityKind ;
    rdfs:label "Angle Of Attack"@en ;
    dcterms:description "Angle of attack  is the angle between the oncoming air or relative wind and a reference line on the airplane or wing."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "Angle of attack  is the angle between the oncoming air or relative wind and a reference line on the airplane or wing."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q370906> ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:AngleOfOpticalRotation a qudt:QuantityKind ;
    rdfs:label "Angle of Optical Rotation"@en ;
    dcterms:description "The \"Angle of Optical Rotation\" is the angle through which plane-polarized light is rotated clockwise, as seen when facing the light source, in passing through an optically active medium."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Optical_rotation"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Angle of Optical Rotation\" is the angle through which plane-polarized light is rotated clockwise, as seen when facing the light source, in passing through an optically active medium."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96323385> ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:AngularDistance a qudt:QuantityKind ;
    rdfs:label "Angular Distance"@en ;
    dcterms:description "Angular distance travelled by orbiting vehicle measured from the azimuth of closest approach."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\theta$"^^qudt:LatexString ;
    qudt:plainTextDescription "Angular distance travelled by orbiting vehicle measured from the azimuth of closest approach."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:ApogeeRadius a qudt:QuantityKind ;
    rdfs:label "Apogee Radius"@en ;
    dcterms:description "Apogee radius of an elliptical orbit"^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Apogee radius of an elliptical orbit"^^xsd:string ;
    qudt:symbol "r_2"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Radius .

qudtqk:AreaChargeDensity a qudt:QuantityKind ;
    rdfs:label "areic charge density"^^xsd:string ;
    qudt:applicableUnit unit:A-HR-PER-M2,
        unit:C-PER-CentiM2,
        unit:C-PER-M2,
        unit:C-PER-MilliM2,
        unit:C_Ab-PER-CentiM2,
        unit:C_Stat-PER-CentiM2,
        unit:KiloC-PER-M2,
        unit:MegaC-PER-M2,
        unit:MicroC-PER-M2,
        unit:MilliC-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD013"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD013"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricChargePerArea .

qudtqk:AreaMass a qudt:QuantityKind ;
    rdfs:label "areic mass"^^xsd:string ;
    qudt:applicableUnit unit:GM-PER-CentiM2,
        unit:GM-PER-HA,
        unit:GM-PER-M2,
        unit:GM-PER-MilliM2,
        unit:KiloGM-PER-CentiM2,
        unit:KiloGM-PER-FT2,
        unit:KiloGM-PER-HA,
        unit:KiloGM-PER-KiloM2,
        unit:KiloGM-PER-M2,
        unit:LB-PER-AC,
        unit:LB-PER-FT2,
        unit:LB-PER-IN2,
        unit:LB-PER-YD2,
        unit:MegaGM-PER-HA,
        unit:MicroGM-PER-CentiM2,
        unit:MicroGM-PER-IN2,
        unit:MilliGM-PER-CentiM2,
        unit:MilliGM-PER-DeciM2,
        unit:MilliGM-PER-HA,
        unit:MilliGM-PER-M2,
        unit:NanoGM-PER-CentiM2,
        unit:OZ-PER-FT2,
        unit:OZ-PER-IN2,
        unit:OZ-PER-YD2,
        unit:SLUG-PER-FT2,
        unit:TONNE-PER-HA,
        unit:TON_Metric-PER-HA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD014"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD014"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:MassPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassPerArea .

qudtqk:AreicChargeDensityOrElectricFluxDensityOrElectricPolarization a qudt:QuantityKind ;
    rdfs:label "areic charge density or electric flux density or electric polarization"@en-us ;
    dcterms:description "charge Q presented on an area of size A divided by the area A or vector quantity obtained at a given point by adding the electric polarization P to the product of the electric field strength E and the electric constant (permittivity) ε₀"@en ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0> ;
    qudt:plainTextDescription "auf einer Fläche mit dem Flächeninhalt A vorhandenen Ladung Q dividiert durch den Flächeninhalt A oder vektorielle Größe, die für einen gegebenen Punkt gleich der Summe der elektrischen Polarisation P und des Produkts aus der elektrischen Feldstärke E und der elektrischen Feldkonstante (Permittivität) ε₀ ist oder räumliche Dichte des elektrischen Moments molekularer Dipole"@de ;
    qudt:symbol "0173-1#Z4-BAJ320#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AreicDataVolume a qudt:QuantityKind ;
    rdfs:label "areic data volume"@en-us ;
    dcterms:description "volume of data, which is usually dependent on the respective complexity of the information or its coding procedure, divided by the related area"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch die zugehörige Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ321#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AreicEnergyFlow a qudt:QuantityKind ;
    rdfs:label "areic energy flow"@en-us ;
    dcterms:description "energy in a defined direction of propagation through a surface perpendicular to this, divided by its area"@en ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:plainTextDescription "Leistung in festgelegter Ausbreitungsrichtung durch ein dazu senkrechtes Oberflächenelement, dividiert durch dessen Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ322#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:AreicHeatFlowRate a qudt:QuantityKind ;
    rdfs:label "Aeric Heat Flow Rate"@en ;
    dcterms:description "Density of heat flow rate."^^qudt:LatexString ;
    qudt:abbreviation "heat-flow-rate"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Rate_of_heat_flow"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varphi = \\frac{\\Phi}{A}$, where $\\Phi$ is heat flow rate and $A$ is area."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:plainTextDescription "Density of heat flow rate."^^xsd:string ;
    qudt:symbol "φ"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea ;
    skos:closeMatch <http://dbpedia.org/resource/Heat_transfer> .

qudtqk:AreicMass a qudt:QuantityKind ;
    rdfs:label "areic mass"@en-us ;
    dcterms:description "mass divided by the related area"@en ;
    qudt:applicableUnit unit:GM-PER-CentiM2,
        unit:GM-PER-HA,
        unit:GM-PER-M2,
        unit:GM-PER-MilliM2,
        unit:KiloGM-PER-CentiM2,
        unit:KiloGM-PER-FT2,
        unit:KiloGM-PER-HA,
        unit:KiloGM-PER-KiloM2,
        unit:KiloGM-PER-M2,
        unit:LB-PER-AC,
        unit:LB-PER-FT2,
        unit:LB-PER-IN2,
        unit:LB-PER-YD2,
        unit:MegaGM-PER-HA,
        unit:MicroGM-PER-CentiM2,
        unit:MicroGM-PER-IN2,
        unit:MilliGM-PER-CentiM2,
        unit:MilliGM-PER-DeciM2,
        unit:MilliGM-PER-HA,
        unit:MilliGM-PER-M2,
        unit:NanoGM-PER-CentiM2,
        unit:OZ-PER-FT2,
        unit:OZ-PER-IN2,
        unit:OZ-PER-YD2,
        unit:SLUG-PER-FT2,
        unit:TONNE-PER-HA,
        unit:TON_Metric-PER-HA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:plainTextDescription "Masse dividiert durch die zugehörige Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ288#004"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassPerArea .

qudtqk:AreicTorque a qudt:QuantityKind ;
    rdfs:label "areic torque"@en-us ;
    dcterms:description "ratio of a torque acting on a surface and causing a rotation or shearing divided by this area"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:plainTextDescription "Quotient aus dem auf eine Fläche wirkenden, eine Verdrehung bzw. Abscherung verursachenden  Drehmoment dividiert durch diese Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ420#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AtomicAttenuationCoefficient a qudt:QuantityKind ;
    rdfs:label "Atomic Attenuation Coefficient"@en ;
    dcterms:description "\"Atomic Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per the number of atoms in the substance."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Attenuation_coefficient"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_a = -\\frac{\\mu}{n}$, where $\\mu$ is the linear attenuation coefficient and $n$ is the number density of the atoms in the substance."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Atomic Attenuation Coefficient\" is a measurement of how strongly a chemical species or substance absorbs or scatters light at a given wavelength, per the number of atoms in the substance."^^xsd:string ;
    qudt:symbol "μₐ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98592911> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area ;
    skos:closeMatch qudtqk:MolarAttenuationCoefficient .

qudtqk:AtomicCharge a qudt:QuantityKind ;
    rdfs:label "Atomic Charge"@en ;
    dcterms:description "The electric charge of an ion, equal to the number of electrons the atom has gained or lost in its ionization multiplied by the charge on one electron."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-HR,
        unit:A-SEC,
        unit:AttoC,
        unit:C,
        unit:C_Ab,
        unit:C_Stat,
        unit:CentiC,
        unit:DecaC,
        unit:DeciC,
        unit:E,
        unit:ElementaryCharge,
        unit:ExaC,
        unit:F,
        unit:FR,
        unit:FemtoC,
        unit:GigaC,
        unit:HectoC,
        unit:KiloA-HR,
        unit:KiloC,
        unit:KiloJ-PER-KiloV,
        unit:MegaC,
        unit:MicroC,
        unit:MilliA-HR,
        unit:MilliA-SEC,
        unit:MilliC,
        unit:NanoC,
        unit:PetaC,
        unit:PicoC,
        unit:PlanckCharge,
        unit:TeraC,
        unit:YoctoC,
        unit:YottaC,
        unit:ZeptoC,
        unit:ZettaC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:informativeReference "http://www.answers.com/topic/atomic-charge"^^xsd:anyURI ;
    qudt:plainTextDescription "The electric charge of an ion, equal to the number of electrons the atom has gained or lost in its ionization multiplied by the charge on one electron."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricCharge .

qudtqk:AtomicEnergy a qudt:QuantityKind ;
    rdfs:label "atomic energy"@en-us ;
    dcterms:description "scalar quantity of elementary particles which is retained within a system following any change and, as saved energy, constitutes the capability of a physical system to carry out work"@en ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "skalare Größe von Elementarteilchen, die bei beliebiger Umwandlung innerhalb eines Systems erhalten bleibt und als gespeichertes Arbeitsvermögen die Fähigkeit eines physikalischen Systems darstellt, Arbeit zu verrichten"@de ;
    qudt:symbol "0173-1#Z4-BAJ291#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:AtomicMass a qudt:QuantityKind ;
    rdfs:label "Atomic Mass"@en ;
    dcterms:description "The \"Atomic Mass\" is the mass of a specific isotope, most often expressed in unified atomic mass units."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_mass"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Atomic Mass\" is the mass of a specific isotope, most often expressed in unified atomic mass units."^^xsd:string ;
    qudt:symbol "m_a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3840065> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:AtomicStoppingPower a qudt:QuantityKind ;
    rdfs:label "atomic stopping power"@en-us ;
    dcterms:description "ratio of the linear stopping power to the number density of the atoms in the medium"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:plainTextDescription "Quotient aus dem linearen Bremsvermögen und der Anzahldichte der Atome in dem Medium"@de ;
    qudt:symbol "0173-1#Z4-BAJ292#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AverageEnergyLossPerElementaryChargeProduced a qudt:QuantityKind ;
    rdfs:label "Average Energy Loss per Elementary Charge Produced"@en ;
    dcterms:description "\"Average Energy Loss per Elementary Charge Produced\" is also referred to as average energy loss per ion pair formed."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:latexDefinition "$W_i = \\frac{E_k}{N_i}$, where $E_k$ is the initial kinetic energy of an ionizing charged particle and $N_i$ is the total ionization produced by that particle."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Average Energy Loss per Elementary Charge Produced\" is also referred to as average energy loss per ion pair formed."^^xsd:string ;
    qudt:symbol "W_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98793042> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:AverageHeadEndPressure a qudt:QuantityKind ;
    rdfs:label "Average Head End Pressure"@en ;
    qudt:abbreviation "AHEP"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:HeadEndPressure .

qudtqk:AverageSpecificImpulse a qudt:QuantityKind ;
    rdfs:label "Average Specific Impulse"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    rdfs:comment "Avg Specific Impulse (lbf-sec/lbm) "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificImpulse .

qudtqk:AverageVacuumThrust a qudt:QuantityKind ;
    rdfs:label "Average Vacuum Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "AVT"^^xsd:string ;
    skos:broader qudtqk:VacuumThrust .

qudtqk:Azimuth a qudt:QuantityKind ;
    rdfs:label "Azimuth"@en ;
    dcterms:description """The horizontal angle between an object's orientation frame and a cardinal direction, generally north. 
  In the context of architecture, this would refer to the direction a structure faces relative to the direction north."""^^xsd:string ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription """The horizontal angle between an object and a cardinal direction, generally north. 
  In the context of architecture, this would refer to the direction a structure faces relative to the direction north."""^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:BandwidthDistanceProduct a qudt:QuantityKind ;
    rdfs:label "bandwidth distance product"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD016"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD016"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BandwidthLengthProduct a qudt:QuantityKind ;
    rdfs:label "bandwidth length product"@en-us ;
    dcterms:description "parameter of transmission media for determination of frequency and length restrictions as reciprocal value of the multimode distortion corresponding to the product of maximum pulse frequency and maximum transmission distance"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "Parameter von Übertragungsmedien zur Bestimmung der Frequenz- und Längenrestriktionen als reziproke Wert der Modendispersion entsprechend dem Produkt aus maximaler Impulsfrequenz mal maximaler Übertragungsstrecke"@de ;
    qudt:symbol "0173-1#Z4-BAJ293#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BetaDisintegrationEnergy a qudt:QuantityKind ;
    rdfs:label "Beta Disintegration Energy"@en ;
    dcterms:description "\"Beta Disintegration Energy\" is the  energy released by a beta particle radioactive decay. It is the sum of the maximum beta-particle kinetic energy and the recoil energy of the atom produced in the reference frame in which the emitting nucleus is at rest before its disintegration."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Decay_energy"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Beta Disintegration Energy\" is the  energy released by a beta particle radioactive decay. It is the sum of the maximum beta-particle kinetic energy and the recoil energy of the atom produced in the reference frame in which the emitting nucleus is at rest before its disintegration."^^xsd:string ;
    qudt:symbol "Qᵦ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98148340> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:BevelGearPitchAngle a qudt:QuantityKind ;
    rdfs:label "Bevel Gear Pitch Angle"@en ;
    dcterms:description "Pitch angle in bevel gears is the angle between an element of a pitch cone and its axis. In external and internal bevel gears, the pitch angles are respectively less than and greater than 90 degrees."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\theta$"^^qudt:LatexString ;
    qudt:plainTextDescription "Pitch angle in bevel gears is the angle between an element of a pitch cone and its axis. In external and internal bevel gears, the pitch angles are respectively less than and greater than 90 degrees."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:BiogeochemicalRate a qudt:QuantityKind ;
    rdfs:label "Biogeochemical Rate"@en ;
    dcterms:description "the rate at which a specific chemical element or compound is processed or transformed, as amount per unit mass of the relevant material Unreduced, SI unit is mole * kg-1 * s-1"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:plainTextDescription "the rate at which a specific chemical element or compound is processed or transformed, as amount per unit mass of the relevant material. Unreduced, SI unit is mole * kg-1 * s-1"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BitDataVolume a qudt:QuantityKind ;
    rdfs:label "bit data volume"@en-us ;
    dcterms:description "name for a particular quantity of data on the basis of the binary digit \"Bit\" (basic indissoluble information unit) which can only assume a state of 1 or 0"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Bezeichnung für eine bestimmte Anzahl von Daten auf Basis der Binärziffer Bit (en: Basic Indissoluble Information Unit, dt: kleinstmögliche Informationseinheit), welche nur den Zustand 1 oder 0 annehmen kann"@de ;
    qudt:symbol "0173-1#Z4-BAJ436#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BitTransmissionRate a qudt:QuantityKind ;
    rdfs:label "bit transmission rate"@en-us ;
    dcterms:description "speed with which one bit will be transmitted per second"@en ;
    qudt:applicableUnit unit:OCTET-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Geschwindigkeit, mit der Binärzeichen übertragen werden"@de ;
    qudt:symbol "0173-1#Z4-BAJ295#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:BitRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:BitRate .

qudtqk:BloodGlucoseLevel_Mass a qudt:QuantityKind ;
    rdfs:label "Blood Glucose Level by Mass"@en ;
    dcterms:description """
  Blood sugar level, blood sugar concentration, or blood glucose level is the amount of glucose present in the blood of humans and animals. 
  Glucose is a simple sugar and approximately 4 grams of glucose are present in the blood of humans at all times.  
  Stored in skeletal muscle and liver cells in the form of glycogen, the body tightly regulates blood glucose levels as a part of metabolic homeostasis.
  During fasting blood glucose is maintained at a constant level at the expense of the glycogen stores in the liver and skeletal muscle. 
  There are two main methods of describing concentrations: by weight, and by molecular count. 
  Weights are in grams and molecular counts in moles. 
  A mole is $6.022\\times 10^{23}$ molecules.
  In both cases, the unit is usually modified by $milli-$ or $micro-$ or other prefix,
   and is always $per$ some volume, often a litre. 
  Conversion factors depend on the molecular weight of the substance in question. 
  $mmol/L$ is millimoles/liter, and is the world standard unit for measuring glucose in blood. 
  Specifically, it is the designated SI (Systeme International) unit. 
  Some countries use $mg/dl$. 
  A mole is about $6\\times 10^{23}$ molecules.
  $mg/dL$ (milligrams/deciliter) is the traditional unit for measuring $bG$ (blood glucose). 
  There is a trend toward using $mmol/L$ however $mg/dL$ is much in practice. 
  Some use is made of $mmol/L$ as the primary unit with $mg/dL$ quoted in parentheses. 
  This acknowledges the large base of health care providers, researchers and patients who are already familiar with $mg/dL$.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:MassBasedBloodGlucoseLevel ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:informativeReference "http://www.faqs.org/faqs/diabetes/faq/part1/section-9.html"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Blood_sugar_level"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:BloodGlucoseLevel .

qudtqk:BraggAngle a qudt:QuantityKind ;
    rdfs:label "Bragg Angle"@en ;
    dcterms:description "\"Bragg Angle\" describes the condition for a plane wave to be diffracted from a family of lattice planes, the angle between the wavevector of the incident plane wave, and the lattice planes."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://reference.iucr.org/dictionary/Bragg_angle"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$2d\\sin{\\vartheta} = n\\lambda $"^^qudt:LatexString ;
    qudt:latexSymbol "$\\vartheta$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Bragg Angle\" describes the condition for a plane wave to be diffracted from a family of lattice planes, the angle between the wavevector of the incident plane wave, and the lattice planes."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105488118> ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:BucklingFactor a qudt:QuantityKind ;
    rdfs:label "Buckling Factor"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:symbol "B"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:BurgersVector a qudt:QuantityKind ;
    rdfs:label "Burgers Vector"@en ;
    dcterms:description "\"Burgers Vector\" is the vector characterizing a dislocation, i.e. the closing vector in a Burgers circuit encircling a dislocation line."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Burgers_vector"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Burgers Vector\" is the vector characterizing a dislocation, i.e. the closing vector in a Burgers circuit encircling a dislocation line."^^xsd:string ;
    qudt:symbol "b"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q623093> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:BurnTime a qudt:QuantityKind ;
    rdfs:label "Burn Time"@en ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:symbol "t"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:ByteDataVolume a qudt:QuantityKind ;
    rdfs:label "byte data volume"@en-us ;
    dcterms:description "particular quantity of data based on a string consisting of 8 bits"@en ;
    qudt:applicableUnit unit:BEAT,
        unit:BILLION_Long,
        unit:BILLION_Short,
        unit:BREATH,
        unit:CASES,
        unit:COUNT,
        unit:CYC,
        unit:DEATHS,
        unit:FRAME,
        unit:HUNDRED,
        unit:INDIV,
        unit:KiloINDIV,
        unit:MILLION,
        unit:MegaINDIV,
        unit:NUM,
        unit:ONE,
        unit:PIXEL_COUNT,
        unit:SAMPLE,
        unit:TEN,
        unit:THOUSAND,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Anzahl von Daten auf Basis einer Zeichenfolge, die aus je 8 Bit besteht"@de ;
    qudt:symbol "0173-1#Z4-BAJ435#004"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Count"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Count .

qudtqk:ByteTransmissionRate a qudt:QuantityKind ;
    rdfs:label "byte transmission rate"@en-us ;
    dcterms:description "speed with which 8 bits are transmitted"@en ;
    qudt:applicableUnit unit:BYTE-PER-SEC,
        unit:GigaBYTE-PER-SEC,
        unit:MegaBYTE-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Geschwindigkeit, mit der 8 Binärzeichen übertragen werden"@de ;
    qudt:symbol "0173-1#Z4-BAJ297#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ByteRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ByteRate .

qudtqk:CENTER-OF-GRAVITY_X a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the X axis"@en ;
    dcterms:isReplacedBy qudtqk:CenterOfGravity_X ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CENTER-OF-GRAVITY_Y a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Y axis"@en ;
    dcterms:isReplacedBy qudtqk:CenterOfGravity_Y ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CENTER-OF-GRAVITY_Z a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Z axis"@en ;
    dcterms:isReplacedBy qudtqk:CenterOfGravity_Z ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CENTER-OF-MASS a qudt:QuantityKind ;
    rdfs:label "Center of Mass (CoM)"@en ;
    dcterms:description "The point at which the distributed mass of a composite body can be acted upon by a force without inducing any rotation of the composite body."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Center_of_mass"^^xsd:anyURI ;
    qudt:plainTextDescription "The point at which the distributed mass of a composite body can be acted upon by a force without inducing any rotation of the composite body."^^xsd:string ;
    qudt:symbol "R"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "COM"^^xsd:string ;
    skos:broader qudtqk:PositionVector .

qudtqk:CONTRACT-END-ITEM-SPECIFICATION-MASS a qudt:QuantityKind ;
    rdfs:label "Contract End Item (CEI) Specification Mass."@en ;
    dcterms:description "Contractual mass requirement of a delivered item. Note that The term 'control mass' is sometimes utilized as a limit in lieu of CEI mass when a CEI mass does not exist. The term 'Interface Control Document Mass' is another alternative for specifying a contractual mass requirement."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Contractual mass requirement of a delivered item. Note that The term 'control mass' is sometimes utilized as a limit in lieu of CEI mass when a CEI mass does not exist. The term 'Interface Control Document Mass' is another alternative for specifying a contractual mass requirement."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "CEI"^^xsd:string ;
    skos:broader qudtqk:Mass .

qudtqk:CONTROL-MASS a qudt:QuantityKind ;
    rdfs:label "Control Mass."@en ;
    dcterms:description "The upper design gross mass limit of a system at a specified mission event against which margins are calculated after accounting for basic masses of flight hardware, MGA, and uncertainties. It may include propellants, crew, and cargo."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "The upper design gross mass limit of a system at a specified mission event against which margins are calculated after accounting for basic masses of flight hardware, MGA, and uncertainties. It may include propellants, crew, and cargo."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:CarrierLifetime a qudt:QuantityKind ;
    rdfs:label "Carrier LifetIme"@en ;
    dcterms:description "\"Carrier LifetIme\" is a time constant for recombination or trapping of minority charge carriers in semiconductors."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Carrier_lifetime"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\tau, \\tau_n, \\tau_p$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Carrier LifetIme\" is a time constant for recombination or trapping of minority charge carriers in semiconductors."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5046374> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:CartesianArea a qudt:QuantityKind ;
    rdfs:label "Cartesian Area"@en ;
    dcterms:description "\"Area\" is a quantity that expresses the extent of a two-dimensional surface or shape, or planar lamina, in the plane."^^qudt:LatexString ;
    qudt:abbreviation "area"^^xsd:string ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Area"^^xsd:anyURI ;
    qudt:latexDefinition "$A = \\int\\int dxdy$, where $x$ and $y$ are cartesian coordinates."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Area\" is a quantity that expresses the extent of a two-dimensional surface or shape, or planar lamina, in the plane."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area ;
    skos:closeMatch qudtqk:Area .

qudtqk:CharacteristicAcousticImpedance a qudt:QuantityKind ;
    rdfs:label "Characteristic Acoustic Impedance"@en ;
    dcterms:description "Characteristic impedance at a point in a non-dissipative medium and for a plane progressive wave, the quotient of the sound pressure $p$ by the component of the sound particle velocity $v$ in the direction of the wave propagation."^^qudt:LatexString ;
    qudt:applicableUnit unit:PA-SEC-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Acoustic_impedance#Characteristic_acoustic_impedance"^^xsd:anyURI ;
    qudt:latexDefinition "$Z_c = pc$, where $p$ is the sound pressure and $c$ is the phase speed of sound."^^qudt:LatexString ;
    qudt:symbol "Z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q87051330> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AcousticImpedance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AcousticImpedance .

qudtqk:CharacteristicNumber a qudt:QuantityKind ;
    rdfs:label "characteristic number"@en-us ;
    dcterms:description "quantity of dimension one (as a result of measuring technology theory) which clarifies facts, states or developments and is used as a scale e.g. to represent causes and effects of events"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Größe der Dimension 1 (als Ergebnis der metrisierenden Messtheorie), die Sachverhalte, Zustände oder Entwicklungen verdeutlicht und als Maßstab dient, um z. B. Ursache und Wirkung von Vorgängen in kausalem Zusammenhang darzustellen"@de ;
    qudt:symbol "0173-1#Z4-BAJ279#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:CharacteristicVelocity a qudt:QuantityKind ;
    rdfs:label "Characteristic Velocity"@en ;
    dcterms:description "Characteristic velocity or $c^{*}$ is a measure of the combustion performance of a rocket engine independent of nozzle performance, and is used to compare different propellants and propulsion systems."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:latexSymbol "$c^{*}$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:ChemicalConsumptionPerMass a qudt:QuantityKind ;
    rdfs:label "Chemical Consumption per Mass"@en ;
    qudt:applicableUnit unit:CentiM3-PER-GM,
        unit:DeciL-PER-GM,
        unit:DeciM3-PER-KiloGM,
        unit:FT3-PER-LB,
        unit:IN3-PER-LB,
        unit:L-PER-KiloGM,
        unit:M3-PER-KiloGM,
        unit:MilliL-PER-GM,
        unit:MilliL-PER-KiloGM,
        unit:MilliM3-PER-GM,
        unit:MilliM3-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0> ;
    qudt:plainTextDescription "In the context of a chemical durability test, this is measure of how much of a solution (often a corrosive or reactive one) is consumed or used up per unit mass of a material being tested. In other words, this the volume of solution needed to cause a certain level of chemical reaction or damage to a given mass of the material."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificVolume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificVolume .

qudtqk:ClosestApproachRadius a qudt:QuantityKind ;
    rdfs:label "Closest Approach Radius"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:symbol "r_o"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Radius .

qudtqk:CoherenceLength a qudt:QuantityKind ;
    rdfs:label "Coherence Length"@en ;
    dcterms:description "\"Coherence Length\" characterizes the distance in a superconductor over which the effect of a perturbation is appreciable."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Coherence_length"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Coherence Length\" characterizes the distance in a superconductor over which the effect of a perturbation is appreciable."^^xsd:string ;
    qudt:symbol "ξ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7643174> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CombustionChamberTemperature a qudt:QuantityKind ;
    rdfs:label "Combustion Chamber Temperature"@en ;
    qudt:applicableUnit unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:symbol "T_c"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ThermodynamicTemperature .

qudtqk:ComplexFrequency_Imaginary a qudt:QuantityKind ;
    rdfs:label "imaginary part of complex frequency"^^xsd:string ;
    qudt:applicableUnit unit:GigaHZ,
        unit:HZ,
        unit:KiloHZ,
        unit:MegaHZ,
        unit:MilliHZ,
        unit:NUM-PER-HR,
        unit:NUM-PER-SEC,
        unit:NUM-PER-YR,
        unit:PER-DAY,
        unit:PER-HR,
        unit:PER-MIN,
        unit:PER-MO,
        unit:PER-MilliSEC,
        unit:PER-SEC,
        unit:PER-WK,
        unit:PER-YR,
        unit:PERCENT-PER-DAY,
        unit:PERCENT-PER-HR,
        unit:PERCENT-PER-MO,
        unit:PPTH-PER-HR,
        unit:PetaHZ,
        unit:PlanckFrequency,
        unit:SAMPLE-PER-SEC,
        unit:TeraHZ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Frequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Frequency .

qudtqk:ComplexFrequency_Real a qudt:QuantityKind ;
    rdfs:label "real part of complex frequency"^^xsd:string ;
    qudt:applicableUnit unit:GigaHZ,
        unit:HZ,
        unit:KiloHZ,
        unit:MegaHZ,
        unit:MilliHZ,
        unit:NUM-PER-HR,
        unit:NUM-PER-SEC,
        unit:NUM-PER-YR,
        unit:PER-DAY,
        unit:PER-HR,
        unit:PER-MIN,
        unit:PER-MO,
        unit:PER-MilliSEC,
        unit:PER-SEC,
        unit:PER-WK,
        unit:PER-YR,
        unit:PERCENT-PER-DAY,
        unit:PERCENT-PER-HR,
        unit:PERCENT-PER-MO,
        unit:PPTH-PER-HR,
        unit:PetaHZ,
        unit:PlanckFrequency,
        unit:SAMPLE-PER-SEC,
        unit:TeraHZ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD199"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD199"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Frequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Frequency .

qudtqk:CompoundPlaneAngle a qudt:QuantityKind ;
    rdfs:label "Compound Plane Angle"@en ;
    dcterms:description "A \"Compound Plane Angle\" is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://standards.buildingsmart.org/IFC/DEV/IFC4_2/FINAL/HTML/link/ifccompoundplaneanglemeasure.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "A \"Compound Plane Angle\" is a compound measure of plane angle in degrees, minutes, seconds, and optionally millionth-seconds of arc."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PlaneAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PlaneAngle .

qudtqk:ConductivityVariance_NEON a qudt:QuantityKind ;
    rdfs:label "Conductivity Variance, NEON"@en ;
    dcterms:description "Variance for NEON conductivity data measured in MicroS-PER-CM"^^xsd:string ;
    dcterms:isReplacedBy qudtqk:ConductivityVariance ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E4L-6I0M-2H0T6D0> ;
    qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ;
    qudt:plainTextDescription "Variance for NEON conductivity data measured in MicroS-PER-CM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:CrossSectionalArea a qudt:QuantityKind ;
    rdfs:label "Cross-sectional Area"@en ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q29325024> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:CurrentOfTheAmountOfSubstance a qudt:QuantityKind ;
    rdfs:label "current of the amount of substance"@en-us ;
    dcterms:description "ratio of the amount of substance divided by the related time"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient Stoffmenge dividiert durch die zugehörige Zeit"@de ;
    qudt:symbol "0173-1#Z4-BAJ384#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:CutoffCurrentRating a qudt:QuantityKind ;
    rdfs:label "I²t-value"@en-us ;
    dcterms:description "cut-off current parameter as rating for fuses and switches, derived from the so-called Joule integral"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Durchlassstrom-Kennwert als Bemessungsgröße für Sicherungen und Schalter, welcher abgeleitet ist aus dem sogenannten Joule-Integral"@de ;
    qudt:symbol "0173-1#Z4-BAJ325#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:CyclotronAngularFrequency a qudt:QuantityKind ;
    rdfs:label "Larmor Angular Frequency"@en ;
    dcterms:description "The \"Cyclotron Angular Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG-PER-HR,
        unit:DEG-PER-MIN,
        unit:DEG-PER-SEC,
        unit:PlanckFrequency_Ang,
        unit:RAD-PER-HR,
        unit:RAD-PER-MIN,
        unit:RAD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_cyclotron_resonance"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\omega_c = \\frac{\\left | q \\right |}{m}B$, where $q$ is the electric charge, $m$ is its mass, and $B$ is the magnetic flux density."^^qudt:LatexString ;
    qudt:latexSymbol "$\\omega_c$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Cyclotron Angular Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97708211> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularFrequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularFrequency .

qudtqk:DELTA-V a qudt:QuantityKind ;
    rdfs:label "Delta-V"@en ;
    dcterms:description "The change in translational velocity including all losses for a propulsive system or module. Delta-V losses include, but are not limited to, gravity losses and steering losses."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Delta-v"^^xsd:anyURI ;
    qudt:latexSymbol "$\\bigtriangleup v$"^^qudt:LatexString ;
    qudt:plainTextDescription "The change in translational velocity including all losses for a propulsive system or module. Delta-V losses include, but are not limited to, gravity losses and steering losses."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:DRY-MASS a qudt:QuantityKind ;
    rdfs:label "Dry Mass"@en ;
    dcterms:description "Mass of a system without the propellants, pressurants, reserve or residual fluids, personnel and personnel provisions, and cargo."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Mass of a system without the propellants, pressurants, reserve or residual fluids, personnel and personnel provisions, and cargo."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:DataTransmissionRate a qudt:QuantityKind ;
    rdfs:label "data transmission rate"@en-us ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DatasetOfBytes a qudt:QuantityKind ;
    rdfs:label "dataset of bytes"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD028"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD028"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DebyeAngularFrequency a qudt:QuantityKind ;
    rdfs:label "Debye Angular Frequency"@en ;
    dcterms:description "\"Debye Angular Frequency\" is the cut-off angular frequency in the Debye model of the vibrational spectrum of a solid."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG-PER-HR,
        unit:DEG-PER-MIN,
        unit:DEG-PER-SEC,
        unit:PlanckFrequency_Ang,
        unit:RAD-PER-HR,
        unit:RAD-PER-MIN,
        unit:RAD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Debye_model#Debye_frequency"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\omega_b$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Debye Angular Frequency\" is the cut-off angular frequency in the Debye model of the vibrational spectrum of a solid."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105580986> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularFrequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularFrequency .

qudtqk:DebyeTemperature a qudt:QuantityKind ;
    rdfs:label "Debye Temperature"@en ;
    dcterms:description "\"Debye Temperature\" is the temperature at which the highest-frequency mode (and hence all modes) are excited."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Debye_model"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Theta_D = \\frac{\\hbar\\omega_D}{k}$, where $k$ is the Boltzmann constant, $\\hbar$ is the reduced Planck constant, and $\\omega_D$ is the Debye angular frequency."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Theta_D$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Debye Temperature\" is the temperature at which the highest-frequency mode (and hence all modes) are excited."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3517821> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:DensityInCombustionChamber a qudt:QuantityKind ;
    rdfs:label "Density In Combustion Chamber"@en ;
    qudt:applicableUnit unit:DEGREE_BALLING,
        unit:DEGREE_BAUME,
        unit:DEGREE_BAUME_US_HEAVY,
        unit:DEGREE_BAUME_US_LIGHT,
        unit:DEGREE_BRIX,
        unit:DEGREE_OECHSLE,
        unit:DEGREE_PLATO,
        unit:DEGREE_TWADDELL,
        unit:FemtoGM-PER-L,
        unit:GM-PER-CentiM3,
        unit:GM-PER-DeciL,
        unit:GM-PER-DeciM3,
        unit:GM-PER-L,
        unit:GM-PER-M3,
        unit:GM-PER-MilliL,
        unit:GRAIN-PER-GAL_IMP,
        unit:GRAIN-PER-GAL_US,
        unit:GRAIN-PER-M3,
        unit:KiloGM-PER-CentiM3,
        unit:KiloGM-PER-DeciM3,
        unit:KiloGM-PER-L,
        unit:KiloGM-PER-M3,
        unit:LB-PER-FT3,
        unit:LB-PER-GAL_IMP,
        unit:LB-PER-GAL_UK,
        unit:LB-PER-GAL_US,
        unit:LB-PER-IN3,
        unit:LB-PER-M3,
        unit:LB-PER-YD3,
        unit:MegaGM-PER-M3,
        unit:MicroGM-PER-DeciL,
        unit:MicroGM-PER-L,
        unit:MicroGM-PER-M3,
        unit:MicroGM-PER-MilliL,
        unit:MilliGM-PER-DeciL,
        unit:MilliGM-PER-L,
        unit:MilliGM-PER-M3,
        unit:MilliGM-PER-MilliL,
        unit:NanoGM-PER-DeciL,
        unit:NanoGM-PER-L,
        unit:NanoGM-PER-M3,
        unit:NanoGM-PER-MicroL,
        unit:NanoGM-PER-MilliL,
        unit:OZ-PER-GAL_IMP,
        unit:OZ-PER-GAL_UK,
        unit:OZ-PER-GAL_US,
        unit:OZ-PER-IN3,
        unit:OZ-PER-YD3,
        unit:PicoGM-PER-L,
        unit:PicoGM-PER-MilliL,
        unit:PlanckDensity,
        unit:SLUG-PER-FT3,
        unit:TONNE-PER-M3,
        unit:TON_LONG-PER-YD3,
        unit:TON_Metric-PER-M3,
        unit:TON_SHORT-PER-YD3,
        unit:TON_UK-PER-YD3,
        unit:TON_US-PER-YD3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:latexSymbol "$\\rho_c$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:MassDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassDensity .

qudtqk:DensityOfStates a qudt:QuantityKind ;
    rdfs:label "Density of states"@en ;
    dcterms:description "\"Density of States\" is the number of vibrational modes in an infinitesimal interval of angular frequency divided by the range of that interval and by volume."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:VibrationalDensityOfStates ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD030"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Density_of_states"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD030"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Density of States\" is the number of vibrational modes in an infinitesimal interval of angular frequency divided by the range of that interval and by volume."^^xsd:string ;
    qudt:symbol "g"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q230895> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DensityOfTheExhaustGases a qudt:QuantityKind ;
    rdfs:label "Density Of The Exhaust Gases"@en ;
    qudt:applicableUnit unit:DEGREE_BALLING,
        unit:DEGREE_BAUME,
        unit:DEGREE_BAUME_US_HEAVY,
        unit:DEGREE_BAUME_US_LIGHT,
        unit:DEGREE_BRIX,
        unit:DEGREE_OECHSLE,
        unit:DEGREE_PLATO,
        unit:DEGREE_TWADDELL,
        unit:FemtoGM-PER-L,
        unit:GM-PER-CentiM3,
        unit:GM-PER-DeciL,
        unit:GM-PER-DeciM3,
        unit:GM-PER-L,
        unit:GM-PER-M3,
        unit:GM-PER-MilliL,
        unit:GRAIN-PER-GAL_IMP,
        unit:GRAIN-PER-GAL_US,
        unit:GRAIN-PER-M3,
        unit:KiloGM-PER-CentiM3,
        unit:KiloGM-PER-DeciM3,
        unit:KiloGM-PER-L,
        unit:KiloGM-PER-M3,
        unit:LB-PER-FT3,
        unit:LB-PER-GAL_IMP,
        unit:LB-PER-GAL_UK,
        unit:LB-PER-GAL_US,
        unit:LB-PER-IN3,
        unit:LB-PER-M3,
        unit:LB-PER-YD3,
        unit:MegaGM-PER-M3,
        unit:MicroGM-PER-DeciL,
        unit:MicroGM-PER-L,
        unit:MicroGM-PER-M3,
        unit:MicroGM-PER-MilliL,
        unit:MilliGM-PER-DeciL,
        unit:MilliGM-PER-L,
        unit:MilliGM-PER-M3,
        unit:MilliGM-PER-MilliL,
        unit:NanoGM-PER-DeciL,
        unit:NanoGM-PER-L,
        unit:NanoGM-PER-M3,
        unit:NanoGM-PER-MicroL,
        unit:NanoGM-PER-MilliL,
        unit:OZ-PER-GAL_IMP,
        unit:OZ-PER-GAL_UK,
        unit:OZ-PER-GAL_US,
        unit:OZ-PER-IN3,
        unit:OZ-PER-YD3,
        unit:PicoGM-PER-L,
        unit:PicoGM-PER-MilliL,
        unit:PlanckDensity,
        unit:SLUG-PER-FT3,
        unit:TONNE-PER-M3,
        unit:TON_LONG-PER-YD3,
        unit:TON_Metric-PER-M3,
        unit:TON_SHORT-PER-YD3,
        unit:TON_UK-PER-YD3,
        unit:TON_US-PER-YD3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:latexSymbol "$\\rho$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:Density"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Density .

qudtqk:Depth a qudt:QuantityKind ;
    rdfs:label "Depth"@en ;
    dcterms:description "Depth typically refers to the vertical measure of length from the surface of a liquid."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Depth typically refers to the vertical measure of length from the surface of a liquid."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q930412> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:DiffusionArea a qudt:QuantityKind ;
    rdfs:label "Diffusion Area"@en ;
    dcterms:description "\"Diffusion Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the point where a neutron enters a specified class and the point where it leaves that class."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/diffusion+area"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Diffusion Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the point where a neutron enters a specified class and the point where it leaves that class."^^xsd:string ;
    qudt:symbol "L^2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98966292> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:DiffusionCoefficientForFluenceRate a qudt:QuantityKind ;
    rdfs:label "Diffusion Coefficient for Fluence Rate"@en ;
    dcterms:description "The \"Diffusion Coefficient for Fluence Rate\" is a proportionality constant between the ."^^qudt:LatexString ;
    qudt:abbreviation "m"^^xsd:string ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_diffusivity"^^xsd:anyURI ;
    qudt:latexDefinition "$D_\\varphi = -\\frac{J_x}{\\frac{\\partial d\\varphi}{\\partial dx}}$, where $J_x$ is the $x-component$ of the particle current and $\\varphi$ is the particle fluence rate."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Diffusion Coefficient for Fluence Rate\" is a proportionality constant between the ."^^xsd:string ;
    qudt:symbol "Dᵩ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98876254> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:DiffusionLength a qudt:QuantityKind ;
    rdfs:label "Diffusion Length"@en ;
    dcterms:description "\"Diffusion Length\" is the average distance traveled by a particle, or a thermal neutron in a nuclear reactor, from the point at which it is formed to the point at which it is absorbed."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/diffusion+length"^^xsd:anyURI ;
    qudt:latexDefinition "$L = \\sqrt{L^2}$, where $L^2$ is the diffusion area."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Diffusion Length\" is the average distance traveled by a particle, or a thermal neutron in a nuclear reactor, from the point at which it is formed to the point at which it is absorbed."^^xsd:string ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98997762> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:DisplacementVectorOfIon a qudt:QuantityKind ;
    rdfs:label "Displacement Vector of Ion"@en ;
    dcterms:description "\"Displacement Vector of Ion\" is the ."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Displacement"^^xsd:anyURI ;
    qudt:latexDefinition "$u = R - R_0$, where $R$ is the particle position vector and $R_0$ is the equilibrium position vector of a particle."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Displacement Vector of Ion\" is the ."^^xsd:string ;
    qudt:symbol "u"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105533558> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:DistanceTraveledDuringBurn a qudt:QuantityKind ;
    rdfs:label "Distance Traveled During a Burn"@en ;
    qudt:applicableUnit unit:MI,
        unit:MIL_Length,
        unit:MI_UK,
        unit:MicroIN,
        unit:PT_BIG ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:symbol "s"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Distance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Distance .

qudtqk:DonorDensity a qudt:QuantityKind ;
    rdfs:label "Donor Density"@en ;
    dcterms:description "\"Donor Density\" is the number per volume of donor levels."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Donor Density\" is the number per volume of donor levels."^^xsd:string ;
    qudt:symbol "n_d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105979886> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:DoseEquivalentRate a qudt:QuantityKind ;
    rdfs:label "dose equivalent rate"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD034"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD034"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DragCoefficient a qudt:QuantityKind ;
    rdfs:label "Drag Coefficient"@en ;
    dcterms:description "In fluid dynamics, the drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment such as air or water."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "In fluid dynamics, the drag coefficient is a dimensionless quantity that is used to quantify the drag or resistance of an object in a fluid environment such as air or water."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:symbol "C_D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1778961> ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:DragForce a qudt:QuantityKind ;
    rdfs:label "Drag Force"@en ;
    dcterms:description """In fluid dynamics, drag refers to forces which act on a solid object in the direction of the relative fluid flow velocity. Unlike other resistive forces such as dry friction, which is nearly independent of velocity, drag forces depend on velocity.
Drag forces always decrease fluid velocity relative to the solid object in the fluid's path."""^^xsd:string ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:plainTextDescription """In fluid dynamics, drag refers to forces which act on a solid object in the direction of the relative fluid flow velocity. Unlike other resistive forces such as dry friction, which is nearly independent of velocity, drag forces depend on velocity.
Drag forces always decrease fluid velocity relative to the solid object in the fluid's path."""^^xsd:string ;
    qudt:symbol "D or F_D"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

qudtqk:DryBulbTemperature a qudt:QuantityKind ;
    rdfs:label "Dry Bulb Temperature"@en ;
    dcterms:description "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:plainTextDescription "The temperature of air measured by a thermometer freely exposed to the air, but shielded from radiation."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:DynamicFrictionCoefficient a qudt:QuantityKind ;
    rdfs:label "Dynamic Friction Coefficient"@en ;
    dcterms:description "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu = \\frac{F}{N}$, where $F$ is the tangential component of the contact force and $N$ is the normal component of the contact force between two sliding bodies."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu$"^^qudt:LatexString ;
    qudt:plainTextDescription "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:FrictionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:FrictionCoefficient .

qudtqk:EarthClosestApproachVehicleVelocity a qudt:QuantityKind ;
    rdfs:label "Earth Closest Approach Vehicle Velocity"@en ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:symbol "V_o"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:VehicleVelocity .

qudtqk:EccentricityOfOrbit a qudt:QuantityKind ;
    rdfs:label "Eccentricity Of Orbit"@en ;
    dcterms:description "The orbital eccentricity of an astronomical object is a parameter that determines the amount by which its orbit around another body deviates from a perfect circle. In a two-body problem with inverse-square-law force, every orbit is a Kepler orbit. The eccentricity of this Kepler orbit is a positive number that defines its shape."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\varepsilon$"^^qudt:LatexString ;
    qudt:plainTextDescription "The orbital eccentricity of an astronomical object is a parameter that determines the amount by which its orbit around another body deviates from a perfect circle. In a two-body problem with inverse-square-law force, every orbit is a Kepler orbit. The eccentricity of this Kepler orbit is a positive number that defines its shape."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:EffectiveExhaustVelocity a qudt:QuantityKind ;
    rdfs:label "Effective Exhaustvelocity"@en ;
    dcterms:description "The velocity of an exhaust stream after reduction by effects such as friction, non-axially directed flow, and pressure differences between the inside of the rocket and its surroundings. The effective exhaust velocity is one of two factors determining the thrust, or accelerating force, that a rocket can develop, the other factor being the quantity of reaction mass expelled from the rocket in unit time. In most cases, the effective exhaust velocity is close to the actual exhaust velocity."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "The velocity of an exhaust stream after reduction by effects such as friction, non-axially directed flow, and pressure differences between the inside of the rocket and its surroundings. The effective exhaust velocity is one of two factors determining the thrust, or accelerating force, that a rocket can develop, the other factor being the quantity of reaction mass expelled from the rocket in unit time. In most cases, the effective exhaust velocity is close to the actual exhaust velocity."^^xsd:string ;
    qudt:symbol "v_{e}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:EffectiveMass a qudt:QuantityKind ;
    rdfs:label "Effective Mass"@en ;
    dcterms:description "\"Effective Mass\" is used in the motional equation for electrons in solid state bodies, depending on the wavenumber and corresponding to its velocity and energy level."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Effective_mass_(solid-state_physics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$m^* = \\hbar^2k(\\frac{d\\varepsilon}{dk})$, where $\\hbar$ is the reduced Planck constant, $k$ is the wavenumber, and $\\varepsilon$ is the energy of the electron."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Effective Mass\" is used in the motional equation for electrons in solid state bodies, depending on the wavenumber and corresponding to its velocity and energy level."^^xsd:string ;
    qudt:symbol "m^*"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1064434> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:EinsteinTransitionProbabilityForSpontaneousOrInducedEmissionAndAbsorption a qudt:QuantityKind ;
    rdfs:label "Einstein transition probability for spontaneous or induced emission and absorption"@en-us ;
    dcterms:description "nuclear constant for the special transition where the probability of the absorption, spontaneous emission or induced emission of energy depends on the number of existing quantums of light, expressed as energy density in the wave model of light: energy divided by volume and frequency"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T1D0> ;
    qudt:plainTextDescription "atomare Konstante für den speziellen Übergang, wobei die Wahrscheinlichkeit der Absorption, der spontanen Emission und der induzierte Emission von Energie abhängig ist von der Zahl der vorhandenen Lichtquanten, ausgedrückt als Energiedichte im Wellenmodell des Lichtes: Energie durch Volumen und Frequenz"@de ;
    qudt:symbol "0173-1#Z4-BAJ456#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricDipoleMoment_CubicPerEnergy_Squared a qudt:QuantityKind ;
    rdfs:label "Cubic Electric Dipole Moment per Square Energy"@en ;
    dcterms:isReplacedBy qudtqk:CubicElectricDipoleMomentPerSquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E3L-3I0M-2H0T7D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricDipoleMoment_QuarticPerEnergy_Cubic a qudt:QuantityKind ;
    rdfs:label "Quartic Electric Dipole Moment per Cubic Energy"@en ;
    dcterms:isReplacedBy qudtqk:QuarticElectricDipoleMomentPerCubicEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E4L-2I0M-3H0T10D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricPropulsionPropellantMass a qudt:QuantityKind ;
    rdfs:label "Electric Propulsion Propellant Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_P"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PropellantMass .

qudtqk:ElectricalPowerToMassRatio a qudt:QuantityKind ;
    rdfs:label "Electrical Power To Mass Ratio"@en ;
    qudt:applicableUnit unit:ERG-PER-GM-SEC,
        unit:GRAY-PER-HR,
        unit:GRAY-PER-MIN,
        unit:GRAY-PER-SEC,
        unit:MicroGRAY-PER-HR,
        unit:MicroGRAY-PER-MIN,
        unit:MicroGRAY-PER-SEC,
        unit:MicroSV-PER-MIN,
        unit:MicroSV-PER-SEC,
        unit:MilliGRAY-PER-HR,
        unit:MilliGRAY-PER-MIN,
        unit:MilliGRAY-PER-SEC,
        unit:MilliRAD_R-PER-HR,
        unit:MilliSV-PER-HR,
        unit:MilliSV-PER-MIN,
        unit:MilliSV-PER-SEC,
        unit:MilliW-PER-MilliGM,
        unit:NanoGRAY-PER-HR,
        unit:NanoGRAY-PER-MIN,
        unit:NanoGRAY-PER-SEC,
        unit:NanoSV-PER-HR,
        unit:NanoSV-PER-MIN,
        unit:NanoSV-PER-SEC,
        unit:REM-PER-SEC,
        unit:SV-PER-HR,
        unit:SV-PER-MIN,
        unit:SV-PER-SEC,
        unit:W-PER-GM,
        unit:W-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:latexSymbol "$\\xi$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificPower .

qudtqk:ElectronAffinity a qudt:QuantityKind ;
    rdfs:label "Electron Affinity"@en ;
    dcterms:description """
  $\\textit{Electron Affinity}$ is the energy difference between an electron at rest at infinity and an electron at the lowest level of the conduction band in an insulator or semiconductor. 
  The amount of energy released when an electron is added to a neutral atom or molecule to form a negative ion.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_affinity"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Electron Affinity\" is the energy difference between an electron at rest at infinity and an electron at the lowest level of the conduction band in an insulator or semiconductor. The the amount of energy released when an electron is added to a neutral atom or molecule to form a negative ion."^^xsd:string ;
    qudt:symbol "χ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105846486> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:ElectronDensity a qudt:QuantityKind ;
    rdfs:label "Electron Density"@en ;
    dcterms:description """
  $\\textit{Electron Density}$ is the number of electrons per volume in conduction bands. 
  It is the measure of the probability of an electron being present at a specific location.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Electron_density"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Electron Density\" is the number of electrons per volume in conduction bands. It is the measure of the probability of an electron being present at a specific location."^^xsd:string ;
    qudt:symbol "n"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105971077> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:ElectronMeanFreePath a qudt:QuantityKind ;
    rdfs:label "Electron Mean Free Path"@en ;
    dcterms:description """
  $\\textit{Electron Mean Free Path}$ is the mean free path of electrons.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Electron Mean Free Path\" is the mean free path of electrons."^^xsd:string ;
    qudt:symbol "l_e"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105672307> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:ElectronMobility a qudt:QuantityKind ;
    rdfs:label "electron mobility"^^xsd:string ;
    qudt:applicableUnit unit:CentiM2-PER-V-SEC,
        unit:M2-PER-V-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD119"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD119"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Mobility"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mobility .

qudtqk:ElectronRadius a qudt:QuantityKind ;
    rdfs:label "Electron Radius"@en ;
    dcterms:description """
  $\\textit{Electron Radius}$, also known as the Lorentz radius or the Thomson scattering length, is based on a classical (i.e., non-quantum) relativistic model of the electron.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Classical_electron_radius"^^xsd:anyURI ;
    qudt:latexDefinition "$r_e = \\frac{e^2}{4\\pi m_e c_0^2}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, item $m_e$ is the rest mass of electrons, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Electron Radius\", also known as the Lorentz radius or the Thomson scattering length, is based on a classical (i.e., non-quantum) relativistic model of the electron."^^xsd:string ;
    qudt:symbol "r_e"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:EllipticalOrbitApogeeVelocity a qudt:QuantityKind ;
    rdfs:label "Elliptical Orbit Apogee Velocity"@en ;
    dcterms:description "Velocity at apogee for an elliptical orbit velocity"^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "Velocity at apogee for an elliptical orbit velocity"^^xsd:string ;
    qudt:symbol "V_a"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:VehicleVelocity .

qudtqk:EllipticalOrbitPerigeeVelocity a qudt:QuantityKind ;
    rdfs:label "Elliptical Orbit Perigee Velocity"@en ;
    dcterms:description "Velocity at apogee for an elliptical orbit velocity."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "Velocity at apogee for an elliptical orbit velocity."^^xsd:string ;
    qudt:symbol "V_p"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:VehicleVelocity .

qudtqk:EnergyContent a qudt:QuantityKind ;
    rdfs:label "energy content"^^xsd:string,
        "energy content"@en-us ;
    dcterms:description "saved quantity of energy which can be used physically or chemically"@en ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD046"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD046"^^xsd:anyURI ;
    qudt:plainTextDescription "gespeicherte Energiemenge, die physikalisch oder chemisch nutzbar ist"@de ;
    qudt:symbol "0173-1#Z4-BAJ319#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:EnergyExpenditure a qudt:QuantityKind ;
    rdfs:label "Energy Expenditure"@en ;
    dcterms:description """Energy expenditure is dependent on a person's sex, metabolic rate, body-mass composition, the thermic effects of food, and activity level.  The approximate energy expenditure of a man lying in bed is $1.0\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$. For slow walking (just over two miles per hour), $3.0\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$. For fast steady running (about 10 miles per hour), $16.3\\,kilo\\,calorie\\,per\\,hour\\,per\\,kilogram$.
Females expend about 10 per cent less energy than males of the same size doing a comparable activity.  For people weighing the same, individuals with a high percentage of body fat usually expend less energy than lean people, because fat is not as metabolically active as muscle."""^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780198631477.001.0001/acref-9780198631477-e-594"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EnergyFluenceRate a qudt:QuantityKind ;
    rdfs:label "Energy Fluence Rate"@en ;
    dcterms:description "\"Energy Fluence Rate\" can be used to describe the energy fluence delivered per unit time."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fluence"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Psi = \\frac{d\\Psi}{dt}$, where $d\\Psi$ is the increment of the energy fluence during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Energy Fluence Rate\" can be used to describe the energy fluence delivered per unit time."^^xsd:string ;
    qudt:symbol "Ψ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q65274525> ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:EnergyImparted a qudt:QuantityKind ;
    rdfs:label "Energy Imparted"@en ;
    dcterms:description "The \"Energy Imparted\", is a physical quantity associated with the energy delivered to a particular volume of matter by all the directly and indirectly ionizing particles (i.e. charged and uncharged) entering that volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ;
    qudt:latexDefinition "For ionizing radiation in the matter in a given 3D domain, $\\varepsilon = \\sum_i \\varepsilon_i$, where the energy deposit, $\\varepsilon_i$ is the energy deposited in a single interaction $i$, and is given by $\\varepsilon_i = \\varepsilon_{in} - \\varepsilon_{out} + Q$, where $\\varepsilon_{in}$ is the energy of the incident ionizing particle, excluding rest energy, $\\varepsilon_{out}$ is the sum of the energies of all ionizing particles leaving the interaction, excluding rest energy, and $Q$ is the change in the rest energies of the nucleus and of all particles involved in the interaction."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Energy Imparted\", is a physical quantity associated with the energy delivered to a particular volume of matter by all the directly and indirectly ionizing particles (i.e. charged and uncharged) entering that volume."^^xsd:string ;
    qudt:symbol "ε"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99526944> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:EnergyKinetic a qudt:QuantityKind ;
    rdfs:label "طاقة حركية"@ar,
        "kinetická energie"@cs,
        "kinetische Energie"@de,
        "kinetic energy"@en,
        "energía cinética"@es,
        "انرژی جنبشی"@fa,
        "énergie cinétique"@fr,
        "गतिज ऊर्जा"@hi,
        "energia cinetica"@it,
        "運動エネルギー"@ja,
        "Tenaga kinetik"@ms,
        "energia kinetyczna"@pl,
        "energia cinética"@pt,
        "Energie cinetică"@ro,
        "кинетическая энергия"@ru,
        "Kinetik enerji"@tr,
        "动能"@zh ;
    dcterms:description "The kinetic energy of an object is the energy which it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kinetic_energy"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kinetic_energy"^^xsd:anyURI ;
    qudt:plainTextDescription "The kinetic energy of an object is the energy which it possesses due to its motion. It is defined as the work needed to accelerate a body of a given mass from rest to its stated velocity."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q46276> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:EnergyLevel a qudt:QuantityKind ;
    rdfs:label "Energy Level"@en ;
    dcterms:description "\"Energy Level\" is the ionization energy for an electron at the Fermi energy in the interior of a substance."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Energy Level\" is the ionization energy for an electron at the Fermi energy in the interior of a substance."^^xsd:string ;
    qudt:symbol "E"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:EnergyPerMagneticFluxDensity_Squared a qudt:QuantityKind ;
    rdfs:label "Energy Per Square Magnetic Flux Density"@en ;
    dcterms:description "\"Energy Per Square Magnetic Flux Density\" is a measure of energy for a unit of magnetic flux density."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:EnergyPerSquareMagneticFluxDensity ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L2I0M-1H0T2D0> ;
    qudt:plainTextDescription "\"Energy Per Square Magnetic Flux Density\" is a measure of energy for a unit of magnetic flux density."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Energy_Squared a qudt:QuantityKind ;
    rdfs:label "Square Energy"@en ;
    dcterms:isReplacedBy qudtqk:SquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M2H0T-4D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EquilibriumConstantBasedOnConcentration a qudt:QuantityKind ;
    rdfs:label "equilibrium constant based on concentration"@en-us ;
    dcterms:description "Kc = ΠB(cB)νB for solutions"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Kc = ΠB(cB)νB für Lösungen"@de ;
    qudt:symbol "0173-1#Z4-BAJ458#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EquilibriumConstantBasedOnPressure a qudt:QuantityKind ;
    rdfs:label "equilibrium constant based on pressure"@en-us ;
    dcterms:description "Kp = ΠB(pB)νB for gases"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "Kp = ΠB(pB)νB für Gase"@de ;
    qudt:symbol "0173-1#Z4-BAJ459#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EquilibriumPositionVectorOfIon a qudt:QuantityKind ;
    rdfs:label "Equilibrium Position Vector of Ion"@en ;
    dcterms:description "\"Equilibrium Position Vector of Ion\" is the position vector of a particle in equilibrium."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Position_(vector)"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Equilibrium Position Vector of Ion\" is the position vector of a particle in equilibrium."^^xsd:string ;
    qudt:symbol "R_0"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105533477> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:EquivalenceDoseOutput a qudt:QuantityKind ;
    rdfs:label "equivalence dose output"@en-us ;
    dcterms:description "ratio of equivalence dose within an appropriately small interval to this interval, calculated as the differential quotient: q • D = q • ∂D/∂t as a measure of the current radiation exposure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:plainTextDescription "Quotient aus der Äquivalenzdosis in einer angemessenen kleinen Zeitspanne und dieser Zeitspanne, berechenbar als Differentialquotient: q • D = q • ∂D/∂t als Maß für die aktuelle Strahlenbelastung"@de ;
    qudt:symbol "0173-1#Z4-BAJ450#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EquivalentAbsorptionArea a qudt:QuantityKind ;
    rdfs:label "Equivalent absorption area"@en ;
    dcterms:description "In a diffuse sound field, the Equivalent Absorption Area is that area of a surface having an absorption factor equal to 1, which, if diffraction effects are neglected, would, in the same diffuse sound field, absorb the same power."^^qudt:LatexString ;
    qudt:abbreviation "m2"^^xsd:string ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "https://www.acoustic-glossary.co.uk/sound-absorption.htm#:~:text=Equivalent%20Sound%20Absorption%20Area%20(A,reverberation%20time%20in%20a%20room."^^xsd:anyURI ;
    qudt:plainTextDescription "In a diffuse sound field, the Equivalent Absorption Area is that area of a surface having an absorption factor equal to 1, which, if diffraction effects are neglected, would, in the same diffuse sound field, absorb the same power."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q87745170> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:EquivalentConcentration a qudt:QuantityKind ;
    rdfs:label "Equivalent Concentration"@en ;
    dcterms:description """"Equivalent Concentration" is the amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of 
another substance in a given chemical reaction, per volume."""^^rdf:HTML ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Equivalent_(chemistry)"^^xsd:anyURI ;
    qudt:plainTextDescription "The amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of another substance in a given chemical reaction, per volume."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Concentration .

qudtqk:EquivalentDensity a qudt:QuantityKind ;
    rdfs:label "Equivalent Density"@en ;
    dcterms:description """"Equivalent Density" is the mass of a substance that reacts with (or is equivalent to) an arbitrary mass of 
another substance in a given chemical reaction, per volume."""^^rdf:HTML ;
    qudt:applicableUnit unit:DEGREE_BALLING,
        unit:DEGREE_BAUME,
        unit:DEGREE_BAUME_US_HEAVY,
        unit:DEGREE_BAUME_US_LIGHT,
        unit:DEGREE_BRIX,
        unit:DEGREE_OECHSLE,
        unit:DEGREE_PLATO,
        unit:DEGREE_TWADDELL,
        unit:FemtoGM-PER-L,
        unit:GM-PER-CentiM3,
        unit:GM-PER-DeciL,
        unit:GM-PER-DeciM3,
        unit:GM-PER-L,
        unit:GM-PER-M3,
        unit:GM-PER-MilliL,
        unit:GRAIN-PER-GAL_IMP,
        unit:GRAIN-PER-GAL_US,
        unit:GRAIN-PER-M3,
        unit:KiloGM-PER-CentiM3,
        unit:KiloGM-PER-DeciM3,
        unit:KiloGM-PER-L,
        unit:KiloGM-PER-M3,
        unit:LB-PER-FT3,
        unit:LB-PER-GAL_IMP,
        unit:LB-PER-GAL_UK,
        unit:LB-PER-GAL_US,
        unit:LB-PER-IN3,
        unit:LB-PER-M3,
        unit:LB-PER-YD3,
        unit:MegaGM-PER-M3,
        unit:MicroGM-PER-DeciL,
        unit:MicroGM-PER-L,
        unit:MicroGM-PER-M3,
        unit:MicroGM-PER-MilliL,
        unit:MilliGM-PER-DeciL,
        unit:MilliGM-PER-L,
        unit:MilliGM-PER-M3,
        unit:MilliGM-PER-MilliL,
        unit:NanoGM-PER-DeciL,
        unit:NanoGM-PER-L,
        unit:NanoGM-PER-M3,
        unit:NanoGM-PER-MicroL,
        unit:NanoGM-PER-MilliL,
        unit:OZ-PER-GAL_IMP,
        unit:OZ-PER-GAL_UK,
        unit:OZ-PER-GAL_US,
        unit:OZ-PER-IN3,
        unit:OZ-PER-YD3,
        unit:PicoGM-PER-L,
        unit:PicoGM-PER-MilliL,
        unit:PlanckDensity,
        unit:SLUG-PER-FT3,
        unit:TONNE-PER-M3,
        unit:TON_LONG-PER-YD3,
        unit:TON_Metric-PER-M3,
        unit:TON_SHORT-PER-YD3,
        unit:TON_UK-PER-YD3,
        unit:TON_US-PER-YD3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Density"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Density .

qudtqk:Equivalent_Mass a qudt:QuantityKind ;
    rdfs:label "Mass Equivalent"^^xsd:string ;
    dcterms:description """"Mass Equivalent" is the mass of a substance that reacts with (or is equivalent to) an arbitrary mass of 
another substance in a given chemical reaction."""^^rdf:HTML ;
    dcterms:isReplacedBy qudtqk:MassEquivalent ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:Equivalent_Molar a qudt:QuantityKind ;
    rdfs:label "Molar Equivalent"@en ;
    dcterms:description """"Molar Equivalent" is the amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of 
another substance in a given chemical reaction."""^^rdf:HTML ;
    dcterms:isReplacedBy qudtqk:MolarEquivalent ;
    qudt:applicableUnit unit:CentiMOL,
        unit:FemtoMOL,
        unit:IU,
        unit:KiloMOL,
        unit:MOL,
        unit:MOL_LB,
        unit:MicroMOL,
        unit:MilliMOL,
        unit:MilliOSM,
        unit:NCM,
        unit:NCM_1ATM_0DEG_C_NL,
        unit:NanoMOL,
        unit:OSM,
        unit:PicoMOL,
        unit:SCF,
        unit:SCM,
        unit:SCM_1ATM_0DEG_C,
        unit:SCM_1ATM_15DEG_C_ISO,
        unit:SCM_1ATM_15DEG_C_NL ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Equivalent_(chemistry)"^^xsd:anyURI ;
    qudt:symbol "equiv"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AmountOfSubstance .

qudtqk:ExhaustGasMeanMolecularWeight a qudt:QuantityKind ;
    rdfs:label "Exhaust Gas Mean Molecular Weight"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ExhaustGasesSpecificHeat a qudt:QuantityKind ;
    rdfs:label "Exhaust Gases Specific Heat"@en ;
    dcterms:description "Specific heat of exhaust gases at constant pressure."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-LB-DEG_F,
        unit:BTU_IT-PER-LB-DEG_R,
        unit:BTU_TH-PER-LB-DEG_F,
        unit:CAL_IT-PER-GM-DEG_C,
        unit:CAL_IT-PER-GM-K,
        unit:CAL_TH-PER-GM-DEG_C,
        unit:CAL_TH-PER-GM-K,
        unit:J-PER-GM-DEG_C,
        unit:J-PER-GM-K,
        unit:J-PER-KiloGM-DEG_C,
        unit:J-PER-KiloGM-K,
        unit:KiloCAL-PER-GM-DEG_C,
        unit:KiloJ-PER-KiloGM-K,
        unit:M2-PER-SEC2-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:plainTextDescription "Specific heat of exhaust gases at constant pressure."^^xsd:string ;
    qudt:symbol "c_p"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificHeatCapacity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificHeatCapacity .

qudtqk:ExhaustStreamPower a qudt:QuantityKind ;
    rdfs:label "Exhaust Stream Power"@en ;
    qudt:applicableUnit unit:BAR-L-PER-SEC,
        unit:BAR-M3-PER-SEC,
        unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-SEC,
        unit:ERG-PER-SEC,
        unit:ExaJ-PER-SEC,
        unit:ExaW,
        unit:FT-LB_F-PER-HR,
        unit:FT-LB_F-PER-MIN,
        unit:FT-LB_F-PER-SEC,
        unit:GigaJ-PER-HR,
        unit:GigaJ-PER-SEC,
        unit:GigaW,
        unit:HP,
        unit:HP_Boiler,
        unit:HP_Brake,
        unit:HP_Electric,
        unit:HP_H2O,
        unit:HP_Metric,
        unit:HectoPA-L-PER-SEC,
        unit:HectoPA-M3-PER-SEC,
        unit:J-PER-DAY,
        unit:J-PER-HR,
        unit:J-PER-MIN,
        unit:J-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloGM_F-M-PER-SEC,
        unit:KiloJ-PER-DAY,
        unit:KiloJ-PER-HR,
        unit:KiloJ-PER-MIN,
        unit:KiloJ-PER-SEC,
        unit:KiloW,
        unit:MegaBTU_IT-PER-HR,
        unit:MegaJ-PER-HR,
        unit:MegaJ-PER-SEC,
        unit:MegaPA-L-PER-SEC,
        unit:MegaPA-M3-PER-SEC,
        unit:MegaW,
        unit:MicroJ-PER-SEC,
        unit:MicroW,
        unit:MilliBAR-L-PER-SEC,
        unit:MilliBAR-M3-PER-SEC,
        unit:MilliJ-PER-SEC,
        unit:MilliW,
        unit:NanoJ-PER-SEC,
        unit:NanoW,
        unit:PA-L-PER-SEC,
        unit:PA-M3-PER-SEC,
        unit:PFERDESTAERKE,
        unit:PSI-IN3-PER-SEC,
        unit:PSI-L-PER-SEC,
        unit:PSI-M3-PER-SEC,
        unit:PSI-YD3-PER-SEC,
        unit:PetaJ-PER-SEC,
        unit:PetaW,
        unit:PicoJ-PER-SEC,
        unit:PicoW,
        unit:PlanckPower,
        unit:THM_US-PER-HR,
        unit:TON_FG,
        unit:TeraJ-PER-SEC,
        unit:TeraW,
        unit:TeraW-HR-PER-YR,
        unit:W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:latexSymbol "$\\rho$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:Power"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Power .

qudtqk:ExitPlaneCrossSectionalArea a qudt:QuantityKind ;
    rdfs:label "Exit Plane Cross-sectional Area"@en ;
    dcterms:description "Cross-sectional area at exit plane of nozzle"^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:plainTextDescription "Cross-sectional area at exit plane of nozzle"^^xsd:string ;
    qudt:symbol "A_{e}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:ExitPlanePressure a qudt:QuantityKind ;
    rdfs:label "Exit Plane Pressure"@en ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:symbol "p_{e}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:ExitPlaneTemperature a qudt:QuantityKind ;
    rdfs:label "Exit Plane Temperature"@en ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:symbol "T_e"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:ExposureOfIonizingRadiation a qudt:QuantityKind ;
    rdfs:label "exposure of ionizing radiation"@en-us ;
    dcterms:description "measure of an electromagnetic radiation field to which a material is exposed in terms of ionization, which the radiation produces as reference material air, expressed as ratio of ∂Q and ∂m, where ∂Q is the absolute value of the total charge of the ions of one sign produced in the air of mass ∂m when all of the electrons (and positrons) liberated by photons in this mass element are completely stopped"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:plainTextDescription "Maß für die Wirkung eines elektromagnetischen Feldes auf Materie in Form der Ionisation, die die Strahlung im Referenzmaterial Luft erzeugt, ausgedrückt als Quotient aus ∂Q und ∂m, wobei ∂Q der Absolutwert der gesamten elektrischen Ladung der Ionen eines Vorzeichens ist, die in Luft der Masse ∂m gebildet wird, wenn in diesem Massenelement alle Elektronen (und Positronen), die durch die Photonen freigesetzt werden, komplett gestoppt werden"@de ;
    qudt:symbol "0173-1#Z4-BAJ326#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ExposureRateOfIonizingRadiation a qudt:QuantityKind ;
    rdfs:label "exposure rate of ionizing radiation"@en-us ;
    dcterms:description "ratio between the exposure of ionizing radiation dJ in a time interval and the duration dt of this interval"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:plainTextDescription "Quotient Ionendosis dJ in einem Zeitintervall durch Dauer dt dieses Zeitintervalls"@de ;
    qudt:symbol "0173-1#Z4-BAJ327#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:FLIGHT-PERFORMANCE-RESERVE-PROPELLANT-MASS a qudt:QuantityKind ;
    rdfs:label "Flight Performance Reserve Propellant Mass"@en ;
    dcterms:description "A quantity of propellant, at a nominal mixture ratio, along with fuel bias that is set aside from total propellant loaded to cover for statistical variations of flight hardware characteristics and environment conditions on the day of launch. The launch vehicle is designed to accommodate the maximum FPR loading."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "A quantity of propellant, at a nominal mixture ratio, along with fuel bias that is set aside from total propellant loaded to cover for statistical variations of flight hardware characteristics and environment conditions on the day of launch. The launch vehicle is designed to accommodate the maximum FPR loading."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "FPR"^^xsd:string ;
    skos:broader qudtqk:Mass .

qudtqk:FUEL-BIAS a qudt:QuantityKind ;
    rdfs:label "Fuel Bias"@en ;
    dcterms:description "An additional quantity of fuel to ensure depletion of high-weight oxidizer before fuel for systems with high-oxidizer mixing ratios (e.g., 6:1). This practice allows for more efficient propellant utilization. Denoted as a percentage."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "An additional quantity of fuel to ensure depletion of high-weight oxidizer before fuel for systems with high-oxidizer mixing ratios (e.g., 6:1). This practice allows for more efficient propellant utilization. Denoted as a percentage."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:FahrenheitTemperature a qudt:QuantityKind ;
    rdfs:label "Fahrenheit temperature"^^xsd:string,
        "Fahrenheit temperature"@en-us ;
    dcterms:description "quantity whose zero point is defined by the temperature of a mixture of ice, water and ammonium chloride (-17.8 °C) and its fixed points on the Fahrenheit scale are 32 °F (melting point of ice) and 212 °F (boiling point of water)"@en ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD263"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD263"^^xsd:anyURI ;
    qudt:plainTextDescription "Größe, deren Nullpunkt durch die Mischungstemperatur von Eis, Wasser und Salmiak (Ammoniumchlorid) definiert ist (-17,8 °C) und deren Fixpunkte auf der Fahrenheit-Skala 32 °F (Schmelztemperatur von Eis) und 212 °F (Siedetemperatur des Wassers) sind"@de ;
    qudt:symbol "0173-1#Z4-BAJ278#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:FailureRate a qudt:QuantityKind ;
    rdfs:label "failure rate"^^xsd:string,
        "failure rate"@en-us ;
    dcterms:description "limiting value - if it exists - of the ratio between the conditional probability that the fault time t of a resource will fall within a defined interval (t, t + Δt), and the duration of this interval if Δt approaches zero and the unit is in an operational state at the beginning of the interval"@en ;
    qudt:applicableUnit unit:SAMPLE-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD051"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD051"^^xsd:anyURI ;
    qudt:plainTextDescription "Grenzwert - falls er existiert - des Quotienten aus der bedingten Wahrscheinlichkeit, dass der Ausfallzeitpunkt t eines Betriebsmittels in ein gegebenes Zeitintervall (t, t + Δt) fällt, und der Dauer dieses Zeitintervalls, wenn Δt gegen null geht und das Betriebsmittel sich zu Beginn des Zeitintervalls im betriebsfähigen Zustand befindet"@de ;
    qudt:symbol "0173-1#Z4-BAJ466#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Incidence"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Incidence .

qudtqk:FermiEnergy a qudt:QuantityKind ;
    rdfs:label "Fermi Energy"@en ;
    dcterms:description "\"Fermi Energy\" in a metal is the highest occupied energy level at zero thermodynamic temperature."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Fermi Energy\" in a metal is the highest occupied energy level at zero thermodynamic temperature."^^xsd:string ;
    qudt:symbol "E_F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q431335> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:FermiTemperature a qudt:QuantityKind ;
    rdfs:label "Fermi Temperature"@en ;
    dcterms:description "\"Fermi Temperature\" is the temperature associated with the Fermi energy."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fermi_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$T_F = \\frac{E_F}{k}$, where $E_F$ is the Fermi energy and $k$ is the Boltzmann constant."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Fermi Temperature\" is the temperature associated with the Fermi energy."^^xsd:string ;
    qudt:symbol "T_F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105942324> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:FinalOrCurrentVehicleMass a qudt:QuantityKind ;
    rdfs:label "Final Or Current Vehicle Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:FirstMomentOfArea a qudt:QuantityKind ;
    rdfs:label "First Moment of Area"@en ;
    dcterms:description "The first moment of area is the summation of area times distance to an axis. It is a measure of the distribution of the area of a shape in relationship to an axis."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC-FT,
        unit:AC-FT_US,
        unit:ANGSTROM3,
        unit:BBL,
        unit:BBL_UK_PET,
        unit:BU_US_DRY,
        unit:CentiM3,
        unit:DecaL,
        unit:DecaM3,
        unit:DeciL,
        unit:DeciM3,
        unit:FBM,
        unit:FT3,
        unit:FemtoL,
        unit:GI_UK,
        unit:GI_US,
        unit:GT,
        unit:HectoL,
        unit:IN3,
        unit:KiloCubicFT,
        unit:KiloL,
        unit:L,
        unit:M3,
        unit:MI3,
        unit:MI_UK3,
        unit:MegaL,
        unit:MicroL,
        unit:MicroM3,
        unit:MilliL,
        unit:MilliM3,
        unit:NT,
        unit:NanoL,
        unit:OZ_VOL_UK,
        unit:PINT,
        unit:PINT_UK,
        unit:PK_UK,
        unit:PicoL,
        unit:PlanckVolume,
        unit:QT_UK,
        unit:QT_US,
        unit:RT,
        unit:STANDARD,
        unit:STR,
        unit:TBSP,
        unit:TON_Register,
        unit:TON_SHIPPING_UK,
        unit:TON_SHIPPING_US,
        unit:TSP,
        unit:YD3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:plainTextDescription "The first moment of area is the summation of area times distance to an axis. It is a measure of the distribution of the area of a shape in relationship to an axis."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q920601> ;
    rdfs:comment "Applicable units are those of quantitykind:Volume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Volume .

qudtqk:FirstStageMassRatio a qudt:QuantityKind ;
    rdfs:label "First Stage Mass Ratio"@en ;
    dcterms:description "Mass ratio for the first stage of a multistage launcher."^^qudt:LatexString ;
    qudt:applicableUnit unit:FemtoGM-PER-KiloGM,
        unit:GM-PER-GM,
        unit:GM-PER-HectoGM,
        unit:GM-PER-KiloGM,
        unit:KiloGM-PER-KiloGM,
        unit:LB-PER-LB,
        unit:MicroGM-PER-GM,
        unit:MicroGM-PER-KiloGM,
        unit:MicroGM-PER-MilliGM,
        unit:MilliGM-PER-GM,
        unit:MilliGM-PER-KiloGM,
        unit:NanoGM-PER-KiloGM,
        unit:NanoGM-PER-MilliGM,
        unit:PicoGM-PER-GM,
        unit:PicoGM-PER-KiloGM,
        unit:PicoGM-PER-MilliGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Mass ratio for the first stage of a multistage launcher."^^xsd:string ;
    qudt:symbol "R_1"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassRatio .

qudtqk:FissionCoreRadiusToHeightRatio a qudt:QuantityKind ;
    rdfs:label "Fission Core Radius To Height Ratio"@en ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:symbol "R/H"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:FissionFuelUtilizationFactor a qudt:QuantityKind ;
    rdfs:label "Fission Fuel Utilization Factor"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:FissionMultiplicationFactor a qudt:QuantityKind ;
    rdfs:label "Fission Multiplication Factor"@en ;
    dcterms:description "The number of fission neutrons produced per absorption in the fuel."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "The number of fission neutrons produced per absorption in the fuel."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:FlightPathAngle a qudt:QuantityKind ;
    rdfs:label "Flight Path Angle"@en ;
    dcterms:description "Flight path angle is defined in two different ways. To the aerodynamicist, it is the angle between the flight path vector (where the airplane is going) and the local atmosphere. To the flight crew, it is normally known as the angle between the flight path vector and the horizon, also known as the climb (or descent) angle."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "Flight path angle is defined in two different ways. To the aerodynamicist, it is the angle between the flight path vector (where the airplane is going) and the local atmosphere. To the flight crew, it is normally known as the angle between the flight path vector and the horizon, also known as the climb (or descent) angle."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:ForceConstant a qudt:QuantityKind ;
    rdfs:label "force constant"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD055"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD055"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:FundamentalLatticeVector a qudt:QuantityKind ;
    rdfs:label "Fundamental Lattice vector"@en ;
    dcterms:description "\"Fundamental Lattice vector\" are fundamental translation vectors for the crystal lattice."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Fundamental Lattice vector\" are fundamental translation vectors for the crystal lattice."^^xsd:string ;
    qudt:symbol "a_1, a_2, a_3"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105451063> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:LatticeVector .

qudtqk:FundamentalReciprocalLatticeVector a qudt:QuantityKind ;
    rdfs:label "Fundamental Reciprocal Lattice Vector"@en ;
    dcterms:description "\"Fundamental Reciprocal Lattice Vector\" are fundamental, or primary, translation vectors the reciprocal lattice."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-KiloM,
        unit:PER-M,
        unit:PER-MicroM,
        unit:PER-MilliM,
        unit:PER-NanoM,
        unit:PER-PicoM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Reciprocal_lattice"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Fundamental Reciprocal Lattice Vector\" are fundamental, or primary, translation vectors the reciprocal lattice."^^xsd:string ;
    qudt:symbol "b_1, b_2, b_3"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105475399> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularReciprocalLatticeVector"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularReciprocalLatticeVector .

qudtqk:GROSS-LIFT-OFF-WEIGHT a qudt:QuantityKind ;
    rdfs:label "Gross Lift-Off Weight"@en ;
    dcterms:description "The sum of a rocket's inert mass and usable fluids and gases at sea level."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Maximum_Takeoff_Weight"^^xsd:anyURI ;
    qudt:plainTextDescription "The sum of a rocket's inert mass and usable fluids and gases at sea level."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:Gain a qudt:QuantityKind ;
    rdfs:label "Gain"@en ;
    dcterms:description "A general term used to denote an increase in signal power or signal strength in transmission from one point to another. Gain is usually expressed in decibels and is widely used to denote transducer gain.  An increase or amplification. In radar there are two general usages of the term: (a) antenna gain, or gain factor, is the ratio of the power transmitted along the beam axis to that of an isotropic radiator transmitting the same total power; (b) receiver gain, or video gain, is the amplification given a signal by the receiver."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gain"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "A general term used to denote an increase in signal power or signal strength in transmission from one point to another. Gain is usually expressed in decibels and is widely used to denote transducer gain.  An increase or amplification. In radar there are two general usages of the term: (a) antenna gain, or gain factor, is the ratio of the power transmitted along the beam axis to that of an isotropic radiator transmitting the same total power; (b) receiver gain, or video gain, is the amplification given a signal by the receiver."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:GasLeakRate a qudt:QuantityKind ;
    rdfs:label "gas leak rate"^^xsd:string,
        "gas leak rate"@en-us ;
    dcterms:description "ratio of the pV value of a gas (product of pressure and volume of a given quantity of gas at the respective temperature) flowing through a pipe cross-section during a time interval and the related interval"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD057"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD057"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient aus dem pV-Wert eines Gases (Produkt aus Druck und Volumen einer bestimmten Menge eines Gases bei der jeweils herrschenden Temperatur), das während einer Zeitspanne durch einen Leitungsquerschnitt strömt, und der zugehörigen Zeitspanne"@de ;
    qudt:symbol "0173-1#Z4-BAJ324#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:GrandCanonicalPartitionFunction a qudt:QuantityKind ;
    rdfs:label "Grand Canonical Partition Function"@en ;
    dcterms:description "An \"Grand Canonical Partition Function\" for a grand canonical ensemble, a system that can exchange both heat and particles with the environment, which has a constant temperature and a chemical potential."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Partition_function_(statistical_mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Xi = \\sum_{N_A, N_B, ...} Z(N_A, N_B, ...) \\cdot \\lambda_A^{N_A} \\cdot \\lambda_B^{N_B} \\cdot ...$, where $Z(N_A, N_B, ...)$ is the canonical partition function for the given number of particles $A, B, ...,$, and $\\lambda_A, \\lambda_B, ...$ are the absolute activities of particles $A, B, ...$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Xi$"^^qudt:LatexString ;
    qudt:plainTextDescription "An \"Grand Canonical Partition Function\" for a grand canonical ensemble, a system that can exchange both heat and particles with the environment, which has a constant temperature and a chemical potential."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96176022> ;
    rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CanonicalPartitionFunction .

qudtqk:Gravity_API a qudt:QuantityKind ;
    rdfs:label "API Gravity"@en ;
    dcterms:description """The American Petroleum Institute gravity, or API gravity, is a measure of how heavy or light a petroleum liquid is compared to water: if its API gravity is greater than 10, it is lighter and floats on water; if less than 10, it is heavier and sinks.

API gravity is thus an inverse measure of a petroleum liquid's density relative to that of water (also known as specific gravity). It is used to compare densities of petroleum liquids. For example, if one petroleum liquid is less dense than another, it has a greater API gravity. Although API gravity is mathematically a dimensionless quantity (see the formula below), it is referred to as being in 'degrees'. API gravity is graduated in degrees on a hydrometer instrument. API gravity values of most petroleum liquids fall between 10 and 70 degrees."""^^xsd:string ;
    dcterms:isReplacedBy qudtqk:APIGravity ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:baseSIUnitDimensions "$qkdv:A0E0L0I0M0H0T0D1$"^^qudt:LatexString ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/API_gravity"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription """The American Petroleum Institute gravity, or API gravity, is a measure of how heavy or light a petroleum liquid is compared to water: if its API gravity is greater than 10, it is lighter and floats on water; if less than 10, it is heavier and sinks.

API gravity is thus an inverse measure of a petroleum liquid's density relative to that of water (also known as specific gravity). It is used to compare densities of petroleum liquids. For example, if one petroleum liquid is less dense than another, it has a greater API gravity. Although API gravity is mathematically a dimensionless quantity (see the formula below), it is referred to as being in 'degrees'. API gravity is graduated in degrees on a hydrometer instrument. API gravity values of most petroleum liquids fall between 10 and 70 degrees."""^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q29246> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:GrowingDegreeDay_Cereal a qudt:QuantityKind ;
    rdfs:label "Growing Degree Days (Cereals)"@en ;
    dcterms:description "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:GrowingDegreeDay ;
    qudt:applicableUnit unit:DEG_C-DAY,
        unit:DEG_C-HR,
        unit:DEG_C-WK,
        unit:DEG_F-DAY,
        unit:DEG_F-HR,
        unit:K-DAY,
        unit:K-SEC ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:plainTextDescription "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TimeTemperature"^^xsd:string ;
    rdfs:isDefinedBy <https://data.agrimetrics.co.uk/ontologies/qudt-extension> ;
    skos:broader qudtqk:TimeTemperature .

qudtqk:Half-Life a qudt:QuantityKind ;
    rdfs:label "Poločas rozpadu"@cs,
        "Halbwertszeit"@de,
        "half-life"@en,
        "semiperiodo"@es,
        "نیمه عمر"@fa,
        "temps de demi-vie"@fr,
        "tempo di dimezzamento"@it,
        "Separuh hayat"@ms,
        "meia-vida"@pt,
        "yarılanma süresi"@tr,
        "半衰期"@zh ;
    dcterms:description "The \"Half-Life\" is the average duration required for the decay of one half of the atoms or nuclei."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Half-life"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Half-Life\" is the average duration required for the decay of one half of the atoms or nuclei."^^xsd:string ;
    qudt:symbol "T_{1/2}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98118544> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "semivita"@it ;
    skos:broader qudtqk:Time .

qudtqk:Half-ValueThickness a qudt:QuantityKind ;
    rdfs:label "Half-Value Thickness"@en ;
    dcterms:description "The \"Half-Value Thickness\" is the thickness of the material at which the intensity of radiation entering it is reduced by one half."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Half-value_layer"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Half-Value Thickness\" is the thickness of the material at which the intensity of radiation entering it is reduced by one half."^^xsd:string ;
    qudt:symbol "d_{1/2}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q127526> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:Heat a qudt:QuantityKind ;
    rdfs:label "حرارة"@ar,
        "jednotka tepla"@cs,
        "Wärme"@de,
        "heat"@en,
        "calor"@es,
        "کمیت گرما"@fa,
        "quantité de chaleur"@fr,
        "ऊष्मा"@hi,
        "calore"@it,
        "熱量"@ja,
        "labor"@la,
        "kuantiti haba Haba"@ms,
        "ciepło"@pl,
        "quantidade de calor"@pt,
        "cantitate de căldură"@ro,
        "Теплота"@ru,
        "toplota"@sl,
        "ısı miktarı"@tr,
        "热量"@zh ;
    dcterms:description "\"Heat\" is the energy transferred by a thermal process.  Heat can be measured in terms of the dynamical units of energy, as the erg, joule, etc., or in terms of the amount of energy required to produce a definite thermal change in some substance, as, for example, the energy required per degree to raise the temperature of a unit mass of water at some temperature ( calorie, Btu)."^^qudt:LatexString ;
    qudt:abbreviation "heat"^^xsd:string ;
    qudt:applicableUnit unit:BTU_39DEG_F,
        unit:BTU_59DEG_F,
        unit:BTU_60DEG_F,
        unit:BTU_IT,
        unit:BTU_MEAN,
        unit:BTU_TH,
        unit:CAL_15DEG_C,
        unit:CAL_20DEG_C,
        unit:CAL_IT,
        unit:CAL_MEAN,
        unit:CAL_TH,
        unit:GigaJ,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloCAL_IT,
        unit:KiloCAL_Mean,
        unit:KiloCAL_TH,
        unit:KiloJ,
        unit:MegaBTU_IT,
        unit:MegaJ,
        unit:NanoJ,
        unit:PicoJ,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TON_FG-HR ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Heat"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Heat\" is the energy transferred by a thermal process.  Heat can be measured in terms of the dynamical units of energy, as the erg, joule, etc., or in terms of the amount of energy required to produce a definite thermal change in some substance, as, for example, the energy required per degree to raise the temperature of a unit mass of water at some temperature ( calorie, Btu)."^^xsd:string ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q44432> ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Wärmemenge"@de,
        "amount of heat"@en,
        "chaleur"@fr,
        "quantità di calore"@it,
        "jumlah haba"@ms ;
    skos:broader qudtqk:ThermalEnergy .

qudtqk:HeatFluxDensity a qudt:QuantityKind ;
    rdfs:label "Heat Flux Density"@en ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/HEFD> ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:HeatingValue a qudt:QuantityKind ;
    rdfs:label "Calorific Value"@en ;
    dcterms:description "The heating value (or energy value or calorific value) of a substance, usually a fuel or food (see food energy), is the amount of heat released during the combustion of a specified amount of it. "^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-LB,
        unit:BTU_TH-PER-LB,
        unit:CAL_IT-PER-GM,
        unit:CAL_TH-PER-GM,
        unit:ERG-PER-GM,
        unit:J-PER-GM,
        unit:J-PER-KiloGM,
        unit:KiloCAL-PER-GM,
        unit:KiloJ-PER-KiloGM,
        unit:KiloLB_F-FT-PER-LB,
        unit:MegaJ-PER-KiloGM,
        unit:MilliJ-PER-GM,
        unit:N-M-PER-KiloGM,
        unit:W-HR-PER-KiloGM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_energy"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Heat_of_combustion"^^xsd:anyURI ;
    qudt:plainTextDescription "The heating value (or energy value or calorific value) of a substance, usually a fuel or food (see food energy), is the amount of heat released during the combustion of a specified amount of it. "^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Energy Value"@en,
        "Heating Value"@en ;
    skos:broader qudtqk:SpecificEnergy .

qudtqk:Height a qudt:QuantityKind ;
    rdfs:label "Výška"@cs,
        "Höhe"@de,
        "height"@en,
        "altura"@es,
        "ارتفاع"@fa,
        "hauteur"@fr,
        "altezza"@it,
        "Ketinggian"@ms,
        "altura"@pt,
        "Înălțime"@ro,
        "высота"@ru,
        "yükseklik"@tr,
        "高度"@zh ;
    dcterms:description "\"Height\" is the measurement of vertical distance, but has two meanings in common use. It can either indicate how \"tall\" something is, or how \"high up\" it is."^^qudt:LatexString ;
    qudt:abbreviation "height"^^xsd:string ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Height"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Height"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Height\" is the measurement of vertical distance, but has two meanings in common use. It can either indicate how \"tall\" something is, or how \"high up\" it is."^^xsd:string ;
    qudt:symbol "h"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q208826> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:HoleDensity a qudt:QuantityKind ;
    rdfs:label "Hole Density"@en ;
    dcterms:description "\"Hole Density\" is the number of holes per volume in a valence band."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Hole Density\" is the number of holes per volume in a valence band."^^xsd:string ;
    qudt:symbol "p"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105971101> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:HorizontalVelocity a qudt:QuantityKind ;
    rdfs:label "Horizontal Velocity"@en ;
    dcterms:description "Component of a projectile's velocity, which acts parallel to the ground and does not lift the projectile in the air."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "Component of a projectile's velocity, which acts parallel to the ground and does not lift the projectile in the air."^^xsd:string ;
    qudt:symbol "V_{X}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:INERT-MASS a qudt:QuantityKind ;
    rdfs:label "Inert Mass"@en ;
    dcterms:description "The sum of the vehicle dry mass, residual fluids and gasses, personnel and personnel provisions, and cargo."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "The sum of the vehicle dry mass, residual fluids and gasses, personnel and personnel provisions, and cargo."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:IgnitionIntervalTime a qudt:QuantityKind ;
    rdfs:label "Ignition interval time"@en ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:InformationContent a qudt:QuantityKind ;
    rdfs:label "information content"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD066"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD066"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InformationContentExpressedAsALogarithmToBase10 a qudt:QuantityKind ;
    rdfs:label "information content expressed as a logarithm to base 10"@en-us ;
    dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the common logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) lg 1/p(x) Hart, where p(x) is the probability of the event x"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der dekatischer Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) lg 1/p(x) Hart, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ;
    qudt:symbol "0173-1#Z4-BAJ468#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InformationContentExpressedAsALogarithmToBase2 a qudt:QuantityKind ;
    rdfs:label "information content expressed as a logarithm to base 2"@en-us ;
    dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the binary logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) lb 1/p(x) Sh, where p(x) is the probability of the event x"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "I(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der binäre Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) = lb 1/p(x) Sh, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ;
    qudt:symbol "0173-1#Z4-BAJ463#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InformationContentExpressedAsALogarithmToBaseE a qudt:QuantityKind ;
    rdfs:label "information content expressed as a logarithm to base e"@en-us ;
    dcterms:description "I(xi) as the information content I(xi) of a result xi (e.g. the occurrence of a character xi) is the natural logarithm of the reciprocal of the probability p(xi) of its occurrence, i.e.: l(x) ln 1/p(x) nat, where p(x) is the probability of the event x"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "I(xi) als der Informationsgehalt I(xi) eines Ergebnisses xi (z. B. das Auftreten eines Zeichens xi) ist der natürliche Logarithmus des Kehrwertes der Wahrscheinlichkeit p (xi) für sein eintreten, also: l(x) = ln 1/p(x) nat, dabei ist p(x) die Wahrscheinlichkeit des Ereignisses x"@de ;
    qudt:symbol "0173-1#Z4-BAJ469#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InitialExpansionRatio a qudt:QuantityKind ;
    rdfs:label "Initial Expansion Ratio"@en ;
    qudt:applicableUnit unit:M-PER-DEG_C-M,
        unit:MilliM-PER-DEG_C-M,
        unit:PER-DEG_F,
        unit:PER-K,
        unit:PER-MegaK,
        unit:PPM-PER-K,
        unit:PPTM-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ExpansionRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ExpansionRatio .

qudtqk:InitialNozzleThroatDiameter a qudt:QuantityKind ;
    rdfs:label "Initial Nozzle Throat Diameter"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NozzleThroatDiameter .

qudtqk:InitialVehicleMass a qudt:QuantityKind ;
    rdfs:label "Initial Vehicle Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_{o}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:InitialVelocity a qudt:QuantityKind ;
    rdfs:label "Initial Velocity"@en ;
    dcterms:description "The velocity of a moving body at starting; especially, the velocity of a projectile as it leaves the mouth of a firearm from which it is discharged."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "The velocity of a moving body at starting; especially, the velocity of a projectile as it leaves the mouth of a firearm from which it is discharged."^^xsd:string ;
    qudt:symbol "V_{i}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:IntinsicCarrierDensity a qudt:QuantityKind ;
    rdfs:label "Intinsic Carrier Density"@en ;
    dcterms:description "\"Intinsic Carrier Density\" is proportional to electron and hole densities."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:latexDefinition "$np = n_i^2$, where $n$ is electron density and $p$ is hole density."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Intinsic Carrier Density\" is proportional to electron and hole densities."^^xsd:string ;
    qudt:symbol "n_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1303188> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:InverseEnergy_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Energy"@en ;
    dcterms:isReplacedBy qudtqk:InverseSquareEnergy ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InverseMass_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Mass"@en ;
    dcterms:isReplacedBy qudtqk:InverseSquareMass ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-2H0T0D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InverseTime_Squared a qudt:QuantityKind ;
    rdfs:label "Inverse Square Time"@en ;
    dcterms:isReplacedBy qudtqk:InverseSquareTime ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:IonCurrent a qudt:QuantityKind ;
    rdfs:label "Ion Current"@en ;
    dcterms:description "An ion current is the influx and/or efflux of ions through an ion channel."^^qudt:LatexString ;
    qudt:applicableUnit unit:A,
        unit:A_Ab,
        unit:A_Stat,
        unit:AttoA,
        unit:BIOT,
        unit:FemtoA,
        unit:GigaA,
        unit:KiloA,
        unit:MegaA,
        unit:MicroA,
        unit:MilliA,
        unit:NanoA,
        unit:PetaA,
        unit:PicoA,
        unit:PlanckCurrent,
        unit:TeraA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:plainTextDescription "An ion current is the influx and/or efflux of ions through an ion channel."^^xsd:string ;
    qudt:symbol "j"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricCurrent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricCurrent .

qudtqk:IonicCharge a qudt:QuantityKind ;
    rdfs:label "Ionic Charge"@en ;
    dcterms:description "The total charge of an ion. The charge of an electron; the charge of any ion is equal to this electron charge in magnitude, or is an integral multiple of it."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-HR,
        unit:A-SEC,
        unit:AttoC,
        unit:C,
        unit:C_Ab,
        unit:C_Stat,
        unit:CentiC,
        unit:DecaC,
        unit:DeciC,
        unit:E,
        unit:ElementaryCharge,
        unit:ExaC,
        unit:F,
        unit:FR,
        unit:FemtoC,
        unit:GigaC,
        unit:HectoC,
        unit:KiloA-HR,
        unit:KiloC,
        unit:KiloJ-PER-KiloV,
        unit:MegaC,
        unit:MicroC,
        unit:MilliA-HR,
        unit:MilliA-SEC,
        unit:MilliC,
        unit:NanoC,
        unit:PetaC,
        unit:PicoC,
        unit:PlanckCharge,
        unit:TeraC,
        unit:YoctoC,
        unit:YottaC,
        unit:ZeptoC,
        unit:ZettaC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:plainTextDescription "The total charge of an ion. The charge of an electron; the charge of any ion is equal to this electron charge in magnitude, or is an integral multiple of it."^^xsd:string ;
    qudt:symbol "q"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricCharge"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricCharge .

qudtqk:IsothermalMoistureCapacity a qudt:QuantityKind ;
    rdfs:label "Isothermal Moisture Capacity"@en ;
    dcterms:description "\"Isothermal Moisture Capacity\" is the capacity of a material to absorb moisture in the Effective Moisture Penetration Depth (EMPD) model."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM3-PER-GM,
        unit:DeciL-PER-GM,
        unit:DeciM3-PER-KiloGM,
        unit:FT3-PER-LB,
        unit:IN3-PER-LB,
        unit:L-PER-KiloGM,
        unit:M3-PER-KiloGM,
        unit:MilliL-PER-GM,
        unit:MilliL-PER-KiloGM,
        unit:MilliM3-PER-GM,
        unit:MilliM3-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T0D0> ;
    qudt:informativeReference "https://bigladdersoftware.com/epx/docs/8-4/engineering-reference/effective-moisture-penetration-depth-empd.html#empd-nomenclature"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificVolume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificVolume .

qudtqk:KinematicViscosityOrDiffusionConstantOrThermalDiffusivity a qudt:QuantityKind ;
    rdfs:label "kinematic viscosity or diffusion constant or thermal diffusivity"@en-us ;
    dcterms:description "ratio of the dynamic viscosity and the density of a material measured at the same temperature, or ratio of the diffusion current density and carrier density gradient, or ratio of thermal conductivity divided by heat capacity"@en ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes oder Quotient Diffusionsstromdichte durch Gradient der Ladungsträgerdichte oder Quotient Wärmeleitfähigkeit durch Wärmekapazität"@de ;
    qudt:symbol "0173-1#Z4-BAJ328#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:KineticEnergy a qudt:QuantityKind ;
    rdfs:label "Kinetic Energy"@en ;
    dcterms:description "$\\textit{Kinetic Energy}$ is the energy which a body possesses as a consequence of its motion, defined as one-half the product of its mass $m$ and the square of its speed $v$, $ \\frac{1}{2} mv^{2} $. The kinetic energy per unit volume of a fluid parcel is the $ \\frac{1}{2}  p v^{2}$ , where $p$ is the density and $v$ the speed of the parcel. See potential energy. For relativistic speeds the kinetic energy is given by $E_k = mc^2 - m_0 c^2$, where $c$ is the velocity of light in a vacuum, $m_0$ is the rest mass, and $m$ is the moving mass."^^qudt:LatexString ;
    qudt:altSymbol "K"^^xsd:string ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Kinetic_energy"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD071"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Kinetic_energy"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD071"^^xsd:anyURI ;
    qudt:latexDefinition "$T = \\frac{mv^2}{2}$, where $m$ is mass and $v$ is speed."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:symbol "KE"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q46276> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:KineticOrThermalEnergy a qudt:QuantityKind ;
    rdfs:label "kinetic or thermal energy"@en-us ;
    dcterms:description "energy presented in the movement of a body, composed of translation and rotation energies, determined by the movement of this body compared to another system and by its mass (mass distribution) or energy in the terms of heat"@en ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "Energie, die in der Bewegung eines Körpers steckt und sich aus Translationsenergie und Rotationsenergie zusammen setzt, die durch die Bewegung dieses Körpers gegenüber einem anderen System und durch seine Masse (Massenverteilung) bestimmt wird oder Energie in Form von Wärme"@de ;
    qudt:symbol "0173-1#Z4-BAJ280#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:LarmorAngularFrequency a qudt:QuantityKind ;
    rdfs:label "Larmor Angular Frequency"@en ;
    dcterms:description "The \"Larmor Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG-PER-HR,
        unit:DEG-PER-MIN,
        unit:DEG-PER-SEC,
        unit:PlanckFrequency_Ang,
        unit:RAD-PER-HR,
        unit:RAD-PER-MIN,
        unit:RAD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Larmor_precession#Larmor_frequency"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\omega_L = \\frac{e}{2m_e}B$, where $e$ is the elementary charge, $m_e$ is the rest mass of electron, and $B$ is the magnetic flux density."^^qudt:LatexString ;
    qudt:latexSymbol "$\\omega_L$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Larmor Frequency\" describes angular momentum vector precession about the external field axis with an angular frequency."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97617059> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularFrequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularFrequency .

qudtqk:LatticePlaneSpacing a qudt:QuantityKind ;
    rdfs:label "Lattice Plane Spacing"@en ;
    dcterms:description "\"Lattice Plane Spacing\" is the distance between successive lattice planes."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Lattice Plane Spacing\" is the distance between successive lattice planes."^^xsd:string ;
    qudt:symbol "d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105488046> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:LiftCoefficient a qudt:QuantityKind ;
    rdfs:label "Lift Coefficient"@en ;
    dcterms:description "The lift coefficient is a dimensionless coefficient that relates the lift generated by a lifting body, the dynamic pressure of the fluid flow around the body, and a reference area associated with the body."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "The lift coefficient is a dimensionless coefficient that relates the lift generated by a lifting body, the dynamic pressure of the fluid flow around the body, and a reference area associated with the body."^^xsd:string ;
    qudt:symbol "C_{L}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q760106> ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:LiftForce a qudt:QuantityKind ;
    rdfs:label "Lift Force"@en ;
    dcterms:description "The lift force, lifting force or simply lift is the sum of all the forces on a body that force it to move perpendicular to the direction of flow."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:plainTextDescription "The lift force, lifting force or simply lift is the sum of all the forces on a body that force it to move perpendicular to the direction of flow."^^xsd:string ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q101960694> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

qudtqk:LinearElectricCharge a qudt:QuantityKind ;
    rdfs:label "lineic electric charge"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD075"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD075"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LinearForce a qudt:QuantityKind ;
    rdfs:label "Streckenlast"@de,
        "Linear Force"@en ;
    dcterms:description "Another name for Force Per Length, used by the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN-M-PER-M2,
        unit:DYN-PER-CentiM,
        unit:GigaN-M-PER-M2,
        unit:KiloGM_F-M-PER-CentiM2,
        unit:KiloLB_F-PER-FT,
        unit:KiloN-M-PER-M2,
        unit:KiloN-PER-M,
        unit:LB_F-PER-FT,
        unit:LB_F-PER-IN,
        unit:LB_F-PER-YD,
        unit:MegaN-M-PER-M2,
        unit:MicroN-M-PER-M2,
        unit:MilliN-M-PER-M2,
        unit:MilliN-PER-M,
        unit:N-M-PER-M2,
        unit:N-PER-CentiM,
        unit:N-PER-M,
        unit:N-PER-MilliM,
        unit:NanoN-M-PER-M2,
        unit:PDL-PER-IN ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD077"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD077"^^xsd:anyURI ;
    qudt:plainTextDescription "Another name for Force Per Length, used by the Industry Foundation Classes (IFC) standard."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ForcePerLength .

qudtqk:LinearPower a qudt:QuantityKind ;
    rdfs:label "lineic power"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD080"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD080"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LinearStiffness a qudt:QuantityKind ;
    rdfs:label "Streckenlast"@de,
        "Linear Force"@en ;
    dcterms:description "Stiffness is the extent to which an object resists deformation in response to an applied force. Linear Stiffness is the term used in the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN-M-PER-M2,
        unit:DYN-PER-CentiM,
        unit:GigaN-M-PER-M2,
        unit:KiloGM_F-M-PER-CentiM2,
        unit:KiloLB_F-PER-FT,
        unit:KiloN-M-PER-M2,
        unit:KiloN-PER-M,
        unit:LB_F-PER-FT,
        unit:LB_F-PER-IN,
        unit:LB_F-PER-YD,
        unit:MegaN-M-PER-M2,
        unit:MicroN-M-PER-M2,
        unit:MilliN-M-PER-M2,
        unit:MilliN-PER-M,
        unit:N-M-PER-M2,
        unit:N-PER-CentiM,
        unit:N-PER-M,
        unit:N-PER-MilliM,
        unit:NanoN-M-PER-M2,
        unit:PDL-PER-IN ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Stiffness"^^xsd:anyURI ;
    qudt:plainTextDescription "Stiffness is the extent to which an object resists deformation in response to an applied force. Linear Stiffness is the term used in the Industry Foundation Classes (IFC) standard."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ForcePerLength .

qudtqk:LinearVoltageCoefficient a qudt:QuantityKind ;
    rdfs:label "linear voltage coefficient"@en-us ;
    dcterms:description "ratio identifying the relationship between induced voltage and velocity"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Verhältnis, das den Zusammenhang zwischen induzierter Spannung zur Geschwindigkeit kennzeichnet"@de ;
    qudt:symbol "0173-1#Z4-BAJ336#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicCharge a qudt:QuantityKind ;
    rdfs:label "lineic charge"@en-us ;
    dcterms:description "electric charge divided by related length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T1D0> ;
    qudt:plainTextDescription "elektrische Ladung dividiert durch dazugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ457#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicDataVolume a qudt:QuantityKind ;
    rdfs:label "lineic data volume"@en-us ;
    dcterms:description "number of data, usually dependent on the respective information complexity or its coding procedure, divided by the related length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch die zugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ331#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicLogarithmicRatio a qudt:QuantityKind ;
    rdfs:label "lineic logarithmic ratio"@en-us ;
    dcterms:description "logarithm of the relationship between the value of a given quantity and the quantity of a reference value of the same type divided by the related length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:plainTextDescription "Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art dividiert durch die zugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ332#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicMass a qudt:QuantityKind ;
    rdfs:label "lineic mass"@en-us ;
    dcterms:description "ratio between mass divided by the related length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:plainTextDescription "Quotient Masse dividiert durch die dazugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ341#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicQuantity a qudt:QuantityKind ;
    rdfs:label "lineic quantity"@en-us ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicResistance a qudt:QuantityKind ;
    rdfs:label "lineic resistance"@en-us ;
    dcterms:description "ratio of resistance divided by length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Widerstand durch Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ333#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicTorque a qudt:QuantityKind ;
    rdfs:label "lineic torque"@en-us ;
    dcterms:description "torque divided by the appropriate length"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Drehmoment dividiert durch die zugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ433#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LinkedFlux a qudt:QuantityKind ;
    rdfs:label "Linked Flux"@en ;
    dcterms:description "\"Linked Flux\" is defined as the path integral of the magnetic vector potential. This is the line integral of a magnetic vector potential $A$ along a curve $C$. The line vector element $dr$ is the differential of position vector $r$."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloLB_F-FT-PER-A,
        unit:KiloWB,
        unit:MX,
        unit:MilliWB,
        unit:N-M-PER-A,
        unit:UnitPole,
        unit:V_Ab-SEC,
        unit:WB ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux"^^xsd:anyURI ;
    qudt:expression "$linked-flux$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-24"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI,
        "http://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991-e-1800"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Psi_m = \\int_C A \\cdot dr$, where $A$ is magnetic vector potential and $dr$ is the vector element of the curve $C$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Psi$"^^qudt:LatexString,
        "$\\Psi_m$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q118540114> ;
    rdfs:comment "Applicable units are those of quantitykind:MagneticFlux"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MagneticFlux .

qudtqk:Log10FrequencyInterval a qudt:QuantityKind ;
    rdfs:label "logarithmic frequency interval to base 10"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:iec61360Code "0112/2///62720#UAD084"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD084"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Log10Ratio a qudt:QuantityKind ;
    rdfs:label "logarithmic ratio to base 10"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD085"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD085"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogERatio a qudt:QuantityKind ;
    rdfs:label "logarithmic ratio to base e"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:iec61360Code "0112/2///62720#UAD086"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD086"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmRatioToBase10 a qudt:QuantityKind ;
    rdfs:label "logarithm ratio to base 10"@en-us ;
    dcterms:description "dekadischer Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art"@de,
        "common logarithm of the ratio between the value of a defined variable and the value of a reference variable of the same type"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/RLGB> ;
    qudt:symbol "0173-1#Z4-BAJ441#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmRatioToBaseE a qudt:QuantityKind ;
    rdfs:label "logarithm ratio to base e"@en-us ;
    dcterms:description "napierian logarithm of the ratio between the value of a given quantity and the value of a reference variable of the same type (base of logarithm: e = 2.718...)"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "natürlicher Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art (Basis des Logarithmus: e = 2,718...)"@de ;
    qudt:symbol "0173-1#Z4-BAJ440#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmicFrequencyIntervalToBase10 a qudt:QuantityKind ;
    rdfs:label "logarithmic frequency interval to base 10"@en-us ;
    dcterms:description "common logarithm of the ratio of two frequencies, whereby the frequency that forms the numerator is greater than the frequency that forms the denominator"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "dekadischer Logarithmus des Quotienten aus zwei Frequenzen, wobei die im Zähler stehende Frequenz größer als die Frequenz im Nenner ist"@de ;
    qudt:symbol "0173-1#Z4-BAJ472#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmicMedianInformationFlow_SourceToBase10 a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a common logarithm "@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 10"@en ;
    dcterms:isReplacedBy qudtqk:CommonLogarithmicMedianInformationFlow ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 10"@de ;
    qudt:symbol "0173-1#Z4-BAJ470#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmicMedianInformationFlow_SourceToBase2 a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a binary logarithm"@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 2"@en ;
    dcterms:isReplacedBy qudtqk:BinaryLogarithmicMedianInformationFlow ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 2"@de ;
    qudt:symbol "0173-1#Z4-BAJ464#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LogarithmicMedianInformationFlow_SourceToBaseE a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a natural logarithm "@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base e"@en ;
    dcterms:isReplacedBy qudtqk:NaturalLogarithmicMedianInformationFlow ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis e"@de ;
    qudt:symbol "0173-1#Z4-BAJ471#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LondonPenetrationDepth a qudt:QuantityKind ;
    rdfs:label "London Penetration Depth"@en ;
    dcterms:description "\"London Penetration Depth\" characterizes the distance to which a magnetic field penetrates into a superconductor and becomes equal to 1/e times that of the magnetic field at the surface of the superconductor."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/London_penetration_depth"^^xsd:anyURI ;
    qudt:latexDefinition "If an applied magnetic field is parallel to the plane surface of a semi-infinite superconductor, the field penetrates the superconductor according to the expression $B(x) = B(0) \\exp{(\\frac{-x}{\\lambda_L})}$, where $B$ is magnetic flux density and $x$ is the distance from the surface."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"London Penetration Depth\" characterizes the distance to which a magnetic field penetrates into a superconductor and becomes equal to 1/e times that of the magnetic field at the surface of the superconductor."^^xsd:string ;
    qudt:symbol "λₗ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3277853> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:LossAngle a qudt:QuantityKind ;
    rdfs:label "Loss Angle"@en ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\delta = \\arctan d$, where $d$ is loss factor."^^qudt:LatexString ;
    qudt:latexSymbol "$\\delta$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q20820438> ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:Loudness a qudt:QuantityKind ;
    rdfs:label "loudness"^^xsd:string,
        "loudness"@en-us ;
    dcterms:description "measure of the subjective hearing sensation on a scale extending from soft to loud; a progressive mono-frequency (single-frequency) wave of frequency 1 kHz and sound pressure level 40 dB, directed head-on to hearers is assigned the loudness 1 sone, and a tone which is identified by the listeners as being n-times as loud as that identified by 1 sone is assigned the loudness n sone"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD088"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD088"^^xsd:anyURI ;
    qudt:plainTextDescription "Maß für die Stärke der subjektiven Hörempfindung, welche auf einer Skala \"leise-laut\" in sone skaliert wird; einer frei fortschreitenden monofrequenten Welle mit der Frequenz 1 kHz und dem Schalldruckpegel 40 dB, die frontal auf die Zuhörer trifft, ist die Lautheit 1 sone zugeordnet und ein Laut, welcher von den Zuhörern als n-mal so laut wie derjenige mit 1 sone bezeichnet wird, erhält die Lautheit n sone zugeordnet"@de ;
    qudt:symbol "0173-1#Z4-BAJ334#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:LoudnessLevel a qudt:QuantityKind ;
    rdfs:label "loudness level"^^xsd:string,
        "loudness level"@en-us ;
    dcterms:description "value specified in phon as a measure of the level of the subjective perception of a sound which corresponds to the sound pressure level of a reference sound specified in dB which comprises a wave coming from the front with a frequency of 1000 Hz and assessed to be just as loud as the noise"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD089"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD089"^^xsd:anyURI ;
    qudt:plainTextDescription "in phon angegebener Wert als Maß für die Stärke der subjektiven Wahrnehmung eines Schallvorgange, der zahlenmäßig dem in dB angegebenen Schalldruckpegel eines Referenzschalls entspricht, der aus einer frontal einfallenden ebenen Welle mit der Frequenz 1000 Hz besteht und als gleich laut wie das Geräusch empfunden wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ361#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:LuminousExitance a qudt:QuantityKind ;
    rdfs:label "luminous exitance"@en-us ;
    dcterms:description """
  $\\textit{Luminous Exitance}$ is the ratio of the luminous flux dΦ, leaving an element of the surface containing the point, by the area dA of that element.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:FC,
        unit:LUX,
        unit:PHOT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:plainTextDescription "Quotient aus dem Lichtstrom dΦ, der ein den Punkt enthaltendes Element der Oberfläche verlässt, und der Fläche dA dieses Elementes"@de,
        "Luminous Exitance is the ratio of the luminous flux dΦ, leaving an element of the surface containing the point, by the area dA of that element."@en ;
    qudt:symbol "0173-1#Z4-BAJ382#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:LuminousFluxPerArea .

qudtqk:MASS-DELIVERED a qudt:QuantityKind ;
    rdfs:label "Mass Delivered"@en ;
    dcterms:description "The minimum mass a propulsive system can deliver to a specified target or location. Most mass- delivered requirements have associated Delta-V requirements, effectively specifying the path between the two points."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "The minimum mass a propulsive system can deliver to a specified target or location. Most mass- delivered requirements have associated Delta-V requirements, effectively specifying the path between the two points."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MASS-GROWTH-ALLOWANCE a qudt:QuantityKind ;
    rdfs:label "Mass Growth Allowance"@en ;
    dcterms:description "A factor applied to basic mass at the lowest level of design detail available based on type and maturity of hardware according to an approved MGA depletion schedule."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "A factor applied to basic mass at the lowest level of design detail available based on type and maturity of hardware according to an approved MGA depletion schedule."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MGA"^^xsd:string ;
    skos:broader qudtqk:Mass .

qudtqk:MASS-MARGIN a qudt:QuantityKind ;
    rdfs:label "Mass Margin"@en ;
    dcterms:description "Requirement minus predicted value. Margin is used as a metric in risk management. Positive margin mitigates the risk of mass increases from requirements maturation and implementation, underestimated predicted system, or subsystem mass."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Requirement minus predicted value. Margin is used as a metric in risk management. Positive margin mitigates the risk of mass increases from requirements maturation and implementation, underestimated predicted system, or subsystem mass."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MASS-PROPERTY-UNCERTAINTY a qudt:QuantityKind ;
    rdfs:label "Mass Property Uncertainty"@en ;
    dcterms:description "Variation in predicted MP due to lack of definition, manufacturing variations, environment effects, or accuracy limitation of measuring devices."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Variation in predicted MP due to lack of definition, manufacturing variations, environment effects, or accuracy limitation of measuring devices."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MOMENT-OF-INERTIA_Y a qudt:QuantityKind ;
    rdfs:label "Moment of Inertia in the Y axis"@en ;
    dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:MomentOfInertia_Y ;
    qudt:applicableUnit unit:KiloGM-CentiM2,
        unit:KiloGM-M2,
        unit:KiloGM-MilliM2,
        unit:LB-FT2,
        unit:LB-IN2 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^xsd:string ;
    qudt:symbol "I_{y}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MOI"^^xsd:string ;
    skos:broader qudtqk:MomentOfInertia .

qudtqk:MOMENT-OF-INERTIA_Z a qudt:QuantityKind ;
    rdfs:label "Moment of Inertia in the Z axis"@en ;
    dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:MomentOfInertia_Z ;
    qudt:applicableUnit unit:KiloGM-CentiM2,
        unit:KiloGM-M2,
        unit:KiloGM-MilliM2,
        unit:LB-FT2,
        unit:LB-IN2 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^xsd:string ;
    qudt:symbol "I_{z}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MOI"^^xsd:string ;
    skos:broader qudtqk:MomentOfInertia .

qudtqk:MacroscopicCrossSection a qudt:QuantityKind ;
    rdfs:label "Macroscopic Cross-section"@en ;
    dcterms:description "\"Macroscopic Cross-section\" is the sum of the cross-sections for a reaction or process of a specified type over all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\sum = n_1\\sigma_1 + \\cdots + n_j\\sigma_j +$, where $n_j$ is the number density and $\\sigma_j$ the cross-section for entities of type $j$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\sum$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Macroscopic Cross-section\" is the sum of the cross-sections for a reaction or process of a specified type over all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98280520> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CrossSection .

qudtqk:MacroscopicTotalCrossSection a qudt:QuantityKind ;
    rdfs:label "Macroscopic Total Cross-section"@en ;
    dcterms:description "\"Macroscopic Total Cross-section\" is the total cross-sections for all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Nuclear_cross_section"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\sum_{tot}, \\sum_T$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Macroscopic Total Cross-section\" is the total cross-sections for all atoms or other entities in a given 3D domain, divided by the volume of that domain."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98280548> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CrossSection .

qudtqk:MagneticDipoleMomentOfAMolecule a qudt:QuantityKind ;
    rdfs:label "magnetic dipole moment of a molecule"@en-us ;
    dcterms:description "Em = -m•B, where Em is the interaction energy of the molecule with the magnetic dipole moment m and a magnetic field with the magnetic induced flux density B"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L2I0M0H0T0D0> ;
    qudt:plainTextDescription "Em = -m•B, wobei Em die Interaktionsenergie vom Molekül ist mit dem magnetischem Dipolmoment m und einem Magnetfeld mit der magnetischen Induktionsflussdichte B"@de ;
    qudt:symbol "0173-1#Z4-BAJ460#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MagneticFieldStrength_H a qudt:QuantityKind ;
    rdfs:label "حقل مغناطيسي"@ar,
        "Magnetické pole"@cs,
        "magnetische Feldstärke"@de,
        "magnetic field strength"@en,
        "intensidad de campo magnético"@es,
        "شدت میدان مغناطیسی"@fa,
        "intensité de champ magnétique"@fr,
        "intensità di campo magnetico"@it,
        "磁場"@ja,
        "Kekuatan medan magnetik"@ms,
        "pole magnetyczne"@pl,
        "intensidade de campo magnético"@pt,
        "Câmp magnetic"@ro,
        "Магнитное поле"@ru,
        "jakost magnetnega polja"@sl,
        "Manyetik alan"@tr,
        "磁場"@zh ;
    dcterms:description "$\\textit{Magnetic Field Strength}$ is a vector quantity obtained at a given point by subtracting the magnetization $M$ from the magnetic flux density $B$ divided by the magnetic constant $\\mu_0$. The magnetic field strength is related to the total current density $J_{tot}$ via: $\\text{rot} H = J_{tot}$."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:MagneticFieldStrength ;
    qudt:applicableUnit unit:A-PER-CentiM,
        unit:A-PER-M,
        unit:A-PER-MilliM,
        unit:KiloA-PER-M,
        unit:MilliA-PER-IN,
        unit:MilliA-PER-MilliM ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD098"^^xsd:string ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-56"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD098"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mathbf{H} = \\frac{\\mathbf{B} }{\\mu_0} - M$, where $\\mathbf{B} $ is magnetic flux density, $\\mu_0$ is the magnetic constant and $M$ is magnetization."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mathbf{H} $"^^qudt:LatexString ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/MAFD> ;
    rdfs:comment "Applicable units are those of quantitykind:LinearElectricCurrentDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricCurrentPerLength .

qudtqk:MagneticFluxDensityOrMagneticPolarization a qudt:QuantityKind ;
    rdfs:label "magnetic flux density or magnetic polarization"@en-us ;
    dcterms:description "field vector B which exhibits a force F on any charged particle which has a velocity v, where the force is the product of the vector product v x B and the electric charge Q of the particle or vector quantity equal to the product of the magnetization M and the magnetic constant µ₀"@en ;
    dcterms:isReplacedBy qudtqk:MagneticFluxDensity ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:plainTextDescription "vektorielle Feldgröße B, die auf jedes geladene Teilchen, das eine Geschwindigkeit v hat, eine Kraft F ausübt, die gleich dem Produkt aus dem Vektorprodukt v x B und der elektrischen Ladung Q des Teilchens ist oder vektorielle Größe gleich dem Produkt aus der Magnetisierung M und der magnetischen Feldkonstante µ₀"@de ;
    qudt:symbol "0173-1#Z4-BAJ221#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassExcess a qudt:QuantityKind ;
    rdfs:label "Mass Excess"@en ;
    dcterms:description "The \"Mass Excess\" of a nuclide is the difference between its actual mass and its mass number in atomic mass units. It is one of the predominant methods for tabulating nuclear mass."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_excess"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Delta = m_a - Am_u$, where $m_a$ is the rest mass of the atom, $A$ is its nucleon number, and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Delta$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Mass Excess\" of a nuclide is the difference between its actual mass and its mass number in atomic mass units. It is one of the predominant methods for tabulating nuclear mass."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1571163> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MassFluxDensity a qudt:QuantityKind ;
    rdfs:label "mass flux density"^^xsd:string,
        "mass flux density"@en-us ;
    dcterms:description "product of flow velocity and density"@en ;
    qudt:applicableUnit unit:DYN-SEC-PER-CentiM3,
        unit:GM-PER-CentiM2-YR,
        unit:GM-PER-M2-DAY,
        unit:GM-PER-M2-HR,
        unit:GM-PER-M2-YR,
        unit:GM_Carbon-PER-M2-DAY,
        unit:GM_Nitrogen-PER-M2-DAY,
        unit:KiloGM-PER-HA-YR,
        unit:KiloGM-PER-M2-DAY,
        unit:KiloGM-PER-M2-SEC,
        unit:KiloGM-PER-SEC-M2,
        unit:MegaGM-PER-HA-YR,
        unit:MicroGM-PER-CentiM2-WK,
        unit:MicroGM-PER-M2-DAY,
        unit:MilliGM-PER-M2-DAY,
        unit:MilliGM-PER-M2-HR,
        unit:MilliGM-PER-M2-SEC,
        unit:NanoGM-PER-CentiM2-DAY,
        unit:TONNE-PER-HA-YR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD108"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD108"^^xsd:anyURI ;
    qudt:plainTextDescription "Produkt aus Strömungsgeschwindigkeit und Dichte"@de ;
    qudt:symbol "0173-1#Z4-BAJ264#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassPerAreaTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassPerAreaTime .

qudtqk:MassOfElectricalPowerSupply a qudt:QuantityKind ;
    rdfs:label "Mass Of Electrical Power Supply"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_{E}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MassOfSolidBooster a qudt:QuantityKind ;
    rdfs:label "Mass Of Solid Booster"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_{SB}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MassOfTheEarth a qudt:QuantityKind ;
    rdfs:label "Mass Of The Earth"@en ;
    dcterms:description "Earth mass is the unit of mass equal to that of the Earth.  Earth mass is often used to describe masses of rocky terrestrial planets."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:latexSymbol "$M_{\\oplus}$"^^qudt:LatexString ;
    qudt:plainTextDescription "Earth mass is the unit of mass equal to that of the Earth.  Earth mass is often used to describe masses of rocky terrestrial planets."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MassRelatedElectricalCurrent a qudt:QuantityKind ;
    rdfs:label "mass-related electrical current"@en-us ;
    dcterms:description "electrical current intensity divided by the associated mass"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:plainTextDescription "elektrische Stromstärke dividiert durch die zugehörige Masse"@de ;
    qudt:symbol "0173-1#Z4-BAJ347#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassicPower a qudt:QuantityKind ;
    rdfs:label "massic power"^^xsd:string,
        "massic power"@en-us ;
    dcterms:description "ratio energy divided by time and related mass"@en ;
    qudt:applicableUnit unit:ERG-PER-GM-SEC,
        unit:GRAY-PER-HR,
        unit:GRAY-PER-MIN,
        unit:GRAY-PER-SEC,
        unit:MicroGRAY-PER-HR,
        unit:MicroGRAY-PER-MIN,
        unit:MicroGRAY-PER-SEC,
        unit:MicroSV-PER-MIN,
        unit:MicroSV-PER-SEC,
        unit:MilliGRAY-PER-HR,
        unit:MilliGRAY-PER-MIN,
        unit:MilliGRAY-PER-SEC,
        unit:MilliRAD_R-PER-HR,
        unit:MilliSV-PER-HR,
        unit:MilliSV-PER-MIN,
        unit:MilliSV-PER-SEC,
        unit:MilliW-PER-MilliGM,
        unit:NanoGRAY-PER-HR,
        unit:NanoGRAY-PER-MIN,
        unit:NanoGRAY-PER-SEC,
        unit:NanoSV-PER-HR,
        unit:NanoSV-PER-MIN,
        unit:NanoSV-PER-SEC,
        unit:REM-PER-SEC,
        unit:SV-PER-HR,
        unit:SV-PER-MIN,
        unit:SV-PER-SEC,
        unit:W-PER-GM,
        unit:W-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD113"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD113"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient Energie durch Zeit und durch zugehöriger Masse"@de ;
    qudt:symbol "0173-1#Z4-BAJ343#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificPower .

qudtqk:MassicTorque a qudt:QuantityKind ;
    rdfs:label "massic torque"^^xsd:string,
        "massic torque"@en-us ;
    dcterms:description "ratio of  torque divided by the mass to be moved"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD114"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD114"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient Drehmoment dividiert durch die Masse, die bewegt oder befördert wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ442#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MaxExpectedOperatingThrust a qudt:QuantityKind ;
    rdfs:label "Maximum Expected Operating Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MEOT"^^xsd:string ;
    skos:broader qudtqk:MaxOperatingThrust .

qudtqk:MaxSeaLevelThrust a qudt:QuantityKind ;
    rdfs:label "Max Sea Level Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string,
        "Max Sea Level thrust (Mlbf) "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Thrust .

qudtqk:MaximumBeta-ParticleEnergy a qudt:QuantityKind ;
    rdfs:label "Maximum Beta-Particle Energy"@en ;
    dcterms:description "\"Maximum Beta-Particle Energy\" is the maximum energy of the energy spectrum in a beta-particle disintegration process."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Maximum Beta-Particle Energy\" is the maximum energy of the energy spectrum in a beta-particle disintegration process."^^xsd:string ;
    qudt:symbol "Eᵦ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98148038> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:MaximumExpectedOperatingPressure a qudt:QuantityKind ;
    rdfs:label "Maximum Expected Operating Pressure"@en ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MEOP"^^xsd:string ;
    skos:broader qudtqk:Pressure .

qudtqk:MaximumOperatingPressure a qudt:QuantityKind ;
    rdfs:label "Maximum Operating Pressure"@en ;
    qudt:abbreviation "MOP"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:MeanEnergyImparted a qudt:QuantityKind ;
    rdfs:label "Mean Energy Imparted"@en ;
    dcterms:description "The \"Mean Energy Imparted\", is the average energy imparted to irradiated matter."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ;
    qudt:latexDefinition "To the matter in a given domain, $\\bar{\\varepsilon} = R_{in} - R_{out} + \\sum Q$, where $R_{in}$ is the radiant energy of all those charged and uncharged ionizing particles that enter the domain, $R_{out}$ is the radiant energy of all those charged and uncharged ionizing particles that leave the domain, and $\\sum Q$ is the sum of all changes of the rest energy of nuclei and elementary particles that occur in that domain."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Mean Energy Imparted\", is the average energy imparted to irradiated matter."^^xsd:string ;
    qudt:symbol "ε̅"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99526969> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:MeanFreePath a qudt:QuantityKind ;
    rdfs:label "Mean Free Path"@en ;
    dcterms:description "\"Mean Free Path\" is the average distance travelled by a moving particle (such as an atom, a molecule, a photon) between successive impacts (collisions) which modify its direction or energy or other particle properties."^^qudt:LatexString ;
    qudt:abbreviation "m"^^xsd:string ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mean_free_path"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI,
        "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Mean Free Path\" is the average distance travelled by a moving particle (such as an atom, a molecule, a photon) between successive impacts (collisions) which modify its direction or energy or other particle properties."^^xsd:string ;
    qudt:symbol "λ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q756307> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:MeanLifetime a qudt:QuantityKind ;
    rdfs:label "Mean Lifetime"@en ;
    dcterms:description "The \"Mean Lifetime\" is the average length of time that an element remains in the set of discrete elements in a decaying quantity, $N(t)$."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Exponential_decay"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\tau = \\frac{1}{\\lambda}$, where $\\lambda$ is the decay constant."^^qudt:LatexString ;
    qudt:latexSymbol "$\\tau$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1758559> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:MeanLinearRange a qudt:QuantityKind ;
    rdfs:label "Mean Linear Range"@en ;
    dcterms:description "\"Mean Linear Range\" is, in a given material, for specified charged particles of a specified energy, the average displacement of the particles before they stop. That is, the mean totl rectified path length travelled by a particle in the course of slowing down to rest (or to some suitable cut-off energy) in a given substance under specified conditions averaged over a group of particles having the same initial energy."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://goldbook.iupac.org/M03782.html"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Mean Linear Range\" is, in a given material, for specified charged particles of a specified energy, the average displacement of the particles before they stop. That is, the mean totl rectified path length travelled by a particle in the course of slowing down to rest (or to some suitable cut-off energy) in a given substance under specified conditions averaged over a group of particles having the same initial energy."^^xsd:string ;
    qudt:symbol "R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98681589> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:MechanicalImpedance a qudt:QuantityKind ;
    rdfs:label "Mechanical Impedance"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD115"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD115"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q6421317> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MechanicalTension a qudt:QuantityKind ;
    rdfs:label "mechanical tension"@en-us ;
    dcterms:description "at a point of a body upon which a force acts which attempts to change the shape of the body, the limit value of the ratio between the force and area of a flat surface around this point when the dimensions approach zero"@en ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:plainTextDescription "an einem Punkt eines Körpers, an dem eine Kraft angreift, welche die Form des Körpers zu verändern sucht, der Grenzwert des Quotienten Kraft durch Fläche einer ebenen Oberfläche um diesen Punkt, wenn deren Abmessungen gegen null gehen"@de ;
    qudt:symbol "0173-1#Z4-BAJ204#005"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ForcePerArea .

qudtqk:MicroCanonicalPartitionFunction a qudt:QuantityKind ;
    rdfs:label "Micro Canonical Partition Function"@en ;
    dcterms:description "A \"Micro Canonical Partition Function\" applies to a micro canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and a fixed number of particles."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Microcanonical_ensemble"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Partition_function_(statistical_mechanics)#Grand_canonical_partition_function"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Omega = \\sum_r 1$, where the sum is over all quantum states consistent with given energy. volume, external fields, and content."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Omega$"^^qudt:LatexString ;
    qudt:plainTextDescription "A \"Micro Canonical Partition Function\" applies to a micro canonical ensemble, in which the system is allowed to exchange heat with the environment at fixed temperature, volume, and a fixed number of particles."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96106546> ;
    rdfs:comment "Applicable units are those of quantitykind:CanonicalPartitionFunction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CanonicalPartitionFunction .

qudtqk:MicrobialFormation a qudt:QuantityKind ;
    rdfs:label "Microbial Formation"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MigrationArea a qudt:QuantityKind ;
    rdfs:label "Migration Area"@en ;
    dcterms:description "\"Migration Area\" is the sum of the slowing-down area from fission energy to thermal energy and the diffusion area for thermal neutrons."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/migration+area"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Migration Area\" is the sum of the slowing-down area from fission energy to thermal energy and the diffusion area for thermal neutrons."^^xsd:string ;
    qudt:symbol "M^2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98966325> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:MigrationLength a qudt:QuantityKind ;
    rdfs:label "Migration Length"@en ;
    dcterms:description "\"Migration Length\" is the square root of the migration area."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/migration+area"^^xsd:anyURI ;
    qudt:latexDefinition "$M = \\sqrt{M^2}$, where $M^2$ is the migration area."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Migration Length\" is the square root of the migration area."^^xsd:string ;
    qudt:symbol "M"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98998318> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:MoistureDiffusivity a qudt:QuantityKind ;
    rdfs:label "Moisture Diffusivity"@en ;
    qudt:applicableUnit unit:BBL_UK_PET-PER-DAY,
        unit:BBL_UK_PET-PER-HR,
        unit:BBL_UK_PET-PER-MIN,
        unit:BBL_UK_PET-PER-SEC,
        unit:BBL_US-PER-DAY,
        unit:BBL_US-PER-MIN,
        unit:BBL_US_PET-PER-HR,
        unit:BBL_US_PET-PER-SEC,
        unit:BU_UK-PER-DAY,
        unit:BU_UK-PER-HR,
        unit:BU_UK-PER-MIN,
        unit:BU_UK-PER-SEC,
        unit:BU_US_DRY-PER-DAY,
        unit:BU_US_DRY-PER-HR,
        unit:BU_US_DRY-PER-MIN,
        unit:BU_US_DRY-PER-SEC,
        unit:CentiM3-PER-DAY,
        unit:CentiM3-PER-HR,
        unit:CentiM3-PER-MIN,
        unit:CentiM3-PER-SEC,
        unit:DeciM3-PER-DAY,
        unit:DeciM3-PER-HR,
        unit:DeciM3-PER-MIN,
        unit:DeciM3-PER-SEC,
        unit:FT3-PER-DAY,
        unit:FT3-PER-HR,
        unit:FT3-PER-MIN,
        unit:FT3-PER-SEC,
        unit:GAL_UK-PER-DAY,
        unit:GAL_UK-PER-HR,
        unit:GAL_UK-PER-MIN,
        unit:GAL_UK-PER-SEC,
        unit:GAL_US-PER-DAY,
        unit:GAL_US-PER-HR,
        unit:GAL_US-PER-MIN,
        unit:GAL_US-PER-SEC,
        unit:GI_UK-PER-DAY,
        unit:GI_UK-PER-HR,
        unit:GI_UK-PER-MIN,
        unit:GI_UK-PER-SEC,
        unit:GI_US-PER-DAY,
        unit:GI_US-PER-HR,
        unit:GI_US-PER-MIN,
        unit:GI_US-PER-SEC,
        unit:IN3-PER-HR,
        unit:IN3-PER-MIN,
        unit:IN3-PER-SEC,
        unit:KiloL-PER-HR,
        unit:L-PER-DAY,
        unit:L-PER-HR,
        unit:L-PER-MIN,
        unit:L-PER-SEC,
        unit:M3-PER-DAY,
        unit:M3-PER-HR,
        unit:M3-PER-MIN,
        unit:M3-PER-SEC,
        unit:M3-PER-YR,
        unit:MilliL-PER-DAY,
        unit:MilliL-PER-HR,
        unit:MilliL-PER-MIN,
        unit:MilliL-PER-SEC,
        unit:OZ_VOL_UK-PER-DAY,
        unit:OZ_VOL_UK-PER-HR,
        unit:OZ_VOL_UK-PER-MIN,
        unit:OZ_VOL_UK-PER-SEC,
        unit:OZ_VOL_US-PER-DAY,
        unit:OZ_VOL_US-PER-HR,
        unit:OZ_VOL_US-PER-MIN,
        unit:OZ_VOL_US-PER-SEC,
        unit:PINT_UK-PER-DAY,
        unit:PINT_UK-PER-HR,
        unit:PINT_UK-PER-MIN,
        unit:PINT_UK-PER-SEC,
        unit:PINT_US-PER-DAY,
        unit:PINT_US-PER-HR,
        unit:PINT_US-PER-MIN,
        unit:PINT_US-PER-SEC,
        unit:PK_UK-PER-DAY,
        unit:PK_UK-PER-HR,
        unit:PK_UK-PER-MIN,
        unit:PK_UK-PER-SEC,
        unit:PK_US_DRY-PER-DAY,
        unit:PK_US_DRY-PER-HR,
        unit:PK_US_DRY-PER-MIN,
        unit:PK_US_DRY-PER-SEC,
        unit:QT_UK-PER-DAY,
        unit:QT_UK-PER-HR,
        unit:QT_UK-PER-MIN,
        unit:QT_UK-PER-SEC,
        unit:QT_US-PER-DAY,
        unit:QT_US-PER-HR,
        unit:QT_US-PER-MIN,
        unit:QT_US-PER-SEC,
        unit:YD3-PER-DAY,
        unit:YD3-PER-HR,
        unit:YD3-PER-MIN,
        unit:YD3-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:symbol "q_V"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:VolumeFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:VolumeFlowRate .

qudtqk:MolarDensity a qudt:QuantityKind ;
    rdfs:label "molar density"@en-us ;
    dcterms:description "quantity whose value is inversely proportional to the quantity of material"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L0I0M0H0T0D0> ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zu Stoffmengenwert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ372#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarFluxDensityVariance_NEON a qudt:QuantityKind ;
    rdfs:label "Molar Flux Density Variance, NEON"@en ;
    dcterms:description "Variance for NEON Molar Flux Denisity data measured in unit:MicroMOL-PER-M2-SEC"^^xsd:string ;
    dcterms:isReplacedBy qudtqk:MolarFluxDensityVariance ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A2E0L-4I0M0H0T-2D0> ;
    qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ;
    qudt:plainTextDescription "Variance for NEON Molar Flux Denisity data measured in unit:MicroMOL-PER-M2-SEC"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarInternalEnergy a qudt:QuantityKind ;
    rdfs:label "molar internal energy"^^xsd:string ;
    qudt:applicableUnit unit:J-PER-MOL,
        unit:KiloCAL-PER-MOL,
        unit:KiloJ-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD124"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD124"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:MolarEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MolarEnergy .

qudtqk:MolarOpticalRotationalAbility a qudt:QuantityKind ;
    rdfs:label "molar optical rotational ability"@en-us ;
    dcterms:description "material-specific quantity resulting as the specific angle of rotation of a substance for a particular wavelength and a particular temperature from the relationship: ratio between measured angle of rotation divided by the concentration of material and the covered path"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:plainTextDescription "materialspezifische Größe, die sich als spezifischer Drehwinkel einer Substanz für eine bestimmte Wellenlänge und eine bestimmte Temperatur ergibt durch die Beziehung: Quotient aus gemessener Drehwinkel dividiert durch die Stoffmenegenkonzentration und die durchstrahlte Wegstrecke"@de ;
    qudt:symbol "0173-1#Z4-BAJ426#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarThermalCapacity a qudt:QuantityKind ;
    rdfs:label "molar thermal capacity"@en-us ;
    dcterms:description "thermal capacity divided by the amount of substance"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:plainTextDescription "auf die Stoffmenge bezogene Wärmekapazität"@de ;
    qudt:symbol "0173-1#Z4-BAJ355#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarThermodynamicEnergy a qudt:QuantityKind ;
    rdfs:label "molar thermodynamic energy"@en-us ;
    dcterms:description "energy in relation to the amount of a substance"@en ;
    qudt:applicableUnit unit:J-PER-MOL,
        unit:KiloCAL-PER-MOL,
        unit:KiloJ-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "auf die Stoffmenge bezogene Energie"@de ;
    qudt:symbol "0173-1#Z4-BAJ353#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MolarEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MolarEnergy .

qudtqk:MoleFraction a qudt:QuantityKind ;
    rdfs:label "Mole Fraction"@en ;
    dcterms:description "In chemistry, the mole fraction of a component in a mixture is the relative proportion of molecules belonging to the component to those in the mixture, by number of molecules. It is one way of measuring concentration."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mole_fraction"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "In chemistry, the mole fraction of a component in a mixture is the relative proportion of molecules belonging to the component to those in the mixture, by number of molecules. It is one way of measuring concentration."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q125264> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:MolecularConcentration a qudt:QuantityKind ;
    rdfs:label "Molecular Concentration"@en ;
    dcterms:description "The \"Molecular Concentration\" of substance B  is defined as the number of molecules of B  divided by the volume of the mixture "^^qudt:LatexString ;
    qudt:abbreviation "m^{-3}"^^xsd:string ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_concentration"^^xsd:anyURI ;
    qudt:latexDefinition "$C_B = \\frac{N_B}{V}$, where $N_B$ is the number of molecules of $B$ and $V$ is the volume."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Molecular Concentration\" of substance B  is defined as the number of molecules of B  divided by the volume of the mixture "^^xsd:string ;
    qudt:symbol "C_B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q88865973> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:MotorConstant a qudt:QuantityKind ;
    rdfs:label "motor constant"^^xsd:string,
        "motor constant"@en-us ;
    dcterms:description "quantitiy/variable which identifies a characteristic of a motor"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD129"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD129"^^xsd:anyURI ;
    qudt:plainTextDescription "Größe, die eine Eigenschaft eines Motors kennzeichnet"@de ;
    qudt:symbol "0173-1#Z4-BAJ358#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:NOMINAL-ASCENT-PROPELLANT-MASS a qudt:QuantityKind ;
    rdfs:label "Nominal Ascent Propellant Mass"@en ;
    dcterms:description "The amount of propellant mass within a stage that is available for impulse for use in nominal payload performance prediction. This mass excludes loaded propellant that has been set aside for off- nominal performance behavior (FPR and fuel bias)."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://elib.dlr.de/68314/1/IAF10-D2.3.1.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "The amount of propellant mass within a stage that is available for impulse for use in nominal payload performance prediction. This mass excludes loaded propellant that has been set aside for off- nominal performance behavior (FPR and fuel bias)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:NeutralRatio a qudt:QuantityKind ;
    rdfs:label "neutral ratio"@en-us ;
    dcterms:description "ratio between two physical variables of the same type, expressed as a number which describes the relationship between these variables where the units are cancelled against each other"@en ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Quotient aus zwei physikalischen Größen gleicher Art als Zahl, welche das Verhältnis dieser Größen zueinander ausdrückt, wobei die einheiten gegeneinander gekürzt sind"@de ;
    qudt:symbol "0173-1#Z4-BAJ359#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:NeutronDiffusionLength a qudt:QuantityKind ;
    rdfs:label "Neutron Diffusion Length"@en ;
    dcterms:description "The neutron diffusion length is equivalent to the relaxation length, that is, to the distance, in which the neutron flux decreases by a factor e"^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "The neutron diffusion length is equivalent to the relaxation length, that is, to the distance, in which the neutron flux decreases by a factor e"^^xsd:string ;
    qudt:symbol "L_{r}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:NormalizedDimensionlessRatio a qudt:QuantityKind ;
    rdfs:label "Positive Dimensionless Ratio"@en ;
    dcterms:description "A \"Normalized Dimensionless Ratio\" is a dimensionless ratio ranging from 0.0 to 1.0"^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "A \"Normalized Dimensionless Ratio\" is a dimensionless ratio ranging from 0.0 to 1.0"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:NozzleThroatCrossSectionalArea a qudt:QuantityKind ;
    rdfs:label "Nozzle Throat Cross-sectional Area"@en ;
    dcterms:description "Cross-sectional area of the nozzle at the throat."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:plainTextDescription "Cross-sectional area of the nozzle at the throat."^^xsd:string ;
    qudt:symbol "A^*"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:NozzleThroatPressure a qudt:QuantityKind ;
    rdfs:label "Nozzle Throat Pressure"@en ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:symbol "p^*"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:NozzleWallsThrustReaction a qudt:QuantityKind ;
    rdfs:label "Nozzle Walls Thrust Reaction"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:symbol "F_R"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

qudtqk:NuclearEnergy a qudt:QuantityKind ;
    rdfs:label "nuclear energy"^^xsd:string ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD131"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD131"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:NuclearRadius a qudt:QuantityKind ;
    rdfs:label "Nuclear Radius"@en ;
    dcterms:description "\"Nuclear Radius\" is the conventional radius of sphere in which the nuclear matter is included"^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_nucleus"^^xsd:anyURI ;
    qudt:latexDefinition "This quantity is not exactly defined. It is given approximately for nuclei in their ground state only by $R = r_0 A^{\\frac{1}{3}}$, where $r_0 \\approx 1.2 x 10^{-15} m$ and $A$ is the nucleon number."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Nuclear Radius\" is the conventional radius of sphere in which the nuclear matter is included"^^xsd:string ;
    qudt:symbol "R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3535676> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:OrbitalAngularMomentumPerMass a qudt:QuantityKind ;
    rdfs:label "Orbital Angular Momentum per Mass"@en ;
    dcterms:description "Angular momentum of the orbit per mass of the vehicle"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:plainTextDescription "Angular momentum of the orbit per mass of the vehicle"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:symbol "h"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:OrbitalRadialDistance a qudt:QuantityKind ;
    rdfs:label "Orbital Radial Distance"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:symbol "r"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:OsmoticConcentration a qudt:QuantityKind ;
    rdfs:label "Osmotic Concentration"@en ;
    dcterms:description "The \"Osmotic Concentration\" is the moles of an osmotically active entity (solute) in the volume of a solution."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "https://doi.org/10.1351/goldbook.O04343"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Osmotic_concentration"^^xsd:anyURI ;
    qudt:latexDefinition "$osmolarity = \\sum_{i} \\varphi_i n_i C_i, where \\varphi is the osmotic coefficient of the solution n, is the number of particles (e.g. ions), C is the molar concentration of the solute, and i is the index of solute$"^^qudt:LatexString ;
    qudt:latexSymbol "$\\c$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Osmotic Concentration\" is the moles of an osmotically active entity (solute) in the volume of a solution."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:OsmoticPressure a qudt:QuantityKind ;
    rdfs:label "Osmotický tlak"@cs,
        "osmotischer Druck"@de,
        "osmotic pressure"@en,
        "presión osmótica"@es,
        "فشار اسمزی"@fa,
        "pression osmotique"@fr,
        "pressione osmotica"@it,
        "Tekanan osmotik"@ms,
        "pressão osmótica"@pt,
        "ozmotik basıç"@tr,
        "渗透压"@zh ;
    dcterms:description "The \"Osmotic Pressure\" is the pressure which needs to be applied to a solution to prevent the inward flow of water across a semipermeable membrane."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Osmotic_pressure"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varphi = -(M_A\\sum b_B)^{-1} \\ln a_A$, where $M_A$ is the molar mass of the solvent $A$, $\\sum$ denotes summation over all the solutes, $b_B$ is the molality of solute $B$, and $a_A$ is the activity of solvent $A$."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Osmotic Pressure\" is the pressure which needs to be applied to a solution to prevent the inward flow of water across a semipermeable membrane."^^xsd:string ;
    qudt:symbol "Π"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q193135> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:OverRangeDistance a qudt:QuantityKind ;
    rdfs:label "Over-range distance"@en ;
    dcterms:description "Additional distance traveled by a rocket because Of excessive initial velocity."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Additional distance traveled by a rocket because Of excessive initial velocity."^^xsd:string ;
    qudt:symbol "s_i"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:PREDICTED-MASS a qudt:QuantityKind ;
    rdfs:label "Predicted Mass"@en ;
    dcterms:description "Sum of the basic mass and the MGA. Current prediction of the final mass based on the current requirements and design."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Sum of the basic mass and the MGA. Current prediction of the final mass based on the current requirements and design."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:PRODUCT-OF-INERTIA_X a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the X axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the X axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an
  axis other than the body's principal axis.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:ProductOfInertia_X ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:PRODUCT-OF-INERTIA_Y a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the Y axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the Y axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
   other than the body's principal axis.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:ProductOfInertia_Y ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription """
  The quantity kind 'Product of Inertia in the Y axis' is a measure of a body's 
  dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
  other than the body's principal axis.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:PRODUCT-OF-INERTIA_Z a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the Z axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the Z axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
  other than the body's principal axis.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:ProductOfInertia_Z ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:PartialPressure a qudt:QuantityKind ;
    rdfs:label "Partial Pressure"@en ;
    dcterms:description """
  The quantity kind $\\textit{Partial Pressure}$ is the pressure that the gas would
   have if it alone occupied the volume of the mixture at the same temperature.
  """^^qudt:LatexString ;
    qudt:abbreviation "pa"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Partial_pressure"^^xsd:anyURI ;
    qudt:latexDefinition "$p_B = x_B \\cdot p$, where $x_B$ is the amount-of-substance fraction of substance $B$ and $p$ is the total pressure."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Partial Pressure\" is the pressure that the gas would have if it alone occupied the volume of the mixture at the same temperature."^^xsd:string ;
    qudt:symbol "p_B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q27165> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:ParticleCurrent a qudt:QuantityKind ;
    rdfs:label "Particle Current"@en ;
    dcterms:description """
  The quantity kind $\\textit{Particle Current}$ can be used to describe the net number
   of particles passing through a surface in an infinitesimal time interval.
  """^^qudt:LatexString ;
    qudt:altSymbol "S"^^xsd:string ;
    qudt:applicableUnit unit:GigaHZ,
        unit:HZ,
        unit:KiloHZ,
        unit:MegaHZ,
        unit:MilliHZ,
        unit:NUM-PER-HR,
        unit:NUM-PER-SEC,
        unit:NUM-PER-YR,
        unit:PER-DAY,
        unit:PER-HR,
        unit:PER-MIN,
        unit:PER-MO,
        unit:PER-MilliSEC,
        unit:PER-SEC,
        unit:PER-WK,
        unit:PER-YR,
        unit:PERCENT-PER-DAY,
        unit:PERCENT-PER-HR,
        unit:PERCENT-PER-MO,
        unit:PPTH-PER-HR,
        unit:PetaHZ,
        unit:PlanckFrequency,
        unit:SAMPLE-PER-SEC,
        unit:TeraHZ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\int J \\cdot e_n dA = \\frac{dN}{dt}$, where $e_ndA$ is the vector surface element, $N$ is the net number of particles passing over a surface, and $dt$ describes the time interval."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Particle Current\" can be used to describe the net number of particles passing through a surface in an infinitesimal time interval."^^xsd:string ;
    qudt:symbol "J"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2400689> ;
    rdfs:comment "Applicable units are those of quantitykind:Frequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Frequency .

qudtqk:ParticleCurrentDensity a qudt:QuantityKind ;
    rdfs:label "particle current density"^^xsd:string,
        "particle current density"@en-us ;
    dcterms:description """
  The quantity kind $\\textit{Particle Current Density}$ is a vector whose component is
   perpendicular to a surface equal to the net number of particles crossing that surface
   in the positive direction per unit area and per unit time.
  """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD132"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD132"^^xsd:anyURI ;
    qudt:plainTextDescription "Vektor, dessen Komponente senkrecht zu einer Fläche gleich der Nettoanzahl von Teilchen ist, die flächen- und zeitbezogen in positiver Richtung durch diese Fläche hindurchgehen"@de ;
    qudt:symbol "0173-1#Z4-BAJ388#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ParticleNumberDensity a qudt:QuantityKind ;
    rdfs:label "Particle Number Density"@en ;
    dcterms:description "The \"Particle Number Density\" is obtained by dividing the particle number of a system by its volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_number#Particle_number_density"^^xsd:anyURI ;
    qudt:latexDefinition "$n = \\frac{N}{V}$, where $N$ is the number of particles in the 3D domain with the volume $V$."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Particle Number Density\" is obtained by dividing the particle number of a system by its volume."^^xsd:string ;
    qudt:symbol "n"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98601569> ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:ParticlePositionVector a qudt:QuantityKind ;
    rdfs:label "Particle Position Vector"@en ;
    dcterms:description "\"Particle Position Vector\" is the position vector of a particle."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Position_(vector)"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Particle Position Vector\" is the position vector of a particle."^^xsd:string ;
    qudt:symbol "r, R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105533324> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:PayloadMass a qudt:QuantityKind ;
    rdfs:label "Payload Mass"@en ;
    dcterms:description "Payload mass is the mass of the payload carried by the craft. In a multistage spacecraft the payload mass of the last stage is the mass of the payload and the payload masses of the other stages are considered to be the gross masses of the next stages."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "Payload mass is the mass of the payload carried by the craft. In a multistage spacecraft the payload mass of the last stage is the mass of the payload and the payload masses of the other stages are considered to be the gross masses of the next stages."^^xsd:string ;
    qudt:symbol "M_P"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:PayloadRatio a qudt:QuantityKind ;
    rdfs:label "Payload Ratio"@en ;
    dcterms:description "The payload ratio is defined as the mass of the payload divided by the empty mass of the structure. Because of the extra cost involved in staging rockets, given the choice, it's often more economic to use few stages with a small payload ratio rather than more stages each with a high payload ratio."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "The payload ratio is defined as the mass of the payload divided by the empty mass of the structure. Because of the extra cost involved in staging rockets, given the choice, it's often more economic to use few stages with a small payload ratio rather than more stages each with a high payload ratio."^^xsd:string ;
    qudt:symbol "L"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:PeltierCoefficient a qudt:QuantityKind ;
    rdfs:label "Peltier Coefficient"@en ;
    dcterms:description "\"Peltier Coefficient\" represents how much heat current is carried per unit charge through a given material. It is the heat power developed at a junction, divided by the electric current flowing from substance a to substance b."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermoelectric_effect"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Pi_{ab}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Peltier Coefficient\" represents how much heat current is carried per unit charge through a given material. It is the heat power developed at a junction, divided by the electric current flowing from substance a to substance b."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105801003> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PhononMeanFreePath a qudt:QuantityKind ;
    rdfs:label "Phonon Mean Free Path"@en ;
    dcterms:description "\"Phonon Mean Free Path\" is the mean free path of phonons."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Phonon Mean Free Path\" is the mean free path of phonons."^^xsd:string ;
    qudt:symbol "l_{ph}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105672255> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:PhotonLuminance a qudt:QuantityKind ;
    rdfs:label "photon luminance"^^xsd:string,
        "photon luminance"@en-us ;
    dcterms:description "ratio between the photon flux at a point on a surface and in a given direction and the product of the solid angle and the orthogonal projection of this element on a plane perpendicular to the given direction "@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD138"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD138"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient aus dem durch eine Fläche in einer Richtung durchgehenden Photonenstrom und dem Produkt aus dem durchstrahlten Raumwinkel und der Projektion dieser Fläche auf eine Ebene senkrecht zur betrachteten Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ363#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Piece a qudt:QuantityKind ;
    rdfs:label "piece"^^xsd:string ;
    qudt:applicableUnit unit:BEAT,
        unit:BILLION_Long,
        unit:BILLION_Short,
        unit:BREATH,
        unit:CASES,
        unit:COUNT,
        unit:CYC,
        unit:DEATHS,
        unit:FRAME,
        unit:HUNDRED,
        unit:INDIV,
        unit:KiloINDIV,
        unit:MILLION,
        unit:MegaINDIV,
        unit:NUM,
        unit:ONE,
        unit:PIXEL_COUNT,
        unit:SAMPLE,
        unit:TEN,
        unit:THOUSAND,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD146"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD146"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Count"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Count .

qudtqk:PlanarForce a qudt:QuantityKind ;
    rdfs:label "Flächenlast"@de,
        "Planar Force"@en ;
    dcterms:description "Another name for Force Per Area, used by the Industry Foundation Classes (IFC) standard."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Pressure"^^xsd:anyURI ;
    qudt:plainTextDescription "Another name for Force Per Area, used by the Industry Foundation Classes (IFC) standard."^^xsd:string ;
    qudt:symbol "p"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ForcePerArea .

qudtqk:PositiveDimensionlessRatio a qudt:QuantityKind ;
    rdfs:label "Positive Dimensionless Ratio"@en ;
    dcterms:description "A \"Positive Dimensionless Ratio\" is a dimensionless ratio that is greater than zero"^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "A \"Positive Dimensionless Ratio\" is a dimensionless ratio that is greater than zero"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:PositiveLength a qudt:QuantityKind ;
    rdfs:label "Positive Length"@en ;
    dcterms:description "\"PositiveLength\" is a measure of length strictly greater than zero."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "\"PositiveLength\" is a measure of length strictly greater than zero."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NonNegativeLength .

qudtqk:PositivePlaneAngle a qudt:QuantityKind ;
    rdfs:label "Positive Plane Angle"@en ;
    dcterms:description "A \"PositivePlaneAngle\" is a plane angle strictly greater than zero."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.thefreedictionary.com/plane+angle"^^xsd:anyURI ;
    qudt:plainTextDescription "A \"PositivePlaneAngle\" is a plane angle strictly greater than zero."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PlaneAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PlaneAngle .

qudtqk:PotentialEnergy a qudt:QuantityKind ;
    rdfs:label "طاقة وضع"@ar,
        "potenciální energie"@cs,
        "potentielle Energie"@de,
        "potential energy"@en,
        "energía potencial"@es,
        "انرژی پتانسیل"@fa,
        "énergie potentielle"@fr,
        "स्थितिज ऊर्जा"@hi,
        "energia potenziale"@it,
        "位置エネルギー"@ja,
        "Tenaga keupayaan"@ms,
        "Energia potencjalna"@pl,
        "energia potencial"@pt,
        "Energie potențială"@ro,
        "потенциальная энергия"@ru,
        "Potansiyel enerji"@tr,
        "势能"@zh ;
    dcterms:description "Energy possessed by a body by virtue of its position in a gravity field in contrast with kinetic energy, that possessed by virtue of its motion."^^qudt:LatexString ;
    qudt:altSymbol "U"^^xsd:string ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Potential_energy"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Potential_energy"^^xsd:anyURI ;
    qudt:latexDefinition "$V = -\\int F \\cdot dr$, where $F$ is a conservative force and $R$ is a position vector."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:plainTextDescription "Energy possessed by a body by virtue of its position in a gravity field in contrast with kinetic energy, that possessed by virtue of its motion."^^xsd:string ;
    qudt:symbol "PE"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q155640> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:PowerConstant a qudt:QuantityKind ;
    rdfs:label "power constant"@en-us ;
    dcterms:description "ratio indicating the relationship between continuous power and continuous current"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Verhältnis, das den Zusammenhang zwischen der Dauerkraft zum Dauerstrom kennzeichnet"@de ;
    qudt:symbol "0173-1#Z4-BAJ330#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedAmountOfSubstanceConcentration a qudt:QuantityKind ;
    rdfs:label "pressure-based amount-of-substance concentration"@en-us ;
    dcterms:description "ratio between the amount-of-substance of a dissolved material and the mass of its solvent divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Molarität (Quotient aus der Stoffmenge eines gelösten Stoffes und dem Volumen der Lösung) dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ307#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedDensity a qudt:QuantityKind ;
    rdfs:label "pressure-based density"@en-us ;
    dcterms:description "ratio of density divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Dichte dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ299#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedDynamicViscosity a qudt:QuantityKind ;
    rdfs:label "pressure-based dynamic viscosity"@en-us ;
    dcterms:description "ratio of dynamic viscosity divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:plainTextDescription "Quotient aus der dynamischen Viskosität dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ300#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedElectricCurrent a qudt:QuantityKind ;
    rdfs:label "pressure-based electric current"@en-us ;
    dcterms:description "ratio of electric current divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient elektrische Stromstärke dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ309#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedElectricVoltage a qudt:QuantityKind ;
    rdfs:label "pressure-based electric voltage"@en-us ;
    dcterms:description "ratio of electric voltage divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient elektrischer Spannung dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ301#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedKinematicViscosity a qudt:QuantityKind ;
    rdfs:label "pressure-based kinematic viscosity"@en-us ;
    dcterms:description "ratio of dynamic viscosity and density of the material divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ303#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedLength a qudt:QuantityKind ;
    rdfs:label "pressure-based length"@en-us ;
    dcterms:description "ratio of length divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Länge dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ304#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedMass a qudt:QuantityKind ;
    rdfs:label "pressure-based mass"@en-us ;
    dcterms:description "ratio of mass divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Masse dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ305#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedMassFlow a qudt:QuantityKind ;
    rdfs:label "pressure-based mass flow"@en-us ;
    dcterms:description "ratio of mass flow divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Massenstrom dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ310#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedMolality a qudt:QuantityKind ;
    rdfs:label "pressure-based molality"@en-us ;
    dcterms:description "ratio of molality divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L1I0M-2H0T2D0> ;
    qudt:plainTextDescription "Quotient Molalität dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ306#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedQuantity a qudt:QuantityKind ;
    rdfs:label "pressure-based quantity"@en-us ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedTemperature a qudt:QuantityKind ;
    rdfs:label "pressure-based temperature"@en-us ;
    dcterms:description "ratio of temperature divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Temperatur dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ308#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedVelocity a qudt:QuantityKind ;
    rdfs:label "pressure-based velocity"@en-us ;
    dcterms:description "ratio of velocity divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Geschwindigkeit dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ302#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedVolume a qudt:QuantityKind ;
    rdfs:label "pressure-based volume"@en-us ;
    dcterms:description "ratio of volume divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Volumen dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ312#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBasedVolumeFlow a qudt:QuantityKind ;
    rdfs:label "pressure-based volume flow"@en-us ;
    dcterms:description "ratio of volume flow divided by the related pressure"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient Volumenstrom dividiert durch den zugehörigen Druck"@de ;
    qudt:symbol "0173-1#Z4-BAJ311#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PressureBurningRateConstant a qudt:QuantityKind ;
    rdfs:label "Pressure Burning Rate Constant"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:PressureBurningRateIndex a qudt:QuantityKind ;
    rdfs:label "Pressure Burning Rate Index"@en ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\beta$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:PressureInRelationToVolumeFlow a qudt:QuantityKind ;
    rdfs:label "pressure in relation to volume flow"@en-us ;
    dcterms:description "ratio between pressure and the volume flow at a given cross-sectional area, passing through this cross-sectional area "@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-1D0> ;
    qudt:plainTextDescription "an einer festgelegten Querschnittsfläche der Quotient Druck durch den Volumenstrom, der durch diese Querschnittsfläche hindurchgeht"@de ;
    qudt:symbol "0173-1#Z4-BAJ290#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PropellantMeanBulkTemperature a qudt:QuantityKind ;
    rdfs:label "Propellant Mean Bulk Temperature"@en ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "PMBT"^^xsd:string ;
    skos:broader qudtqk:PropellantTemperature .

qudtqk:QuantityOfLight a qudt:QuantityKind ;
    rdfs:label "quantity of light"^^xsd:string,
        "quantity of light"@en-us ;
    dcterms:description "work of a light source provided in the form of light as the product of the luminous flux Φ produced by the light source and the time t for which this is radiated"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD147"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD147"^^xsd:anyURI ;
    qudt:plainTextDescription "in Form von Licht aufgebrachte Arbeit einer Lichtquelle als Produkt aus dem von der Lichtquelle ausgehenden Lichtstrom Φ und der Zeit t, während dieser ausgestrahlt wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ243#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RESERVE-MASS a qudt:QuantityKind ;
    rdfs:label "Reserve Mass"@en ;
    dcterms:description "A quantity of mass held by Program/project management to mitigate the risk of over-predicted performance estimates, under predicted mass estimates, and future operational and mission specific requirements (program mass reserve, manager's mass reserve, launch window reserve, performance reserve, etc.)."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "A quantity of mass held by Program/project management to mitigate the risk of over-predicted performance estimates, under predicted mass estimates, and future operational and mission specific requirements (program mass reserve, manager's mass reserve, launch window reserve, performance reserve, etc.)."^^xsd:string ;
    qudt:symbol "M_{E}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:RF-Power a qudt:QuantityKind ;
    rdfs:label "RF-Power Level"@en ;
    dcterms:description "Radio-Frequency Power. Power level of electromagnetic waves alternating at the frequency of radio waves (up to 10^10 Hz)."^^qudt:LatexString ;
    qudt:applicableUnit unit:V-PER-M,
        unit:V_Ab-PER-CentiM,
        unit:V_Stat-PER-CentiM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:informativeReference "https://www.analog.com/en/technical-articles/measurement-control-rf-power-parti.html"^^xsd:anyURI ;
    qudt:plainTextDescription "Radio-Frequency Power. Power level of electromagnetic waves alternating at the frequency of radio waves (up to 10^10 Hz)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricField"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SignalStrength .

qudtqk:RadiantEmmitance a qudt:QuantityKind ;
    rdfs:label "Radiant Emmitance"@en ;
    dcterms:description "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Irradiance"^^xsd:anyURI ;
    qudt:latexDefinition "$M = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the radiant flux leaving the element of the surface area $dA$."^^qudt:LatexString ;
    qudt:plainTextDescription "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:RadiantEnergyExposure a qudt:QuantityKind ;
    rdfs:label "radiant energy exposure"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD149"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD149"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RadiantExposure a qudt:QuantityKind ;
    rdfs:label "Radiant Exposure"@en ;
    dcterms:description "Radiant exposure is a measure of the total radiant energy incident on a surface per unit area; equal to the integral over time of the radiant flux density. Also known as exposure."^^qudt:LatexString ;
    qudt:abbreviation "J-PER-CM2"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2,
        unit:BTU_TH-PER-FT2,
        unit:CAL_TH-PER-CentiM2,
        unit:CentiN-M-PER-M2,
        unit:ERG-PER-CentiM2,
        unit:FT-LB_F-PER-FT2,
        unit:FT-LB_F-PER-M2,
        unit:GigaJ-PER-M2,
        unit:GigaN-M-PER-M2,
        unit:J-PER-CentiM2,
        unit:J-PER-M2,
        unit:KiloBTU_IT-PER-FT2,
        unit:KiloCAL-PER-CentiM2,
        unit:KiloGM-PER-SEC2,
        unit:KiloN-M-PER-M2,
        unit:KiloW-HR-PER-M2,
        unit:LANGLEY,
        unit:LB_F-PER-IN,
        unit:MegaJ-PER-M2,
        unit:MegaN-M-PER-M2,
        unit:MicroN-M-PER-M2,
        unit:MilliJ-PER-M2,
        unit:MilliN-M-PER-M2,
        unit:N-M-PER-M2,
        unit:NanoN-M-PER-M2,
        unit:W-HR-PER-M2,
        unit:W-SEC-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD150"^^xsd:string ;
    qudt:informativeReference "http://omlc.ogi.edu/education/ece532/class1/irradiance.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD150"^^xsd:anyURI ;
    qudt:latexDefinition "$H = \\int_{0}^{\\Delta t}{E}{dt}$, where $E$ is the irradiance acting during the time interval with duration $\\Delta t$."^^qudt:LatexString ;
    qudt:plainTextDescription "Radiant exposure is a measure of the total radiant energy incident on a surface per unit area; equal to the integral over time of the radiant flux density. Also known as exposure."^^xsd:string ;
    qudt:symbol "H_e"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1418023> ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EnergyPerArea .

qudtqk:RadiantFluenceRate a qudt:QuantityKind ;
    rdfs:label "Radiant Fluence Rate"@en ;
    dcterms:description "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere."^^qudt:LatexString ;
    qudt:abbreviation "M-PER-T3"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://goldbook.iupac.org/FT07376.html"^^xsd:anyURI ;
    qudt:latexDefinition "$E_0 = \\int{L}{d\\Omega}$, where $d\\Omega$ is the solid angle of each elementary beam passing through the given point and $L$ its radiance at that point in the direction of the beam."^^qudt:LatexString ;
    qudt:plainTextDescription "Radiant fluence rate, or spherical irradiance, is equal to the total radiant flux incident on a small sphere divided by the area of the diametrical cross-section of the sphere."^^xsd:string ;
    qudt:symbol "E_e,0"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:RadioactiveDecay a qudt:QuantityKind ;
    rdfs:label "radioactive decay"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD152"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD152"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InverseTime .

qudtqk:Radioactivity a qudt:QuantityKind ;
    rdfs:label "radioactivity"@en-us ;
    dcterms:description "number of spontaneous nuclear transformations in a defined amount of substance during a sufficiently small period of time divided by this period, expressed as a ratio ∂N/∂t, where ∂N is the expected value for the number of spontaneous transformations from this state within the time period ∂t"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Anzahl der spontanen Kernumwandlungen in einer gegebenen Menge eines Stoffes während eines hinreichend kleinen Zeitintervalls, dividiert durch dieses Zeitintervall, ausgedrückt als Quotient ∂N/∂t, wobei ∂N der Erwartungswert für die Anzahl der spontanen Übergänge aus diesem Zustand im Zeitintervall ∂t ist"@de ;
    qudt:symbol "0173-1#Z4-BAJ230#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RankineTemperature a qudt:QuantityKind ;
    rdfs:label "Rankine temperature"^^xsd:string,
        "Rankine temperature"@en-us ;
    dcterms:description "quantity which uses a temperature scale with a zero value at the absolute temperature zero (0 K) like the Kelvin scale, but, in contrast with it, uses the scale intervals of the Fahrenheit scale"@en ;
    qudt:applicableUnit unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD308"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD308"^^xsd:anyURI ;
    qudt:plainTextDescription "Größe, die eine Temperaturskala benutzt, die wie die Kelvin-Skala beim absoluten Temperatur-Nullpunkt (0 K) ihren Nullwert hat, jedoch im Gegensatz zu dieser den Skalenabstand der Fahrenheit-Skala verwendet"@de ;
    qudt:symbol "0173-1#Z4-BAJ367#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ThermodynamicTemperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ThermodynamicTemperature .

qudtqk:RateOfRiseOfVoltage a qudt:QuantityKind ;
    rdfs:label "rate of rise of voltage"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0> ;
    qudt:iec61360Code "0112/2///62720#UAD153"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD153"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ReactionEnergy a qudt:QuantityKind ;
    rdfs:label "Reaction Energy"@en ;
    dcterms:description "\"Reaction Energy\" in a nuclear reaction, is the sum of the kinetic energies and photon energies of the reaction products minus the sum of the kinetic and photon energies of the reactants."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_reaction"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Reaction Energy\" in a nuclear reaction, is the sum of the kinetic energies and photon energies of the reaction products minus the sum of the kinetic and photon energies of the reactants."^^xsd:string ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98164745> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:ReactorTimeConstant a qudt:QuantityKind ;
    rdfs:label "Reactor Time Constant"@en ;
    dcterms:description "The \"Reactor Time Constant\", also called the reactor period, is the time during which the neutron flux density in a reactor changes by the factor e = 2.718 (e: basis of natural logarithms), when the neutron flux density increases or decreases exponentially."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "https://www.euronuclear.org/glossary/reactor-time-constant/"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Reactor Time Constant\", also called the reactor period, is the time during which the neutron flux density in a reactor changes by the factor e = 2.718 (e: basis of natural logarithms), when the neutron flux density increases or decreases exponentially."^^xsd:string ;
    qudt:symbol "T"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99518950> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:ReciprocalElectricResistance a qudt:QuantityKind ;
    rdfs:label "reciprocal electric resistance"@en-us ;
    dcterms:description "quantity whose value is inversely proportional to the resistance value"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Widerstandswert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ375#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ReciprocalEnergy a qudt:QuantityKind ;
    rdfs:label "reciprocal energy"@en-us ;
    dcterms:description "multiplicative inverse of energy"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:plainTextDescription "Kehrwert der Energie"@de ;
    qudt:symbol "0173-1#Z4-BAJ417#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ReciprocalPlaneAngle a qudt:QuantityKind ;
    rdfs:label "reciprocal plane angle"@en-us ;
    dcterms:description "quantity whose value is inversely proportional to the angle value"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Winkelwert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ376#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Reflectivity a qudt:QuantityKind ;
    rdfs:label "Reflectivity"@en ;
    dcterms:description """<p>For homogeneous and semi-infinite materials, reflectivity is the same as reflectance. Reflectivity is the square of the magnitude of the Fresnel reflection coefficient, which is the ratio of the reflected to incident electric field; as such the reflection coefficient can be expressed as a complex number as determined by the Fresnel equations for a single layer, whereas the reflectance is always a positive real number.</p>

<p>For layered and finite media, according to the CIE, <em>reflectivity</em> is distinguished from <em>reflectance</em> by the fact that reflectivity is a value that applies to <em>thick</em> reflecting objects.<span style=font-size:10.8333px> </span>When reflection occurs from thin layers of material, internal reflection effects can cause the reflectance to vary with surface thickness. Reflectivity is the limit value of reflectance as the sample becomes thick; it is the intrinsic reflectance of the surface, hence irrespective of other parameters such as the reflectance of the rear surface. Another way to interpret this is that the reflectance is the fraction of electromagnetic power reflected from a specific sample, while reflectivity is a property of the material itself, which would be measured on a perfect machine if the material filled half of all space."""^^rdf:HTML ;
    qudt:applicableUnit unit:FRACTION,
        unit:PERCENT,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Reflectivity"^^xsd:anyURI ;
    qudt:latexSymbol "$\\rho$"^^qudt:LatexString ;
    qudt:plainTextDescription """For homogeneous and semi-infinite materials, reflectivity is the same as reflectance. Reflectivity is the square of the magnitude of the Fresnel reflection coefficient, which is the ratio of the reflected to incident electric field; as such the reflection coefficient can be expressed as a complex number as determined by the Fresnel equations for a single layer, whereas the reflectance is always a positive real number.

For layered and finite media, according to the CIE, reflectivity is distinguished from reflectance by the fact that reflectivity is a value that applies to thick reflecting objects. When reflection occurs from thin layers of material, internal reflection effects can cause the reflectance to vary with surface thickness. Reflectivity is the limit value of reflectance as the sample becomes thick; it is the intrinsic reflectance of the surface, hence irrespective of other parameters such as the reflectance of the rear surface. Another way to interpret this is that the reflectance is the fraction of electromagnetic power reflected from a specific sample, while reflectivity is a property of the material itself, which would be measured on a perfect machine if the material filled half of all space."""^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Reflectance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Reflectance .

qudtqk:RelativeAtomicMass a qudt:QuantityKind ;
    rdfs:label "Relative Atomic Mass"@en ;
    dcterms:description "\"Relative Atomic Mass \" is a dimensionless physical quantity, the ratio of the average mass of atoms of an element (from a given source) to 1/12 of the mass of an atom of carbon-12 (known as the unified atomic mass unit)"^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_atomic_mass"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Relative Atomic Mass \" is a dimensionless physical quantity, the ratio of the average mass of atoms of an element (from a given source) to 1/12 of the mass of an atom of carbon-12 (known as the unified atomic mass unit)"^^xsd:string ;
    qudt:symbol "A_r"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q41377> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:RelativeMassDefect a qudt:QuantityKind ;
    rdfs:label "Relative Mass Defect"@en ;
    dcterms:description "The \"Relative Mass Defect\" is the mass defect between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Binding_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$B_r = \\frac{B}{m_u}$, where $B$ is the mass defect and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Relative Mass Defect\" is the mass defect between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "B_r"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98038718> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:MassDefect ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:RelativeMolecularMass a qudt:QuantityKind ;
    rdfs:label "Relative Molecular Mass"@en ;
    dcterms:description "\"Relative Molecular Mass \" is equivalent to the numerical value of the molecular mass expressed in unified atomic mass units. The molecular mass (m) is the mass of a molecule."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Molecular_mass#Relative_molecular_mass"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Relative Molecular Mass \" is equivalent to the numerical value of the molecular mass expressed in unified atomic mass units. The molecular mass (m) is the mass of a molecule."^^xsd:string ;
    qudt:symbol "M_r"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21697817> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:RelativePermittivity qudt:wikidataMatch <http://www.wikidata.org/entity/Q4027242> .

qudtqk:RelaxationTIme a qudt:QuantityKind ;
    rdfs:label "Relaxation TIme"@en ;
    dcterms:description "\"Relaxation TIme\" is a time constant for exponential decay towards equilibrium."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Relaxation_(physics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\tau$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Relaxation TIme\" is a time constant for exponential decay towards equilibrium."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q102310909> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:ResistanceBasedInductance a qudt:QuantityKind ;
    rdfs:label "resistance-based inductance"@en-us ;
    dcterms:description "magnetic flux through the loop, caused by an electric current in the loop, divided by the product of this current and the resistance which prevents the flow of current"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:plainTextDescription "Magnetfluss durch die Schleife, verursacht durch einen elektrischen Strom in der Schleife, dividiert durch das Produkt aus diesen Strom und dem Widerstand, der diesen Stromfluss behindert"@de ;
    qudt:symbol "0173-1#Z4-BAJ411#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ResonanceEnergy a qudt:QuantityKind ;
    rdfs:label "Resonance Energy"@en ;
    dcterms:description "\"Resonance Energy\" in a nuclear reaction, is the kinetic energy of an incident particle, in the reference frame of the target, corresponding to a resonance in a nuclear reaction."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_reaction_analysis"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Resonance Energy\" in a nuclear reaction, is the kinetic energy of an incident particle, in the reference frame of the target, corresponding to a resonance in a nuclear reaction."^^xsd:string ;
    qudt:symbol "E_r, E_{res}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98165187> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:ResonanceEscapeProbabilityForFission a qudt:QuantityKind ;
    rdfs:label "Resonance Escape Probability For Fission"@en ;
    dcterms:description "Fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed."^^xsd:string ;
    qudt:symbol "p"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:RestEnergy a qudt:QuantityKind ;
    rdfs:label "Rest Energy"@en ;
    dcterms:description "\"Rest Energy\" is the energy equivalent of the rest mass of a body, equal to the rest mass multiplied by the speed of light squared."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Invariant_mass#Rest_energy"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "For a particle, $E_0 = m_0 c_0^2$, where $m_0$ is the rest mass of that particle, and $c_0$ is the speed of light in vacuum."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Rest Energy\" is the energy equivalent of the rest mass of a body, equal to the rest mass multiplied by the speed of light squared."^^xsd:string ;
    qudt:symbol "E_0"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q11663629> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:RestMass a qudt:QuantityKind ;
    rdfs:label "كتلة ساكنة"@ar,
        "Klidová hmotnost"@cs,
        "Ruhemasse"@de,
        "rest mass"@en,
        "masa invariante"@es,
        "جرم سکون"@fa,
        "masse au repos"@fr,
        "निश्चर द्रव्यमान"@hi,
        "massa a riposo"@it,
        "不変質量"@ja,
        "Jisim rehat"@ms,
        "masa spoczynkowa"@pl,
        "massa de repouso"@pt,
        "masa invariantă"@ro,
        "инвариантная масса"@ru,
        "Mirovna masa"@sl,
        "dinlenme kütlesi"@tr,
        "静止质量"@zh ;
    dcterms:description "The $\\textit{Rest Mass}$, the invariant mass, intrinsic mass, proper mass, or (in the case of bound systems or objects observed in their center of momentum frame) simply mass, is a characteristic of the total energy and momentum of an object or a system of objects that is the same in all frames of reference related by Lorentz transformations. The mass of a particle type X (electron, proton or neutron) when that particle is at rest. For an electron: $m_e = 9,109 382 15(45) 10^{-31} kg$, for a proton: $m_p = 1,672 621 637(83) 10^{-27} kg$, for a neutron: $m_n = 1,674 927 211(84) 10^{-27} kg$. Rest mass is often denoted $m_0$."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Invariant_mass"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m_X"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96941619> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Proper Mass"^^xsd:string,
        "träge Masse"@de,
        "masse invariante"@fr,
        "masse propre"@fr,
        "masa niezmiennicza"@pl,
        "масса покоя"@ru,
        "invariantna masa"@sl,
        "lastna masa"@sl ;
    skos:broader qudtqk:Mass .

qudtqk:ReverberationTime a qudt:QuantityKind ;
    rdfs:label "Reverberation Time"@en ;
    dcterms:description "Reverberation Time is the time required for reflections of a direct sound to decay by 60 dB below the level of the direct sound."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Reverberation"^^xsd:anyURI ;
    qudt:plainTextDescription "Reverberation Time is the time required for reflections of a direct sound to decay by 60 dB below the level of the direct sound."^^xsd:string ;
    qudt:symbol "T"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q606646> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:RiseOfOffStateVoltage a qudt:QuantityKind ;
    rdfs:label "rise of off-state voltage"@en-us ;
    dcterms:description "du/dt as time dependent change in voltage"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0> ;
    qudt:plainTextDescription "du/dt als zeitabhängige änderung der Spannung"@de ;
    qudt:symbol "0173-1#Z4-BAJ289#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RocketAtmosphericTransverseForce a qudt:QuantityKind ;
    rdfs:label "Rocket Atmospheric Transverse Force"@en ;
    dcterms:description "Transverse force on rocket due to an atmosphere"^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Transverse force on rocket due to an atmosphere"^^xsd:string ;
    qudt:symbol "T"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

qudtqk:RotaryShock a qudt:QuantityKind ;
    rdfs:label "rotary shock"@en-us ;
    dcterms:description "product of the moment of force M in a time interval multiplied by the duration of this interval"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:plainTextDescription "Produkt Drehmoment M in einem Zeitintervall mal Dauer dt dieses Zeitintervalls"@de ;
    qudt:symbol "0173-1#Z4-BAJ234#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RotationalStiffness a qudt:QuantityKind ;
    rdfs:label "Rotational Stiffness"@en ;
    dcterms:description "Rotational Stiffness is the extent to which an object resists deformation in response to an applied torque."^^qudt:LatexString ;
    qudt:applicableUnit unit:N-M-PER-ARCMIN,
        unit:N-M-PER-DEG,
        unit:N-M-PER-MIN_Angle,
        unit:N-M-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "Rotational Stiffness is the extent to which an object resists deformation in response to an applied torque."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TorquePerAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:TorquePerAngle .

qudtqk:SecondRadiationConstant a qudt:QuantityKind ;
    rdfs:label "second radiation constant"@en-us ;
    dcterms:description "constant in Planck's radiation law on the dependence of the spectral density of various radiation variables on the wavelength of the electromagnetic radiation and the absolute temperature of the black radiator, derived from the product of Planck's quantum of action times the velocity of light in relation to Boltzmann's constant"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T0D0> ;
    qudt:plainTextDescription "Konstante im Planckschen Strahlungsgesetz über die Abhängigkeit der spektralen Dichte verschiedener Strahlungsgrößen von der Wellenlänge der elektromagnetischen Strahlung und der absoluten Temperatur beim schwarzen Strahler, welche sich zusammensetzt aus dem Produkt Plancksches Wirkungsquantum mal Lichtgeschwindigkeit bezogen auf die Boltzmann-Konstante"@de ;
    qudt:symbol "0173-1#Z4-BAJ428#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SecondStageMassRatio a qudt:QuantityKind ;
    rdfs:label "Second Stage Mass Ratio"@en ;
    dcterms:description "Mass ratio for the second stage of a multistage launcher."^^qudt:LatexString ;
    qudt:applicableUnit unit:FemtoGM-PER-KiloGM,
        unit:GM-PER-GM,
        unit:GM-PER-HectoGM,
        unit:GM-PER-KiloGM,
        unit:KiloGM-PER-KiloGM,
        unit:LB-PER-LB,
        unit:MicroGM-PER-GM,
        unit:MicroGM-PER-KiloGM,
        unit:MicroGM-PER-MilliGM,
        unit:MilliGM-PER-GM,
        unit:MilliGM-PER-KiloGM,
        unit:NanoGM-PER-KiloGM,
        unit:NanoGM-PER-MilliGM,
        unit:PicoGM-PER-GM,
        unit:PicoGM-PER-KiloGM,
        unit:PicoGM-PER-MilliGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Mass ratio for the second stage of a multistage launcher."^^xsd:string ;
    qudt:symbol "R_2"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassRatio .

qudtqk:SerumOrPlasmaLevel a qudt:QuantityKind ;
    rdfs:label "Serum or Plasma Level"@en ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AmountOfSubstancePerVolume .

qudtqk:ShannonDiversityIndex a qudt:QuantityKind ;
    rdfs:label "Shannon Diversity Index"@en ;
    dcterms:description "Information entropy applied to a collection of indiviual organisms [of selected species] in a sample area. A measure of biodiversity."^^qudt:LatexString ;
    qudt:applicableUnit unit:BAN,
        unit:BIT,
        unit:BYTE,
        unit:ERLANG,
        unit:ExaBIT,
        unit:ExaBYTE,
        unit:ExbiBIT,
        unit:ExbiBYTE,
        unit:GibiBYTE,
        unit:GigaBYTE,
        unit:HART,
        unit:KibiBYTE,
        unit:KiloBYTE,
        unit:MebiBYTE,
        unit:MegaBYTE,
        unit:NAT,
        unit:PebiBIT,
        unit:PebiBYTE,
        unit:PetaBYTE,
        unit:SHANNON,
        unit:TebiBIT,
        unit:TebiBYTE,
        unit:TeraBYTE ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Information entropy applied to a collection of indiviual organisms [of selected species] in a sample area. A measure of biodiversity."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:InformationEntropy"^^xsd:string ;
    rdfs:isDefinedBy <https://data.agrimetrics.co.uk/ontologies/qudt-extension> ;
    skos:broader qudtqk:InformationEntropy .

qudtqk:SingleStageLauncherMassRatio a qudt:QuantityKind ;
    rdfs:label "Single Stage Launcher Mass Ratio"@en ;
    qudt:applicableUnit unit:FemtoGM-PER-KiloGM,
        unit:GM-PER-GM,
        unit:GM-PER-HectoGM,
        unit:GM-PER-KiloGM,
        unit:KiloGM-PER-KiloGM,
        unit:LB-PER-LB,
        unit:MicroGM-PER-GM,
        unit:MicroGM-PER-KiloGM,
        unit:MicroGM-PER-MilliGM,
        unit:MilliGM-PER-GM,
        unit:MilliGM-PER-KiloGM,
        unit:NanoGM-PER-KiloGM,
        unit:NanoGM-PER-MilliGM,
        unit:PicoGM-PER-GM,
        unit:PicoGM-PER-KiloGM,
        unit:PicoGM-PER-MilliGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:symbol "R_o"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MassRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MassRatio .

qudtqk:Slowing-DownArea a qudt:QuantityKind ;
    rdfs:label "Slowing-Down Area"@en ;
    dcterms:description "\"Slowing-Down Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the neutron source and the point where a neutron reaches a given energy."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Slowing-Down Area\" in an infinite homogenous medium, is one-sixth of the mean square distance between the neutron source and the point where a neutron reaches a given energy."^^xsd:string ;
    qudt:symbol "L_s^2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98950918> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Area .

qudtqk:Slowing-DownLength a qudt:QuantityKind ;
    rdfs:label "Slowing-Down Length"@en ;
    dcterms:description "\"Slowing-Down Length\" is the average straight-line distance that a fast neutron will travel between its introduction into the slowing-downmedium (moderator) and thermalization."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://nuclearpowertraining.tpub.com/h1013v2/css/h1013v2_32.htm"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Slowing-Down Length\" is the average straight-line distance that a fast neutron will travel between its introduction into the slowing-downmedium (moderator) and thermalization."^^xsd:string ;
    qudt:symbol "L_s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98996963> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:SolidStateDiffusionLength a qudt:QuantityKind ;
    rdfs:label "Diffusion Length (Solid State Physics)"@en ;
    dcterms:description "\"Solid State Diffusion Length\" is the average distance traveled by a particle, such as a minority carrier in a semiconductor "^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://pveducation.org/pvcdrom/pn-junction/diffusion-length"^^xsd:anyURI ;
    qudt:latexDefinition "$L = \\sqrt{D\\tau}$, where $D$ is the diffusion coefficient and $\\tau$ is lifetime."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Solid State Diffusion Length\" is the average distance traveled by a particle, such as a minority carrier in a semiconductor "^^xsd:string ;
    qudt:symbol "L, L_n, L_p"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106097176> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:Solubility_Water a qudt:QuantityKind ;
    rdfs:label "Water Solubility"@en ;
    dcterms:description "An amount of substance per unit volume that is the concentration of a saturated solution expressed as the ratio of the solute concentration over the volume of water.  A substance's solubility fundamentally depends on several physical and chemical properties of the solution as well as the environment it is in."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:WaterSolubility ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "An amount of substance per unit volume that is the concentration of a saturated solution expressed as the ratio of the solute concentration over the volume of water.  A substance's solubility fundamentally depends on several physical and chemical properties of the solution as well as the environment it is in."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AmountOfSubstancePerVolume .

qudtqk:SoundParticleDisplacement a qudt:QuantityKind ;
    rdfs:label "Sound Particle Displacement"@en ;
    dcterms:description "Sound Particle Displacement is the nstantaneous displacement of a particle in a medium from what would be its position in the absence of sound waves."^^qudt:LatexString ;
    qudt:abbreviation "l"^^xsd:string ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_displacement"^^xsd:anyURI ;
    qudt:plainTextDescription "Sound Particle Displacement is the nstantaneous displacement of a particle in a medium from what would be its position in the absence of sound waves."^^xsd:string ;
    qudt:symbol "ξ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q779457> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:SourceVoltageBetweenSubstances a qudt:QuantityKind ;
    rdfs:label "Source Voltage Between Substances"@en ;
    dcterms:description "\"Source Voltage Between Substances\" is the source voltage between substance a and b."^^qudt:LatexString ;
    qudt:applicableUnit unit:ExaV,
        unit:FemtoV,
        unit:GigaV,
        unit:KiloV,
        unit:MegaV,
        unit:MicroV,
        unit:MilliV,
        unit:NanoV,
        unit:PetaV,
        unit:PicoV,
        unit:PlanckVolt,
        unit:TeraV,
        unit:V,
        unit:V_Ab,
        unit:V_Stat ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Source Voltage Between Substances\" is the source voltage between substance a and b."^^xsd:string ;
    qudt:symbol "E_{ab}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Voltage"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Voltage .

qudtqk:SpatialSummationFunction a qudt:QuantityKind ;
    rdfs:label "Spatial Summation Function"@en ;
    dcterms:description "\"Spatial Summation Function\" is he ability to produce a composite signal from the signals coming into the eyes from different directions."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Summation_(neurophysiology)#Spatial_summation"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Spatial Summation Function\" is he ability to produce a composite signal from the signals coming into the eyes from different directions."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:SpecificEnergyImparted a qudt:QuantityKind ;
    rdfs:label "Specific Energy Imparted"@en ;
    dcterms:description "The \"Specific Energy Imparted\", is the energy imparted to an element of irradiated matter divided by the mass, dm, of that element."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-LB,
        unit:BTU_TH-PER-LB,
        unit:CAL_IT-PER-GM,
        unit:CAL_TH-PER-GM,
        unit:ERG-PER-GM,
        unit:J-PER-GM,
        unit:J-PER-KiloGM,
        unit:KiloCAL-PER-GM,
        unit:KiloJ-PER-KiloGM,
        unit:KiloLB_F-FT-PER-LB,
        unit:MegaJ-PER-KiloGM,
        unit:MilliJ-PER-GM,
        unit:N-M-PER-KiloGM,
        unit:W-HR-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:informativeReference "http://www.answers.com/topic/energy-imparted"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "For ionizing radiation, $z = \\frac{\\varepsilon}{m}$, where $\\varepsilon$ is the energy imparted to irradiated matter and $m$ is the mass of that matter."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Specific Energy Imparted\", is the energy imparted to an element of irradiated matter divided by the mass, dm, of that element."^^xsd:string ;
    qudt:symbol "z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99566195> ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificEnergy .

qudtqk:SpecificHeatsRatio a qudt:QuantityKind ;
    rdfs:label "Specific Heats Ratio"@en ;
    dcterms:description "The ratio of specific heats, for the exhaust gases adiabatic gas constant, is the relative amount of compression/expansion energy that goes into temperature $T$ versus pressure $P$ can be characterized by the heat capacity ratio: $\\gamma\\frac{C_P}{C_V}$, where $C_P$ is the specific heat (also called heat capacity) at constant pressure, while $C_V$ is the specific heat at constant volume. "^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:SpecificOpticalRotationalAbility a qudt:QuantityKind ;
    rdfs:label "specific optical rotational ability"^^xsd:string,
        "specific optical rotational ability"@en-us ;
    dcterms:description "material-specific quantity, which results as angle of rotation of a substance for a defined wavelength and a defined temperature from the relation: quotient of measured angle of rotation divided by the mass concentration and the radiographed distance"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD174"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD174"^^xsd:anyURI ;
    qudt:plainTextDescription "materialspezifische Größe, die sich als Drehwinkel einer Substanz für eine bestimmte Wellenlänge und eine bestimmte Temperatur ergibt durch die Beziehung: Quotient aus gemessener Drehwinkel dividiert durch die Massenkonzentration und die durchstrahlte Wegstrecke"@de ;
    qudt:symbol "0173-1#Z4-BAJ425#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpecificThrust a qudt:QuantityKind ;
    rdfs:label "Specific thrust"@en ;
    dcterms:description "Specific impulse (usually abbreviated Isp) is a way to describe the efficiency of rocket and jet engines. It represents the force with respect to the amount of propellant used per unit time.[1] If the \"amount\" of propellant is given in terms of mass (such as kilograms), then specific impulse has units of velocity. If it is given in terms of Earth-weight (such as kiloponds), then specific impulse has units of time. The conversion constant between the two versions of specific impulse is g. The higher the specific impulse, the lower the propellant flow rate required for a given thrust, and in the case of a rocket the less propellant is needed for a given delta-v per the Tsiolkovsky rocket equation."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Specific_thrust"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:id "Q-160-100"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Specific_thrust"^^xsd:anyURI ;
    qudt:plainTextDescription "Specific impulse (usually abbreviated Isp) is a way to describe the efficiency of rocket and jet engines. It represents the force with respect to the amount of propellant used per unit time.[1] If the \"amount\" of propellant is given in terms of mass (such as kilograms), then specific impulse has units of velocity. If it is given in terms of Earth-weight (such as kiloponds), then specific impulse has units of time. The conversion constant between the two versions of specific impulse is g. The higher the specific impulse, the lower the propellant flow rate required for a given thrust, and in the case of a rocket the less propellant is needed for a given delta-v per the Tsiolkovsky rocket equation."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:SpecificImpulse .

qudtqk:SpectralConcentrationOfRadiantEnergyDensity a qudt:QuantityKind ;
    rdfs:label "spectral concentration of radiant energy density"@en-us ;
    dcterms:description "energy distribution of the instantaneous value of radiant energy in relation to the volume of the propagation medium"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "Energieverteilung des Augenblickswertes der Strahlungsenergie, bezogen auf das Volumen des Ausbreitungsmediums"@de ;
    qudt:symbol "0173-1#Z4-BAJ379#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralConcentrationOfVibrationalModes a qudt:QuantityKind ;
    rdfs:label "spectral concentration of vibrational modes (in terms of angular frequency)"@en-us ;
    dcterms:description "number of vibrational modes in an infinitesimal interval of angular frequency, divided by the size of that interval and by volume"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:plainTextDescription "Anzahl von Vibrationsmodi in einem infinitesimalen Energie-Intervall der Kreisfrequenz, dividiert durch die Größe dieses Energie-Intervalls und durch das zugehörige Volumen"@de ;
    qudt:symbol "0173-1#Z4-BAJ431#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralRadiantEnergyDensityInTermsOfWavelength a qudt:QuantityKind ;
    rdfs:label "spectral radiant energy density in terms of wavelength"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD179"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD179"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpeedRatio a qudt:QuantityKind ;
    rdfs:label "Speed Ratio"@en ;
    dcterms:description "Speed ratio generally refers to the ratio of the rotational speeds of two interconnected rotating components, but it sometimes relates linear speeds."^^xsd:string ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://sciencing.com/calculate-speed-ratio-7598425.html"^^xsd:anyURI ;
    qudt:plainTextDescription "Speed ratio generally refers to the ratio of the rotational speeds of two interconnected rotating components, but it sometimes relates linear speeds."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:Spin a qudt:QuantityKind ;
    rdfs:label "لف مغزلي"@ar,
        "spin"@cs,
        "Spin"@de,
        "spin"@en,
        "espín"@es,
        "اسپین/چرخش"@fa,
        "spin"@fr,
        "spin"@it,
        "スピン角運動量"@ja,
        "Spin"@ms,
        "spin"@pl,
        "spin"@pt,
        "Spin"@ro,
        "Спин"@ru,
        "spin"@sl,
        "Spin"@tr,
        "自旋"@zh ;
    dcterms:description "In quantum mechanics and particle physics \"Spin\" is an intrinsic form of angular momentum carried by elementary particles, composite particles (hadrons), and atomic nuclei."^^qudt:LatexString ;
    qudt:applicableUnit unit:ERG-SEC,
        unit:EV-SEC,
        unit:FT-LB_F-SEC,
        unit:J-SEC,
        unit:KiloGM-M2-PER-SEC,
        unit:N-M-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Spin_(physics)"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "In quantum mechanics and particle physics \"Spin\" is an intrinsic form of angular momentum carried by elementary particles, composite particles (hadrons), and atomic nuclei."^^xsd:string ;
    qudt:symbol "s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q133673> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularMomentum"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularMomentum .

qudtqk:StagePropellantMass a qudt:QuantityKind ;
    rdfs:label "Stage Propellant Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_F"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:StageStructuralMass a qudt:QuantityKind ;
    rdfs:label "Stage Structure Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_S"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:StandardChemicalPotential a qudt:QuantityKind ;
    rdfs:label "Standard Chemical Potential"@en ;
    dcterms:description "\"Standard Chemical Potential\" is the value of the chemical potential at standard conditions"^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-MOL,
        unit:KiloCAL-PER-MOL,
        unit:KiloJ-PER-MOL ;
    qudt:expression "$j-mol^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_potential"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$\\mu_B^\\Theta$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Standard Chemical Potential\" is the value of the chemical potential at standard conditions"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q89333468> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ChemicalPotential .

qudtqk:StateDensity a qudt:QuantityKind ;
    rdfs:label "state density"@en-us ;
    dcterms:description "function of energy in a solid, determined by the number of permissible quantum states in the energy range between E and E+dE per volume of material of this solid"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Funktion der Energie in einem Festkörper, bestimmt durch die Anzahl von erlaubten Quantenzuständen im Energiebereich zwischen E und E+dE je Volumen des Materials dieses Festkörpers"@de ;
    qudt:symbol "0173-1#Z4-BAJ427#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:StateDensityAsExpressionOfAngularFrequency a qudt:QuantityKind ;
    rdfs:label "state density as expression of angular frequency)"^^xsd:string,
        "state density as expression of angular frequency"@en-us ;
    dcterms:description "ratio between number of vibration modes in an infinitesimal interval of the angular frequency and the length of this interval and the volume"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD180"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD180"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient aus Anzahl von Vibrationsmodi in einem infinitesimalen Intervall der Kreisfrequenz durch die Spannweite dieses Intervalls und das Volumen"@de ;
    qudt:symbol "0173-1#Z4-BAJ454#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:StaticFrictionCoefficient a qudt:QuantityKind ;
    rdfs:label "Static Friction Coefficient"@en ;
    dcterms:description "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu = \\frac{F_max}{N}$, where $F_max$ is the maximum tangential component of the contact force and $N$ is the normal component of the contact force between two bodies at relative rest."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu$"^^qudt:LatexString ;
    qudt:plainTextDescription "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:FrictionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:FrictionCoefficient .

qudtqk:StrainEnergyDensity a qudt:QuantityKind ;
    rdfs:label "Strain Energy Density"@en ;
    dcterms:description "Defined as the 'work done' for a given strain, that is the area under the stress-strain curve after a specified eation. Source(s): http://www.prepol.com/product-range/product-subpages/terminology"^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT3,
        unit:BTU_TH-PER-FT3,
        unit:ERG-PER-CentiM3,
        unit:J-PER-M3,
        unit:MegaJ-PER-M3,
        unit:W-HR-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:plainTextDescription "Defined as the 'work done' for a given strain, that is the area under the stress-strain curve after a specified eation. Source(s): http://www.prepol.com/product-range/product-subpages/terminology"^^xsd:string ;
    qudt:symbol "u"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EnergyDensity .

qudtqk:StructuralEfficiency a qudt:QuantityKind ;
    rdfs:label "Structural Efficiency"@en ;
    dcterms:description "Structural efficiency is a function of the weight of structure to the afforded vehicle's strength."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "Structural efficiency is a function of the weight of structure to the afforded vehicle's strength."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:SuperconductorEnergyGap a qudt:QuantityKind ;
    rdfs:label "Superconductor Energy Gap"@en ;
    dcterms:description "\"Superconductor Energy Gap\" is the width of the forbidden energy band in a superconductor."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/BCS_theory"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Superconductor Energy Gap\" is the width of the forbidden energy band in a superconductor."^^xsd:string ;
    qudt:symbol "Δ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106127898> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:GapEnergy .

qudtqk:SurfaceTension a qudt:QuantityKind ;
    rdfs:label "توتر سطحي"@ar,
        "povrchové napětí"@cs,
        "Oberflächenspannung"@de,
        "surface tension"@en,
        "tensión superficial"@es,
        "کشش سطحی"@fa,
        "tension superficielle"@fr,
        "पृष्ठ तनाव"@hi,
        "tensione superficiale"@it,
        "表面張力"@ja,
        "Tegangan permukaan"@ms,
        "napięcie powierzchniowe"@pl,
        "tensão superficial"@pt,
        "Tensiune superficială"@ro,
        "поверхностное натяжение"@ru,
        "površinska napetost"@sl,
        "Yüzey gerilimi"@tr,
        "表面张力"@zh ;
    dcterms:description "\"Surface Tension\" is a contractive tendency of the surface of a liquid that allows it to resist an external force."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2,
        unit:BTU_TH-PER-FT2,
        unit:CAL_TH-PER-CentiM2,
        unit:CentiN-M-PER-M2,
        unit:ERG-PER-CentiM2,
        unit:FT-LB_F-PER-FT2,
        unit:FT-LB_F-PER-M2,
        unit:GigaJ-PER-M2,
        unit:GigaN-M-PER-M2,
        unit:J-PER-CentiM2,
        unit:J-PER-M2,
        unit:KiloBTU_IT-PER-FT2,
        unit:KiloCAL-PER-CentiM2,
        unit:KiloGM-PER-SEC2,
        unit:KiloN-M-PER-M2,
        unit:KiloW-HR-PER-M2,
        unit:LANGLEY,
        unit:LB_F-PER-IN,
        unit:MegaJ-PER-M2,
        unit:MegaN-M-PER-M2,
        unit:MicroN-M-PER-M2,
        unit:MilliJ-PER-M2,
        unit:MilliN-M-PER-M2,
        unit:N-M-PER-M2,
        unit:NanoN-M-PER-M2,
        unit:W-HR-PER-M2,
        unit:W-SEC-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD184"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Surface_tension"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD184"^^xsd:anyURI ;
    qudt:latexDefinition "$\\gamma = \\frac{dF}{dl}$, where $F$ is the force component perpendicular to a line element in a surface and $l$ is the length of the line element."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Surface Tension\" is a contractive tendency of the surface of a liquid that allows it to resist an external force."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/SUTE> ;
    qudt:symbol "γ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q170749> ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "tension de surface"@fr ;
    skos:broader qudtqk:EnergyPerArea .

qudtqk:SurgeImpedanceOfTheMedium a qudt:QuantityKind ;
    rdfs:label "surge impedance of the medium"^^xsd:string,
        "surge impedance of the medium"@en-us ;
    dcterms:description "in a mechanical system the area-related quotient of a force affecting to a point divided by the resulting component of the particle velocity in direction of the force"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD185"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD185"^^xsd:anyURI ;
    qudt:plainTextDescription "in einem mechanischen System der flächenbezogene Quotient einer an einem Punkt angreifenden Kraft durch die resultierende Komponente der Teilchengeschwindigkeit in Richtung der Kraft"@de ;
    qudt:symbol "0173-1#Z4-BAJ323#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SymbolTransmissionRate a qudt:QuantityKind ;
    rdfs:label "symbol transmission rate"@en-us ;
    dcterms:description "rate, at which a symbol, consisting of one or more bits, is transmitted per second"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Geschwindigkeit, mit der ein aus mehreren Bit bestehendes Symbol je Sekunde übertragen wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ386#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TARGET-BOGIE-MASS a qudt:QuantityKind ;
    rdfs:label "Target Bogie Mass"@en ;
    dcterms:description "An informal mass limit established by a Project Office (at the Element Integrated Product Team (IPT) level or below) to control mass."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:plainTextDescription "An informal mass limit established by a Project Office (at the Element Integrated Product Team (IPT) level or below) to control mass."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:TemperatureBasedAmountOfSubstanceConcentration a qudt:QuantityKind ;
    rdfs:label "temperature-based amount-of-substance concentration"@en-us ;
    dcterms:description "ratio of material concentration divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Stoffmengenkonzentration dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ395#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedDensity a qudt:QuantityKind ;
    rdfs:label "temperature-based density"@en-us ;
    dcterms:description "ratio of density divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Dichte dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ389#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedDynamicViscosity a qudt:QuantityKind ;
    rdfs:label "temperature-based dynamic viscosity"@en-us ;
    dcterms:description "ratio of dynamic viscosity, divided by temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient der dynamischen Viskosität dividiert durch die Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ390#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedKinematicViscosity a qudt:QuantityKind ;
    rdfs:label "temperature-based kinematic viscosity"@en-us ;
    dcterms:description "ratio of dynamic viscosity and the density of a material, divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus der dynamischen Viskosität und der Dichte eines Stoffes dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ392#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedLength a qudt:QuantityKind ;
    rdfs:label "temperature-based length"@en-us ;
    dcterms:description "ratio of length divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:plainTextDescription "Quotient aus Länge dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ393#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedMass a qudt:QuantityKind ;
    rdfs:label "temperature-based mass"@en-us ;
    dcterms:description "ratio of mass divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Masse dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ394#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedMassFlowRate a qudt:QuantityKind ;
    rdfs:label "temperature-based mass flow rate"@en-us ;
    dcterms:description "ratio of mass flow divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Massenstrom dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ396#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedQuantity a qudt:QuantityKind ;
    rdfs:label "temperature-based quantity"@en-us ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedVelocity a qudt:QuantityKind ;
    rdfs:label "temperature-based velocity"@en-us ;
    dcterms:description "ratio of velocity divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Geschwindigkeit dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ391#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureBasedVolumeFlowRate a qudt:QuantityKind ;
    rdfs:label "temperature-based volume flow rate"@en-us ;
    dcterms:description "ratio of volume flow divided by the related temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Quotient aus Volumenstrom dividiert durch die zugehörige Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ397#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureDifference a qudt:QuantityKind ;
    rdfs:label "Temperaturdifferenz"@de,
        "temperature difference"@en ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:informativeReference "https://www.merusonline.com/delta-t-temperature/"^^xsd:anyURI ;
    qudt:plainTextDescription "Temperature difference (Delta T) is the difference of temperatures between two measuring points"^^xsd:string ;
    qudt:symbol "ΔT"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:TemperaturePerTime_Squared a qudt:QuantityKind ;
    rdfs:label "Temperature per Time Squared"@en ;
    dcterms:isReplacedBy qudtqk:TemperaturePerSquareTime ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureRateOfChange a qudt:QuantityKind ;
    rdfs:label "Temperature Rate of Change"@en ;
    dcterms:description "The \"Temperature Rate of Change\" measures the difference of a temperature per time (positive: rise, negative: fall), as for instance used with heat sensors. It is for example measured in K/s."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C-PER-HR,
        unit:DEG_C-PER-MIN,
        unit:DEG_C-PER-SEC,
        unit:DEG_C-PER-YR,
        unit:DEG_F-PER-HR,
        unit:DEG_F-PER-MIN,
        unit:DEG_F-PER-SEC,
        unit:DEG_R-PER-HR,
        unit:DEG_R-PER-MIN,
        unit:DEG_R-PER-SEC,
        unit:K-PER-HR,
        unit:K-PER-MIN,
        unit:K-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD186"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD186"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Temperature Rate of Change\" measures the difference of a temperature per time (positive: rise, negative: fall), as for instance used with heat sensors. It is for example measured in K/s."^^xsd:string ;
    qudt:symbol "0173-1#Z4-BAJ416#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:TemperaturePerTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:TemperaturePerTime .

qudtqk:TemperatureRelatedMolarMass a qudt:QuantityKind ;
    rdfs:label "temperature-related molar mass"@en-us ;
    dcterms:description "molarity (mass of a substance in relation to the amount of this substance) divided by temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:plainTextDescription "Molarität (Masse einer Substanz bezogen auf die Stoffmenge dieser Substanz ) dividiert durch die Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ443#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureRelatedVolume a qudt:QuantityKind ;
    rdfs:label "temperature-related volume  "@en-us ;
    dcterms:description "volume divided by temperature"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:plainTextDescription "Volumen dividiert durch Temperatur"@de ;
    qudt:symbol "0173-1#Z4-BAJ398#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TemperatureVariance_NEON a qudt:QuantityKind ;
    rdfs:label "Temperature Variance, NEON"@en ;
    dcterms:description "Variance for NEON temperature data measured in degrees celcius"^^xsd:string ;
    dcterms:isReplacedBy qudtqk:TemperatureVariance ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H2T0D0> ;
    qudt:informativeReference "https://www.neonscience.org/data-samples/data-management/data-processing"^^xsd:anyURI ;
    qudt:plainTextDescription "Variance for NEON temperature data measured in degrees celcius"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Tension a qudt:QuantityKind ;
    rdfs:label "Tension"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tension"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q908584> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ForceMagnitude .

qudtqk:ThermalAdmittance a qudt:QuantityKind ;
    rdfs:label "Thermal Admittance"@en ;
    dcterms:description "The heat transfer coefficient is also known as thermal admittance in the sense that the material may be seen as admitting heat to flow."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR-DEG_F,
        unit:BTU_IT-PER-FT2-SEC-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_R,
        unit:BTU_IT-PER-SEC-FT2-DEG_F,
        unit:BTU_IT-PER-SEC-FT2-DEG_R,
        unit:BTU_TH-PER-HR-FT2-DEG_F,
        unit:BTU_TH-PER-SEC-FT2-DEG_F,
        unit:CAL_IT-PER-SEC-CentiM2-K,
        unit:CAL_TH-PER-SEC-CentiM2-K,
        unit:KiloGM-PER-SEC3-K,
        unit:KiloW-PER-M2-K,
        unit:W-PER-M2-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI ;
    qudt:plainTextDescription "The heat transfer coefficient is also known as thermal admittance in the sense that the material may be seen as admitting heat to flow."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CoefficientOfHeatTransfer"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CoefficientOfHeatTransfer .

qudtqk:ThermalCoefficientOfLinearExpansion a qudt:QuantityKind ;
    rdfs:label "thermal coefficient of linear expansion"@en-us ;
    dcterms:description "median relative change in length over a specific length of the test piece, divided by the temperature range caused by it"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:plainTextDescription "auf eine festgelegte Länge des Probekörpers bezogene mittlere relative Längenänderung dividiert durch die sie verursachende Temperaturänderung"@de ;
    qudt:symbol "0173-1#Z4-BAJ473#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThermalEfficiency a qudt:QuantityKind ;
    rdfs:label "Thermal Efficiency"@en ;
    dcterms:description "Thermal efficiency is a dimensionless performance measure of a thermal device such as an internal combustion engine, a boiler, or a furnace. The input to the device is heat, or the heat-content of a fuel that is consumed. The desired output is mechanical work, or heat, or possibly both."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Thermal_efficiency"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:plainTextDescription "Thermal efficiency is a dimensionless performance measure of a thermal device such as an internal combustion engine, a boiler, or a furnace. The input to the device is heat, or the heat-content of a fuel that is consumed. The desired output is mechanical work, or heat, or possibly both."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1452104> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ThermalInsulation a qudt:QuantityKind ;
    rdfs:label "thermal insulation"@en-us ;
    dcterms:description "temperature difference between two surfaces divided by areic heat flow rate in the direction of the temperature gradient"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    qudt:plainTextDescription "Temperaturdifferenz zwischen zwei Oberflächen dividiert durch den flächenbezogenen Wärmestrom in der Richtung des Temperaturgradienten"@de ;
    qudt:symbol "0173-1#Z4-BAJ404#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThermalTransmittance a qudt:QuantityKind ;
    rdfs:label "Thermal Transmittance"@en ;
    dcterms:description "Thermal transmittance is the rate of transfer of heat through matter. The thermal transmittance of a material (such as insulation or concrete) or an assembly (such as a wall or window) is expressed as a U-value. The concept of thermal transmittance is closely related to that of thermal resistance. The thermal resistance of a structure is the reciprocal of its thermal transmittance."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR-DEG_F,
        unit:BTU_IT-PER-FT2-SEC-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_F,
        unit:BTU_IT-PER-HR-FT2-DEG_R,
        unit:BTU_IT-PER-SEC-FT2-DEG_F,
        unit:BTU_IT-PER-SEC-FT2-DEG_R,
        unit:BTU_TH-PER-HR-FT2-DEG_F,
        unit:BTU_TH-PER-SEC-FT2-DEG_F,
        unit:CAL_IT-PER-SEC-CentiM2-K,
        unit:CAL_TH-PER-SEC-CentiM2-K,
        unit:KiloGM-PER-SEC3-K,
        unit:KiloW-PER-M2-K,
        unit:W-PER-M2-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD195"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD195"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Thermal_transmittance"^^xsd:anyURI ;
    qudt:plainTextDescription "Thermal transmittance is the rate of transfer of heat through matter. The thermal transmittance of a material (such as insulation or concrete) or an assembly (such as a wall or window) is expressed as a U-value. The concept of thermal transmittance is closely related to that of thermal resistance. The thermal resistance of a structure is the reciprocal of its thermal transmittance."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CoefficientOfHeatTransfer"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CoefficientOfHeatTransfer .

qudtqk:ThermalUtilizationFactorForFission a qudt:QuantityKind ;
    rdfs:label "Thermal Utilization Factor For Fission"@en ;
    dcterms:description "Probability that a neutron that gets absorbed does so in the fuel material."^^qudt:LatexString ;
    qudt:applicableUnit unit:BasePair,
        unit:COUNT,
        unit:DECADE,
        unit:FLIGHT,
        unit:GigaBasePair,
        unit:NP,
        unit:NUM,
        unit:OCT,
        unit:RPK,
        unit:SUSCEPTIBILITY_ELEC,
        unit:SUSCEPTIBILITY_MAG,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Probability that a neutron that gets absorbed does so in the fuel material."^^xsd:string ;
    qudt:symbol "f"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dimensionless"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:ThermodynamicCriticalMagneticFluxDensity a qudt:QuantityKind ;
    rdfs:label "Thermodynamic Critical Magnetic Flux Density"@en ;
    dcterms:description "\"Thermodynamic Critical Magnetic Flux Density\" is the maximum magnetic field strength below which a material remains superconducting."^^qudt:LatexString ;
    qudt:applicableUnit unit:GAMMA,
        unit:GAUSS,
        unit:KiloGAUSS,
        unit:KiloT,
        unit:MicroT,
        unit:MilliT,
        unit:NanoT,
        unit:T,
        unit:T_Ab ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$G_n - G_s = \\frac{1}{2}\\frac{B_c^2 \\cdot V}{\\mu_0}$, where $G_n$ and $G_s$ are the Gibbs energies at zero magnetic flux density in a normal conductor and superconductor, respectively, $\\mu_0$ is the magnetic constant, and $V$ is volume."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Thermodynamic Critical Magnetic Flux Density\" is the maximum magnetic field strength below which a material remains superconducting."^^xsd:string ;
    qudt:symbol "B_c"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106103200> ;
    rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MagneticFluxDensity .

qudtqk:ThermodynamicEntropy a qudt:QuantityKind ;
    rdfs:label "Thermodynamic Entropy"@en ;
    dcterms:description "Thermodynamic Entropy is a measure of the unavailability of a system’s energy to do work. It is a measure of the randomness of molecules in a system and is central to the second law of thermodynamics and the fundamental thermodynamic relation, which deal with physical processes and whether they occur spontaneously. The dimensions of entropy are energy divided by temperature, which is the same as the dimensions of Boltzmann's constant ($kB$) and heat capacity. The SI unit of entropy is $joule\\ per\\ kelvin$. [Wikipedia]"^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloJ-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyPerTemperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EnergyPerTemperature .

qudtqk:ThrustCoefficient a qudt:QuantityKind ;
    rdfs:label "Thrust Coefficient"@en ;
    dcterms:description "The thrust force of a jet-propulsion engine per unit of frontal area per unit of incompressible dynamic pressure "^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:plainTextDescription "The thrust force of a jet-propulsion engine per unit of frontal area per unit of incompressible dynamic pressure "^^xsd:string ;
    qudt:symbol "C_{F}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q102040931> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThrustToWeightRatio a qudt:QuantityKind ;
    rdfs:label "Thrust To Weight Ratio"@en ;
    dcterms:description "Thrust-to-weight ratio is a ratio of thrust to weight of a rocket, jet engine, propeller engine, or a vehicle propelled by such an engine. It is a dimensionless quantity and is an indicator of the performance of the engine or vehicle."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:latexSymbol "$\\psi$"^^qudt:LatexString ;
    qudt:plainTextDescription "Thrust-to-weight ratio is a ratio of thrust to weight of a rocket, jet engine, propeller engine, or a vehicle propelled by such an engine. It is a dimensionless quantity and is an indicator of the performance of the engine or vehicle."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:Tilt a qudt:QuantityKind ;
    rdfs:label "Tilt"@en ;
    dcterms:description """The angle between an object's orientation vector relative to a reference frame.  
  In the context of architecture, this would refer to the angle between the ground and the face of a surface."""^^xsd:string ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription """The angle between an object's orientation vector relative to a reference frame.  
  In the context of architecture, this would refer to the angle between the ground and the face of a surface."""^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Angle .

qudtqk:TimeAveragedSoundIntensity a qudt:QuantityKind ;
    rdfs:label "Time averaged sound intensity"@en ;
    dcterms:description "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^qudt:LatexString ;
    qudt:abbreviation "w/m2"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_intensity"^^xsd:anyURI ;
    qudt:latexDefinition "$I = \\frac{1}{t2 - t1} \\int_{t1}^{t2}i(t)dt$, where $t1$ and $t2$ are the starting and ending times for the integral and $i$ is sound intensity."^^qudt:LatexString ;
    qudt:plainTextDescription "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^xsd:string ;
    qudt:symbol "I"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86827342> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SoundIntensity .

qudtqk:TimeConstant_Inductance a qudt:QuantityKind ;
    rdfs:label "time constant (inductance based)"^^xsd:string ;
    dcterms:isReplacedBy qudtqk:InductanceBasedTimeConstant ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD198"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD198"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TimeRelatedLogarithmicRatio a qudt:QuantityKind ;
    rdfs:label "time-related logarithmic ratio"@en-us ;
    dcterms:description "logarithm of the ratio of the value of a defined variable to the value of a reference variable of the same type, divided by the related time"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Logarithmus des Verhältnisses des Werts einer gegebenen Größe zum Wert einer Bezugsgröße gleicher Art dividiert durch die zugehörige Zeit"@de ;
    qudt:symbol "0173-1#Z4-BAJ415#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Time_Squared a qudt:QuantityKind ;
    rdfs:label "Time Squared"@en ;
    dcterms:isReplacedBy qudtqk:SquareTime ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Time_Squared"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TorqueConstant a qudt:QuantityKind ;
    rdfs:label "torque constant"^^xsd:string,
        "torque constant"@en-us ;
    dcterms:description "product of magnetic induction, number of turns per unit length, and the area enclosed by the coil corresponding to the gradient of the curve representing the ratio between the torque of the motor and the current"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD201"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD201"^^xsd:anyURI ;
    qudt:plainTextDescription "Produkt aus der magnetischen Induktion, der Windungszahl und der von der Spule eingeschlossenen Fläche entsprechend der Steigung der Kurve des Verhältnisses Drehmoment des Motors zum Strom"@de ;
    qudt:symbol "0173-1#Z4-BAJ298#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TorsionalRigidity a qudt:QuantityKind ;
    rdfs:label "torsional rigidity"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD202"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD202"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TotalAngularMomentum a qudt:QuantityKind ;
    rdfs:label "Total Angular Momentum"@en ;
    dcterms:description "\"Total Angular Momentum\" combines both the spin and orbital angular momentum of all particles and fields. In atomic and nuclear physics, orbital angular momentum is usually denoted by $l$ or $L$ instead of $\\Lambda$. The magnitude of $J$ is quantized so that $J^2 = \\hbar^2 j(j + 1)$, where $j$ is the total angular momentum quantum number."^^qudt:LatexString ;
    qudt:applicableUnit unit:ERG-SEC,
        unit:EV-SEC,
        unit:FT-LB_F-SEC,
        unit:J-SEC,
        unit:KiloGM-M2-PER-SEC,
        unit:N-M-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Angular_momentum#Spin.2C_orbital.2C_and_total_angular_momentum"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "J"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97496506> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularMomentum"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularMomentum .

qudtqk:TotalCrossSection a qudt:QuantityKind ;
    rdfs:label "Total Cross-section"@en ;
    dcterms:description "\"Total Cross-section\" is related to the absorbance of the light intensity through Beer-Lambert's law. It is the sum of all cross-sections corresponding to the various reactions or processes between an incident particle of specified type and energy and a target particle."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC,
        unit:ARE,
        unit:BARN,
        unit:CentiM2,
        unit:DecaARE,
        unit:DeciM2,
        unit:FT2,
        unit:HA,
        unit:IN2,
        unit:KiloM2,
        unit:KiloMIL_Circ,
        unit:M2,
        unit:MI2,
        unit:MIL_Circ,
        unit:MI_US2,
        unit:MicroM2,
        unit:MilliM2,
        unit:NanoM2,
        unit:PIXEL_AREA,
        unit:PlanckArea,
        unit:YD2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cross_section_(physics)"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Total Cross-section\" is related to the absorbance of the light intensity through Beer-Lambert's law. It is the sum of all cross-sections corresponding to the various reactions or processes between an incident particle of specified type and energy and a target particle."^^xsd:string ;
    qudt:symbol "σₜ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98206553> ;
    rdfs:comment "Applicable units are those of quantitykind:Area"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:CrossSection .

qudtqk:TotalPressure a qudt:QuantityKind ;
    rdfs:label "Total Pressure"@en ;
    dcterms:description " The total pressure is the sum of the dynamic and static pressures, that is $P_0 = P + q$."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:symbol "P_0"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:TotalRadiance a qudt:QuantityKind ;
    rdfs:label "total radiance"@en-us ;
    dcterms:description "ratio between the differential change in the energy fluence dΨ and the time interval dt: ψ = dΨ / dt; the total radiance is identical to the product of the particle flux density and the average energy of the particles"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:plainTextDescription "Quotient aus der differentiellen Änderung der Energiefluenz dΨ im Zeitintervall dt: ψ = dΨ / dt; die Energieflussdichte ist identisch mit dem Produkt der Teilchenflussdichte und der mittleren Teilchenenergie"@de ;
    qudt:symbol "0173-1#Z4-BAJ318#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TrafficIntensity a qudt:QuantityKind ;
    rdfs:label "traffic intensity"^^xsd:string,
        "traffic intensity"@en-us ;
    dcterms:description "number of all simultaneously occupied units in a particular group of units"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD205"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD205"^^xsd:anyURI ;
    qudt:plainTextDescription "Anzahl aller gleichzeitig belegten Einrichtungen in einer bestimmten Gruppe von einrichtungen"@de ;
    qudt:symbol "0173-1#Z4-BAJ462#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TransmissionRatioBetweenRotationAndTranslation a qudt:QuantityKind ;
    rdfs:label "transmission ratio between rotation and translation"@en-us ;
    dcterms:description "relationship between rotational and longitudinal movements as a measure of how an angle is converted into a linear path"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Zusammenhang zwischen Dreh- und Längsbewegung als Maß dafür, wie ein überstrichener Drehwinkel in eine lineare Wegstrecke umgesetzt wird"@de ;
    qudt:symbol "0173-1#Z4-BAJ400#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TrueExhaustVelocity a qudt:QuantityKind ;
    rdfs:label "True Exhaust Velocity"@en ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:symbol "u_{e}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:VaporPermeability a qudt:QuantityKind ;
    rdfs:label "Vapor Permeability"@en ;
    dcterms:description "The moisture transmission rate of a material is referred to as its \"permeability\"."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:VapourPermeability ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "https://users.encs.concordia.ca/~raojw/crd/essay/essay000287.html"^^xsd:anyURI,
        "https://www.designingbuildings.co.uk/wiki/Vapour_Permeability"^^xsd:anyURI ;
    qudt:plainTextDescription "The moisture transmission rate of a material is referred to as its \"permeability\"."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VaporPermeance a qudt:QuantityKind ;
    rdfs:label "Vapor Permeance"@en ;
    dcterms:description "A material's \"permeance\", is dependent on thickness much like the R-value in heat transmission. Dividing the permeability of a material by its thickness gives the material's permeance. Permeance is the number that should be used to compare various products in regard to moisture transmission resistance."^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:VapourPermeance ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:informativeReference "https://users.encs.concordia.ca/~raojw/crd/essay/essay000287.html"^^xsd:anyURI,
        "https://www.designingbuildings.co.uk/wiki/Vapour_Permeability"^^xsd:anyURI ;
    qudt:plainTextDescription "A material's \"permeance\", is dependent on thickness much like the R-value in heat transmission. Dividing the permeability of a material by its thickness gives the material's permeance. Permeance is the number that should be used to compare various products in regard to moisture transmission resistance."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VerticalVelocity a qudt:QuantityKind ;
    rdfs:label "Vertical Velocity"@en ;
    dcterms:description "The rate at which a body moves upwards at an angle of 90 degrees to the ground. It is the component of a projectile's velocity which is concerned with lifting the projectile."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "The rate at which a body moves upwards at an angle of 90 degrees to the ground. It is the component of a projectile's velocity which is concerned with lifting the projectile."^^xsd:string ;
    qudt:symbol "V_{Z}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:VisibleRadiantEnergy a qudt:QuantityKind ;
    rdfs:label "Visible Radiant Energy"@en ;
    dcterms:description "\"Visible Radiant Energy\", also known as luminous energy, is the energy of electromagnetic waves. It is energy of the particles that are emitted, transferred, or received as radiation."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31892"^^xsd:anyURI ;
    qudt:latexDefinition "Q"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Visible Radiant Energy\", also known as luminous energy, is the energy of electromagnetic waves. It is energy of the particles that are emitted, transferred, or received as radiation."^^xsd:string ;
    qudt:symbol "Q"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy ;
    skos:closeMatch qudtqk:LuminousEnergy .

qudtqk:VolumeDensityOfCharge a qudt:QuantityKind ;
    rdfs:label "volume density of charge"@en-us ;
    dcterms:description "volume density of the electric charge Q present in a volume V"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:plainTextDescription "räumliche Dichte der in einem Raumgebiet vom Volumen V enthaltenen elektrischen Ladung Q"@de ;
    qudt:symbol "0173-1#Z4-BAJ368#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumeFlowRate_SurfaceRelated a qudt:QuantityKind ;
    rdfs:label "surface‑related volume flow rate"^^xsd:string ;
    dcterms:isReplacedBy qudtqk:SurfaceRelatedVolumeFlowRate ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD183"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD183"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumeFlowRatio a qudt:QuantityKind ;
    rdfs:label "Volume Flow Ratio"@en ;
    dcterms:description """Volume flow ratio is commonly used in fluid dynamics and engineering, 
  referring to the ratio of the flow rates of two or more fluid streams within a system. In HVAC systems, 
  the flow ratio could compare the amount of fresh air introduced to the amount of recirculated air."""^^xsd:string ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription """Volume flow ratio is commonly used in fluid dynamics and engineering, 
  referring to the ratio of the flow rates of two or more fluid streams within a system. In HVAC systems, 
  the flow ratio could compare the amount of fresh air introduced to the amount of recirculated air."""^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:VolumeOrSectionModulus a qudt:QuantityKind ;
    rdfs:label "volume or section modulus"@en-us ;
    dcterms:description "domain completely enclosed by a surface, which can be determined for Cartesian coordinates by integration according to the following equation: V = ∫∫∫ dx dy dz or for a homogeneous material, it is the ratio of the moment of inertia and the distance to any point on the neutral axis at which the stress is to be calculated"@en ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:plainTextDescription "der von einer Oberfläche eingeschlossene gesamte Rauminhalt, der für kartesische Koordinaten durch Integration nach folgender Gleichung ermittelt werden kann: V = ∫∫∫ dx dy dz oder bei einem homogenen Werkstoff Quotient Trägheitsmoment dividiert durch den Abstand zu einem Punkt auf der neutralen Achse, bei dem die Belastung berechnet werden soll"@de ;
    qudt:symbol "0173-1#Z4-BAJ251#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumetricElectricCharge a qudt:QuantityKind ;
    rdfs:label "volumic electric charge"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD242"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD242"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumetricEntityDensity a qudt:QuantityKind ;
    rdfs:label "volumetric entity density"@en-us ;
    dcterms:description "quantity whose value is inversely proportional to the volume value"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Volumenwert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ377#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumetricOutputPower a qudt:QuantityKind ;
    rdfs:label "volumic output power"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD243"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD243"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumicAmountOfSubstance a qudt:QuantityKind ;
    rdfs:label "volumic amount of substance"@en-us ;
    dcterms:description "quantity proportional to the number of single particles of a defined type present in a given sample, divided by the related volume of this sample"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "Größe proportional der Anzahl von Einzelteilchen festgelegter Art, die in einer gegebenen Substanzprobe enthalten sind, dividiert durch das zugehörige Volumen dieser Substanzprobe"@de ;
    qudt:symbol "0173-1#Z4-BAJ402#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumicDataQuantity a qudt:QuantityKind ;
    rdfs:label "volumic data quantity"@en-us ;
    dcterms:description "amount of data, which is usually dependent on the respective complexity of the information or its coding procedure, divided by the related volume"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "Anzahl von Daten, die in der Regel abhängig von der jeweiligen Komplexität der Information oder deren Codierungsverfahren ist, dividiert durch das zugehörige Volumen"@de ;
    qudt:symbol "0173-1#Z4-BAJ401#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VolumicOutput a qudt:QuantityKind ;
    rdfs:label "volumic output"@en-us ;
    dcterms:description "ratio released power divided by volume"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:plainTextDescription "Quotient freigesetzte Wärmeleistung durch Volumen"@de ;
    qudt:symbol "0173-1#Z4-BAJ366#003"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Vorticity a qudt:QuantityKind ;
    rdfs:label "Vorticity"@en ;
    dcterms:description "In the simplest sense, vorticity is the tendency for elements of a fluid to \"spin.\" More formally, vorticity can be related to the amount of \"circulation\" or \"rotation\" (or more strictly, the local angular rate of rotation) in a fluid. The average vorticity in a small region of fluid flow is equal to the circulation C around the boundary of the small region, divided by the area A of the small region. Mathematically, vorticity is a vector field and is defined as the curl of the velocity field."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG-PER-HR,
        unit:DEG-PER-MIN,
        unit:DEG-PER-SEC,
        unit:PlanckFrequency_Ang,
        unit:RAD-PER-HR,
        unit:RAD-PER-MIN,
        unit:RAD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:latexSymbol "$\\omega$"^^qudt:LatexString ;
    qudt:plainTextDescription "In the simplest sense, vorticity is the tendency for elements of a fluid to \"spin.\" More formally, vorticity can be related to the amount of \"circulation\" or \"rotation\" (or more strictly, the local angular rate of rotation) in a fluid. The average vorticity in a small region of fluid flow is equal to the circulation C around the boundary of the small region, divided by the area A of the small region. Mathematically, vorticity is a vector field and is defined as the curl of the velocity field."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1143513> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularVelocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AngularVelocity .

qudtqk:WaterHorsepower a qudt:QuantityKind ;
    rdfs:label "Water Horsepower"@en ;
    dcterms:description "No pump can convert all of its mechanical power into water power. Mechanical power is lost in the pumping process due to friction losses and other physical losses. It is because of these losses that the horsepower going into the pump has to be greater than the water horsepower leaving the pump. The efficiency of any given pump is defined as the ratio of the water horsepower out of the pump compared to the mechanical horsepower into the pump."^^qudt:LatexString ;
    qudt:applicableUnit unit:BAR-L-PER-SEC,
        unit:BAR-M3-PER-SEC,
        unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-SEC,
        unit:ERG-PER-SEC,
        unit:ExaJ-PER-SEC,
        unit:ExaW,
        unit:FT-LB_F-PER-HR,
        unit:FT-LB_F-PER-MIN,
        unit:FT-LB_F-PER-SEC,
        unit:GigaJ-PER-HR,
        unit:GigaJ-PER-SEC,
        unit:GigaW,
        unit:HP,
        unit:HP_Boiler,
        unit:HP_Brake,
        unit:HP_Electric,
        unit:HP_H2O,
        unit:HP_Metric,
        unit:HectoPA-L-PER-SEC,
        unit:HectoPA-M3-PER-SEC,
        unit:J-PER-DAY,
        unit:J-PER-HR,
        unit:J-PER-MIN,
        unit:J-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloGM_F-M-PER-SEC,
        unit:KiloJ-PER-DAY,
        unit:KiloJ-PER-HR,
        unit:KiloJ-PER-MIN,
        unit:KiloJ-PER-SEC,
        unit:KiloW,
        unit:MegaBTU_IT-PER-HR,
        unit:MegaJ-PER-HR,
        unit:MegaJ-PER-SEC,
        unit:MegaPA-L-PER-SEC,
        unit:MegaPA-M3-PER-SEC,
        unit:MegaW,
        unit:MicroJ-PER-SEC,
        unit:MicroW,
        unit:MilliBAR-L-PER-SEC,
        unit:MilliBAR-M3-PER-SEC,
        unit:MilliJ-PER-SEC,
        unit:MilliW,
        unit:NanoJ-PER-SEC,
        unit:NanoW,
        unit:PA-L-PER-SEC,
        unit:PA-M3-PER-SEC,
        unit:PFERDESTAERKE,
        unit:PSI-IN3-PER-SEC,
        unit:PSI-L-PER-SEC,
        unit:PSI-M3-PER-SEC,
        unit:PSI-YD3-PER-SEC,
        unit:PetaJ-PER-SEC,
        unit:PetaW,
        unit:PicoJ-PER-SEC,
        unit:PicoW,
        unit:PlanckPower,
        unit:THM_US-PER-HR,
        unit:TON_FG,
        unit:TeraJ-PER-SEC,
        unit:TeraW,
        unit:TeraW-HR-PER-YR,
        unit:W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "https://pubs.nmsu.edu/_m/M227/index.html#:~:text=Water%20horsepower%20is%20the%20minimum,produce%20that%20flow%20are%20known."^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Power"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Power .

qudtqk:WaterVapourPermeability a qudt:QuantityKind ;
    rdfs:label "water vapour permeability"^^xsd:string,
        "water vapour permeability"@en-us ;
    dcterms:description "mass of water vapour passing a surface divided by the area of this surface, the pressure difference, and the corresponding time"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD244"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD244"^^xsd:anyURI ;
    qudt:plainTextDescription "Masse des durch eine Fläche hindurchtretenden Wasserdampfes, dividiert durch den Flächeninhalt dieser Fläche, die Druckdifferenz und die dazugehörige Zeit"@de ;
    qudt:symbol "0173-1#Z4-BAJ446#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Wavelength a qudt:QuantityKind ;
    rdfs:label "Vlnové délka"@cs,
        "Wellenlänge"@de,
        "wavelength"@en,
        "longitud de onda"@es,
        "طول موج"@fa,
        "longueur d'onde"@fr,
        "lunghezza d'onda"@it,
        "Jarak gelombang"@ms,
        "comprimento de onda"@pt,
        "длина волны"@ru,
        "dalga boyu"@tr,
        "波长"@zh ;
    dcterms:description "For a monochromatic wave, \"wavelength\" is the distance between two successive points in a direction perpendicular to the wavefront where at a given instant the phase differs by $2\\pi$. The wavelength of a sinusoidal wave is the spatial period of the wave—the distance over which the wave's shape repeats. The SI unit of wavelength is the meter."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Wavelength"^^xsd:anyURI ;
    qudt:latexDefinition "$\\lambda = \\frac{c}{\\nu}$, where $\\lambda$ is the wave length, $\\nu$ is the frequency, and $c$ is the speed of light in the medium."^^qudt:LatexString ;
    qudt:symbol "λ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q41364> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:Wavenumber a qudt:QuantityKind ;
    rdfs:label "عدد الموجة"@ar,
        "Vlnové číslo"@cs,
        "Repetenz"@de,
        "wavenumber"@en,
        "número de ola"@es,
        "عدد موج"@fa,
        "nombre d'onde"@fr,
        "numero d'onda"@it,
        "波数"@ja,
        "Bilangan gelombang"@ms,
        "Liczba falowa"@pl,
        "número de onda"@pt,
        "Волновое число"@ru,
        "valovno število"@sl,
        "dalga sayısı"@tr,
        "波数"@zh ;
    dcterms:description "\"Wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector. Light passing through different media keeps its frequency, but not its wavelength or wavenumber. The unit for wavenumber commonly used in spectroscopy is centimetre to power minus one, PER-CM, rather than metre to power minus one, PER-M."^^qudt:LatexString ;
    qudt:applicableUnit unit:KY,
        unit:M-PER-HA,
        unit:M-PER-M2,
        unit:MESH,
        unit:NUM-PER-M,
        unit:PER-ANGSTROM,
        unit:PER-CentiM,
        unit:PER-KiloM,
        unit:PER-M,
        unit:PER-MicroM,
        unit:PER-MilliM,
        unit:PER-NanoM,
        unit:PER-PicoM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Wavenumber"^^xsd:anyURI ;
    qudt:latexDefinition """$\\sigma = \\frac{\\nu}{c}$, where $\\sigma$ is the wave number, $\\nu$ is the frequency, and $c$ is the speed of light in the medium.

Or:

$k = \\frac{2\\pi}{\\lambda}= \\frac{2\\pi\\upsilon}{\\upsilon_p}=\\frac{\\omega}{\\upsilon_p}$, where $\\upsilon$ is the frequency of the wave, $\\lambda$ is the wavelength, $\\omega = 2\\pi \\upsilon$ is the angular frequency of the wave, and $\\upsilon_p$ is the phase velocity of the wave."""^^qudt:LatexString ;
    qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Wavenumber\" is the spatial frequency of a wave - the number of waves that exist over a specified distance. More formally, it is the reciprocal of the wavelength. It is also the magnitude of the wave vector. Light passing through different media keeps its frequency, but not its wavelength or wavenumber. The unit for wavenumber commonly used in spectroscopy is centimetre to power minus one, PER-CM, rather than metre to power minus one, PER-M."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/WANU> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q192510> ;
    rdfs:comment "Applicable units are those of quantitykind:InverseLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:AngularWavenumber ;
    skos:altLabel "Wellenzahl"@de ;
    skos:broader qudtqk:InverseLength .

qudtqk:WebTime a qudt:QuantityKind ;
    rdfs:label "Web Time"@en ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:WebTimeAveragePressure a qudt:QuantityKind ;
    rdfs:label "Web Time Average Pressure"@en ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:WebTimeAverageThrust a qudt:QuantityKind ;
    rdfs:label "Web Time Average Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string,
        "Web Time Avg Thrust (Mlbf)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Thrust .

qudtqk:WetBulbTemperature a qudt:QuantityKind ;
    rdfs:label "Wet Bulb Temperature"@en ;
    dcterms:description "The temperature of a parcel of air cooled to saturation (100% relative humidity) by the evaporation of water into it, with the latent heat supplied by the parcel."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:plainTextDescription "the temperature of a parcel of air cooled to saturation (100% relative humidity) by the evaporation of water into it, with the latent heat supplied by the parcel."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:Width a qudt:QuantityKind ;
    rdfs:label "Width"@en ;
    dcterms:description "\"Width\" is the middle of three dimensions: length, width, thickness."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "\"Width\" is the middle of three dimensions: length, width, thickness."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q35059> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:WorkFunction a qudt:QuantityKind ;
    rdfs:label "Work Function"@en ;
    dcterms:description "\"Work Function\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The minimum energy (usually measured in electronvolts) needed to remove an electron from a solid to a point immediately outside the solid surface (or energy needed to move an electron from the Fermi level into vacuum)."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Work_function"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Phi$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Work Function\" is the energy difference between an electron at rest at infinity and an electron at a certain energy level. The minimum energy (usually measured in electronvolts) needed to remove an electron from a solid to a point immediately outside the solid surface (or energy needed to move an electron from the Fermi level into vacuum)."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q783800> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

<http://qudt.org/vocab/soqk/CGS> a qudt:SystemOfQuantityKinds ;
    rdfs:label "CGS System of Quantity Kinds"^^xsd:string ;
    qudt:hasBaseQuantityKind qudtqk:Dimensionless,
        qudtqk:Length,
        qudtqk:Mass,
        qudtqk:Time ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:systemDerivedQuantityKind qudtqk:AngularAcceleration,
        qudtqk:AngularMomentum,
        qudtqk:AngularVelocity,
        qudtqk:Area,
        qudtqk:AreaAngle,
        qudtqk:AreaTime,
        qudtqk:Curvature,
        qudtqk:Density,
        qudtqk:DynamicViscosity,
        qudtqk:Energy,
        qudtqk:EnergyDensity,
        qudtqk:EnergyPerArea,
        qudtqk:Force,
        qudtqk:ForcePerArea,
        qudtqk:ForcePerLength,
        qudtqk:Frequency,
        qudtqk:LengthMass,
        qudtqk:LinearAcceleration,
        qudtqk:LinearMomentum,
        qudtqk:LinearVelocity,
        qudtqk:MassPerArea,
        qudtqk:MassPerLength,
        qudtqk:MassPerTime,
        qudtqk:MomentOfInertia,
        qudtqk:Power,
        qudtqk:PowerPerArea,
        qudtqk:PowerPerAreaAngle,
        qudtqk:Pressure,
        qudtqk:RadiantIntensity,
        qudtqk:SpecificEnergy,
        qudtqk:SquareTime,
        qudtqk:Stress,
        qudtqk:Torque,
        qudtqk:Volume,
        qudtqk:VolumePerTime ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/CGS-EMU> a qudt:SystemOfQuantityKinds ;
    rdfs:label "CGS-EMU System of Quantity Kinds"^^xsd:string ;
    dcterms:description "The electromagnetic system of units is used to measure electrical quantities of electric charge, current, and voltage, within the centimeter gram second (or \"CGS\") metric system of units. In electromagnetic units, electric current is derived the CGS base units length, mass, and time by solving Ampere's Law (expressing the force between two parallel conducting wires) for current and setting the constant of proportionality (k_m) equal to unity. Thus, in the CGS-EMU system, electric current is derived from length, mass, and time."^^rdf:HTML ;
    qudt:hasBaseQuantityKind qudtqk:Dimensionless,
        qudtqk:Length,
        qudtqk:Mass,
        qudtqk:Time ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:systemDerivedQuantityKind qudtqk:AuxillaryMagneticField,
        qudtqk:Capacitance,
        qudtqk:ElectricCharge,
        qudtqk:ElectricConductivity,
        qudtqk:ElectricCurrent,
        qudtqk:ElectricCurrentDensity,
        qudtqk:ElectricCurrentPerLength,
        qudtqk:ElectricDipoleMoment,
        qudtqk:ElectricDisplacementField,
        qudtqk:ElectricField,
        qudtqk:ElectricFlux,
        qudtqk:ElectricPotential,
        qudtqk:ElectromotiveForce,
        qudtqk:EnergyPerElectricCharge,
        qudtqk:Inductance,
        qudtqk:LengthPerElectricCurrent,
        qudtqk:MagneticDipoleMoment,
        qudtqk:MagneticField,
        qudtqk:MagneticFlux,
        qudtqk:MagneticFluxPerLength,
        qudtqk:MagnetizationField,
        qudtqk:MagnetomotiveForce,
        qudtqk:Permeability,
        qudtqk:Permittivity,
        qudtqk:Resistance ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/CGS-ESU> a qudt:SystemOfQuantityKinds ;
    rdfs:label "CGS-ESU System of Quantity Kinds"^^xsd:string ;
    dcterms:description "The electrostatic system of units is used to measure electrical quantities of electric charge, current, and voltage within the centimeter gram second (or \"CGS\") metric system of units. In electrostatic units, electric charge is derived from Coulomb's Law (expressing the force exerted between two charged particles separated by a distance) by solving for electric charge and setting the constant of proportionality (k_s) equal to unity. Thus, in electrostatic units, the dimensionality of electric charge is derived from the base CGS quantities of length, mass, and time."^^rdf:HTML ;
    qudt:hasBaseQuantityKind qudtqk:Dimensionless,
        qudtqk:Length,
        qudtqk:Mass,
        qudtqk:Time ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:systemDerivedQuantityKind qudtqk:AuxillaryMagneticField,
        qudtqk:Capacitance,
        qudtqk:ElectricCharge,
        qudtqk:ElectricCurrent,
        qudtqk:ElectricCurrentDensity,
        qudtqk:ElectricCurrentPerLength,
        qudtqk:ElectricDipoleMoment,
        qudtqk:ElectricDisplacementField,
        qudtqk:ElectricField,
        qudtqk:ElectricFlux,
        qudtqk:ElectricPotential,
        qudtqk:ElectromotiveForce,
        qudtqk:EnergyPerElectricCharge,
        qudtqk:Inductance,
        qudtqk:LengthPerElectricCurrent,
        qudtqk:MagneticDipoleMoment,
        qudtqk:MagneticField,
        qudtqk:MagneticFlux,
        qudtqk:MagneticFluxPerLength,
        qudtqk:MagnetizationField,
        qudtqk:MagnetomotiveForce,
        qudtqk:Permeability,
        qudtqk:Permittivity,
        qudtqk:Resistance ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/CGS-Gauss> a qudt:SystemOfQuantityKinds ;
    rdfs:label "CGS-Gauss System of Quantity Kinds"^^xsd:string ;
    qudt:hasBaseQuantityKind qudtqk:Dimensionless,
        qudtqk:Length,
        qudtqk:Mass,
        qudtqk:Time ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:hasUnitSystem <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:systemDerivedQuantityKind qudtqk:AuxillaryMagneticField,
        qudtqk:Capacitance,
        qudtqk:ElectricCharge,
        qudtqk:ElectricCurrent,
        qudtqk:ElectricCurrentDensity,
        qudtqk:ElectricCurrentPerLength,
        qudtqk:ElectricDipoleMoment,
        qudtqk:ElectricDisplacementField,
        qudtqk:ElectricField,
        qudtqk:ElectricFlux,
        qudtqk:ElectricPotential,
        qudtqk:ElectromotiveForce,
        qudtqk:EnergyPerElectricCharge,
        qudtqk:Inductance,
        qudtqk:LengthPerElectricCurrent,
        qudtqk:MagneticDipoleMoment,
        qudtqk:MagneticField,
        qudtqk:MagneticFlux,
        qudtqk:MagneticFluxPerLength,
        qudtqk:MagnetizationField,
        qudtqk:Permeability,
        qudtqk:Permittivity,
        qudtqk:Resistance ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/IMPERIAL> a qudt:SystemOfQuantityKinds ;
    rdfs:label "Imperial System of Quantity Kinds"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration,
        qudtqk:AngularVelocity,
        qudtqk:Area,
        qudtqk:AreaTemperature,
        qudtqk:AreaTime,
        qudtqk:AreaTimeTemperature,
        qudtqk:CoefficientOfHeatTransfer,
        qudtqk:Density,
        qudtqk:DynamicViscosity,
        qudtqk:Energy,
        qudtqk:EnergyPerArea,
        qudtqk:Force,
        qudtqk:ForcePerArea,
        qudtqk:ForcePerLength,
        qudtqk:HeatCapacity,
        qudtqk:HeatFlowRate,
        qudtqk:KinematicViscosity,
        qudtqk:Length,
        qudtqk:LinearAcceleration,
        qudtqk:LinearVelocity,
        qudtqk:LiquidVolume,
        qudtqk:Mass,
        qudtqk:MassPerArea,
        qudtqk:MassPerLength,
        qudtqk:MassPerTime,
        qudtqk:MassTemperature,
        qudtqk:MolarHeatCapacity,
        qudtqk:Power,
        qudtqk:PowerPerArea,
        qudtqk:SpecificEnergy,
        qudtqk:SpecificHeatCapacity,
        qudtqk:ThermalConductivity,
        qudtqk:ThermalDiffusivity,
        qudtqk:ThermalEnergy,
        qudtqk:ThermalEnergyLength,
        qudtqk:ThermalInsulance,
        qudtqk:ThermalResistance,
        qudtqk:ThermalResistivity,
        qudtqk:ThermodynamicTemperature,
        qudtqk:ThrustToMassRatio,
        qudtqk:Time,
        qudtqk:Torque,
        qudtqk:Volume,
        qudtqk:VolumePerTime ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/ISQ> a qudt:SystemOfQuantityKinds ;
    rdfs:label "ISO System of Quantity Kinds (ISQ)"^^xsd:string ;
    dcterms:description "The ISO 80000 standards were prepared by Technical Committee ISO/TC 12, Quantities and units in co-operation with IEC/TC 25, Quantities and units."^^rdf:HTML ;
    qudt:hasBaseQuantityKind qudtqk:AmountOfSubstance,
        qudtqk:ElectricCurrent,
        qudtqk:Length,
        qudtqk:LuminousIntensity,
        qudtqk:Mass,
        qudtqk:ThermodynamicTemperature,
        qudtqk:Time ;
    qudt:hasQuantityKind qudtqk:Absorptance,
        qudtqk:AcousticImpedance,
        qudtqk:Action,
        qudtqk:ActivePower,
        qudtqk:ActivityThresholds,
        qudtqk:Adaptation,
        qudtqk:Admittance,
        qudtqk:AngularFrequency,
        qudtqk:AngularImpulse,
        qudtqk:AngularWavenumber,
        qudtqk:ApparentPower,
        qudtqk:AuditoryThresholds,
        qudtqk:BendingMomentOfForce,
        qudtqk:Breadth,
        qudtqk:BulkModulus,
        qudtqk:Capacitance,
        qudtqk:CartesianCoordinates,
        qudtqk:CartesianVolume,
        qudtqk:CelsiusTemperature,
        qudtqk:CoefficientOfHeatTransfer,
        qudtqk:Coercivity,
        qudtqk:ColdReceptorThreshold,
        qudtqk:CombinedNonEvaporativeHeatTransferCoefficient,
        qudtqk:Compressibility,
        qudtqk:CompressibilityFactor,
        qudtqk:Conductance,
        qudtqk:ConductionSpeed,
        qudtqk:ConductiveHeatTransferRate,
        qudtqk:Conductivity,
        qudtqk:ConvectiveHeatTransfer,
        qudtqk:CouplingFactor,
        qudtqk:CubicExpansionCoefficient,
        qudtqk:CurrentLinkage,
        qudtqk:CurvatureFromRadius,
        qudtqk:DewPointTemperature,
        qudtqk:Diameter,
        qudtqk:Displacement,
        qudtqk:DisplacementCurrent,
        qudtqk:DisplacementCurrentDensity,
        qudtqk:Distance,
        qudtqk:DynamicFriction,
        qudtqk:Efficiency,
        qudtqk:EinsteinTransitionProbability,
        qudtqk:ElectricCharge,
        qudtqk:ElectricChargeDensity,
        qudtqk:ElectricChargeLinearDensity,
        qudtqk:ElectricChargeSurfaceDensity,
        qudtqk:ElectricChargeVolumeDensity,
        qudtqk:ElectricCurrent,
        qudtqk:ElectricCurrentDensity,
        qudtqk:ElectricCurrentPhasor,
        qudtqk:ElectricDipoleMoment,
        qudtqk:ElectricDisplacement,
        qudtqk:ElectricFieldStrength,
        qudtqk:ElectricFlux,
        qudtqk:ElectricFluxDensity,
        qudtqk:ElectricPolarization,
        qudtqk:ElectricPotential,
        qudtqk:ElectricPotentialDifference,
        qudtqk:ElectricSusceptibility,
        qudtqk:ElectromagneticEnergyDensity,
        qudtqk:ElectromagneticWavePhaseSpeed,
        qudtqk:Emissivity,
        qudtqk:Energy,
        qudtqk:EnergyDensity,
        qudtqk:Entropy,
        qudtqk:EvaporativeHeatTransfer,
        qudtqk:EvaporativeHeatTransferCoefficient,
        qudtqk:Force,
        qudtqk:ForcePerAreaTime,
        qudtqk:ForcePerLength,
        qudtqk:Friction,
        qudtqk:GeneralizedCoordinate,
        qudtqk:GeneralizedForce,
        qudtqk:GeneralizedMomentum,
        qudtqk:GeneralizedVelocity,
        qudtqk:GibbsEnergy,
        qudtqk:GravitationalAttraction,
        qudtqk:GustatoryThreshold,
        qudtqk:HamiltonFunction,
        qudtqk:HeatCapacity,
        qudtqk:HeatCapacityRatio,
        qudtqk:HeatFlowRate,
        qudtqk:HeatFlowRatePerArea,
        qudtqk:HelmholtzEnergy,
        qudtqk:Impedance,
        qudtqk:Inductance,
        qudtqk:InstantaneousPower,
        qudtqk:InverseEnergy,
        qudtqk:InverseSquareEnergy,
        qudtqk:IsentropicCompressibility,
        qudtqk:IsentropicExponent,
        qudtqk:IsothermalCompressibility,
        qudtqk:LagrangeFunction,
        qudtqk:LeakageFactor,
        qudtqk:LengthByForce,
        qudtqk:LinearAbsorptionCoefficient,
        qudtqk:LinearAttenuationCoefficient,
        qudtqk:LinearElectricCurrentDensity,
        qudtqk:LinearExpansionCoefficient,
        qudtqk:LinearMomentum,
        qudtqk:LinearStrain,
        qudtqk:LogarithmicFrequencyInterval,
        qudtqk:LossFactor,
        qudtqk:LuminousEmittance,
        qudtqk:LuminousIntensity,
        qudtqk:MagneticAreaMoment,
        qudtqk:MagneticDipoleMoment,
        qudtqk:MagneticFlux,
        qudtqk:MagneticFluxDensity,
        qudtqk:MagneticMoment,
        qudtqk:MagneticPolarization,
        qudtqk:MagneticSusceptability,
        qudtqk:MagneticTension,
        qudtqk:MagneticVectorPotential,
        qudtqk:Magnetization,
        qudtqk:MagnetomotiveForce,
        qudtqk:MassAbsorptionCoefficient,
        qudtqk:MassAttenuationCoefficient,
        qudtqk:MassConcentrationOfWater,
        qudtqk:MassConcentrationOfWaterVapour,
        qudtqk:MassFlowRate,
        qudtqk:MassFractionOfDryMatter,
        qudtqk:MassFractionOfWater,
        qudtqk:MassPerArea,
        qudtqk:MassPerAreaTime,
        qudtqk:MassPerLength,
        qudtqk:MassPerTime,
        qudtqk:MassRatioOfWaterToDryMatter,
        qudtqk:MassRatioOfWaterVapourToDryGas,
        qudtqk:MassicActivity,
        qudtqk:MassieuFunction,
        qudtqk:MechanicalEnergy,
        qudtqk:MechanicalSurfaceImpedance,
        qudtqk:ModulusOfAdmittance,
        qudtqk:ModulusOfElasticity,
        qudtqk:ModulusOfImpedance,
        qudtqk:MolarAbsorptionCoefficient,
        qudtqk:MolarAngularMomentum,
        qudtqk:MomentOfInertia,
        qudtqk:Momentum,
        qudtqk:MutualInductance,
        qudtqk:NapierianAbsorbance,
        qudtqk:NonActivePower,
        qudtqk:NormalStress,
        qudtqk:OlfactoryThreshold,
        qudtqk:PathLength,
        qudtqk:Permeability,
        qudtqk:Permeance,
        qudtqk:Permittivity,
        qudtqk:PermittivityRatio,
        qudtqk:PhaseCoefficient,
        qudtqk:PhaseDifference,
        qudtqk:PhaseSpeedOfSound,
        qudtqk:PhotoThresholdOfAwarenessFunction,
        qudtqk:PlanckFunction,
        qudtqk:PoissonRatio,
        qudtqk:PolarMomentOfInertia,
        qudtqk:PositionVector,
        qudtqk:Power,
        qudtqk:PowerArea,
        qudtqk:PowerAreaPerSolidAngle,
        qudtqk:PowerFactor,
        qudtqk:PowerPerArea,
        qudtqk:PowerPerAreaAngle,
        qudtqk:PoyntingVector,
        qudtqk:Pressure,
        qudtqk:PressureCoefficient,
        qudtqk:PropagationCoefficient,
        qudtqk:QualityFactor,
        qudtqk:RadialDistance,
        qudtqk:Radiance,
        qudtqk:RadianceFactor,
        qudtqk:RadiantEnergyDensity,
        qudtqk:RadiantFluence,
        qudtqk:RadiantFlux,
        qudtqk:RadiantIntensity,
        qudtqk:RadiativeHeatTransfer,
        qudtqk:Radiosity,
        qudtqk:Radius,
        qudtqk:RadiusOfCurvature,
        qudtqk:RatioOfSpecificHeatCapacities,
        qudtqk:Reactance,
        qudtqk:ReactivePower,
        qudtqk:Reflectance,
        qudtqk:ReflectanceFactor,
        qudtqk:RefractiveIndex,
        qudtqk:RelativeHumidity,
        qudtqk:RelativeMassConcentrationOfVapour,
        qudtqk:RelativeMassRatioOfVapour,
        qudtqk:RelativePartialPressure,
        qudtqk:RelativePressureCoefficient,
        qudtqk:Reluctance,
        qudtqk:Resistance,
        qudtqk:Resistivity,
        qudtqk:ScalarMagneticPotential,
        qudtqk:SecondAxialMomentOfArea,
        qudtqk:SecondPolarMomentOfArea,
        qudtqk:SectionModulus,
        qudtqk:ShearModulus,
        qudtqk:ShearStrain,
        qudtqk:ShearStress,
        qudtqk:SoundEnergyDensity,
        qudtqk:SoundExposure,
        qudtqk:SoundExposureLevel,
        qudtqk:SoundParticleAcceleration,
        qudtqk:SoundParticleVelocity,
        qudtqk:SoundPower,
        qudtqk:SoundPowerLevel,
        qudtqk:SoundPressureLevel,
        qudtqk:SoundReductionIndex,
        qudtqk:SoundVolumeVelocity,
        qudtqk:SourceVoltage,
        qudtqk:SpecificEnergy,
        qudtqk:SpecificEnthalpy,
        qudtqk:SpecificEntropy,
        qudtqk:SpecificGibbsEnergy,
        qudtqk:SpecificHeatCapacity,
        qudtqk:SpecificHeatCapacityAtConstantPressure,
        qudtqk:SpecificHeatCapacityAtConstantVolume,
        qudtqk:SpecificHeatCapacityAtSaturation,
        qudtqk:SpecificHelmholtzEnergy,
        qudtqk:SpecificImpulseByMass,
        qudtqk:SpecificImpulseByWeight,
        qudtqk:SpecificInternalEnergy,
        qudtqk:SpecificVolume,
        qudtqk:SpectralLuminousEfficiency,
        qudtqk:SpeedOfLight,
        qudtqk:SpeedOfSound,
        qudtqk:SphericalIlluminance,
        qudtqk:SquareEnergy,
        qudtqk:StandardGravitationalParameter,
        qudtqk:StaticFriction,
        qudtqk:Susceptance,
        qudtqk:TemporalSummationFunction,
        qudtqk:ThermalConductance,
        qudtqk:ThermalConductivity,
        qudtqk:ThermalDiffusivity,
        qudtqk:ThermalInsulance,
        qudtqk:ThermalResistance,
        qudtqk:ThermodynamicEnergy,
        qudtqk:Thickness,
        qudtqk:Thrust,
        qudtqk:ThrustToMassRatio,
        qudtqk:Torque,
        qudtqk:TotalCurrent,
        qudtqk:TotalCurrentDensity,
        qudtqk:TouchThresholds,
        qudtqk:Transmittance,
        qudtqk:TransmittanceDensity,
        qudtqk:Turns,
        qudtqk:VisionThresholds,
        qudtqk:Voltage,
        qudtqk:VoltagePhasor,
        qudtqk:VolumeFlowRate,
        qudtqk:VolumeStrain,
        qudtqk:VolumicElectromagneticEnergy,
        qudtqk:WarmReceptorThreshold,
        qudtqk:Weight,
        qudtqk:Work ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=112-02-01"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_tc_browse.htm?commid=46202"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/Planck> a qudt:SystemOfQuantityKinds ;
    rdfs:label "Planck System of Quantities"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:Length ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/SI> a qudt:SystemOfQuantityKinds ;
    rdfs:label "International System of Quantity Kinds"^^xsd:string ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/International_System_of_UnitsX"^^xsd:anyURI ;
    qudt:hasBaseQuantityKind qudtqk:AmountOfSubstance,
        qudtqk:Dimensionless,
        qudtqk:ElectricCurrent,
        qudtqk:Length,
        qudtqk:LuminousIntensity,
        qudtqk:Mass,
        qudtqk:ThermodynamicTemperature,
        qudtqk:Time ;
    qudt:systemDerivedQuantityKind qudtqk:AbsorbedDose,
        qudtqk:AbsorbedDoseRate,
        qudtqk:Activity,
        qudtqk:AmountOfSubstancePerMass,
        qudtqk:AmountOfSubstancePerVolume,
        qudtqk:AngularAcceleration,
        qudtqk:AngularMomentum,
        qudtqk:AngularVelocity,
        qudtqk:Area,
        qudtqk:AreaAngle,
        qudtqk:AreaPerTime,
        qudtqk:AreaTemperature,
        qudtqk:AreaThermalExpansion,
        qudtqk:AreaTime,
        qudtqk:AuxillaryMagneticField,
        qudtqk:Capacitance,
        qudtqk:CatalyticActivity,
        qudtqk:CoefficientOfHeatTransfer,
        qudtqk:CubicElectricDipoleMomentPerSquareEnergy,
        qudtqk:Density,
        qudtqk:DoseEquivalent,
        qudtqk:DynamicViscosity,
        qudtqk:ElectricCharge,
        qudtqk:ElectricChargeLineDensity,
        qudtqk:ElectricChargePerAmountOfSubstance,
        qudtqk:ElectricChargePerArea,
        qudtqk:ElectricChargePerMass,
        qudtqk:ElectricChargeVolumeDensity,
        qudtqk:ElectricConductivity,
        qudtqk:ElectricCurrentDensity,
        qudtqk:ElectricCurrentPerAngle,
        qudtqk:ElectricCurrentPerEnergy,
        qudtqk:ElectricDipoleMoment,
        qudtqk:ElectricDisplacement,
        qudtqk:ElectricFieldStrength,
        qudtqk:ElectricFlux,
        qudtqk:ElectricPotential,
        qudtqk:ElectricQuadrupoleMoment,
        qudtqk:ElectromotiveForce,
        qudtqk:Energy,
        qudtqk:EnergyDensity,
        qudtqk:EnergyPerArea,
        qudtqk:EnergyPerAreaElectricCharge,
        qudtqk:EnergyPerElectricCharge,
        qudtqk:EnergyPerSquareMagneticFluxDensity,
        qudtqk:Exposure,
        qudtqk:Force,
        qudtqk:ForcePerArea,
        qudtqk:ForcePerAreaTime,
        qudtqk:ForcePerElectricCharge,
        qudtqk:ForcePerLength,
        qudtqk:Frequency,
        qudtqk:GravitationalAttraction,
        qudtqk:HeatCapacity,
        qudtqk:HeatFlowRate,
        qudtqk:HeatFlowRatePerArea,
        qudtqk:Illuminance,
        qudtqk:Inductance,
        qudtqk:InverseAmountOfSubstance,
        qudtqk:InverseEnergy,
        qudtqk:InverseLength,
        qudtqk:InverseLengthTemperature,
        qudtqk:InverseMagneticFlux,
        qudtqk:InversePermittivity,
        qudtqk:InverseSquareEnergy,
        qudtqk:InverseTimeTemperature,
        qudtqk:InverseVolume,
        qudtqk:KinematicViscosity,
        qudtqk:LengthEnergy,
        qudtqk:LengthMass,
        qudtqk:LengthMolarEnergy,
        qudtqk:LengthPerElectricCurrent,
        qudtqk:LengthTemperature,
        qudtqk:LinearAcceleration,
        qudtqk:LinearElectricCurrent,
        qudtqk:LinearMomentum,
        qudtqk:LinearThermalExpansion,
        qudtqk:LinearVelocity,
        qudtqk:Luminance,
        qudtqk:LuminousEfficacy,
        qudtqk:LuminousEnergy,
        qudtqk:LuminousFlux,
        qudtqk:LuminousFluxPerArea,
        qudtqk:MagneticDipoleMoment,
        qudtqk:MagneticFlux,
        qudtqk:MagneticFluxDensity,
        qudtqk:MagneticFluxPerLength,
        qudtqk:MagneticReluctivity,
        qudtqk:Magnetization,
        qudtqk:MagnetomotiveForce,
        qudtqk:MassPerArea,
        qudtqk:MassPerAreaTime,
        qudtqk:MassPerElectricCharge,
        qudtqk:MassPerLength,
        qudtqk:MassPerTime,
        qudtqk:MassTemperature,
        qudtqk:MolarAngularMomentum,
        qudtqk:MolarEnergy,
        qudtqk:MolarHeatCapacity,
        qudtqk:MolarMass,
        qudtqk:MolarVolume,
        qudtqk:MomentOfInertia,
        qudtqk:Permeability,
        qudtqk:Permittivity,
        qudtqk:PlaneAngle,
        qudtqk:Polarizability,
        qudtqk:PolarizationField,
        qudtqk:Power,
        qudtqk:PowerArea,
        qudtqk:PowerAreaPerSolidAngle,
        qudtqk:PowerPerArea,
        qudtqk:PowerPerAreaAngle,
        qudtqk:PowerPerAreaQuarticTemperature,
        qudtqk:PowerPerElectricCharge,
        qudtqk:QuarticElectricDipoleMomentPerCubicEnergy,
        qudtqk:RadiantIntensity,
        qudtqk:Resistance,
        qudtqk:SolidAngle,
        qudtqk:SpecificEnergy,
        qudtqk:SpecificHeatCapacity,
        qudtqk:SpecificHeatPressure,
        qudtqk:SpecificHeatVolume,
        qudtqk:SpecificImpulseByMass,
        qudtqk:SpecificVolume,
        qudtqk:SquareEnergy,
        qudtqk:SquareTime,
        qudtqk:StandardGravitationalParameter,
        qudtqk:Stress,
        qudtqk:TemperatureAmountOfSubstance,
        qudtqk:TemperaturePerMagneticFluxDensity,
        qudtqk:TemperaturePerTime,
        qudtqk:ThermalConductivity,
        qudtqk:ThermalDiffusivity,
        qudtqk:ThermalInsulance,
        qudtqk:ThermalResistance,
        qudtqk:ThermalResistivity,
        qudtqk:ThrustToMassRatio,
        qudtqk:TimeTemperature,
        qudtqk:Torque,
        qudtqk:Volume,
        qudtqk:VolumePerTime,
        qudtqk:VolumeThermalExpansion,
        qudtqk:VolumetricHeatCapacity ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/soqk/USCS> a qudt:SystemOfQuantityKinds ;
    rdfs:label "US Customary System of Quantity Kinds"^^xsd:string ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration,
        qudtqk:AngularVelocity,
        qudtqk:Area,
        qudtqk:AreaTemperature,
        qudtqk:AreaTime,
        qudtqk:AreaTimeTemperature,
        qudtqk:CoefficientOfHeatTransfer,
        qudtqk:Density,
        qudtqk:DynamicViscosity,
        qudtqk:EnergyPerArea,
        qudtqk:Force,
        qudtqk:ForcePerArea,
        qudtqk:ForcePerLength,
        qudtqk:HeatCapacity,
        qudtqk:HeatFlowRate,
        qudtqk:KinematicViscosity,
        qudtqk:Length,
        qudtqk:LinearAcceleration,
        qudtqk:LinearVelocity,
        qudtqk:LiquidVolume,
        qudtqk:Mass,
        qudtqk:MassPerArea,
        qudtqk:MassPerLength,
        qudtqk:MassPerTime,
        qudtqk:MassTemperature,
        qudtqk:MolarHeatCapacity,
        qudtqk:Power,
        qudtqk:PowerPerArea,
        qudtqk:SpecificEnergy,
        qudtqk:SpecificHeatCapacity,
        qudtqk:ThermalConductivity,
        qudtqk:ThermalDiffusivity,
        qudtqk:ThermalEnergy,
        qudtqk:ThermalEnergyLength,
        qudtqk:ThermalInsulance,
        qudtqk:ThermalResistance,
        qudtqk:ThermalResistivity,
        qudtqk:ThermodynamicTemperature,
        qudtqk:ThrustToMassRatio,
        qudtqk:Time,
        qudtqk:Torque,
        qudtqk:Volume,
        qudtqk:VolumePerTime ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/soqk> .

<http://qudt.org/vocab/sou/UNSTATED> a qudt:SystemOfUnits ;
    rdfs:label "Unstated System Of Units"@en ;
    dcterms:description "This placeholder system of units is for all units that do not fit will into any other system of units as modeled here."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/sou> .

unit:2PiRAD a qudt:Unit ;
    rdfs:label "2pirad"^^xsd:string,
        "2pirad"@en ;
    dcterms:isReplacedBy unit:REV ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Angle,
        qudtqk:PlaneAngle ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CHF-PER-KiloGM a qudt:Unit ;
    rdfs:label "Swiss Francs per KiloGram"^^xsd:string,
        "Swiss Francs per KiloGram"@en ;
    dcterms:isReplacedBy unit:CCY_CHF-PER-KiloGM ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CHF ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:CostPerMass ;
    qudt:plainTextDescription "Unit for measuring the hardware cost of substance or material"^^xsd:string ;
    qudt:symbol "CHF/kg"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Ci a qudt:Unit ;
    rdfs:label "Curie"^^xsd:string,
        "Curie"@en ;
    dcterms:description "The curie (symbol Ci) is a non-SI unit of radioactivity, named after Marie and Pierre Curie. It is defined as $1Ci = 3.7 \\times 10^{10} decays\\ per\\ second$. Its continued use is discouraged. One Curie is roughly the activity of 1 gram of the radium isotope Ra, a substance studied by the Curies. The SI derived unit of radioactivity is the becquerel (Bq), which equates to one decay per second. Therefore: $1Ci = 3.7 \\times 10^{10} Bq= 37 GBq$ and $1Bq \\equiv 2.703 \\times 10^{-11}Ci $."^^qudt:LatexString ;
    dcterms:isReplacedBy unit:CI ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000000000.0 ;
    qudt:conversionMultiplierSN 3.7e+10 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAA138"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA138"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/curie> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "Ci"^^xsd:string ;
    qudt:ucumCode "Ci"^^qudt:UCUMcs ;
    qudt:udunitsCode "Ci"^^xsd:string ;
    qudt:uneceCommonCode "CUR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q229354> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Debye a qudt:Unit ;
    rdfs:label "Debye"^^xsd:string,
        "Debye"@en ;
    dcterms:description "\"Debye\" is a C.G.S System unit for  'Electric Dipole Moment' expressed as $D$."^^qudt:LatexString ;
    dcterms:isReplacedBy unit:DEBYE ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00000000000000000000000000000333564 ;
    qudt:conversionMultiplierSN 3.33564e-30 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Debye"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:ElectricDipoleMoment ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Debye?oldid=492149112"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/debye> ;
    qudt:scalingOf unit:C-M ;
    qudt:symbol "D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q40603> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Denier a qudt:Unit ;
    rdfs:label "Denier"^^xsd:string,
        "Denier"@en ;
    dcterms:description "Denier or den is a unit of measure for the linear mass density of fibers. It is defined as the mass in grams per 9,000 meters. In the International System of Units the tex is used instead (see below). The denier is based on a natural standard: a single strand of silk is approximately one denier. A 9,000-meter strand of silk weighs about one gram. The term denier is from the French denier, a coin of small value (worth 1/12 of a sou). Applied to yarn, a denier was held to be equal in weight to 1/24 of an ounce. The term microdenier is used to describe filaments that weigh less than one gram per 9,000 meter length."^^rdf:HTML ;
    dcterms:isReplacedBy unit:DENIER ;
    qudt:conversionMultiplier 0.00000011 ;
    qudt:conversionMultiplierSN 1.1e-07 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Denier"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAB244"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Denier?oldid=463382291"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Units_of_textile_measurement#Denier"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB244"^^xsd:anyURI ;
    qudt:scalingOf unit:GM-PER-MilliM ;
    qudt:symbol "D"^^xsd:string ;
    qudt:ucumCode "[den]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A49"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaV-A a qudt:Unit ;
    rdfs:label "Exavolt Ampere"^^xsd:string,
        "Exavolt Ampér"@cs,
        "Exavolt Ampere"@de,
        "Exavolt Ampere"@en,
        "Exavoltio Amperio"@es,
        "Exavolt Ampère"@fr,
        "Exavolt Ampere"@it,
        "Exavolt Ampere"@ms,
        "Exawolt Amper"@pl,
        "Exavolt Amper"@ro,
        "Exavolt Amper"@sl,
        "Exavolt Amper"@tr ;
    dcterms:description "1,000,000,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:ExaVA ;
    qudt:conversionMultiplier 1000000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+18 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ExaV ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB537"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB537"^^xsd:anyURI ;
    qudt:symbol "EV·A"^^xsd:string ;
    qudt:ucumCode "EV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FUR_Long a qudt:Unit ;
    rdfs:label "Long Furlong"^^xsd:string,
        "Long Furlong"@en ;
    dcterms:isReplacedBy unit:FUR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:expression "$longfur$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:Length ;
    qudt:symbol "furlong{long}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Gamma a qudt:Unit ;
    rdfs:label "Gamma"^^xsd:string,
        "Gamma"@en ;
    dcterms:description "\"Gamma\" is a C.G.S System unit for  'Magnetic Field'."^^rdf:HTML ;
    dcterms:isReplacedBy unit:GAMMA ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gamma"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:hasQuantityKind qudtqk:MagneticField,
        qudtqk:MagneticFluxDensity ;
    qudt:iec61360Code "0112/2///62720#UAB213"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gamma?oldid=494680973"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB213"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gamma> ;
    qudt:scalingOf unit:T ;
    qudt:symbol "γ"^^xsd:string ;
    qudt:uneceCommonCode "P12"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1493191> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaV-A a qudt:Unit ;
    rdfs:label "Gigavolt Ampere"^^xsd:string,
        "Gigavolt Ampér"@cs,
        "Gigavolt Ampere"@de,
        "Gigavolt Ampere"@en,
        "Gigavoltio Amperio"@es,
        "Gigavolt Ampère"@fr,
        "Gigavolt Ampere"@it,
        "Gigavolt Ampere"@ms,
        "Gigawolt Amper"@pl,
        "Gigavolt Amper"@ro,
        "Gigavolt Amper"@sl,
        "Gigavolt Amper"@tr ;
    dcterms:description "1,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:GigaV ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB534"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB534"^^xsd:anyURI ;
    qudt:symbol "GV·A"^^xsd:string ;
    qudt:ucumCode "GV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaV-A_Reactive a qudt:Unit ;
    rdfs:label "GigaVolt Ampere Reactive"^^xsd:string,
        "GigaVolt Ampere Reactive"@en ;
    dcterms:description "0.000000001 of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:GigaVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaV ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC508"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC508"^^xsd:anyURI ;
    qudt:symbol "GV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Gs a qudt:Unit ;
    rdfs:label "Gs"^^xsd:string,
        "Gs"@en ;
    dcterms:description """
  The $gauss$, abbreviated as $G$, is the cgs unit of measurement of a magnetic field $B$, 
  which is also known as the "magnetic flux density" or the "magnetic induction".
  One gauss is defined as one maxwell per square centimeter; it equals $10^{-4} tesla$ (or $100 micro T$). 
  The Gauss is identical to maxwells per square centimetre; technically defined in a three-dimensional system, 
  it corresponds in the SI, with its extra base unit the ampere. 
  The gauss is quite small by earthly standards, 1 Gs being only about four times Earth's flux density, 
  but it is subdivided, with $1 gauss = 105 gamma$. 
  This unit of magnetic induction is also known as the $\\textit{abtesla}$.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy unit:GAUSS ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gauss_%28unit%29"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:hasQuantityKind qudtqk:MagneticFluxDensity ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gauss_(unit)"^^xsd:anyURI,
        "http://www.diracdelta.co.uk/science/source/g/a/gauss/source.html"^^xsd:anyURI,
        "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-526?rskey=HAbfz2"^^xsd:anyURI ;
    qudt:scalingOf unit:T ;
    qudt:symbol "G"^^xsd:string ;
    qudt:ucumCode "G"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "76"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q177493> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HeartBeat a qudt:ContextualUnit,
        qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Heart Beat"^^xsd:string,
        "Heart Beat"@en ;
    dcterms:description """A heart beat is a single contraction of the heart muscle,
  which pumps blood through the circulatory system. The heart rate is the number of heart beats
  per unit of time, typically measured in beats per minute (bpm). A normal resting 
  heart rate for adults ranges from 60 to 100 beats per minute."""^^rdf:HTML ;
    dcterms:isReplacedBy unit:BEAT ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Dimensionless ;
    qudt:symbol "heartbeat"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:NUM .

unit:IN-PER-2PiRAD a qudt:Unit ;
    rdfs:label "Inch per 2pirad"^^xsd:string,
        "Inch per 2pirad"@en ;
    dcterms:description "unit of the translation factor for implementation from rotation to linear move according to the Anglo-American and the Imperial system of units"^^xsd:string ;
    dcterms:isReplacedBy unit:IN-PER-REV ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:REV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Rotary-TranslatoryMotionConversion ;
    qudt:iec61360Code "0112/2///62720#UAA727"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA727"^^xsd:anyURI ;
    qudt:symbol "in/revolution"^^xsd:string ;
    qudt:uneceCommonCode "H57"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-M2-SEC0pt5-K rdfs:label "Joules per Meter Squared Sqrt(second) Degree Kelvin"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-2.5D0> ;
    qudt:hasQuantityKind qudtqk:ThermalInertia ;
    qudt:plainTextDescription "A unit of thermal inertia measured as Joules per meter squared per square root Seconds per degree Kelvin "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCi a qudt:Unit ;
    rdfs:label "Kilocurie"^^xsd:string,
        "Kilocurie"@en ;
    dcterms:description "1,000-fold of the unit curie"^^rdf:HTML ;
    dcterms:isReplacedBy unit:KiloCI ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000000000000.0 ;
    qudt:conversionMultiplierSN 3.7e+13 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity,
        qudtqk:DecayConstant ;
    qudt:iec61360Code "0112/2///62720#UAB046"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB046"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the unit curie"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:CI ;
    qudt:symbol "kCi"^^xsd:string ;
    qudt:ucumCode "kCi"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617220> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloV-A-PER-K a qudt:Unit ;
    rdfs:label "Kilovolt Ampere per Kelvin"^^xsd:string,
        "Kilovolt Ampér na Kelvin"@cs,
        "Kilovolt Ampere pro Kelvin"@de,
        "Kilovolt Ampere per Kelvin"@en,
        "Kilovoltio Amperio por Kelvin"@es,
        "Kilovolt Ampère par Kelvin"@fr,
        "Chilovolt Ampere per Kelvin"@it,
        "Kilovolt Ampere per Kelvin"@ms,
        "Kilowolt Amper na Kelwin"@pl,
        "Kilovolt Amper pe Kelvin"@ro,
        "Kilovolt Amper na Kelvin"@sl,
        "Kilovolt Amper per Kelvin"@tr ;
    dcterms:description "product of the 1,000-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:KiloVA-PER-K ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductance ;
    qudt:iec61360Code "0112/2///62720#UAD908"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD908"^^xsd:anyURI ;
    qudt:symbol "kV·A/K"^^xsd:string ;
    qudt:ucumCode "kV.A.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloV-A_Reactive-PER-K a qudt:Unit ;
    rdfs:label "KiloVolt Ampere Reactive per Kelvin"^^xsd:string,
        "KiloVolt Ampere Reactive per Kelvin"@en ;
    dcterms:description "1,000-fold of the unit volt ampere reactive divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:KiloVAR-PER-K ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L-2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD904"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD904"^^xsd:anyURI ;
    qudt:symbol "kvar/K"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaDOLLAR_US-PER-FLIGHT a qudt:ContextualUnit,
        qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Million Us Dollars per Flight"^^xsd:string,
        "Million Us Dollars per Flight"@en ;
    dcterms:isReplacedBy unit:MegaCCY_USD-PER-FLIGHT ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:expression "$M\\$/Flight$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FLIGHT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaDOLLAR_US ] ;
    qudt:hasQuantityKind qudtqk:CurrencyPerFlight ;
    qudt:symbol "$M/flight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroCi a qudt:Unit ;
    rdfs:label "Microcurie"^^xsd:string,
        "Microcurie"@en ;
    dcterms:description "Another commonly used measure of radioactivity, the microcurie: $1 \\micro Ci = 3.7 \\times 10 disintegrations per second = 2.22 \\times 10 disintegrations per minute$. A radiotherapy machine may have roughly 1000 Ci of a radioisotope such as caesium-137 or cobalt-60. This quantity of radioactivity can produce serious health effects with only a few minutes of close-range, un-shielded exposure. The typical human body contains roughly $0.1\\micro Ci$ of naturally occurring potassium-40. "^^qudt:LatexString ;
    dcterms:isReplacedBy unit:MicroCI ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000.0 ;
    qudt:conversionMultiplierSN 3.7e+04 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Curie"^^xsd:anyURI ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAA062"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Curie?oldid=495080313"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA062"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Micro> ;
    qudt:scalingOf unit:CI ;
    qudt:symbol "μCi"^^xsd:string ;
    qudt:ucumCode "uCi"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M5"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617198> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGAL-PER-M a qudt:Unit ;
    rdfs:label "MicroGals per Metre"^^xsd:string,
        "MicroGals per Metre"@en ;
    dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a distance of one metre."@en ;
    dcterms:isReplacedBy unit:MicroGALILEO-PER-M ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGAL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "µGal/m"^^xsd:string ;
    qudt:ucumCode "uGal.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroV-A a qudt:Unit ;
    rdfs:label "Microvolt Ampere"^^xsd:string,
        "Microvolt Ampér"@cs,
        "Microvolt Ampere"@de,
        "Microvolt Ampere"@en,
        "Microvoltio Amperio"@es,
        "Microvolt Ampère"@fr,
        "Microvolt Ampere"@it,
        "Microvolt Ampere"@ms,
        "Microwolt Amper"@pl,
        "Microvolt Amper"@ro,
        "Microvolt Amper"@sl,
        "Microvolt Amper"@tr ;
    dcterms:description "0.000001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:MicroVA ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroV ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB532"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB532"^^xsd:anyURI ;
    qudt:symbol "μV·A"^^xsd:string ;
    qudt:ucumCode "uV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroV-A-PER-K a qudt:Unit ;
    rdfs:label "Microvolt Ampere per Kelvin"^^xsd:string,
        "Microvolt Ampér na Kelvin"@cs,
        "Microvolt Ampere pro Kelvin"@de,
        "Microvolt Ampere per Kelvin"@en,
        "Microvoltio Amperio por Kelvin"@es,
        "Microvolt Ampère par Kelvin"@fr,
        "Microvolt Ampere per Kelvin"@it,
        "Microvolt Ampere per Kelvin"@ms,
        "Microwolt Amper na Kelwin"@pl,
        "Microvolt Amper pe Kelvin"@ro,
        "Microvolt Amper na Kelvin"@sl,
        "Microvolt Amper per Kelvin"@tr ;
    dcterms:description "product of the 0.000001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:MicroVA-PER-K ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroV ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductance ;
    qudt:iec61360Code "0112/2///62720#UAD907"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD907"^^xsd:anyURI ;
    qudt:symbol "μV·A/K"^^xsd:string ;
    qudt:ucumCode "uV.A.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroV-A_Reactive a qudt:Unit ;
    rdfs:label "MicroVolt Ampere Reactive"^^xsd:string,
        "MicroVolt Ampere Reactive"@en ;
    dcterms:description "0.000001 of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:MicroVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroV ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC506"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC506"^^xsd:anyURI ;
    qudt:symbol "µV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroV-A_Reactive-PER-K a qudt:Unit ;
    rdfs:label "MicroVolt Ampere Reactive per Kelvin"^^xsd:string,
        "MicroVolt Ampere Reactive per Kelvin"@en ;
    dcterms:description "0.000001-fold of the unit volt ampere reactive divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:MicroVAR-PER-K ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L-2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroV ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD903"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD903"^^xsd:anyURI ;
    qudt:symbol "µvar/K"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliCi a qudt:Unit ;
    rdfs:label "Millicurie"^^xsd:string,
        "Millicurie"@en ;
    dcterms:description "0.001-fold of the SI derived unit curie"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MilliCI ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 37000000.0 ;
    qudt:conversionMultiplierSN 3.7e+07 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAA786"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA786"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit curie"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:CI ;
    qudt:symbol "mCi"^^xsd:string ;
    qudt:ucumCode "mCi"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "MCU"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617170> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGAL a qudt:Unit ;
    rdfs:label "Milligalileo"^^xsd:string,
        "Milligalileo"@en ;
    dcterms:description "0.001-fold of the unit of acceleration called gal according to the CGS system of units"^^rdf:HTML ;
    dcterms:isReplacedBy unit:MilliGALILEO ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:hasQuantityKind qudtqk:Acceleration,
        qudtqk:LinearAcceleration ;
    qudt:iec61360Code "0112/2///62720#UAB043"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB043"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the unit of acceleration called gal according to the CGS system of units"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:GALILEO ;
    qudt:symbol "mgal"^^xsd:string ;
    qudt:ucumCode "mGal"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C11"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12263659> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGAL-PER-MO a qudt:Unit ;
    rdfs:label "Milligalileo per Month"^^xsd:string,
        "Milligalileo per Month"@en ;
    dcterms:description "A rate of change of one millionth part of a unit of gravitational acceleration equal to one centimetre per second per second over a time duration of 30.4375 days or 2629800 seconds."@en ;
    dcterms:isReplacedBy unit:MilliGALILEO-PER-MO ;
    qudt:conversionMultiplier 0.000000000003919350772901616281311709002114104 ;
    qudt:conversionMultiplierSN 3.919351e-12 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MO ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGALILEO ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mgal/mo"^^xsd:string ;
    qudt:ucumCode "mGal.mo-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-A a qudt:Unit ;
    rdfs:label "Millivolt Ampere"^^xsd:string,
        "Millivolt Ampér"@cs,
        "Millivolt Ampere"@de,
        "Millivolt Ampere"@en,
        "Millivoltio Amperio"@es,
        "Millivolt Ampère"@fr,
        "Millivolt Ampere"@it,
        "Millivolt Ampere"@ms,
        "Milliwolt Amper"@pl,
        "Millivolt Amper"@ro,
        "Millivolt Amper"@sl,
        "Millivolt Amper"@tr ;
    dcterms:description "0.001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:MilliVA ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB533"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB533"^^xsd:anyURI ;
    qudt:symbol "mV·A"^^xsd:string ;
    qudt:ucumCode "mV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-A-PER-K a qudt:Unit ;
    rdfs:label "Millivolt Ampere per Kelvin"^^xsd:string,
        "Millivolt Ampér na Kelvin"@cs,
        "Millivolt Ampere pro Kelvin"@de,
        "Millivolt Ampere per Kelvin"@en,
        "Millivoltio Amperio por Kelvin"@es,
        "Millivolt Ampère par Kelvin"@fr,
        "Millivolt Ampere per Kelvin"@it,
        "Millivolt Ampere per Kelvin"@ms,
        "Milliwolt Amper na Kelwin"@pl,
        "Millivolt Amper pe Kelvin"@ro,
        "Millivolt Amper na Kelvin"@sl,
        "Millivolt Amper per Kelvin"@tr ;
    dcterms:description "product of the 0.001-fold of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:MilliVA-PER-K ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductance ;
    qudt:iec61360Code "0112/2///62720#UAD906"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD906"^^xsd:anyURI ;
    qudt:symbol "mV·A/K"^^xsd:string ;
    qudt:ucumCode "mV.A.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-A_Reactive a qudt:Unit ;
    rdfs:label "MilliVolt Ampere Reactive"^^xsd:string,
        "MilliVolt Ampere Reactive"@en ;
    dcterms:description "0.001 of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:MilliVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC507"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC507"^^xsd:anyURI ;
    qudt:symbol "mV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-A_Reactive-PER-K a qudt:Unit ;
    rdfs:label "MilliVolt Ampere Reactive per Kelvin"^^xsd:string,
        "MilliVolt Ampere Reactive per Kelvin"@en ;
    dcterms:description "0.001-fold of the unit volt ampere reactive divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:MilliVAR-PER-K ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L-2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD902"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD902"^^xsd:anyURI ;
    qudt:symbol "mvar/K"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MillionUSD-PER-YR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Million Us Dollars per Year"^^xsd:string,
        "Million Us Dollars per Year"@en ;
    dcterms:isReplacedBy unit:MegaCCY_USD-PER-YR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:expression "$M\\$/yr$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MillionUSD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "$M/a"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoV-A a qudt:Unit ;
    rdfs:label "Nanovolt Ampere"^^xsd:string,
        "Nanovolt Ampér"@cs,
        "Nanovolt Ampere"@de,
        "Nanovolt Ampere"@en,
        "Nanovoltio Amperio"@es,
        "Nanovolt Ampère"@fr,
        "Nanovolt Ampere"@it,
        "Nanovolt Ampere"@ms,
        "Nanowolt Amper"@pl,
        "Nanovolt Amper"@ro,
        "Nanovolt Amper"@sl,
        "Nanovolt Amper"@tr ;
    dcterms:description "0.000000001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:NanoVA ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoV ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB531"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB531"^^xsd:anyURI ;
    qudt:symbol "nV·A"^^xsd:string ;
    qudt:ucumCode "nV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoV-A_Reactive a qudt:Unit ;
    rdfs:label "NanoVolt Ampere Reactive"^^xsd:string,
        "NanoVolt Ampere Reactive"@en ;
    dcterms:description "0.000000001-fold of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:NanoVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoV ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC505"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC505"^^xsd:anyURI ;
    qudt:symbol "nV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM_CIRC-MIL-PER-FT a qudt:Unit ;
    rdfs:label "Ohm Circular Mil per Foot"^^xsd:string,
        "Ohm Circular Mil per Foot"@en ;
    dcterms:description "unit of resistivity"^^xsd:string ;
    dcterms:isReplacedBy unit:OHM-MIL_Circ-PER-FT ;
    qudt:conversionMultiplier 0.000000001662426113 ;
    qudt:conversionMultiplierSN 1.662426e-09 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIL_Angle ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM_CIRC ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAB215"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB215"^^xsd:anyURI ;
    qudt:symbol "Ω·cmil/ft"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-KiloV-A-HR a qudt:Unit ;
    rdfs:label "Reciprocal Kilovolt Ampere Hour"^^xsd:string,
        "Reciprocal Kilovolt Ampere Hour"@en ;
    dcterms:description "reciprocal of the 1,000-fold of the product of the SI derived unit volt and the SI base unit ampere and the unit hour"^^rdf:HTML ;
    dcterms:isReplacedBy unit:PER-KiloVA-HR ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloV ] ;
    qudt:hasQuantityKind qudtqk:InverseEnergy ;
    qudt:hasReciprocalUnit unit:KiloVA-HR ;
    qudt:iec61360Code "0112/2///62720#UAA098"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA098"^^xsd:anyURI ;
    qudt:plainTextDescription "reciprocal of the 1,000-fold of the product of the SI derived unit volt and the SI base unit ampere and the unit hour"^^xsd:string ;
    qudt:symbol "/(kV·A·h)"^^xsd:string ;
    qudt:ucumCode "kV-1.A-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-MILLE-PSI a qudt:Unit ;
    rdfs:label "Reciprocal Mille Psi"^^xsd:string,
        "Reciprocal Mille Psi"@en ;
    dcterms:description "thousandth divided by the composed unit for pressure (pound-force per square inch)"^^rdf:HTML ;
    dcterms:isReplacedBy unit:PERMILLE-PER-PSI ;
    qudt:conversionMultiplier 0.0000001450377 ;
    qudt:conversionMultiplierSN 1.450377e-07 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MILLE ] ;
    qudt:hasQuantityKind qudtqk:Compressibility,
        qudtqk:InversePressure,
        qudtqk:IsothermalCompressibility ;
    qudt:iec61360Code "0112/2///62720#UAA016"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA016"^^xsd:anyURI ;
    qudt:plainTextDescription "thousandth divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:symbol "/ksi"^^xsd:string ;
    qudt:uneceCommonCode "J12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-V-A-SEC a qudt:Unit ;
    rdfs:label "Reciprocal Volt Ampere Second"^^xsd:string,
        "На Волт Ампер Секунда"@bg,
        "Na Volt Ampér Sekunda"@cs,
        "Pro Volt Ampere Sekunde"@de,
        "Aνά Βολτ Αμπέρ Δευτερόλεπτο"@el,
        "Reciprocal Volt Ampere Second"@en,
        "Por Voltio Amperio Segundo"@es,
        "Par Volt Ampère Seconde"@fr,
        "Per Volt Ampere Secondo"@it,
        "Per Voltium Amperium Secundum"@la,
        "Per Volt Ampere Saat"@ms,
        "Na Wolt Amper Sekunda"@pl,
        "Por Volt Ampere Segundo"@pt,
        "Pe Volt Amper Secundă"@ro,
        "На Вольт Ампер Секунда"@ru,
        "Na Volt Amper Sekunda"@sl,
        "Per Volt Amper Saniye"@tr ;
    dcterms:description "reciprocal of the product of the SI derived unit volt, the SI base unit ampere and the SI base unit second"^^xsd:string ;
    dcterms:isReplacedBy unit:PER-VA-SEC ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:InverseEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB498"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB498"^^xsd:anyURI ;
    qudt:symbol "/(V·A·s)"^^xsd:string ;
    qudt:ucumCode "V-1.A-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-100KiloCount a qudt:Unit ;
    rdfs:label "Percent per One Hundred Thousand"^^xsd:string,
        "Percent per One Hundred Thousand"@en ;
    dcterms:description "hundredth relating to the co-efficient 100,000"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-HUNDRED-THOUSAND ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:100KiloCount ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "%/100k"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-10KiloCount a qudt:Unit ;
    rdfs:label "Percent per Ten Thousand"^^xsd:string,
        "Percent per Ten Thousand"@en ;
    dcterms:description "hundredth relating to the co-efficient 10,000"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-TEN-THOUSAND ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:10KiloCount ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA004"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA004"^^xsd:anyURI ;
    qudt:symbol "%/10k"^^xsd:string ;
    qudt:uneceCommonCode "H91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-DecaKiloCOUNT a qudt:Unit ;
    rdfs:label "Percent per Ten Thousand"^^xsd:string,
        "Percent per Ten Thousand"@en ;
    dcterms:description "hundredth relating to the co-efficient 10,000"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-TEN-THOUSAND ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DecaKiloCOUNT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA005"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA005"^^xsd:anyURI ;
    qudt:symbol "%/10000"^^xsd:string ;
    qudt:uneceCommonCode "H92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-HectoCOUNT a qudt:Unit ;
    rdfs:label "Percent per Hundred"^^xsd:string,
        "Percent per Hundred"@en ;
    dcterms:description "hundredth relating to the co-efficient 100"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-HUNDRED ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HectoCOUNT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA006"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA006"^^xsd:anyURI ;
    qudt:symbol "%/100"^^xsd:string ;
    qudt:uneceCommonCode "H93"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-HectoKiloCOUNT a qudt:Unit ;
    rdfs:label "Percent per One Hundred Thousand"^^xsd:string,
        "Percent per One Hundred Thousand"@en ;
    dcterms:description "hundredth relating to the co-efficient 100,000"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-HUNDRED-THOUSAND ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HectoKiloCOUNT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "%/100k"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-KiloCOUNT a qudt:Unit ;
    rdfs:label "Percent per Thousand"^^xsd:string,
        "Percent per Thousand"@en ;
    dcterms:description "hundredth relating to the co-efficient 1,000"^^xsd:string ;
    dcterms:isReplacedBy unit:PERCENT-PER-THOUSAND ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloCOUNT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA007"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA007"^^xsd:anyURI ;
    qudt:symbol "%/1000"^^xsd:string ;
    qudt:uneceCommonCode "H94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_0DEG_C a qudt:Unit ;
    rdfs:label "Perm (0 °C)"^^xsd:string,
        "Perm (0 °C)"@en ;
    dcterms:description "The rate of water vapor transmission through a specific thickness of a material—i.e., the permeability divided by the thickness."^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:iec61360Code "0112/2///62720#UAB294"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB294"^^xsd:anyURI ;
    qudt:symbol "perm (0 °C)"^^xsd:string ;
    qudt:uneceCommonCode "P91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_23DEG_C a qudt:Unit ;
    rdfs:label "Perm (23 °C)"^^xsd:string,
        "Perm (23 °C)"@en ;
    dcterms:description "The rate of water vapor transmission through a specific thickness of a material—i.e., the permeability divided by the thickness."^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:iec61360Code "0112/2///62720#UAB295"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB295"^^xsd:anyURI ;
    qudt:symbol "perm (23 °C)"^^xsd:string ;
    qudt:uneceCommonCode "P92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_Metric_0DEG_C a qudt:Unit ;
    rdfs:label "Perm (0 °C)"^^xsd:string,
        "Perm (0 °C)"@en ;
    dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 0 °C as steam transmittance, where the mass of one grain steam penetrates an area of one foot squared at a pressure from one inch mercury per hour"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:iec61360Code "0112/2///62720#UAB294"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB294"^^xsd:anyURI ;
    qudt:symbol "perm (0 °C)"^^xsd:string ;
    qudt:uneceCommonCode "P91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_Metric_23DEG_C a qudt:Unit ;
    rdfs:label "Perm (23 °C)"^^xsd:string,
        "Perm (23 °C)"@en ;
    dcterms:description "traditional unit for the ability of a material to allow the transition of the steam, defined at a temperature of 23 °C as steam transmittance at which the mass of one grain of steam penetrates an area of one square foot at a pressure of one inch mercury per hour"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:iec61360Code "0112/2///62720#UAB295"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB295"^^xsd:anyURI ;
    qudt:symbol "perm (23 °C)"^^xsd:string ;
    qudt:uneceCommonCode "P92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PIXEL a qudt:Unit ;
    rdfs:label "Pixel"^^xsd:string,
        "Pixel"@en ;
    dcterms:description "both, the smallest unit of a digital raster graphic as well as the display on a screen with raster control"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:PictureElement ;
    qudt:iec61360Code "0112/2///62720#UAA938"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA938"^^xsd:anyURI ;
    qudt:symbol "pixel"^^xsd:string ;
    qudt:uneceCommonCode "E37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso unit:PIXEL_AREA,
        unit:PIXEL_COUNT .

unit:PPTR_VOL a qudt:Unit ;
    rdfs:label "Parts per Trillion by Volume"^^xsd:string,
        "Parts per Trillion by Volume"@en ;
    dcterms:isReplacedBy unit:PPT_VOL ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "pptr"^^xsd:string ;
    qudt:ucumCode "[pptr]{vol}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaV-A a qudt:Unit ;
    rdfs:label "Petavolt Ampere"^^xsd:string,
        "Petavolt Ampér"@cs,
        "Petavolt Ampere"@de,
        "Petavolt Ampere"@en,
        "Petavoltio Amperio"@es,
        "Petavolt Ampère"@fr,
        "Petavolt Ampere"@it,
        "Petavolt Ampere"@ms,
        "Petawolt Amper"@pl,
        "Petavolt Amper"@ro,
        "Petavolt Amper"@sl,
        "Petavolt Amper"@tr ;
    dcterms:description "1,000,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:PetaVA ;
    qudt:conversionMultiplier 1000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+15 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PetaV ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB536"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB536"^^xsd:anyURI ;
    qudt:symbol "PV·A"^^xsd:string ;
    qudt:ucumCode "PV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoV-A a qudt:Unit ;
    rdfs:label "Picovolt Ampere"^^xsd:string,
        "Picovolt Ampér"@cs,
        "Picovolt Ampere"@de,
        "Picovolt Ampere"@en,
        "Picovoltio Amperio"@es,
        "Picovolt Ampère"@fr,
        "Picovolt Ampere"@it,
        "Picovolt Ampere"@ms,
        "Picowolt Amper"@pl,
        "Picovolt Amper"@ro,
        "Picovolt Amper"@sl,
        "Picovolt Amper"@tr ;
    dcterms:description "0.000000000001-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:PicoVA ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoV ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB530"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB530"^^xsd:anyURI ;
    qudt:symbol "pV·A"^^xsd:string ;
    qudt:ucumCode "pV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoV-A_Reactive a qudt:Unit ;
    rdfs:label "PicoVolt Ampere Reactive"^^xsd:string,
        "PicoVolt Ampere Reactive"@en ;
    dcterms:description "0.000000000001-fold of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:PicoVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC504"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC504"^^xsd:anyURI ;
    qudt:symbol "pV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Standard a qudt:Unit ;
    rdfs:label "Standard"^^xsd:string,
        "Standard"@en ;
    dcterms:description "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre"^^rdf:HTML ;
    dcterms:isReplacedBy unit:STANDARD ;
    qudt:conversionMultiplier 4.672 ;
    qudt:conversionMultiplierSN 4.672e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:Volume ;
    qudt:iec61360Code "0112/2///62720#UAB116"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB116"^^xsd:anyURI ;
    qudt:plainTextDescription "non SI-conform unit of the volume of readily finished wood material : 1 standard = 1,980 board feet or approximate 4.672 cubic metre"^^xsd:string ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "standard"^^xsd:string ;
    qudt:ucumCode "1980.[bf_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "WSD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7178916> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraV-A a qudt:Unit ;
    rdfs:label "Teravolt Ampere"^^xsd:string,
        "Teravolt Ampér"@cs,
        "Teravolt Ampere"@de,
        "Teravolt Ampere"@en,
        "Teravoltio Amperio"@es,
        "Teravolt Ampère"@fr,
        "Teravolt Ampere"@it,
        "Teravolt Ampere"@ms,
        "Terawolt Amper"@pl,
        "Teravolt Amper"@ro,
        "Teravolt Amper"@sl,
        "Teravolt Amper"@tr ;
    dcterms:description "1,000,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    dcterms:isReplacedBy unit:TeraVA ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TeraV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB535"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB535"^^xsd:anyURI ;
    qudt:symbol "TV·A"^^xsd:string ;
    qudt:ucumCode "TV.A"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraV-A_Reactive a qudt:Unit ;
    rdfs:label "TeraVolt Ampere Reactive"^^xsd:string,
        "TeraVolt Ampere Reactive"@en ;
    dcterms:description "0.000000000001 of the unit volt ampere reactive"^^xsd:string ;
    dcterms:isReplacedBy unit:TeraVAR ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TeraV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:ReactivePower ;
    qudt:iec61360Code "0112/2///62720#UAC509"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC509"^^xsd:anyURI ;
    qudt:symbol "TV·A{Reactive}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-A-PER-K a qudt:Unit ;
    rdfs:label "Volt Ampere per Kelvin"^^xsd:string,
        "Волт Ампер на Келвин"@bg,
        "Volt Ampér na Kelvin"@cs,
        "Volt Ampere pro Kelvin"@de,
        "Βολτ Αμπέρ ανά Κέλβιν"@el,
        "Volt Ampere per Kelvin"@en,
        "Voltio Amperio por Kelvin"@es,
        "Volt Ampère par Kelvin"@fr,
        "Volt Ampere per Kelvin"@it,
        "Voltium Amperium per Kelvin"@la,
        "Volt Ampere per Kelvin"@ms,
        "Wolt Amper na Kelwin"@pl,
        "Volt Ampere por Kelvin"@pt,
        "Volt Amper pe Kelvin"@ro,
        "Вольт Ампер на Кельвин"@ru,
        "Volt Amper na Kelvin"@sl,
        "Volt Amper per Kelvin"@tr ;
    dcterms:description "product of the SI derived unit volt and the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:VA-PER-K ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductance ;
    qudt:iec61360Code "0112/2///62720#UAD905"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD905"^^xsd:anyURI ;
    qudt:symbol "V·A/K"^^xsd:string ;
    qudt:ucumCode "V.A.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-A_Reactive-PER-K a qudt:Unit ;
    rdfs:label "Volt Ampere Reactive per Kelvin"^^xsd:string,
        "Volt Ampere Reactive per Kelvin"@en ;
    dcterms:description "unit volt ampere reactive divided by the SI base unit kelvin"^^xsd:string ;
    dcterms:isReplacedBy unit:VAR-PER-K ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:deprecated true ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L-2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Reactive ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD901"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD901"^^xsd:anyURI ;
    qudt:symbol "var/K"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

bdg2:00571f92c6d3cf428f789f6cdf00dc18 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f5764f97ffc2b49579772b6626c1b4df ;
    s223:hasProperty bdg2:1d7ce68440295d98791a870e1d85610a .

bdg2:006499b5ef59e0371782905e0b6989d8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:6d642d920832570334b38ee6aaf14847 ;
    s223:hasPhysicalLocation bdg2:617ceb9bd4697e20016b4a9767da98ac ;
    s223:observes <urn:anon:hash:7207654659992811927.85> .

bdg2:009a45281cfc1016c27116d05203bafd a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d1ee354f7abf526d06edb0f01a2429b9 ;
    s223:hasProperty bdg2:87516a14216ad443b2ca2814ab25f27d .

bdg2:00ba489aca50d2886ecca80eae950404 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a13606dcb90d3c31c0fd0b7b6a417454 ;
    s223:hasProperty bdg2:040f9b7b958a77210dffc819aa5d0719 .

bdg2:00c5e74e34b26a8c6d132db16570c6c4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:692245b2bc37a18ce7b2a2055565547d ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.139> .

bdg2:00e03ffbe8ec737b27db73836d241cca a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1f45d5712cc02a814fa020aa39c6c291 ;
    s223:hasPhysicalLocation bdg2:bc63f6702fca047eafc794fc63272ec1 ;
    s223:observes <urn:anon:hash:7207654659992811927.158> .

bdg2:0158437ef1d93649942f7a785329bbf8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:93ad9b8bca1344748d4849d054fe966b ;
    s223:hasPhysicalLocation bdg2:247bf91dc81ff0b3b14fdd5279523462 ;
    s223:observes <urn:anon:hash:7207654659992811927.181> .

bdg2:02ab5057321ffadb74931e6f4ba9a337 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:02b4c2dbb7ef21803689c29616f10b4e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:031261eb5a426ef1f225cdd9037851a2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:014f072aead9131092fae0acf552c750 ;
    s223:hasProperty bdg2:4d5c0a3f427808ad1bb058bc81c1e6d5 .

bdg2:033f02cd6748962d1e8befb980dd6bb6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:7e97c9c6af1f031720f86e28569d9b9e ;
    s223:hasProperty bdg2:59db8e7a42709a1bb459d62dedd20e51 .

bdg2:0346cf3a3163fed80e3f5b917e45a0f3 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:84ecaa2d1aad852d1865a59328e72e50 ;
    s223:hasPhysicalLocation bdg2:d511b27c5fbcef519a2df2a66a210133 ;
    s223:observes <urn:anon:hash:7207654659992811927.43> .

bdg2:03d40de2b2e85ec4ddc4108fa1185f13 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:b12062b838e4db728dad5e4a057f2c79 ;
    s223:hasProperty bdg2:549f8d361f3a58de908b2f8b2a748d16 .

bdg2:03ee27cf3b87a142d77e9f118d67287e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:689439f8a55eebc2a42560018e9b19bf ;
    s223:hasProperty bdg2:3db81334c12e15b4dd28902a1df49408 .

bdg2:04277c133f45c8153ce61456a47b0cae a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8d89808aa820c8a6e6c363dceb95ccde ;
    s223:hasProperty bdg2:87ba7d1db6f4b25c14d67f2173cb7ee2 .

bdg2:047f31b50241ecd75459546631dc8441 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3d9560f90cbbe2529480a72376159ecd ;
    s223:hasProperty bdg2:70bbd3f09a8a05923f52200e7f68bf10 .

bdg2:04877232ba0c82177ad1f4028e888b6f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ee43f912004498dd79e529f11dd901b8 ;
    s223:hasProperty bdg2:583129a6e86d82cd50931bb44237e2d1 .

bdg2:053a592959a9eaa45994c4edfe5fa23f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:b613bf2d91573bf64768a2daff77293c ;
    s223:hasProperty bdg2:2022d8f13b92d58fc3d2fd0fc8a763df .

bdg2:053ed5655bed46bf3509c72959b1d734 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c6755ceb5ff3047a8497696de2527c51 ;
    s223:hasProperty bdg2:187cd5591394fb16025f83a7483861cd .

bdg2:058c162084e6b1c8d5ed519b02df19ad a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c3671996ef2de3684cc2ea0fbb42a17e ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.47> .

bdg2:05a803b3c8aa4d89882afa35d75955d7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c4c7c87dba8bc5a70625c2f5a71b693a ;
    s223:hasProperty bdg2:a3df74907516c75bd2c26d4c7fbedf10 .

bdg2:06c5bcd406cf3eb1a5bca336f1f162cc a rec:Desk ;
    rdfs:label "Desk" .

bdg2:07bf2596e5f394273f40581301a42880 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9d41b007f78e040615e6c7a4fe4fe0c0 ;
    s223:hasPhysicalLocation bdg2:bd4ec146e173e46b89794398e674347d ;
    s223:observes <urn:anon:hash:7207654659992811927.48> .

bdg2:07ec416264896dc50fe6585b61e84db4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:767f35e70e3185ab6bf24b515d518ff4 ;
    s223:hasPhysicalLocation bdg2:8f1a4131eb57444963bdca307115daf4 ;
    s223:observes <urn:anon:hash:7207654659992811927.137> .

bdg2:0857d2e566472b9e77c66bdc7be1ae75 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c54c3c92ecc6e0bc8ea55e9de09093a9 ;
    s223:hasProperty bdg2:5a46ac28c541a55062b29085c9aa5842 .

bdg2:08a284cf5e7974b52edb603e47c09de9 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c54c3c92ecc6e0bc8ea55e9de09093a9 ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.185> .

bdg2:08d9766866f29dfc10e1232f862fb379 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:08e79419e5f53cc837ecf44b06e5f58d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f1e0c29cf2e054593ceb24d9064b3bb6 ;
    s223:hasPhysicalLocation bdg2:8b15be9fe257c6229d9c79a244e36cd4 ;
    s223:observes <urn:anon:hash:7207654659992811927.187> .

bdg2:0981e621c5b93a4a60268d76bc890043 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:23f41144e540eb68c486c03d2f2033f9 ;
    s223:hasProperty bdg2:cfb085f6621822c070864cdb818efb67 .

bdg2:09be1fbaa587ffbe3afb9b455a2eadde a rec:Desk ;
    rdfs:label "Desk" .

bdg2:09c8a391b2ccccf9fe07dd0c03b1b9f3 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0a4a0b2d7d1b18dca3d10048f5375557 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0af2f543f689316089ce6d4bd48dabb0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ea0f17ea4732a07aec80e0b8f9d9ae20 ;
    s223:hasPhysicalLocation bdg2:412f57f150946610368eac6d0d1c0ed6 ;
    s223:observes <urn:anon:hash:7207654659992811927.36> .

bdg2:0b748806f30e13130242fe5338b008dd a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:968dd9ea004259bf53c639d8e9644d88 ;
    s223:hasProperty bdg2:c64256f6445e55c2bf93566fe2d8a0bd .

bdg2:0b884cec48e73fe156374bc31019ff5b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5530cff0fe7e36cef1a95fae174f1b1a ;
    s223:hasPhysicalLocation bdg2:97932d4a07f7b2e8b62b018c2c23f02c ;
    s223:observes <urn:anon:hash:7207654659992811927.103> .

bdg2:0b988cd7661a26566e7fc4b554ce9c30 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f82d2c38c78c92cca109dde3f076ca15 ;
    s223:hasProperty bdg2:97110256f6017bd6751b978fe2a466e0 .

bdg2:0c67f336eb4f08f678556daf0d3cd2e8 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0c7f746069bb38f0edfad0c8ea5c9642 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0d885ba98c1ade535b92c46aa16c07aa a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c5cb47e6bd61657fc685ba368bdef6d6 ;
    s223:hasPhysicalLocation bdg2:0dd0051c198ab1ee8d08193a8246c47b ;
    s223:observes <urn:anon:hash:7207654659992811927.109> .

bdg2:0ebe8dddb177b449a882dd7a4bd86d85 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d8dc5ee81981597cbde98cdcfa6ab145 ;
    s223:hasProperty bdg2:5d372cc02e3d2706658b923e99380b61 .

bdg2:0f0afaee33468b99386461a7c6738e97 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0f23b97f9ec7d3f6a95f62cbfc85be95 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:3133d37e68f0c8e44f2c3e0cfac788d3,
        bdg2:82a1f9dcb180c714b1e286175e433e0c,
        bdg2:ad0122ffbfd4a74118f4fb84b9870246,
        bdg2:cca64f7576532efa4cc81fafa258d58b,
        bdg2:d8e27df3e04def6df65f145e73bb3bd1,
        bdg2:e838fe5750ccb100c5d3c9f7dbf82540 ;
    s223:hasProperty bdg2:4b8e7a589b73149dfef638ce36e223c5 .

bdg2:0f368b5eb7adc12a4eca24610b87a726 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:0f95d10084c4778fc482b10ac38717a9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5e58d7b9a62f5f795556cbfe3c500f87 ;
    s223:hasProperty bdg2:17b959c84162433ab21ebbf7bdee6c07 .

bdg2:123bff019cd1369777cffd7d325176c2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f5764f97ffc2b49579772b6626c1b4df ;
    s223:hasPhysicalLocation bdg2:8f1a4131eb57444963bdca307115daf4 ;
    s223:observes <urn:anon:hash:7207654659992811927.196> .

bdg2:12d6c613507c2df2172d5835e7289588 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:13391f2ce8d8118be5ce81cc1fa8bd35 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:e2b450d24318e1d4413c4a02a8705077 ;
    s223:hasProperty bdg2:7512e28dfe40cfb8447328f658b393b0 .

bdg2:13c3cbb5182e00de01f03b0e7f5a1294 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:13f130b35003cda6c305f4a85b1ae97d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:14ddabcdafe1d128337ae4497519c858 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3984ce7221abab82304f93f39a6b9113 ;
    s223:hasProperty bdg2:5d822d39948c48f1429daee4bf3350e8 .

bdg2:15b9431a12bacb5825731fdb436d5055 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:15ece915a60fbf0ac430de2c315378fa a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c3671996ef2de3684cc2ea0fbb42a17e ;
    s223:hasProperty bdg2:9b2be4a970185aa71df781adcaf61fff .

bdg2:16005ad20254247464b8ef7892fe995f a rec:Desk ;
    rdfs:label "Desk" .

bdg2:16e7f3c410c60585084773a98bcee005 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c06e2df195cf04a1ec78f47dd0fefcf6 ;
    s223:hasProperty bdg2:7e1aefdcaa98eeaff0e4cf7196ee102b .

bdg2:17254d165c969103d6ae0a922fd79e2a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:176d4b81888ce0d884f7fcc184f19497 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:0e016f30b7c15a69ee4146a80d6597e3 ;
    s223:hasProperty bdg2:553ebf1d438de95e29ee545eaa4a323c .

bdg2:17d06dd878d7457adf42e7f35c31b164 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2b3f33702f0d1ee95529c349968a8fd2 ;
    s223:hasPhysicalLocation bdg2:8791d74923028f71b7165ad424cdb2f4 ;
    s223:observes <urn:anon:hash:7207654659992811927.34> .

bdg2:1818f89da0474e42fa71b41d033b6d4b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:655b03efd41bda1523c8edf51d18db86 ;
    s223:hasProperty bdg2:a6e913dbe8c561b3fd116185401a1eba .

bdg2:185aed828e190babecdda6b5c1c545f9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:33c2daab088562302ff0f01908102666 ;
    s223:hasProperty bdg2:1ae6bb076b43eb0a3264da6e07f9032b .

bdg2:1873431cb5c16b2fea6366ea1ce85020 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8b46ca546a45b4e4bffccba29f025b7f ;
    s223:hasProperty bdg2:cf4922240148f6f1090af9a169b5ba4d .

bdg2:195bce326e488c097f6f0bb40b96c468 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:bf24b1a48226d7476a10056e91891a4e ;
    s223:hasProperty bdg2:e618b5ed2bc497951d236a8022c5d79c .

bdg2:1af7fb06ff0fa47c73a49bfc2005a11c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5015ed8f2a7d8538e02c22cdaa8d9814 ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.102> .

bdg2:1b58a371fbbdae20edd383dacc093d2c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:216a1a673a64ce8f5d1202aa995bbebb ;
    s223:hasPhysicalLocation bdg2:04405074e8760773635367aab59bb782 ;
    s223:observes <urn:anon:hash:7207654659992811927.202> .

bdg2:1b7f5220ad646e17da273de09aa38a73 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a4d986544f60ae54c3d0e5ed464ef3ed ;
    s223:hasProperty bdg2:ec4b8561c43717f243a8e917401e6033 .

bdg2:1ba135d603f64f6fae35b8569d5ba5ef a rec:Desk ;
    rdfs:label "Desk" .

bdg2:1c0021092aa92fe349651c1eed357c62 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2bd8c89dc1dfb28fca6969fa73b5224a ;
    s223:hasProperty bdg2:025eb9c12f4a79ccac56c13f1c56e23e .

bdg2:1c449e4a85ba88f882d03b8d1ee0b468 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1159a7e7e932b2381aa00305f9622199 ;
    s223:hasPhysicalLocation bdg2:b71d5d4d948e6e08a7b81745742d92db ;
    s223:observes <urn:anon:hash:7207654659992811927.8> .

bdg2:1c61e36488f0c973e362b9d843122975 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3ce481db0ccd0a6d2b57917ef118e072 ;
    s223:hasPhysicalLocation bdg2:ee4c51d58747bcb434fa602d43b15686 ;
    s223:observes <urn:anon:hash:7207654659992811927.44> .

bdg2:1ca417ae9f7e18e0ebaa85f11c36e8b6 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ae96fb3b97eeb6703b3bf21cace3091c ;
    s223:hasPhysicalLocation bdg2:93dcf5f949eeaea55d1d15d08452d748 ;
    s223:observes <urn:anon:hash:7207654659992811927.99> .

bdg2:1ceb95d84455e8b6a6e7c26d0c76d81a a s223:ElectricBreaker ;
    rdfs:label "ElectricBreaker" ;
    s223:cnx bdg2:3ed92f33e0eec0e3ea1b65fee420c32a ;
    s223:hasPhysicalLocation bdg2:a72dfd88fca24054017657dce93b610d .

bdg2:1dc950b179dd1798b2fa036d62b4af37 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ee43f912004498dd79e529f11dd901b8 ;
    s223:hasPhysicalLocation bdg2:ed292ef68fe5e88c427938777bc513f1 ;
    s223:observes <urn:anon:hash:7207654659992811927.149> .

bdg2:1ef71ae7ef8455e562fe186243e4400e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d7129866c79ad10795b6c8c6a4389c2e ;
    s223:hasProperty bdg2:6dc025a9561e5955ff15e795c0c4f876 .

bdg2:20d653bfd18a39118a39f85aee302d36 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:606be40c1d0bcfa75af9d83aa3607559 ;
    s223:hasPhysicalLocation bdg2:04405074e8760773635367aab59bb782 ;
    s223:observes <urn:anon:hash:7207654659992811927.5> .

bdg2:20e86f69720fbbda236c7036aad5c638 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:218a795e8e4deac110ec0c93412be71c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:309ab104664e0170ddc59e01aa6f0247 ;
    s223:hasProperty bdg2:30bc166054149cef0ca473fe02b80863 .

bdg2:228585c820fbfa08afe4ec52e667eb5d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2bd8c89dc1dfb28fca6969fa73b5224a ;
    s223:hasPhysicalLocation bdg2:c54820ea8abc202499b3ddafc4261f28 ;
    s223:observes <urn:anon:hash:7207654659992811927.134> .

bdg2:22c308578b832ed17d2a3a0d5631fb83 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:238d1490387dc407c4552f304943b76b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:be9cf77ec046d49c9d56dd30feb96fc4 ;
    s223:hasPhysicalLocation bdg2:086e724bd8f69f95a9315e375d8bc698 ;
    s223:observes <urn:anon:hash:7207654659992811927.200> .

bdg2:23d2267f88638fb1f803844b97ca8f2d a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:774b630af9efb9b53d1695c604ea985b ;
    s223:hasProperty bdg2:145543c121861a42444ce77230dd7c6f .

bdg2:24530ae9e29bc14f3d0bcbfed0e69087 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1005a731eaa5b26b6d6aa21c08c2dfe7 ;
    s223:hasPhysicalLocation bdg2:5045ae960486d79e48a8811fe000bc67 ;
    s223:observes <urn:anon:hash:7207654659992811927.105> .

bdg2:2454274e5fde4360a3ab0145053a4950 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:939cf92e54f2506b60aef14cfc5a9bfe ;
    s223:hasPhysicalLocation bdg2:2e5e339d5a699a097fe96dd67a1bc05a ;
    s223:observes <urn:anon:hash:7207654659992811927.119> .

bdg2:24e04dffe78884a26e2c0508b231e85e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:24e2fd83605c9bd1adf3e59e90824c06 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:257586a1a5762148fe2126ff0fa3ad7e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ec3f8c22c4e7782b8d5f851995e964b4 ;
    s223:hasProperty bdg2:a2b11679d3dd900994ebb2e8cc1a1987 .

bdg2:25804c46c99ae7e427d86981924bc5f0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:25844ea067aa159b49181ae2618a9f02 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:28c31c7c42a3ffce138fdba666b36600 ;
    s223:hasPhysicalLocation bdg2:909cd2b5619a9b30cc4b79a5ba4e39bb ;
    s223:observes <urn:anon:hash:7207654659992811927.157> .

bdg2:258b8c34ed1c9f8d8ebb4d0a10edd53d a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c6b0c611f8ce1f9ee43e912ba6a144a5 ;
    s223:hasProperty bdg2:f8c9e5f1eb931d08cf0cef7b4e7cd486 .

bdg2:25dd3219dfa2bdc44e1493cbcf62ce7a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2651cd88c8097edc6b53bbf8bd390307 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e18a10692afa2ffdb607924f17c60fef ;
    s223:hasPhysicalLocation bdg2:c828df287f4dae82c833c02a189c54af ;
    s223:observes <urn:anon:hash:7207654659992811927.70> .

bdg2:26c85cd38b4c713f4bb835d1f1cdfb70 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:689439f8a55eebc2a42560018e9b19bf ;
    s223:hasPhysicalLocation bdg2:ebdf3f7fa32924a573d2bbac1bf6cdb1 ;
    s223:observes <urn:anon:hash:7207654659992811927.22> .

bdg2:2734d003df70e193496b074ca512d8f5 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9bf27b5417fb5e36db8b1056edb87f0d ;
    s223:hasPhysicalLocation bdg2:9fc840976a4fbe61395c749248ec380d ;
    s223:observes <urn:anon:hash:7207654659992811927.199> .

bdg2:27394d504340c31be6a7a80553c38759 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:276a5af84aa84127b3c3981ba86e6476 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:76e631fd002d350859661ec8f167da42 ;
    s223:hasProperty bdg2:e57eaebca6c988955f09ea8f5ea7eb6a .

bdg2:2776c16ea03be0f9108c75a71715fc9b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:27c7ed9107382f92e1b3075014028d37 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:b613bf2d91573bf64768a2daff77293c ;
    s223:hasPhysicalLocation bdg2:8621e343f01dcdfe5d7f7470d2bacd6c ;
    s223:observes <urn:anon:hash:7207654659992811927.73> .

bdg2:27eceb9cb29ed8f4d1b460c214721d69 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:27222ec20f5d6849e720ae6a9082faa4 ;
    s223:hasPhysicalLocation bdg2:d92fabd4965ebb3198e92723cae9f3af ;
    s223:observes <urn:anon:hash:7207654659992811927.78> .

bdg2:27fe467672dfe62cf2a2e7725635fd1e a s223:ElectricBreaker ;
    rdfs:label "ElectricBreaker" ;
    s223:cnx bdg2:1cf399bb709936956f340c2e5abfe510 ;
    s223:hasPhysicalLocation bdg2:231db849bf26a52aa25f97e5db97245a .

bdg2:28eb4a6e67eedc713a008055c70e0d03 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:29633628db83fcef9e75d6ffaa182340 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:29e681d564a4ba5e383932d202f863d2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2ab9770926fe4c43b88e4891a8a5f344 ;
    s223:hasPhysicalLocation bdg2:844a41f9c84fdba563707386892c2979 ;
    s223:observes <urn:anon:hash:7207654659992811927.67> .

bdg2:2a0af83cafb21c92c9159ecd0fc71d40 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:692245b2bc37a18ce7b2a2055565547d ;
    s223:hasProperty bdg2:7f56c55a01c49b5ed67481697abb0e21 .

bdg2:2a439f530254186c52306d68e816916a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2ab74c03196e80eb0b51ede5d9b96784 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:93ad9b8bca1344748d4849d054fe966b ;
    s223:hasProperty bdg2:e146613aa1bab751d78923a6f517278c .

bdg2:2c5c4fcb683e7aa6f0c6343f9f840956 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2c633c8c25ba08b8f540b28425357a3e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2c71682f4ed26eb81c74cb35964e339f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c5cb47e6bd61657fc685ba368bdef6d6 ;
    s223:hasProperty bdg2:ba44de34adc2070f575e13dfee6b7593 .

bdg2:2d3ba8e03329753e34fe09cf265e9fa4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:cc869b0b7109395f97cda435e1cffeb1 ;
    s223:hasPhysicalLocation bdg2:b2026060fa2c3465a8f250023952c4dd ;
    s223:observes <urn:anon:hash:7207654659992811927.83> .

bdg2:2e12ac5dfe35ac45f5c4ec2da3b733a0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2e17d9304400ec6ccedf1a6ef068b2c8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ace52bc45a8ce3c5c9af2c8100623eb9 ;
    s223:hasPhysicalLocation bdg2:844a41f9c84fdba563707386892c2979 ;
    s223:observes <urn:anon:hash:7207654659992811927.74> .

bdg2:2e4464ce3b2f7b7018daaf235cf8d3b7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:2e7abbb6e225de230086064b8226eb56 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9b4c2be1c1d5f15e8b027744b841267a ;
    s223:hasPhysicalLocation bdg2:b834c590edece96e20e74809d7e243d6 ;
    s223:observes <urn:anon:hash:7207654659992811927.193> .

bdg2:2efe86184ceee15ae8cda84b167c62fb a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:15d2181b3e9a69fb67e9349093ea0221 ;
    s223:hasPhysicalLocation bdg2:ed01ab8cc0505a6764f1c10a53360b5c ;
    s223:observes <urn:anon:hash:7207654659992811927.6> .

bdg2:2f3ecd2bc0ee3bbf4ac4df3099b90d34 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8d837b5ab3bb415d848ee52d298d8868 ;
    s223:hasPhysicalLocation bdg2:ed01ab8cc0505a6764f1c10a53360b5c ;
    s223:observes <urn:anon:hash:7207654659992811927.136> .

bdg2:2f5d67e45561ec3c96fc59ee89a3ae86 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d620506d0a3ca3dd84746f135cc7cbb8 ;
    s223:hasPhysicalLocation bdg2:48b9c1ca3768ef321f1d683b5b1120d4 ;
    s223:observes <urn:anon:hash:7207654659992811927.95> .

bdg2:2f7f953da5a8c8ca088b8559c9fdaba7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ace52bc45a8ce3c5c9af2c8100623eb9 ;
    s223:hasProperty bdg2:d93f835e45e3b452b9c729abf02a9373 .

bdg2:30a1c3957b9de647f377c0cfdbc248d4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:7e97c9c6af1f031720f86e28569d9b9e ;
    s223:hasPhysicalLocation bdg2:12d883d48dde122b0c60e05b3afaf116 ;
    s223:observes <urn:anon:hash:7207654659992811927.11> .

bdg2:30edaf4a8c7851ecafde8fe41a0403f4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c2a5637bca62795cbcf03f92161861b0 ;
    s223:hasPhysicalLocation bdg2:29a8bb43641e7e41aea3357500139b94 ;
    s223:observes <urn:anon:hash:7207654659992811927.1> .

bdg2:30ef1f8f631099dd2ee95a2de324aa40 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:cc869b0b7109395f97cda435e1cffeb1 ;
    s223:hasProperty bdg2:afbe31a619f00b04781a735574d4997c .

bdg2:3108120eb2001b39a571528901c0ca8d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e37dac0108ad319cedd55d9c5f3c4c38 ;
    s223:hasPhysicalLocation bdg2:baf4569696d2e67ac50fed74d90079b3 ;
    s223:observes <urn:anon:hash:7207654659992811927.131> .

bdg2:32182fc79a53f61e7f3a4fcfb0888bc9 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:32e14fe571eb542f481167fd5e4f82a5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:33a1952f039db9e74e469baf688d18a9 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:33cfc7591a4d0809a45db93c17815c8b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a24c75d5b3b270aedebaea30db6e13c6 ;
    s223:hasPhysicalLocation bdg2:4946be64dd7b16a912a4810f751536d2 ;
    s223:observes <urn:anon:hash:7207654659992811927.2> .

bdg2:341b9fe0b1eb0299a4a53995c547a382 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:068af40a1aff1b4e66286835eba63490,
        bdg2:2e5f64a46172c9653c18547ffff51ec3,
        bdg2:3486b3256a1edd0ede82053bbdb948a8,
        bdg2:3c171c87068f1799f69be691b1ea3408,
        bdg2:8905b582310f9996271a3fc1fbf77b12,
        bdg2:a83aca023be4c06b459ad86174fb5fef,
        bdg2:fa6cc06f8457fed8e528b530080f8e40 ;
    s223:hasProperty bdg2:24986e74018218d5202a5f23b82659d4 .

bdg2:34208cfbcba3451dcf5533b33a378cc2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d903bc86cae0e5918b8986523b85fea8 ;
    s223:hasProperty bdg2:9a244185910b5448fd15083b41861b25 .

bdg2:3465a90a852fe07941d761c3ae89843b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e37dac0108ad319cedd55d9c5f3c4c38 ;
    s223:hasProperty bdg2:0b11aaf16c9e8a2a9fe9d6c801ee2f16 .

bdg2:34c29e056dde8b47cc7a1ee342b03acc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f7b684e2de306ea2e9a91b4c09e4fa7c ;
    s223:hasProperty bdg2:765c1c8efb9b00a922fd361e1bda4a38 .

bdg2:35253a2e3f20f6160754fc561bbbd28f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:81b3215fdb82e6e6c895fa751cef33a2 ;
    s223:hasProperty bdg2:2bb1e8ce90dc0b66bbe82d433e9f5ae3 .

bdg2:35d57e7f5ac6cff592b4649f6a5822f6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:366df0e79f8c2be4d4f8fc8fa9fe3121 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:7dc60b6cc6fd3090401bc2d2691b6290 ;
    s223:hasPhysicalLocation bdg2:62c4969bbb79c7117ffcfbb4fdc016ff ;
    s223:observes <urn:anon:hash:7207654659992811927.86> .

bdg2:37d71afb37061c57f50e84c1fab57999 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:7dcab67999f5ffedcabaec86ae54387b ;
    s223:hasPhysicalLocation bdg2:ddd7862aea356734dcdaa217787b3bf3 ;
    s223:observes <urn:anon:hash:7207654659992811927.42> .

bdg2:37ff19e8ef02ce14f1a9b0eebdeb20f7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:38a9ee99e3a4db9a229f7764c974e033 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:0cd68c6f5ddc96ba20c9da28f15ab2f6 ;
    s223:hasPhysicalLocation bdg2:57ebaa104c01a6dc3079763f94a0c1eb ;
    s223:observes <urn:anon:hash:7207654659992811927.144> .

bdg2:38c6e42ba15b8ab54930343dd4887677 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:398505606ba72dbef82741f04fee1ef0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:6d642d920832570334b38ee6aaf14847 ;
    s223:hasProperty bdg2:d5f093fe2af488331f8787cb6e22b632 .

bdg2:39b98771943edf321fed9398f68a1092 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:39d40a893cafce92f8fac6d5ec894ee2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d7129866c79ad10795b6c8c6a4389c2e ;
    s223:hasPhysicalLocation bdg2:625e8534f50808827485538aba3e82f2 ;
    s223:observes <urn:anon:hash:7207654659992811927.69> .

bdg2:3a26c73e85b625594618d0dd3d1c1d4d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:3a33db0efe6351d78838af603aa107b7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:3b4402a3eef609674ef7948e117acf36 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:3bd661e36123b1a7c333dc91d7bc3d2b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:3bfbb66f80055a765e6b326b84f1df45 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:403f18e874bec47ebe1f06d410d00229 ;
    s223:hasProperty bdg2:9725212a7f304e6477d5ebcfb4154818 .

bdg2:3cb8850714738b12b18f832570464918 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d17c221e69211c4a3c4e286fba09a952 ;
    s223:hasPhysicalLocation bdg2:a0cd4c2a8830737d3913b12b424d20b6 ;
    s223:observes <urn:anon:hash:7207654659992811927.9> .

bdg2:3dbaefd170a3f4251812a26a92a1ee5c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8a0354b412471ec8bd25fbb3cd31289f ;
    s223:hasProperty bdg2:4316b1c5bbe342279222e29a4a7eb086 .

bdg2:3e346392093e3d0cc9704ae05d47a9ed a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:b8484ccb5a5eb3d4c278dab72986b917 ;
    s223:hasPhysicalLocation bdg2:93dcf5f949eeaea55d1d15d08452d748 ;
    s223:observes <urn:anon:hash:7207654659992811927.12> .

bdg2:3eb6c180b53d909ea7d3c5cea51f0cfa a rec:Desk ;
    rdfs:label "Desk" .

bdg2:3f0b200699f30b9ccac55751a9ec9aaa a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e9638cd9499eed2e493111e5f139744a ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.135> .

bdg2:3f3f9b50956ba1aa10868e5c12dd5ea0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:982048673a92768e58f99d7cb17ea3cf ;
    s223:hasProperty bdg2:d3654ee90245c77d6de9c51902425b1a .

bdg2:3f75751d879b1ce87f35b53b4d36b05f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:33c2daab088562302ff0f01908102666 ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.190> .

bdg2:3f95625fbca8a6b8ba04d775c8782f86 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9efba4515994867640dd556510ce080b ;
    s223:hasProperty bdg2:ff85400dbe39622bcf7da6c02c0f4e59 .

bdg2:3f9e35833dc15dbb28777d55d9c27413 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:67304a27a6a7347eb5de54a85cf7e5fa ;
    s223:hasProperty bdg2:70d324bf7632916adbe1c477bdca61fa .

bdg2:4080a20a825fdff3385cc48720a7438b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:403f18e874bec47ebe1f06d410d00229 ;
    s223:hasPhysicalLocation bdg2:84b8056724516b4169fa051ca02ac1dd ;
    s223:observes <urn:anon:hash:7207654659992811927.81> .

bdg2:40a1c6c8953670e4c17f32fe558ab715 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:0d223cb40ef2b66991515dab390dea76 ;
    s223:hasPhysicalLocation bdg2:29a8bb43641e7e41aea3357500139b94 ;
    s223:observes <urn:anon:hash:7207654659992811927.147> .

bdg2:40b64f156631bffbfbd62920303b6c01 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:40d864b7f313c9d532177d69463f0b63 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:40db81a6c5e650f48e3430ab069d690d a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2ab9770926fe4c43b88e4891a8a5f344 ;
    s223:hasProperty bdg2:6054ba494da9c0ab614f42c14a002cd8 .

bdg2:41981a96d377af49a281bd726ffa728e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dbde6261533e599fd147c175f9add59d ;
    s223:hasProperty bdg2:78d14662a1faecfdc3d4ca3aa0c7fdb1 .

bdg2:4266e172c03ccd08f17f04934f130e19 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:7dc60b6cc6fd3090401bc2d2691b6290 ;
    s223:hasProperty bdg2:4c8d7eb73c520d494ee16cf604080448 .

bdg2:42ba909a329e8891ad2c0c2709e99659 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:43890d8490296fe508b2c7c40d3bb417 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:15d2181b3e9a69fb67e9349093ea0221 ;
    s223:hasProperty bdg2:2385c77ba50ef70999274eddb54a910c .

bdg2:439174dd5c8d7c736e7f17e7403a2836 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:b7826afc39ed57f8ed4c8563f9b9db7a ;
    s223:hasPhysicalLocation bdg2:8791d74923028f71b7165ad424cdb2f4 ;
    s223:observes <urn:anon:hash:7207654659992811927.188> .

bdg2:4459e224a13b52ca5f9d1a080add9146 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:45b5c59d2d8f54f0062732fae3d73899 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dc4b8341ce922340fe7f55732e2ff106 ;
    s223:hasPhysicalLocation bdg2:11e6eb0dbf8cd69987ad3744811107e9 ;
    s223:observes <urn:anon:hash:7207654659992811927.189> .

bdg2:45c4392ca75cb3472701b73a831562aa a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c6755ceb5ff3047a8497696de2527c51 ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.154> .

bdg2:464c7d2afaabe30f32a0384b69be1f71 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:57addd41978ae308303f55abeb0bb935 ;
    s223:hasProperty bdg2:b69fbe780c1fb4154743e000f677682d .

bdg2:469bc01012eb5b9678849a4f5bbe7212 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:469ecd0387f3030e5c2794df5efcfc36 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:46e0d2eaf6ebd96b8a3763117ca362c6 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:48cff3f49b0370061d01cacd9c318258,
        bdg2:7ca60d53da949961d3694e051373d342 ;
    s223:hasProperty bdg2:54250b83c92c9463afc4f6e1deb23cd2 .

bdg2:47236e93d96e08d1905b0f297c2b5ac4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9efba4515994867640dd556510ce080b ;
    s223:hasPhysicalLocation bdg2:e377d065a0f6a939f62f5bbca10a37de ;
    s223:observes <urn:anon:hash:7207654659992811927.77> .

bdg2:4754af5475e968b26703b092bd2fcfe2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:84ecaa2d1aad852d1865a59328e72e50 ;
    s223:hasProperty bdg2:6acbb7f7f9af65ea47c2d14f3012bac7 .

bdg2:477dfb8ac81840d386085f28ed1e2801 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:d69fe9ad3db28f3a4e00307887e7497c ;
    s223:hasProperty bdg2:bcf6251f1b6adbe003a15ab271704bf2 .

bdg2:482fc78cf7768725da787f895f95dbe5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:48c47ffaa733afa09ea60023f982daef a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3b7be3866fc69c28b1b7019f66326956 ;
    s223:hasProperty bdg2:a8caef59a43328e7ff655bf136d43cbb .

bdg2:4915271b5838ce1c37ef886146487229 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:498630c965e6778379d53904dc9bf25b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2907440ca06de9cb143521992678738a ;
    s223:hasPhysicalLocation bdg2:192c90b00a08a0d3db019dd3c660933d ;
    s223:observes <urn:anon:hash:7207654659992811927.88> .

bdg2:49d74e0bdbde51f183f4ed2a200ab31d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5691680dd200d50b1650a1fab7c6b774 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.15> .

bdg2:49f09c1c4eaf111b3de3da06256927ba a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9a20bc7f5fc6dea42d67cad17d2b4ceb ;
    s223:hasProperty bdg2:93ba8482e59b5632c0aa80f13b0aa5e0 .

bdg2:4a3ca7c8609a02f0db3d97f87876d065 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:27977e8e274dfc2daf840db0983734dd,
        bdg2:7533dab39f87a400ba53bc3d65b08618 ;
    s223:hasProperty bdg2:a0cc6a51efa5a120ecafba21fec113f0 .

bdg2:4aad3a6041950099e5bae02c80814320 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:828e2be5cf4dbc3f174796e8103f8928 ;
    s223:hasPhysicalLocation bdg2:d92fabd4965ebb3198e92723cae9f3af ;
    s223:observes <urn:anon:hash:7207654659992811927.72> .

bdg2:4bd6e772014b6f41e9d109d1b2114f1a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4bf36fbf598ca16296054c25ca2f4a13 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4c0763e156e16c8fd696fd15655120d8 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:33fb71f67c21c5e989adb822949c2b49,
        bdg2:47477a641af7df7693de89e595ebf6a4,
        bdg2:78153b6a78a435507d06f406d77ed3c5,
        bdg2:85da2845e7382339ac648b7d36602096,
        bdg2:999c27a44582b60d82f033435ebefbc8,
        bdg2:a5149ce7e6989a80e3215ca465f87b6e ;
    s223:hasProperty bdg2:fff96e5fdfc93f13c7ded0ac3c1c515e .

bdg2:4c5c1e30cb719a073d87708e53f29053 a s223:ElectricBreaker ;
    rdfs:label "ElectricBreaker" ;
    s223:cnx bdg2:75e2723bf21af3b8e67ad9a7fecc96b1 ;
    s223:hasPhysicalLocation bdg2:325665573393ea598bc03681fccc91aa .

bdg2:4c6a3fa6734ac45374961392b7106672 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:b5c255e1675a140756a76b8819dc282a ;
    s223:hasPhysicalLocation bdg2:f9b70d88daae0789557d8e20bc615cd7 ;
    s223:observes <urn:anon:hash:7207654659992811927.130> .

bdg2:4c8bc91ef26e626636ebdd4573da8bbc a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:aaadb5ba90d7ccf36cec56ca4052401f ;
    s223:hasPhysicalLocation bdg2:12d883d48dde122b0c60e05b3afaf116 ;
    s223:observes <urn:anon:hash:7207654659992811927.153> .

bdg2:4caecd6c9cba882c371437de8438a760 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c55f925affa30a0bdc5dcdf39ea30cba ;
    s223:hasProperty bdg2:fa1d5be4724b904df26ea95d6f1ca017 .

bdg2:4cf6dc6730ab503f0d6383082bc145d4 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4d6f6928018e8d27a58d652a55906501 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:978203c62507b12fdbc8b9ff363fbe47 ;
    s223:hasPhysicalLocation bdg2:231db849bf26a52aa25f97e5db97245a ;
    s223:observes <urn:anon:hash:7207654659992811927.66> .

bdg2:4d897d7e18ed43de96b3d7fe72aa9fc0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4da85bc57364ee81b9f6da4610025787 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4dad8d3f6f94181bf9120f1a6e88f10e a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:655b03efd41bda1523c8edf51d18db86 ;
    s223:hasPhysicalLocation bdg2:21c50a50a935d24d436c4d2bf27b0be6 ;
    s223:observes <urn:anon:hash:7207654659992811927.203> .

bdg2:4db08ceb79df613aea6025e22dd5b952 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4e013e688d181131a4597942abac8a88 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:6007838dbb57ce0cf0a5d597b9ba260d ;
    s223:hasProperty bdg2:5c6df6e98ed14e93f777a5a6cfbd0398 .

bdg2:4e5e3d7013240a43f6a6c10643311a2b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3a51f59064b40d956f24a6173f4ad887 ;
    s223:hasPhysicalLocation bdg2:14d0c76c81ae24a4a5c62aa4fb56e7de ;
    s223:observes <urn:anon:hash:7207654659992811927.20> .

bdg2:4e7119b691309d203a3f4a387c64a81b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e6d019b933041f5fe0f747150475ff87 ;
    s223:hasProperty bdg2:675f3e604e306be4ad357b9642e80e52 .

bdg2:4e7280acc68de4a0ebfd4bd4cd873ab2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8cf2523817d8042bf45a48f4dd635e90 ;
    s223:hasProperty bdg2:cac238107abdcd8bf6e707630f8279ea .

bdg2:4e9a8660c247879826e310977db68c7f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2f4ee35423b2eb7a2291bd9f52f8d92c ;
    s223:hasProperty bdg2:40ed421ee94c21f112579b76cb4f845d .

bdg2:4eec254bec33ff9f1e65bc1feacc175e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4f0b704e5d4bde406bbdd0c6e5c5cc8b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:4fb7388ce873277b3a8b2f3e01f9ea32 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:81b3215fdb82e6e6c895fa751cef33a2 ;
    s223:hasPhysicalLocation bdg2:86f2e8b2c65a19c84c9150a3db53d385 ;
    s223:observes <urn:anon:hash:7207654659992811927.151> .

bdg2:4ffdf9987b113d9e0d257de28b289be8 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:51470c80a07c29d8ed80318d0588f753 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8a0354b412471ec8bd25fbb3cd31289f ;
    s223:hasPhysicalLocation bdg2:909cd2b5619a9b30cc4b79a5ba4e39bb ;
    s223:observes <urn:anon:hash:7207654659992811927.14> .

bdg2:516d6e77b38881c0f873a0d39d909064 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ba364834c5d4cb495fea46e9716486ba ;
    s223:hasPhysicalLocation bdg2:bbb44e7dc0f1451746a0315ee671e63f ;
    s223:observes <urn:anon:hash:7207654659992811927.50> .

bdg2:516ed33b599e9a0a82ff95948b12f73f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2b3f33702f0d1ee95529c349968a8fd2 ;
    s223:hasProperty bdg2:b90f43f55473be549986fec0a14f5d9c .

bdg2:52a8f1eaadf42e8eec8a80b1c2efeaf9 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d8b56731faf0976c57842c1b5917ce55 ;
    s223:hasPhysicalLocation bdg2:51badc1b88929e17ab623dfc459cf9f3 ;
    s223:observes <urn:anon:hash:7207654659992811927.159> .

bdg2:53108316a802d9149bbbdd7329a7e734 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:6fdb617797d9e7e2436a9ba7036691b5 ;
    s223:hasPhysicalLocation bdg2:5d5d97f8f742c3e465bbef7a01787eab ;
    s223:observes <urn:anon:hash:7207654659992811927.179> .

bdg2:5358b1b4878dd8c859f425df7f306da0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:498a622214bd1e939ccad21ae8cee495 ;
    s223:hasPhysicalLocation bdg2:cc188237d9c7e1f09d9820ff7da8bedc ;
    s223:observes <urn:anon:hash:7207654659992811927.163> .

bdg2:54239b931338f8b0f0ea4022118c37dd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ae411af26a87ece293d2eee7b5873b3b ;
    s223:hasPhysicalLocation bdg2:72bc1af527c9db1099b409ca6d88053e ;
    s223:observes <urn:anon:hash:7207654659992811927.24> .

bdg2:548037d702fe499efd023789319099e2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8a2b8ee30b4697ac82b416b0df67cd2b ;
    s223:hasProperty bdg2:f5453b07d79cee961e67064614506d25 .

bdg2:567481e6fbaa08dbc9f94a7b4d71492d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c4c7c87dba8bc5a70625c2f5a71b693a ;
    s223:hasPhysicalLocation bdg2:62c4969bbb79c7117ffcfbb4fdc016ff ;
    s223:observes <urn:anon:hash:7207654659992811927.39> .

bdg2:569aeb79d4075f92e5a6edbea86afd04 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:982048673a92768e58f99d7cb17ea3cf ;
    s223:hasPhysicalLocation bdg2:53e936501f0044729f372614198f9df2 ;
    s223:observes <urn:anon:hash:7207654659992811927.148> .

bdg2:56a0fd5d916c3789214da8f92b511a67 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dca455069642f85f30d74b1b0a19f47f ;
    s223:hasProperty bdg2:da998275ee2829b2518089ed9d8c9303 .

bdg2:57c83613bc6bbc5d2b720b7ed47d27cc a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:bfa72640ce15b253a77d616b65892783 ;
    s223:hasPhysicalLocation bdg2:0e81326510b84d23451d78c7f8081083 ;
    s223:observes <urn:anon:hash:7207654659992811927.182> .

bdg2:57ce7fedc95a8d9b463c6acf151d305f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:600d0e2e4e2ec89fcd50781248128851 ;
    s223:hasPhysicalLocation bdg2:cc188237d9c7e1f09d9820ff7da8bedc ;
    s223:observes <urn:anon:hash:7207654659992811927.89> .

bdg2:58685e612218a2b6c3223aa16af21c17 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:76b4b068c93faafb901714a74ca21ee9 ;
    s223:hasPhysicalLocation bdg2:e377d065a0f6a939f62f5bbca10a37de ;
    s223:observes <urn:anon:hash:7207654659992811927.75> .

bdg2:5873f8a5b5eb3b4d7188528c2b4b9eee a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:bad9e261cfa00e6a7b8fe4b7f3e6f148 ;
    s223:hasProperty bdg2:2c9eb7ceb95b70cfe166ed05084dbfa4 .

bdg2:58788b107b0809433581213112cf7008 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2088f1c4665d7bb2328484d88f135f03 ;
    s223:hasPhysicalLocation bdg2:24d57624d00115493cc15d32a918c9ed ;
    s223:observes <urn:anon:hash:7207654659992811927.60> .

bdg2:58aea17e9311f2e236f69a91b7bab227 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:58efc5e4dcc8e3ab8e56a971fe444c1a a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1aeb8687575a5706b6d25a2fec2965cd ;
    s223:hasPhysicalLocation bdg2:230198f93f088bfe5c46484865a3a338 ;
    s223:observes <urn:anon:hash:7207654659992811927.63> .

bdg2:58ff6cc25cf5d30b1820c6f53ce545c0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:778f4c97b350ed61ff93f0e8f220b77c ;
    s223:hasPhysicalLocation bdg2:ee4c51d58747bcb434fa602d43b15686 ;
    s223:observes <urn:anon:hash:7207654659992811927.132> .

bdg2:596d9edc0ab3569ae21431afca6a5425 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4b03924073d763c613ba909c349076b9 ;
    s223:hasPhysicalLocation bdg2:ad8ad1cc943b6509395bf042a9b219aa ;
    s223:observes <urn:anon:hash:7207654659992811927.122> .

bdg2:599e2d27080cba3f67594d493db395b6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:828e2be5cf4dbc3f174796e8103f8928 ;
    s223:hasProperty bdg2:ba0c312eab94c386f3435d7fd1838c4b .

bdg2:59c5c612ba4b85bbee4124af83b38d47 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c3d310bfb7e9bac12b23e35f7ebab284 ;
    s223:hasProperty bdg2:86c2bad1a7a5b114443d6bd22382ba65 .

bdg2:5a1bbdfe8643ac3eea2db2a70040d5bc a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:968dd9ea004259bf53c639d8e9644d88 ;
    s223:hasPhysicalLocation bdg2:9fc840976a4fbe61395c749248ec380d ;
    s223:observes <urn:anon:hash:7207654659992811927.41> .

bdg2:5b18920c38c5ebbfaf57648cb0a9af66 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:5b347bf90962bdf8e98899578d3d047f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:17f3c93e1f7670582b3ee4a602e54a3d ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.49> .

bdg2:5ba4f2cc51fecc8cbe492c41cee907a6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:5bcb2894f29ec4be30be92edefe1b9c9 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:5c3a50b9631348d496cb2cfc7e5f874e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8b7ec7fed76c55c541b94591e1602e37 ;
    s223:hasProperty bdg2:a881c79ae645d9d84deee5cbe830e8c4 .

bdg2:5cfc0e63f8d702145f5b49ed96fcb097 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:bfb42aea151bdcb1e2240ce79242cddb ;
    s223:hasProperty bdg2:0351fb53b2070235a0bb8794d8cfa23d .

bdg2:5d9c02c02958154f69616225a87f34d4 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:2255363b8c9635fe6b424de7871b666f,
        bdg2:2768270309ba32692621b19b36e76ba2,
        bdg2:36eb27f2ab1ecb1f88d65bfe5f3a32dd,
        bdg2:4f68e031477f4f7ef1c3226209ac7762,
        bdg2:5222485875f8d05b11af0ab32b83a524,
        bdg2:57de609d6c10e8e98efff23f543eb5e1,
        bdg2:5a4757cc92f9c1f40a376982984fcf07,
        bdg2:5c57e1fb91225d2088724fc702e934a8,
        bdg2:5e8fd38f03be8c7987244827bd42cc10,
        bdg2:60448ff60b06328a324d1cfd7aa4a734,
        bdg2:67b400151861012d9d81b96f848ef322,
        bdg2:74ef7fa649fd2e69c1f5b5ba04335371,
        bdg2:7602db7ebad4b01aebcdb9f216ed1cee,
        bdg2:76b376d944ab8b127b5d95c2b78dbaf0,
        bdg2:7fcb2c0e745dd368918431511e957d3d,
        bdg2:9036e41893cf7b877ba98ca1a1d94a2a,
        bdg2:94d6872394f3e982cd364b581059841e,
        bdg2:a9a301c4cf263ec05a32ce113da31da8,
        bdg2:b57a2975d07c9ca9daf7361642acc983,
        bdg2:d2da94f855acd3918c28ac06e83804c8,
        bdg2:f8f769bae63717eb619f3be06b72b9df ;
    s223:hasProperty bdg2:13d5304a09f73ab16496fc614f9c3987 .

bdg2:5e1f231de4a9a81a1ed236eac3b4e7d4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f6618ae83fffde98209a73da71941aa5 ;
    s223:hasPhysicalLocation bdg2:bbb44e7dc0f1451746a0315ee671e63f ;
    s223:observes <urn:anon:hash:7207654659992811927.52> .

bdg2:5fb31c70fea0299f41bfdb5627b8db7b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c63da51819b41c3e443dd9eb66794007 ;
    s223:hasProperty bdg2:3200f486926de478f6cf8ddd0d48b350 .

bdg2:6063ba507a5b946a119a7217683593fe a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:216a1a673a64ce8f5d1202aa995bbebb ;
    s223:hasProperty bdg2:b0d6a4f33095f542e054d63fdb6c7289 .

bdg2:60d3fa761d0cc74c92b5d3d6ef06f881 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5b2fbb59a95b60c287d79f9306b8048f ;
    s223:hasProperty bdg2:d61d144ab39ff8b159908527ed0b7395 .

bdg2:60e8d02d7f9113b2fd6423459f0a4ee3 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5b49e838b0e4815674d8d42391e687fb ;
    s223:hasProperty bdg2:b031d031c511dee3a47f437117d512f0 .

bdg2:6117f8aeb9bfe4fd07f5e7ff837ec34c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5e58d7b9a62f5f795556cbfe3c500f87 ;
    s223:hasPhysicalLocation bdg2:ebdf3f7fa32924a573d2bbac1bf6cdb1 ;
    s223:observes <urn:anon:hash:7207654659992811927.113> .

bdg2:613c9e31344c52729aef4acbfa99a46d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:87c21ac688028c5996d9a0032433aaac ;
    s223:hasPhysicalLocation bdg2:0debbf9011d2edef136a993751616c4a ;
    s223:observes <urn:anon:hash:7207654659992811927.152> .

bdg2:613cecf75f28726c37cfd4c086d87091 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:62244521e62aa9cfd1f13b3a452349ab a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8b46ca546a45b4e4bffccba29f025b7f ;
    s223:hasPhysicalLocation bdg2:80ce095522d440beebb43d2a7e53ee82 ;
    s223:observes <urn:anon:hash:7207654659992811927.16> .

bdg2:622bc68b69d912957f8764722b39a94c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a03c96cd0c1505e17a7e36c662a83949 ;
    s223:hasPhysicalLocation bdg2:911d6cf640da1f0566e01608e4803a01 ;
    s223:observes <urn:anon:hash:7207654659992811927.108> .

bdg2:638964653cadc20660c47ee4691d8662 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4481dc81f4bda104ab08fefffba33bca ;
    s223:hasProperty bdg2:02f6a6ce8e2e42ec88246167b9bc474e .

bdg2:6487ee8a102005ebed79c6e443d94508 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c2a5637bca62795cbcf03f92161861b0 ;
    s223:hasProperty bdg2:e823755c1d588866d40590c25237173f .

bdg2:650162ad31cb5353cb3db4c95800da6b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dbde6261533e599fd147c175f9add59d ;
    s223:hasPhysicalLocation bdg2:72bc1af527c9db1099b409ca6d88053e ;
    s223:observes <urn:anon:hash:7207654659992811927.82> .

bdg2:65b7660308375f7338fe0df49c969ef3 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e5322067142dc8cdd3adde5c692ce6e6 ;
    s223:hasPhysicalLocation bdg2:b1cb648c451461fac7b72213fe26eafa ;
    s223:observes <urn:anon:hash:7207654659992811927.198> .

bdg2:6605388b98ef5dd8f3af98c6a53bf6c7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:6605f9b9dae449479e52b263520df6df a rec:Desk ;
    rdfs:label "Desk" .

bdg2:661b7257a00db25a83c63d83528bf584 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9b4c2be1c1d5f15e8b027744b841267a ;
    s223:hasProperty bdg2:9fa479682944ced1cf39a3bfa342a3da .

bdg2:6635ce2ca2ce5fabf77a0ce2094e9d5c a rec:Desk ;
    rdfs:label "Desk" .

bdg2:664a8836f1246930897db841f4da840c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d1ee354f7abf526d06edb0f01a2429b9 ;
    s223:hasPhysicalLocation bdg2:d391175047a25b0307bd11e583fc2c11 ;
    s223:observes <urn:anon:hash:7207654659992811927.79> .

bdg2:6692bfa4307dac37a02e7e555760eebf a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:309ab104664e0170ddc59e01aa6f0247 ;
    s223:hasPhysicalLocation bdg2:2e5e339d5a699a097fe96dd67a1bc05a ;
    s223:observes <urn:anon:hash:7207654659992811927.91> .

bdg2:67464f1ae75eb5aefd30031588515f25 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:677335ea64cd9a296d87d03b87ca4661 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:67cb289e9084f0631423cb4986804411 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:23f41144e540eb68c486c03d2f2033f9 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.114> .

bdg2:67e811304c11fefad409e535a66e8b60 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e6ae008b6c8b7fb75ff99a461cb7b55a ;
    s223:hasProperty bdg2:d739d50dbb4da33e424bd80ea68d238e .

bdg2:68d73cc005f4c2ecc797b848c9979bb9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5393f46be69152dd002dc824d8f07350 ;
    s223:hasProperty bdg2:56823b278c60618e8cf840a26942d9ad .

bdg2:68ef09c6514335dc7ecfe13f64f3f5cf a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9a20bc7f5fc6dea42d67cad17d2b4ceb ;
    s223:hasPhysicalLocation bdg2:9b72691da50bd6fcfdd1c2df9db4b977 ;
    s223:observes <urn:anon:hash:7207654659992811927.35> .

bdg2:69219a4660fddef3e9298365a80847f3 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a319c2ed4311440b2c384d18389e8e65 ;
    s223:hasProperty bdg2:fda80d759fff4ebef9a7580bcb56b3e7 .

bdg2:6a3fe6520c038905b2b082b9f7c74408 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2a43cce251af5312dd74a383fe783c1b ;
    s223:hasPhysicalLocation bdg2:b3460e94669b0a51e5ca3fa8e6bd1fd9 ;
    s223:observes <urn:anon:hash:7207654659992811927.62> .

bdg2:6b28a3099818784847695393dac899d9 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1e0d14677bca822dc8788fb3800727ee ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.162> .

bdg2:6b6fe4e058f762aa9ad78ff27d719782 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5691680dd200d50b1650a1fab7c6b774 ;
    s223:hasProperty bdg2:ac178ed159cc707d38526e19f7e61ec0 .

bdg2:6bb62d464f3afc1b25f8e412e4899d35 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8a433bb8436f771e64321f05b8967335 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.125> .

bdg2:6bc441ffae4db1512e11c2a0213a8763 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ac7c7b7ed5821f72a930870b2e6c34f1 ;
    s223:hasProperty bdg2:cf2c3294ec111ed1ba6d3907a3d714f8 .

bdg2:6bce1c2fad70da7503e035cec40f1e31 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d17c221e69211c4a3c4e286fba09a952 ;
    s223:hasProperty bdg2:541728665b014be7efc5f1518d1e659a .

bdg2:6c3037b2bebf03638af15ec8f73c756d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:6cd4ca52c93e976705694b03ab2ced2c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:7e25217ea74bdb88e17b24b5e617c872 ;
    s223:hasPhysicalLocation bdg2:909cd2b5619a9b30cc4b79a5ba4e39bb ;
    s223:observes <urn:anon:hash:7207654659992811927.174> .

bdg2:6d2d26e44217cda922ecb4ca34804bcb a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:68d0e27b62e8ac20f564fa1b6822a2a4 ;
    s223:hasProperty bdg2:0959635666554329da3457574ac29ac7 .

bdg2:6d829c0a3c488ee256169dff43f70d26 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3d9560f90cbbe2529480a72376159ecd ;
    s223:hasPhysicalLocation bdg2:a72dfd88fca24054017657dce93b610d ;
    s223:observes <urn:anon:hash:7207654659992811927.170> .

bdg2:6ddeba4266183d6df076c0de121f91e0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:87c21ac688028c5996d9a0032433aaac ;
    s223:hasProperty bdg2:070d95966b67532e649d66ed190b7a24 .

bdg2:6e7cf033b0d264203dd7836c75fed080 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c36b92ca01467748984ba54c5990c17e ;
    s223:hasPhysicalLocation bdg2:b3460e94669b0a51e5ca3fa8e6bd1fd9 ;
    s223:observes <urn:anon:hash:7207654659992811927.71> .

bdg2:6ef67b2f033aaa9bc66245cd3d2bb822 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:89c038217b889e254ee9bc0e50f1c93f ;
    s223:hasPhysicalLocation bdg2:3ab9a9929bf8b6cab213f97c82e269ed ;
    s223:observes <urn:anon:hash:7207654659992811927.57> .

bdg2:6efffcafb0a50a5a663b9eaaa1e882cd a rec:Desk ;
    rdfs:label "Desk" .

bdg2:6f3f7e00be31640b8542ef30298f92f1 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:6f406291ebddb811f84b6ae4755475a2 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:6fffdce63254a1e6a7a7df12c3033f83 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:fddd2c321d210dcd0d081e35626ffa47 ;
    s223:hasPhysicalLocation bdg2:77fc2134d48f52b6763ab1eb2d17177b ;
    s223:observes <urn:anon:hash:7207654659992811927.141> .

bdg2:705dcf37fcea7cff14cbc102e4366f2b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:0f93232ee9021c3911d2f214c3bf0eed ;
    s223:hasPhysicalLocation bdg2:63d053c27bb1883823301e924e5f9f59 ;
    s223:observes <urn:anon:hash:7207654659992811927.184> .

bdg2:70b06c651463da5591cee30bfdfa177d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:70c8a02fb04a2e862b1839976b79c7e9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:53cc4bf3e7487bb7193243c837ac54ac ;
    s223:hasProperty bdg2:171ca5e2506feda3e77e3260a7a25e9a .

bdg2:70fb85d4f8cd976ed0ea9b0b475f572b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a319c2ed4311440b2c384d18389e8e65 ;
    s223:hasPhysicalLocation bdg2:bd4ec146e173e46b89794398e674347d ;
    s223:observes <urn:anon:hash:7207654659992811927.97> .

bdg2:7168d38a16d61ce5b3c3daf09202a874 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:512875b0de3add7c461e0ed922f0a0dc ;
    s223:hasPhysicalLocation bdg2:fde62759481e6105c4e797a8c3916820 ;
    s223:observes <urn:anon:hash:7207654659992811927.133> .

bdg2:72119862a8516be331f8a6de3909bc4d a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:0c8aab5cd1cdd4a30fd75f2974c96cab,
        bdg2:3c212c126d9ebb437fe538d8afad67f4,
        bdg2:660d4c77ad8f707d943422f14bef7e47,
        bdg2:7107dbf39435c895ec5ce5bd093aede2,
        bdg2:958abbdbc7f6185bfa408f70b113828c,
        bdg2:9a568de06eb252bc027903ab4a42e764 ;
    s223:hasProperty bdg2:07527982fa766cabc9c49f5d9839a533 .

bdg2:7253a2092696a7f1dc282e7f4cb6eafb a rec:Desk ;
    rdfs:label "Desk" .

bdg2:72b2d95a7de965337847b2955c1be884 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:aaf7f184218316b4a8d05128ae859afa ;
    s223:hasPhysicalLocation bdg2:51badc1b88929e17ab623dfc459cf9f3 ;
    s223:observes <urn:anon:hash:7207654659992811927.124> .

bdg2:72fe044a304ebd97ce9125f50b1efd18 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a50aad26eac54f5eb299183a31276ef5 ;
    s223:hasPhysicalLocation bdg2:d31ff0f87848224671aa8850de49a184 ;
    s223:observes <urn:anon:hash:7207654659992811927.30> .

bdg2:730f9e5495d6e5b8d378453ebcb927ef a rec:Desk ;
    rdfs:label "Desk" .

bdg2:734e8bffad0e25094e5f23a02d00662d a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:abf626870d354ef7b317f5effe2c4fe3 ;
    s223:hasPhysicalLocation bdg2:1534461d315bdad4e877aae18713cb14 ;
    s223:observes <urn:anon:hash:7207654659992811927.45> .

bdg2:736c423e6fd8139dd162a54932231951 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:17f3c93e1f7670582b3ee4a602e54a3d ;
    s223:hasProperty bdg2:91924e96de61b181b38ecd8a780a7d15 .

bdg2:73e61e47ab8fc72cab4dc9cd0a1d7b86 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ea0f17ea4732a07aec80e0b8f9d9ae20 ;
    s223:hasProperty bdg2:c14f243d420f856e981161ebae1ad518 .

bdg2:7571a709be0da22ce6f9d89bc826ad33 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7650f0a600a7594e514be0699c464604 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2f07d85dee70d685ec7b41d346c2a270 ;
    s223:hasPhysicalLocation bdg2:14d0c76c81ae24a4a5c62aa4fb56e7de ;
    s223:observes <urn:anon:hash:7207654659992811927.176> .

bdg2:76fed4689cb923084d4508d390d42d9f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:41c73b73c85f8425fdde72a2a490f235 ;
    s223:hasProperty bdg2:76f75890a5df43cc68df57f77ddff858 .

bdg2:7829bc52d050bf3ef12178deb7ffcd29 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:78d39800c5f5ab85fccb7a3d308d56be a rec:Desk ;
    rdfs:label "Desk" .

bdg2:790826a409df89b4f0babdd10ac55a5c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4481dc81f4bda104ab08fefffba33bca ;
    s223:hasPhysicalLocation bdg2:3ab9a9929bf8b6cab213f97c82e269ed ;
    s223:observes <urn:anon:hash:7207654659992811927.167> .

bdg2:7930d97f327c287e9cebc00048e4cb01 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:0c4cffdc5a06fe88fe8dea9088b7a858 ;
    s223:hasPhysicalLocation bdg2:d2adf181e2c1931b46fa7ed04d061da1 ;
    s223:observes <urn:anon:hash:7207654659992811927.29> .

bdg2:79722fb7653d486e4d9dd6fd90703dd7 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3984ce7221abab82304f93f39a6b9113 ;
    s223:hasPhysicalLocation bdg2:cc188237d9c7e1f09d9820ff7da8bedc ;
    s223:observes <urn:anon:hash:7207654659992811927.31> .

bdg2:7a3850d8a58e457b9eae41dbfd69686d a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:979039c3b09c21f4edc662a866b4e5da ;
    s223:hasProperty bdg2:772cdb9b99378ea9af4a16c39e30a500 .

bdg2:7ab38c5d20e8646c9391759a2a5c75e9 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8b7ec7fed76c55c541b94591e1602e37 ;
    s223:hasPhysicalLocation bdg2:21c50a50a935d24d436c4d2bf27b0be6 ;
    s223:observes <urn:anon:hash:7207654659992811927.127> .

bdg2:7ad8b1b17b9bda3ddebbd5cc4b067550 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4ddac598a89f6d344103935cfb542a81 ;
    s223:hasPhysicalLocation bdg2:d8bda39e449004fb33ba1d9f5c31cf3c ;
    s223:observes <urn:anon:hash:7207654659992811927.94> .

bdg2:7b31e6e345e5c816d06baa54790e2638 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3080b6a5350bc7a339841f46fd35507a ;
    s223:hasPhysicalLocation bdg2:b203b8a770b64f602a7550c8db9064b6 ;
    s223:observes <urn:anon:hash:7207654659992811927.37> .

bdg2:7b691155e9e291490e237d71d2204e20 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:03e20d00c3221fb11b87e1cfc5d5971e,
        bdg2:f6f191386871e261ab08aa8ba64746b9 ;
    s223:hasProperty bdg2:402cac3726fb054f957d1216f9a2c18e .

bdg2:7b92420c0438c2f3859b4f47c66dbe21 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7b965b9644194c43979d4c5ed39a2aa3 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1e0d14677bca822dc8788fb3800727ee ;
    s223:hasProperty bdg2:5c278b5726b401328f487f360b02ff70 .

bdg2:7be84ff6b1c8f8fea790c8cee2703de9 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:048d6323cce43cc7ea6d83e5d8caa7d9 ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.76> .

bdg2:7c35309391805664b5c60d523908f554 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7d3808741eac79ce1884f315d35accfc a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7d64385fbad07ce7fcdda9bcbf3fc8e1 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7d841c8847eeadfd336560a670986147 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:6007838dbb57ce0cf0a5d597b9ba260d ;
    s223:hasPhysicalLocation bdg2:942e8885d49df649c7b47e759d53f318 ;
    s223:observes <urn:anon:hash:7207654659992811927.104> .

bdg2:7dae0efd02add925d02941cbae0912a2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e6ae008b6c8b7fb75ff99a461cb7b55a ;
    s223:hasPhysicalLocation bdg2:cc188237d9c7e1f09d9820ff7da8bedc ;
    s223:observes <urn:anon:hash:7207654659992811927.118> .

bdg2:7e42077eb1efeb940dac352b05feeb58 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e9638cd9499eed2e493111e5f139744a ;
    s223:hasProperty bdg2:b6bc753714a3c47ae15847f5220768eb .

bdg2:7e8bec585ed28ccceff418eef095285d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7ea91a8267840a255fa1414995661281 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f3a51fcd0df36ce88d1a5e4e6ecdfd28 ;
    s223:hasPhysicalLocation bdg2:ed292ef68fe5e88c427938777bc513f1 ;
    s223:observes <urn:anon:hash:7207654659992811927.53> .

bdg2:7f48b4c9f0fe37e0104e2d163ae192eb a rec:Desk ;
    rdfs:label "Desk" .

bdg2:7fa28f406a5dac359bed3bc99bf14924 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:801abfc1ddaef25ba923cfea4cf6869c a rec:Desk ;
    rdfs:label "Desk" .

bdg2:806a1a2d3e16c22396c3a8d8d002b3d6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5e8455c4552c68900e30aaef8f3340b6 ;
    s223:hasProperty bdg2:b21870f5796de359eb56dd160f70f3ab .

bdg2:8195abb03033d80d9d6c6417fdd13ccc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dd6c4ffcb1cc48bff5bcf08355f1d4ec ;
    s223:hasProperty bdg2:0993425448be5c05576af7cafe90d956 .

bdg2:82118524d145f7687b957dd981b375cc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:82e4f828eda5c00bdb2fc897fb0af988 ;
    s223:hasProperty bdg2:ce71749854821f4383b84cb641bb520c .

bdg2:82bc84e88ebfd03f6b239e501f006f69 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:29828665b2a47cc395f0024d09d5da85 ;
    s223:hasProperty bdg2:6392d2cd2481a2cf4472a167c5da18fc .

bdg2:8381e16a7784f5b64d333ce0fbb00465 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:81f9cc5e99668ac4679bd524778d7535 ;
    s223:hasPhysicalLocation bdg2:57ebaa104c01a6dc3079763f94a0c1eb ;
    s223:observes <urn:anon:hash:7207654659992811927.165> .

bdg2:83f0aee1b998bad1164b76eef549f7dc a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:2afa71c8f7ec7db30f9ebc176fa2b4e8,
        bdg2:7372ad87131bd2965a60ba2d1cfb0b9a,
        bdg2:7fe6212e98c5ffeda421a1508b4f9e9d,
        bdg2:8d8d2ce5afc478f1119131f7feb3d733,
        bdg2:a768e66684379b96bf9a761d757d5862,
        bdg2:bf3eaffdc79002ba8a7c973197088ac0,
        bdg2:d298e5c6c413cb7e7893c3d23277060e,
        bdg2:dced74520b6616f8d57f27f7aea9fe85,
        bdg2:e7e807389950408e8b2ac0537bfbc161 ;
    s223:hasProperty bdg2:72855f8b95d9819708f53d1df08ff099 .

bdg2:840616e9c427d8f639961e55571049c3 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:87e0be532a90f23737cd8fec845d5499 ;
    s223:hasProperty bdg2:349dadbd280e6bef850c27e219279160 .

bdg2:8441a661a50e922ef00aab31a345da8a a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a02a9a45020f75325bf304b3156f7c30 ;
    s223:hasPhysicalLocation bdg2:51badc1b88929e17ab623dfc459cf9f3 ;
    s223:observes <urn:anon:hash:7207654659992811927.129> .

bdg2:854c0d5ef5cf0a5e6ca5b4d806088641 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:8587607195dd9532faf1070cca6229c7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:865088ca7e314a3d2d0e41701f3b3b27 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1d38a2e096a2c49e5b7db4941e7795bb ;
    s223:hasProperty bdg2:8d50a75df875897c78f8530ac48f489e .

bdg2:87649ea1aa2c56c36d8061a497798ce2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9a5cae5b1afb0b4f03aff2b2f67379a7 ;
    s223:hasPhysicalLocation bdg2:3c418468e71ff5a537b5e56455bc2356 ;
    s223:observes <urn:anon:hash:7207654659992811927.106> .

bdg2:87854c760bab696a43136edfbfa577a2 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:87cf5b347fbaa789fe7a244c5a0aaeda a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d8b56731faf0976c57842c1b5917ce55 ;
    s223:hasProperty bdg2:3b4043ef612ba3bf54c840cdd691cb34 .

bdg2:880fe9dd7a8940164cfcab554f55bd22 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5b49e838b0e4815674d8d42391e687fb ;
    s223:hasPhysicalLocation bdg2:7f4b3ae1601ce2902c202821b4e1e405 ;
    s223:observes <urn:anon:hash:7207654659992811927.142> .

bdg2:8841b88b5f9bfadc20d11b1519c92c07 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:88901e466268ca62d091a336a2aac5e1 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4724df268ab8c7c1b5ddbbadd8bc47d2 ;
    s223:hasPhysicalLocation bdg2:51badc1b88929e17ab623dfc459cf9f3 ;
    s223:observes <urn:anon:hash:7207654659992811927.164> .

bdg2:89d9a63cd0042f7bcb2c329bf26327f0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:0e016f30b7c15a69ee4146a80d6597e3 ;
    s223:hasPhysicalLocation bdg2:8b15be9fe257c6229d9c79a244e36cd4 ;
    s223:observes <urn:anon:hash:7207654659992811927.80> .

bdg2:8a574c95739495f6cda3363f9697f908 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:b7826afc39ed57f8ed4c8563f9b9db7a ;
    s223:hasProperty bdg2:b373e6cd66753c66c0bfb460c0aa6bf2 .

bdg2:8ad4580d67e4765a73f8f392d8076145 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:50e4a0d52fa55ddcaa880f310ae40869 ;
    s223:hasProperty bdg2:4776b437318d5f952dd009d95b178415 .

bdg2:8bbfbbdbab9e5a10553af4fc1c1e2e65 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a50aad26eac54f5eb299183a31276ef5 ;
    s223:hasProperty bdg2:7522b2255d67e4d3adf2e43f5c979317 .

bdg2:8bcf9b39b3547a7be64dfbdcd4f360e4 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3ce481db0ccd0a6d2b57917ef118e072 ;
    s223:hasProperty bdg2:9a4f37086b7bb398d94638744adab52b .

bdg2:8c57bab7f9863c837ec6857008d75f1a a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:512875b0de3add7c461e0ed922f0a0dc ;
    s223:hasProperty bdg2:3e060116273f2205d0e437c7a3f513bd .

bdg2:8cc6e9f3ae306e9e392375b3ec837e00 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:bfb42aea151bdcb1e2240ce79242cddb ;
    s223:hasPhysicalLocation bdg2:3d3213544bcefb2baaefbd96716f1bc8 ;
    s223:observes <urn:anon:hash:7207654659992811927.61> .

bdg2:8cf177deaaf7867190f4778639f61c57 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a14fc60d763d3d0c4d0c32cb6ef3da26 ;
    s223:hasPhysicalLocation bdg2:086e724bd8f69f95a9315e375d8bc698 ;
    s223:observes <urn:anon:hash:7207654659992811927.0> .

bdg2:8d39f7618ec44f1d31f7043a4d766833 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8a2b8ee30b4697ac82b416b0df67cd2b ;
    s223:hasPhysicalLocation bdg2:79ad17cfd80ebe57024e425fc88b58be ;
    s223:observes <urn:anon:hash:7207654659992811927.156> .

bdg2:8d8868de7fb597f89c17750a2c9ef0b7 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a13606dcb90d3c31c0fd0b7b6a417454 ;
    s223:hasPhysicalLocation bdg2:b2026060fa2c3465a8f250023952c4dd ;
    s223:observes <urn:anon:hash:7207654659992811927.194> .

bdg2:8dacbe323775b34a26b993bad598bae8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1882fad112ffa9c0dfd782c60625147c ;
    s223:hasPhysicalLocation bdg2:1534461d315bdad4e877aae18713cb14 ;
    s223:observes <urn:anon:hash:7207654659992811927.40> .

bdg2:8f00ee162bbc9472aca89514fce1bcf0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:8f1462d9ee6f0b1d9718accae8a63ac1 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:92aeb60ca6eff2fc5d2c8e61f998c545 ;
    s223:hasPhysicalLocation bdg2:b71d5d4d948e6e08a7b81745742d92db ;
    s223:observes <urn:anon:hash:7207654659992811927.26> .

bdg2:8f2d8b393bf794f4e2024247178ba827 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:67304a27a6a7347eb5de54a85cf7e5fa ;
    s223:hasPhysicalLocation bdg2:3ab9a9929bf8b6cab213f97c82e269ed ;
    s223:observes <urn:anon:hash:7207654659992811927.168> .

bdg2:8fd751c55e90dd5ade44e6352cafd0de a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3de6d6cc45d8f2e320c6062d0de1d4b8 ;
    s223:hasProperty bdg2:4451241e946d9cae4ffe98c74086b8d5 .

bdg2:90b5247131d7ae732128848e3cac65dc a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:87e0be532a90f23737cd8fec845d5499 ;
    s223:hasPhysicalLocation bdg2:57b6e93a0245c0d9bdf835bb462c5171 ;
    s223:observes <urn:anon:hash:7207654659992811927.186> .

bdg2:90effa649edfde157885b9cb62f77136 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c3d310bfb7e9bac12b23e35f7ebab284 ;
    s223:hasPhysicalLocation bdg2:b71d5d4d948e6e08a7b81745742d92db ;
    s223:observes <urn:anon:hash:7207654659992811927.138> .

bdg2:90f34339bb6a2742d483f9d8b2de3fac a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1f45d5712cc02a814fa020aa39c6c291 ;
    s223:hasProperty bdg2:247327a1bf016c93c22488b900e0b180 .

bdg2:91342aa589be3baacec8b568121ab669 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1159a7e7e932b2381aa00305f9622199 ;
    s223:hasProperty bdg2:2ce97f1035533eb5492ff047a04e7faa .

bdg2:9151ddcc60138e7309eb4966aadfc63f a rec:Desk ;
    rdfs:label "Desk" .

bdg2:915b2bf35f63e8dfd027db703cc967d6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:92a6d8074279de8321037d9e13b183e5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:92b591bc4d4276b0c5ac397b36c440f7 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:bad9e261cfa00e6a7b8fe4b7f3e6f148 ;
    s223:hasPhysicalLocation bdg2:77fc2134d48f52b6763ab1eb2d17177b ;
    s223:observes <urn:anon:hash:7207654659992811927.171> .

bdg2:92c0fd6ac475ac7e666db1d48d828305 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1d38a2e096a2c49e5b7db4941e7795bb ;
    s223:hasPhysicalLocation bdg2:8e57f294a5d5c6d014a45a2ddb125eb3 ;
    s223:observes <urn:anon:hash:7207654659992811927.96> .

bdg2:93308da63b3c361a4ab1c9c137d65908 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e5322067142dc8cdd3adde5c692ce6e6 ;
    s223:hasProperty bdg2:97f389885e64cec5a63269242776a86f .

bdg2:9384015537af19928445a273fa63e456 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8a433bb8436f771e64321f05b8967335 ;
    s223:hasProperty bdg2:db56f49d266a5d8bb583f5872895ca81 .

bdg2:946f11341932a655422e36ea0024dcb6 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:9cd4a49421c84587ed6189c6a17fef0d ;
    s223:hasPhysicalLocation bdg2:04405074e8760773635367aab59bb782 ;
    s223:observes <urn:anon:hash:7207654659992811927.21> .

bdg2:94afc67b8bc7bfa62842ceeeab559cf6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:20111c009b7cbb0e8d4c083a26e08b02 ;
    s223:hasProperty bdg2:2d4410391227858eccb06b7767e4866f .

bdg2:94b56552626b9a35d275d821a696779a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:959809644e1f72a30f3af346cc409e00 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:53cc4bf3e7487bb7193243c837ac54ac ;
    s223:hasPhysicalLocation bdg2:301ed4fa33b0450daf40600559815b06 ;
    s223:observes <urn:anon:hash:7207654659992811927.54> .

bdg2:95ebdc74f263d71fa8b61d755d25f904 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:00db30f1cf5061b473ece0670b060770 ;
    s223:hasPhysicalLocation bdg2:a1e1f1c53c17af3a81cd6e1444314864 ;
    s223:observes <urn:anon:hash:7207654659992811927.172> .

bdg2:969105d4b9666b90637557cc126b7ddf a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:0c4cffdc5a06fe88fe8dea9088b7a858 ;
    s223:hasProperty bdg2:6ee5cc929935a616c435efc7652ec61d .

bdg2:969b11e4e2c20b7d1730633c5abb9c6e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:96c1a9528149e0a2d35b3b779acc20cd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dca455069642f85f30d74b1b0a19f47f ;
    s223:hasPhysicalLocation bdg2:d511b27c5fbcef519a2df2a66a210133 ;
    s223:observes <urn:anon:hash:7207654659992811927.111> .

bdg2:96c291be37b77ed510fef203cee82e71 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:96c575820805a80236b752200712096e a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:774b630af9efb9b53d1695c604ea985b ;
    s223:hasPhysicalLocation bdg2:8791d74923028f71b7165ad424cdb2f4 ;
    s223:observes <urn:anon:hash:7207654659992811927.90> .

bdg2:974bc00970338aa16e79b14841578434 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:97530761bcde7c056bfc56194d45690b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2a43cce251af5312dd74a383fe783c1b ;
    s223:hasProperty bdg2:0311ba05b12823568c82607227aab16b .

bdg2:975911a2a4a9da59b0f932b5ce0c2b56 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:97d3c35c46c3a2c87f98656f76d8ce07 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9866d2aac5f28ec40fd8e23492075b13 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4ad6fe269ba772ba86bf3c912b3b2974 ;
    s223:hasProperty bdg2:ebbb915c3b8faa4c723f023987971666 .

bdg2:9ae1d13f36301b2551045ac6721c2acd a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9b903c16941b745b6cfcb1c509b708cd a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:10b7c113912765961c339a118a345b33,
        bdg2:acf8732aca59373b85ee24f0a3e8053c,
        bdg2:b5de4e8fa43afcccb6915027a6785f64,
        bdg2:cfcb0c8670546b13fa0bd188c5302ace,
        bdg2:e438ed2d8f0492d6a4022ac5a896f83f,
        bdg2:efbf08e701ee4ba38cb06997fb3aff79 ;
    s223:hasProperty bdg2:1cd11d3eac4ea44347a3110e03af7e22 .

bdg2:9ba7a5c722890f254baea44ba6c3311c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:abf626870d354ef7b317f5effe2c4fe3 ;
    s223:hasProperty bdg2:a2a672eea7d6c5b1245d7c29c4bac373 .

bdg2:9c28d1f1c5023eb4f1228bcaae165dc2 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9c59a043dc161e5fa36867f8730ae96e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:78484b1d3d5ba132a0846010d97a1b3f ;
    s223:hasProperty bdg2:cc38962a15bfd86e715d55388ba63368 .

bdg2:9c88410fe0de93fb33186e05617a7ff5 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:6fdb617797d9e7e2436a9ba7036691b5 ;
    s223:hasProperty bdg2:e74b3f324add3e9c0f71c07edd548010 .

bdg2:9cc35ed186788e7f84f3c66347cd864a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9cce917111dbbe664e9b1464dc4ec8ff a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ac7c7b7ed5821f72a930870b2e6c34f1 ;
    s223:hasPhysicalLocation bdg2:48c611cb65ae5a589c1a0562e534c481 ;
    s223:observes <urn:anon:hash:7207654659992811927.65> .

bdg2:9cf2e1df784e6fa90bf623bea29fbbb5 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8fcc6f39b1bfeaba3441fa01198e9d39 ;
    s223:hasPhysicalLocation bdg2:63d053c27bb1883823301e924e5f9f59 ;
    s223:observes <urn:anon:hash:7207654659992811927.68> .

bdg2:9db8249a7f5e97b7ffb3aba3711c4a38 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9dc99bf0ced8e8300999014175ddcdf6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:9fa4fc2be9bc5d16b0e2d6b40d7f0fd0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4821b458a71c91860628f515decdba79 ;
    s223:hasProperty bdg2:29094b77da4138b152fe1c006faed830 .

bdg2:a0234a96f391f881879c6019fbb53047 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:7fc3d64e2cbd082ae8ab5006bd4021d3 ;
    s223:hasProperty bdg2:8a3bf0a91794735baa6bdb70c6409ac7 .

bdg2:a027bc7315cb75d88d0c41e5b4fa3f34 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:fa3101baddadcbb4577b711e0404a1b1 ;
    s223:hasProperty bdg2:f530315d8bf7d51d77e1e69d9841cb12 .

bdg2:a072a709dcf361e83c28acd259745b1f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:778f4c97b350ed61ff93f0e8f220b77c ;
    s223:hasProperty bdg2:7ebb341ca2fba6f6f04684bc525d605e .

bdg2:a1cff69d9a669b70643be1d837311f30 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:27222ec20f5d6849e720ae6a9082faa4 ;
    s223:hasProperty bdg2:75871f1c7d3a2b5487ad49e163a0f241 .

bdg2:a3bfa14e9edec1ae66d898cfeb2de023 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9cd4a49421c84587ed6189c6a17fef0d ;
    s223:hasProperty bdg2:c9c26d1ee907b582be96763e483ff710 .

bdg2:a3dc3ffa8767125b7bb2eb66281b744a a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:cef5c8112c4bdc8e67c37206df425f57 ;
    s223:hasPhysicalLocation bdg2:b8fc269801c0d56f5f912b5c64c0092b ;
    s223:observes <urn:anon:hash:7207654659992811927.7> .

bdg2:a42395a7235feb3f1f28718b2da7fcb9 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:a492bf24775c79a7fb93d8845215a4b0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:a4b7201c422008119d82246578e5e4b6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:a503d0e02657cf3fb177df39d4534948 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3b7be3866fc69c28b1b7019f66326956 ;
    s223:hasPhysicalLocation bdg2:63653f22d68914834414186f9c10764c ;
    s223:observes <urn:anon:hash:7207654659992811927.25> .

bdg2:a5638d573b05a923f15c3671ebcf0408 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:a57eab7f784e60c34067d6bf0687a9b0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:29828665b2a47cc395f0024d09d5da85 ;
    s223:hasPhysicalLocation bdg2:b8fc269801c0d56f5f912b5c64c0092b ;
    s223:observes <urn:anon:hash:7207654659992811927.201> .

bdg2:a5f92f57df7e33ed326d5cb981881994 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5b2fbb59a95b60c287d79f9306b8048f ;
    s223:hasPhysicalLocation bdg2:844a41f9c84fdba563707386892c2979 ;
    s223:observes <urn:anon:hash:7207654659992811927.126> .

bdg2:a6b3fbf212e3f0683c8a3d7450f20196 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2907440ca06de9cb143521992678738a ;
    s223:hasProperty bdg2:55a2d18bbf06337c37b229c965b788ac .

bdg2:a7c73ad601cdd9582077e351696ebc07 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:a8020431639373ce044647c5856cacfb a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:7dcab67999f5ffedcabaec86ae54387b ;
    s223:hasProperty bdg2:9c9b74f328ea6f4c433c13c6b4500d36 .

bdg2:a83eb7976c494a441ce11020687196b0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1026f03531556a1854035407d2a5b720 ;
    s223:hasPhysicalLocation bdg2:625e8534f50808827485538aba3e82f2 ;
    s223:observes <urn:anon:hash:7207654659992811927.28> .

bdg2:a8aa0263d90e6ba81090bfad7f839d90 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f7e5e41270d0cfb2dace416a01fe759e ;
    s223:hasPhysicalLocation bdg2:fced0fecb1a33a651e352824b40f4756 ;
    s223:observes <urn:anon:hash:7207654659992811927.93> .

bdg2:a98f1dc390d29f049e0b3bc2d03b5599 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:498a622214bd1e939ccad21ae8cee495 ;
    s223:hasProperty bdg2:69d26465137f0ac7585f271cb964ddde .

bdg2:aa593f0596ff5fed317475c953b66a35 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e7e2d537ae320f7432ff5d885768d012 ;
    s223:hasProperty bdg2:dd0182e638af6da70d0285dd6c344f2d .

bdg2:ab0475a53a744428ff3964c1568eb055 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ab0c708b7e97ef43883cfed261b717ae a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ab148db71223c967e184e3056c510cea a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ab37509622ae50ab6f91d921d567d627 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ab8807f49022fd4fe2d5343abb61f944 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f6618ae83fffde98209a73da71941aa5 ;
    s223:hasProperty bdg2:b7d39d0e207d1c5dc7056d3d410de305 .

bdg2:abbed8ff485c6fb66ceb3aa4992fcafd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c63da51819b41c3e443dd9eb66794007 ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.143> .

bdg2:aca6379f6b00cb26bb86f6eed2d8ac41 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ad275b0db19dcdcef6b3a106cb398534 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:978203c62507b12fdbc8b9ff363fbe47 ;
    s223:hasProperty bdg2:6e4d733eb4c60bcad0296d278840c561 .

bdg2:ad2cab68be12a0062678e60ee5990c97 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5393f46be69152dd002dc824d8f07350 ;
    s223:hasPhysicalLocation bdg2:062fc31dd278f190b5c9d237489e7d9a ;
    s223:observes <urn:anon:hash:7207654659992811927.120> .

bdg2:add29b9224323d94ff1da9a25c06c459 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:48fcd29520b81743b100269c1277a955 ;
    s223:hasPhysicalLocation bdg2:2028067ee6a70894768c93a38725d5fb ;
    s223:observes <urn:anon:hash:7207654659992811927.166> .

bdg2:ade844cd06700de8b56e7dafbaecd90a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ae1521e710b7398b9f846bfdb577af54 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:aee241de13b9c491e0b527698da3f657 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c36b92ca01467748984ba54c5990c17e ;
    s223:hasProperty bdg2:7fa99a5afcae72538f500b250e1e9d2b .

bdg2:aee2a7929f6541f6470aa3a67ae94726 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:aefbb432c45a88f3731fe296fcc3d757 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d620506d0a3ca3dd84746f135cc7cbb8 ;
    s223:hasProperty bdg2:5e03c87f60212508bc76c642d1c7e405 .

bdg2:af2fe5cb7bb5e42a31d731f869c7ce62 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c55f925affa30a0bdc5dcdf39ea30cba ;
    s223:hasPhysicalLocation bdg2:9c3e2c73afb76cd5c75b65a4f596cd71 ;
    s223:observes <urn:anon:hash:7207654659992811927.161> .

bdg2:af80e48b72389859bd6e9bf3bce66b39 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:aff4b1bd4b3042b75831a038502963a7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:cef5c8112c4bdc8e67c37206df425f57 ;
    s223:hasProperty bdg2:c00b3ca7b9a8e190c9f6ea78b0d74d24 .

bdg2:b014a7a58fc5ede547ecb0148ed247e2 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1005a731eaa5b26b6d6aa21c08c2dfe7 ;
    s223:hasProperty bdg2:e7fb13a6db45b03e2d769bb7ffea70dd .

bdg2:b017fb5f96b29efc850a620cfbade6b5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b05f1b046ee855943b32e766959f171a a s223:PhysicalSpace,
        <http://iec.ch/TC57/CIM100#EnergyConsumer>,
        rec:Building ;
    rdfs:label "PhysicalSpace" ;
    s223:contains bdg2:6180e3159b54e22b54c8ec3092804afb,
        bdg2:a7455d356c67005740ee523d403a83b2,
        bdg2:b1954ce12e067188bbb8987a2a5d9b44 .

bdg2:b06ee2af5bb642e871aa568feb6833a6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4724df268ab8c7c1b5ddbbadd8bc47d2 ;
    s223:hasProperty bdg2:5a45abda591ce852d730486f7a227a5d .

bdg2:b0791e5714025bbf5154057d8c425f9f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:78484b1d3d5ba132a0846010d97a1b3f ;
    s223:hasPhysicalLocation bdg2:84b8056724516b4169fa051ca02ac1dd ;
    s223:observes <urn:anon:hash:7207654659992811927.98> .

bdg2:b1a714ce34eb3012ba67eddccd02affb a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:bf24b1a48226d7476a10056e91891a4e ;
    s223:hasPhysicalLocation bdg2:97932d4a07f7b2e8b62b018c2c23f02c ;
    s223:observes <urn:anon:hash:7207654659992811927.177> .

bdg2:b1fb4bc2690364729324427462bb359b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b210fcaa281854ac909ada0ab7a064d5 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a03c96cd0c1505e17a7e36c662a83949 ;
    s223:hasProperty bdg2:35aa6bce0c103f6e609eec1d4b8cea0d .

bdg2:b24b23b3087980d04e25c2cf4977ae81 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b2532a0fdbcaaa8913a37eb74c2c79b6 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:7e25217ea74bdb88e17b24b5e617c872 ;
    s223:hasProperty bdg2:ad94e959ca373db0f2ae6fefecdc3267 .

bdg2:b330f410fcee765a50374b160269c3fa a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dadfafbac75fed79568cfc525f9860b8 ;
    s223:hasProperty bdg2:65aff766ef87c6828f10044e7bf67127 .

bdg2:b3ebcce684c8da37a18522c6af5bf4b5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b4d78f4a69459832ce5c2a2695ac3be7 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b52ed9f64156077a20c9ed6308fdedcf a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:600d0e2e4e2ec89fcd50781248128851 ;
    s223:hasProperty bdg2:ecbe91a61ceaad903d9c1632fe82ea8c .

bdg2:b535e795b6b2e5e1c390f034c17b0b37 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:6212a7ed9c958a3dbd4840cd462e8589 ;
    s223:hasPhysicalLocation bdg2:a0cd4c2a8830737d3913b12b424d20b6 ;
    s223:observes <urn:anon:hash:7207654659992811927.173> .

bdg2:b55fe20a085431e727d8678926b75dcd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:7fc3d64e2cbd082ae8ab5006bd4021d3 ;
    s223:hasPhysicalLocation bdg2:301ed4fa33b0450daf40600559815b06 ;
    s223:observes <urn:anon:hash:7207654659992811927.32> .

bdg2:b60fd26ed3beaa4de4431dcfbc052576 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b6bd228c1c8d03be24901da8c1951c66 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:048d6323cce43cc7ea6d83e5d8caa7d9 ;
    s223:hasProperty bdg2:2dcd882828dad109daa2a359edb1fee1 .

bdg2:b6d8a9931b7372a2f217fff8f52c8f69 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dd6c4ffcb1cc48bff5bcf08355f1d4ec ;
    s223:hasPhysicalLocation bdg2:247bf91dc81ff0b3b14fdd5279523462 ;
    s223:observes <urn:anon:hash:7207654659992811927.192> .

bdg2:b7036cae97b310aca62b9925b941ba02 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f7e5e41270d0cfb2dace416a01fe759e ;
    s223:hasProperty bdg2:4f87ac954521f2d218680daadd389366 .

bdg2:b78f2ca1ccfde4425e35421b116659e0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:fa3101baddadcbb4577b711e0404a1b1 ;
    s223:hasPhysicalLocation bdg2:8e57f294a5d5c6d014a45a2ddb125eb3 ;
    s223:observes <urn:anon:hash:7207654659992811927.107> .

bdg2:b796153b758167f7a90506fde983f715 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3de6d6cc45d8f2e320c6062d0de1d4b8 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.59> .

bdg2:b805310c550e51a3b6fd2e4fc760bb7c a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b838dff55f649a889a3c80456e7e200b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8fcc6f39b1bfeaba3441fa01198e9d39 ;
    s223:hasProperty bdg2:3f97046a15fa4c4e97837ce8eab0406e .

bdg2:b8bb5bfc7b5d3f775c40a68d4390ef3a a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:89c038217b889e254ee9bc0e50f1c93f ;
    s223:hasProperty bdg2:16b2ce8406e8a0c8937fdcdef3e69f94 .

bdg2:b9337d71a8a9db5274f5b4d7db8841ba a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:aaadb5ba90d7ccf36cec56ca4052401f ;
    s223:hasProperty bdg2:50e255f532469cfdad1c01c86ddf5fb6 .

bdg2:b968847098d8c04682bcd610eb55bfe6 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:b9865828303208cdfba1f34bd61a8b9e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:23411b1440ba912db46b83665d1be3ea ;
    s223:hasProperty bdg2:105cea4cbb865d3cfa858f235531c167 .

bdg2:ba86aa205705c7c8ebaf609a04353fd7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:81f9cc5e99668ac4679bd524778d7535 ;
    s223:hasProperty bdg2:02c98f1e65269d0d72da1f96ecda5094 .

bdg2:bb58edd7c9fe4c94b002d12ae1262470 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2f4ee35423b2eb7a2291bd9f52f8d92c ;
    s223:hasPhysicalLocation bdg2:ddd7862aea356734dcdaa217787b3bf3 ;
    s223:observes <urn:anon:hash:7207654659992811927.117> .

bdg2:bb7a60c63d0d9521e2c7bd29a218edc2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e6d019b933041f5fe0f747150475ff87 ;
    s223:hasPhysicalLocation bdg2:f6bcb4875383b5d90621de70ddb070e0 ;
    s223:observes <urn:anon:hash:7207654659992811927.13> .

bdg2:bc83872ab6788d711346e4a8ff41f1f8 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:bcbf6fb96321c721476920c0df34969e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dc4b8341ce922340fe7f55732e2ff106 ;
    s223:hasProperty bdg2:db438091e94863763d66cd84af3910a3 .

bdg2:bdb96e2ca4566f50d4f4621d03160e32 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:bde822d00b906c530f25b9af73e76513 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d903bc86cae0e5918b8986523b85fea8 ;
    s223:hasPhysicalLocation bdg2:9c3e2c73afb76cd5c75b65a4f596cd71 ;
    s223:observes <urn:anon:hash:7207654659992811927.101> .

bdg2:bdecadd91b25abecd02e27079fdde6dc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:be9cf77ec046d49c9d56dd30feb96fc4 ;
    s223:hasProperty bdg2:b2a3bd5364644cfce4bf48b1d19239f3 .

bdg2:be59fd17ee4c9c607fce0e8eff024b97 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:6ceee898a2528397f01084248e1e641e ;
    s223:hasProperty bdg2:c58cf6d69cd94263e8afa7ea03157734 .

bdg2:bf54dff990e02143cb2571bfc5650f00 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a02a9a45020f75325bf304b3156f7c30 ;
    s223:hasProperty bdg2:7afc5332a676ddc0492c565c9d30cfa3 .

bdg2:bfe13c4407b08b597311ac05a0c2e732 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9d41b007f78e040615e6c7a4fe4fe0c0 ;
    s223:hasProperty bdg2:a5c6ac2c187ab24cae483baf37cd3b87 .

bdg2:c0cad75cf4d75b49f54bf1e0ee48b2d5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:c0dc30db5df69fd2c69a5ef0ecce4616 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:c1b801279d50e483d83571b47aa13394 a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:0f605963dc47305f53cf6f8d4dd256e1,
        bdg2:28d6207ca3ae0e50846d42fde5337288,
        bdg2:2c91b50f5fcb8be4a9d5656fe051d9a0,
        bdg2:3ae40056ffb40d20476a7abd66d3de99,
        bdg2:3ce0d576db6e14853edada8817b810d0,
        bdg2:3e67fb2c1b2f1fdf1ce5c0f45edd2c82,
        bdg2:60a9608127a0b65e7c553b50df87642d,
        bdg2:7f1d0a261688a8ee0949d6f079a72ece,
        bdg2:8b2bb24014717a181ab89e0da3e9fc6b,
        bdg2:8c4f8c58fb1674e0cb229f56b058c392,
        bdg2:90de5c0499ab2e13982b0f6534e0a2dc,
        bdg2:b101cbdf1b445bef991f51e7201916b9,
        bdg2:bdcaaa998e4a48592b617ecf3997aa81,
        bdg2:c5afd48b4435e96c3d1c41f7637435e7,
        bdg2:d41c0a376e814978cf5755b7774829a5,
        bdg2:e46c2faedbd39751e72965246ad50f55,
        bdg2:e5b6cec6ee4e98cf5658397d69e92243,
        bdg2:eda149f11e904c82acbbb9a3b3e3d429 ;
    s223:hasProperty bdg2:97dbc3dd8615c4f1d51a3abd3385ed3c .

bdg2:c1ea702b131ead17b722d43f44744ea0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ae411af26a87ece293d2eee7b5873b3b ;
    s223:hasProperty bdg2:6f03c7974b336cf5efdc514a324cc11b .

bdg2:c2d52b3f8754e3f576fa6dd2959bafe8 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:c3138b2fe319e16dc28fe2417e517467 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:76e631fd002d350859661ec8f167da42 ;
    s223:hasPhysicalLocation bdg2:cc188237d9c7e1f09d9820ff7da8bedc ;
    s223:observes <urn:anon:hash:7207654659992811927.197> .

bdg2:c43dee36da8442eeaed8feba6f47d609 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a14fc60d763d3d0c4d0c32cb6ef3da26 ;
    s223:hasProperty bdg2:fcb58d6ae58d1c3c9908a6e90d7766b3 .

bdg2:c45dbcadaccc7fbdc0d94fabc32655ef a rec:Desk ;
    rdfs:label "Desk" .

bdg2:c5d113951c0a8365bb7fa8f25fad3fd9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:6212a7ed9c958a3dbd4840cd462e8589 ;
    s223:hasProperty bdg2:eaf595894fbdf147580ed243c548574c .

bdg2:c687a17017a6878e9fc5a4d36e7be6b0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4b03924073d763c613ba909c349076b9 ;
    s223:hasProperty bdg2:cd4227348f3dde0b7406e0fefff904a4 .

bdg2:c6cebe293df3545af44cac390ca6a98b a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e1d03f5ccaead53deda35cfe4c103c96 ;
    s223:hasProperty bdg2:0b8bc7db4b23a33a0dba005204110dd2 .

bdg2:c8c99a284865a18516f5512fc7ea7fab a rec:Desk ;
    rdfs:label "Desk" .

bdg2:c9b337c65a680f56c46608507fc4b9ce a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ca47f84cb68878171c0d3fad2ccee607 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:62fceec71f2459058ffc34a7a0b6d785 ;
    s223:hasPhysicalLocation bdg2:bcaea36774c75ae6a3412ed145c239b7 ;
    s223:observes <urn:anon:hash:7207654659992811927.4> .

bdg2:ca8e354e22d998ec8d22d97dd31d86cc a rec:Desk ;
    rdfs:label "Desk" .

bdg2:caeef617942c3b4dba4469cfdee09ed8 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:939cf92e54f2506b60aef14cfc5a9bfe ;
    s223:hasProperty bdg2:a104d473b120667610ad9cfe0cebc6d2 .

bdg2:cb3550e159e26bef2a486fef40c88b91 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:a4d986544f60ae54c3d0e5ed464ef3ed ;
    s223:hasPhysicalLocation bdg2:82a945cfb33b8c2b440ba014a2cfbce1 ;
    s223:observes <urn:anon:hash:7207654659992811927.178> .

bdg2:cb5fa738402baa969fdfe8f8dc82ee65 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:1906b2c11d1288a0c8fd4715ac3d8011 ;
    s223:hasPhysicalLocation bdg2:63653f22d68914834414186f9c10764c ;
    s223:observes <urn:anon:hash:7207654659992811927.140> .

bdg2:cbddf7285774c332dfde4e340b4d55fd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:3fcfd7d39858eee5dbedab7c96d40ab0 ;
    s223:hasPhysicalLocation bdg2:79ad17cfd80ebe57024e425fc88b58be ;
    s223:observes <urn:anon:hash:7207654659992811927.56> .

bdg2:cc8fa7ccbb240d71f3ab939f62feaff5 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:767f35e70e3185ab6bf24b515d518ff4 ;
    s223:hasProperty bdg2:19f01bad8181018ef9ae7698721f45a8 .

bdg2:cd538703d10b45cde71924487ee59272 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:0f93232ee9021c3911d2f214c3bf0eed ;
    s223:hasProperty bdg2:acbb1dd27b58c6dcd83d3d6be47f88e2 .

bdg2:ce7935fdce29fb2949e0a552d23296a0 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:ce7d504789197c6a817b3be2ed84ed88 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:606be40c1d0bcfa75af9d83aa3607559 ;
    s223:hasProperty bdg2:e9c05210a196d16915884a4fc9ff6a82 .

bdg2:d011e647d5548094b99c8ed0ec13d8c4 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:d0236d2632550ef9783900f756af9db4 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4c454859d38da4cc85062cc19e5302a0 ;
    s223:hasPhysicalLocation bdg2:5d5d97f8f742c3e465bbef7a01787eab ;
    s223:observes <urn:anon:hash:7207654659992811927.19> .

bdg2:d02dbd81a06342b899336d4a461b656c a rec:Desk ;
    rdfs:label "Desk" .

bdg2:d04b02808a7202c99073bc73beea7a12 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:b8484ccb5a5eb3d4c278dab72986b917 ;
    s223:hasProperty bdg2:1f02769d602b7875a79cf209de48a79b .

bdg2:d0594979a24fc2bde7d9d40464179e44 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:d06e33bd93312f53372854e82a58256d a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1aeb8687575a5706b6d25a2fec2965cd ;
    s223:hasProperty bdg2:b7e09713a1288cbf77900d481e1490e0 .

bdg2:d0c8def3be761b6694d12f45a9cb65cd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:ec3f8c22c4e7782b8d5f851995e964b4 ;
    s223:hasPhysicalLocation bdg2:0debbf9011d2edef136a993751616c4a ;
    s223:observes <urn:anon:hash:7207654659992811927.121> .

bdg2:d14c60de50c0edfe0822404d092e9ec0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:bfa72640ce15b253a77d616b65892783 ;
    s223:hasProperty bdg2:52d6f71b61491de7863780c6e05c43c7 .

bdg2:d1afcd51733f25bb2d8ba6eddcce5d9f a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:0295fea6f2502e5363befd4751361b72,
        bdg2:073ead9628e167ed81c144ed8897533e,
        bdg2:12f53534a9225ff3498f76863fa06bc4,
        bdg2:226099ed41f5e222e647d744c109b499,
        bdg2:30345807f9259e783330e8e0e4f2b9ae,
        bdg2:39c9fe1da8d57ec58a8daf2eff956f4d,
        bdg2:3fd2f3503aeef05a845e9c6f7a416fcd,
        bdg2:4b24986c23bbe302ccc9f109d41e0b5e,
        bdg2:545dadbd8d62f611a07b657d01cd8ab6,
        bdg2:71a23b8201a1697442299b9b93cc6b93,
        bdg2:7400fd44fb267d911d5428d2b68d2ae7,
        bdg2:7c50aae164548eb39f13ef2150328bee,
        bdg2:ac09a325dd858007d533194fe85a2070,
        bdg2:bf8f2de1f8cc84f847bf4387d3d9a8a0,
        bdg2:e0954fcfa34577ed48598643afdf497d,
        bdg2:e710de2ebdd2b966521559ab464ce754,
        bdg2:fe8292349fb3f7e0b7bee768bb5d308e ;
    s223:hasProperty bdg2:d9ce28e65196e0a03d79c8ee642e2e8f .

bdg2:d308d6dbde360500349a315aa26300a0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:62aec11310f4c9b30f4657c1e9d50bcf ;
    s223:hasPhysicalLocation bdg2:63653f22d68914834414186f9c10764c ;
    s223:observes <urn:anon:hash:7207654659992811927.64> .

bdg2:d4cd6ba83745a5afbea50b5cbdb32445 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2f07d85dee70d685ec7b41d346c2a270 ;
    s223:hasProperty bdg2:c6e8d489c4792daa39cfc275dcb724dd .

bdg2:d62372de631edc63371aa3f2e397713b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c06e2df195cf04a1ec78f47dd0fefcf6 ;
    s223:hasPhysicalLocation bdg2:bbd9f5722f6b25afed73226882977463 ;
    s223:observes <urn:anon:hash:7207654659992811927.18> .

bdg2:d6a411046c393e9ab35d70fd5f35535e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:d73a44bb8826e9b297ab6b2332e9e61e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:eae306b45f01df380fcce813c29da752 ;
    s223:hasProperty bdg2:883a94060d2806c7619d3c8ada9c9d49 .

bdg2:d781253d080e8fcdbd89cd2a77c63753 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:fddd2c321d210dcd0d081e35626ffa47 ;
    s223:hasProperty bdg2:929341be752630c33e8f5c17644099cb .

bdg2:d7a3d405213b20be0ec7f50f3ab8bd90 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5530cff0fe7e36cef1a95fae174f1b1a ;
    s223:hasProperty bdg2:17f99cba2045a881d6a6fa2839dfd3d4 .

bdg2:d7ae83ebbe1bf91a72a34a2823e5bc16 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:d8506178d264c405d90ac036840419ed a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d4900c6f272df609bf44cbc2545a491f ;
    s223:hasPhysicalLocation bdg2:d8bda39e449004fb33ba1d9f5c31cf3c ;
    s223:observes <urn:anon:hash:7207654659992811927.150> .

bdg2:d86d8032320ac015e4a1f0c1d235ee22 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8d837b5ab3bb415d848ee52d298d8868 ;
    s223:hasProperty bdg2:8247ff5a586b4be4b3d5de1ba453cf8f .

bdg2:d8d9d12698edd985e972eec8a462e910 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:979039c3b09c21f4edc662a866b4e5da ;
    s223:hasPhysicalLocation bdg2:53e936501f0044729f372614198f9df2 ;
    s223:observes <urn:anon:hash:7207654659992811927.112> .

bdg2:d8da86e88f63017c02cd15d2327861f5 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dd39f8149b5676519de46da4fe8bdee5 ;
    s223:hasPhysicalLocation bdg2:ad8ad1cc943b6509395bf042a9b219aa ;
    s223:observes <urn:anon:hash:7207654659992811927.191> .

bdg2:d96f5fe87cf78a934895f3c16973ca3f a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:c3ee637e589ba0877ce7df681126f731 ;
    s223:hasProperty bdg2:fdf9806666503f1030245628e9e77781 .

bdg2:da9313e4511a3e6b963eb8e0d59c348c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:483e990d2917c9c9082b1ef384563a0a ;
    s223:hasProperty bdg2:8626e19b63d24f548374dab6ed4d7546 .

bdg2:dabe1663e152ea23a621f0eaf40e07fa a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2088f1c4665d7bb2328484d88f135f03 ;
    s223:hasProperty bdg2:f0fc1dd5b0b7c31453d1771f3f866e51 .

bdg2:dae1ea714d54c572586dc41751dabce3 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8cf2523817d8042bf45a48f4dd635e90 ;
    s223:hasPhysicalLocation bdg2:77a75c7084d8667b276c75f0b7b7ebb8 ;
    s223:observes <urn:anon:hash:7207654659992811927.115> .

bdg2:db16d3f196d18aa514e3629bc0c8711e a rec:Desk ;
    rdfs:label "Desk" .

bdg2:db368c8aad4ebce92550d652cea0f242 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:dbad1ff9bc5ad6c0742d172ac02f33df a rec:Desk ;
    rdfs:label "Desk" .

bdg2:dbc2a4f9d8d7dc6c84e3b9bd12937b82 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:a24c75d5b3b270aedebaea30db6e13c6 ;
    s223:hasProperty bdg2:2c3a9e138421bc02cd8b5f6549243d2d .

bdg2:dc03eda9d1fd88a134b07904ed2aab6b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:dd175f69686a58e2c89495a9b51f5e1c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f82d2c38c78c92cca109dde3f076ca15 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.87> .

bdg2:dd3d7d7919d7a4de59a5d7a7c74d0890 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:dd52185ff69006127bc42bc8940a1fcc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ae96fb3b97eeb6703b3bf21cace3091c ;
    s223:hasProperty bdg2:d4f4f4f7c6962bb9a687d004f8e228ad .

bdg2:de10a64aac03440c300638b1319dc2f8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:f7b684e2de306ea2e9a91b4c09e4fa7c ;
    s223:hasPhysicalLocation bdg2:11e6eb0dbf8cd69987ad3744811107e9 ;
    s223:observes <urn:anon:hash:7207654659992811927.110> .

bdg2:de29db95acd6631b5b971327f6f95a7e a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:d8dc5ee81981597cbde98cdcfa6ab145 ;
    s223:hasPhysicalLocation bdg2:baf4569696d2e67ac50fed74d90079b3 ;
    s223:observes <urn:anon:hash:7207654659992811927.58> .

bdg2:de3845a10a3d0a74b7049f7868b287d6 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:41c73b73c85f8425fdde72a2a490f235 ;
    s223:hasPhysicalLocation bdg2:ddd7862aea356734dcdaa217787b3bf3 ;
    s223:observes <urn:anon:hash:7207654659992811927.183> .

bdg2:de6adf2d2f8e40180c85eaed2f851fe5 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:57addd41978ae308303f55abeb0bb935 ;
    s223:hasPhysicalLocation bdg2:d45421ae76a65fdfcfcccfbc06cf176e ;
    s223:observes <urn:anon:hash:7207654659992811927.27> .

bdg2:df19dc693b905bd71fe64883cf9fa11e a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:20111c009b7cbb0e8d4c083a26e08b02 ;
    s223:hasPhysicalLocation bdg2:9c2f06431727c23a2a0ddcd711357701 ;
    s223:observes <urn:anon:hash:7207654659992811927.145> .

bdg2:df9fb9e49852cbc080746940505a46d4 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:62aec11310f4c9b30f4657c1e9d50bcf ;
    s223:hasProperty bdg2:3daa4082c6e7458134cbd3c164f70328 .

bdg2:dfd5ed3182cbd28d3fa22fbb095e746b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:483e990d2917c9c9082b1ef384563a0a ;
    s223:hasPhysicalLocation bdg2:82a945cfb33b8c2b440ba014a2cfbce1 ;
    s223:observes <urn:anon:hash:7207654659992811927.128> .

bdg2:dfe7b0da0e4123805266dd54e47c58a9 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:00db30f1cf5061b473ece0670b060770 ;
    s223:hasProperty bdg2:798d299d643a0b383362813cc28d423a .

bdg2:dff2b67d6cc457ae81900a55d5f31882 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:014f072aead9131092fae0acf552c750 ;
    s223:hasPhysicalLocation bdg2:bc63f6702fca047eafc794fc63272ec1 ;
    s223:observes <urn:anon:hash:7207654659992811927.155> .

bdg2:e0f0745780cc519472f7bda57d32f175 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2518c2e02ddbc66bab0ad04a1e3a161f ;
    s223:hasProperty bdg2:fa7da8b3548a903fb56f67dfe14cd633 .

bdg2:e0f46b3cf8d54e6c26aedda065b0661c a s223:Zone ;
    rdfs:label "Zone-HVAC" ;
    s223:hasDomain s223:Domain-HVAC ;
    s223:hasDomainSpace bdg2:5321ddf525a8821b43c1380985d9bb23,
        bdg2:a1f545a0c2c5a07388696260e1941290,
        bdg2:b72497218f263578a15b4c00ce09989b ;
    s223:hasProperty bdg2:1d6f08414eb76c0db782cd05d22c328a .

bdg2:e188e59246f1c2bbb83810f0ae3f2483 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e1b09d9642879f3ac5d422308958c78c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9a5cae5b1afb0b4f03aff2b2f67379a7 ;
    s223:hasProperty bdg2:bbe583d6ac5caf10473fe67c6c4ad591 .

bdg2:e25bb86b43699b892e05d989870c3bc8 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:62fceec71f2459058ffc34a7a0b6d785 ;
    s223:hasProperty bdg2:24ad4727723475e090c40c8b3d18720e .

bdg2:e280461fef0079c2792f726ad153036c a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:23411b1440ba912db46b83665d1be3ea ;
    s223:hasPhysicalLocation bdg2:4ef2d7de355bceeed2fd74fa1ddb0dda ;
    s223:observes <urn:anon:hash:7207654659992811927.17> .

bdg2:e2814515542356a7c924ba9fe0fcb377 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:0d223cb40ef2b66991515dab390dea76 ;
    s223:hasProperty bdg2:0adb35d8c16009fadd6d2f070bc33bf3 .

bdg2:e2b694ae206918737459e3ac9fd76219 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1906b2c11d1288a0c8fd4715ac3d8011 ;
    s223:hasProperty bdg2:fbf4ef69ddfaeb47da3614d2ca160bce .

bdg2:e2d7b7846727e3308726244076c9b042 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4c454859d38da4cc85062cc19e5302a0 ;
    s223:hasProperty bdg2:67d1836637a3d2f6a9871c2b89ad5ff9 .

bdg2:e33d36aa94c4286fd06a7127adae359a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e3534d8cac64b3817857b7a877bf0888 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e358c4b27dc7931f2e4d22af612239d4 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e3ead34d4ce813feb59cd7df59ec3757 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:8bdb5e5dec589806ad323f1c18120183 ;
    s223:hasProperty bdg2:0a1f0cdd7f021af92415b4201ab5f6cd .

bdg2:e407e9fe9005e45e3c560bdc6f84ef9f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:b12062b838e4db728dad5e4a057f2c79 ;
    s223:hasPhysicalLocation bdg2:fde62759481e6105c4e797a8c3916820 ;
    s223:observes <urn:anon:hash:7207654659992811927.84> .

bdg2:e4970553a2dc9af20a5d384fefbfa616 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e4f396473436795a1e74c0ead2a5837c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3a51f59064b40d956f24a6173f4ad887 ;
    s223:hasProperty bdg2:69f6e8ca1014fc4d990cbae694f6d8ef .

bdg2:e54a81ae0b3a9d3dc5d9dd08ddbc85b0 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1026f03531556a1854035407d2a5b720 ;
    s223:hasProperty bdg2:2b8255ead40fac1c32d16bbcf0677a91 .

bdg2:e5646fbab5df89a6c8b4852847fc4b80 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e1d03f5ccaead53deda35cfe4c103c96 ;
    s223:hasPhysicalLocation bdg2:942e8885d49df649c7b47e759d53f318 ;
    s223:observes <urn:anon:hash:7207654659992811927.10> .

bdg2:e58f6cf8baf262337db4603db5fbeae7 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:5e8455c4552c68900e30aaef8f3340b6 ;
    s223:hasPhysicalLocation bdg2:8791d74923028f71b7165ad424cdb2f4 ;
    s223:observes <urn:anon:hash:7207654659992811927.3> .

bdg2:e67928e1faed82d257e7145b88c39aac a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:e18a10692afa2ffdb607924f17c60fef ;
    s223:hasProperty bdg2:b3e81af4ed58e8d1966462608767796d .

bdg2:e686416bb758e7118557befb3f046857 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e6a1cd716109d26fbaedb2bed1807d9e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:28c31c7c42a3ffce138fdba666b36600 ;
    s223:hasProperty bdg2:b85fddfae229152d9ec3c19b03aceb14 .

bdg2:e743e83df7ab6161dc309102c36cd6d2 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4821b458a71c91860628f515decdba79 ;
    s223:hasPhysicalLocation bdg2:bcaea36774c75ae6a3412ed145c239b7 ;
    s223:observes <urn:anon:hash:7207654659992811927.160> .

bdg2:e80db7d68cef27cd67ddf31b0610959d a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e822e6d34c7952ffdd4daf5b46a2923a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e8a26656d10a628523e1454d53104ff8 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3080b6a5350bc7a339841f46fd35507a ;
    s223:hasProperty bdg2:3804d3a1e09afb4ccb6858eb873b0212 .

bdg2:e8d068189a7d35686944f51a88c75067 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:aaa920377c8e40355257035c3ae0510d ;
    s223:hasPhysicalLocation bdg2:57ebaa104c01a6dc3079763f94a0c1eb ;
    s223:observes <urn:anon:hash:7207654659992811927.23> .

bdg2:e8d93146f1810c9b4ee8a5d1396d2399 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:e996760ca08fc50b63d7b956fa84e229 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:68d0e27b62e8ac20f564fa1b6822a2a4 ;
    s223:hasPhysicalLocation bdg2:8b15be9fe257c6229d9c79a244e36cd4 ;
    s223:observes <urn:anon:hash:7207654659992811927.175> .

bdg2:e9fffc5d86d65bfcebe67f63a70dfc9b a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:82e4f828eda5c00bdb2fc897fb0af988 ;
    s223:hasPhysicalLocation bdg2:8719cbd6ca9a51132612726849bb787a ;
    s223:observes <urn:anon:hash:7207654659992811927.116> .

bdg2:eaf3a92680d82b48b2259d971f9a6f98 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:eb4220cfd748d74f796153e58687bdf9 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:eb982be2f57506b0ef70709e362128af a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:2779110b506053b7a42fbf0731afc296 ;
    s223:hasProperty bdg2:bc37d704cd4c78f636a1a2a035c3ecc6 .

bdg2:ec5e23c21d16271fbff99d8caf65eed8 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c6b0c611f8ce1f9ee43e912ba6a144a5 ;
    s223:hasPhysicalLocation bdg2:4ef2d7de355bceeed2fd74fa1ddb0dda ;
    s223:observes <urn:anon:hash:7207654659992811927.146> .

bdg2:ec7f3436655d7646ac8f327425450575 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:eca00b3e83b32fa3f476793c72994be7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:9bf27b5417fb5e36db8b1056edb87f0d ;
    s223:hasProperty bdg2:31683b08484650b78e1a385773a0a137 .

bdg2:ed26abebf96a9a5a256d7934eb3dd8fc a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:ba364834c5d4cb495fea46e9716486ba ;
    s223:hasProperty bdg2:7ac3f6c47f3b66e79c06cf5f23390545 .

bdg2:ed6cdc82243cce221e36914eeae6970f a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2518c2e02ddbc66bab0ad04a1e3a161f ;
    s223:hasPhysicalLocation bdg2:7ba35b19cb4c3c79e5bdbd2a1073370e ;
    s223:observes <urn:anon:hash:7207654659992811927.123> .

bdg2:ef890a181a896bee88de3a9d9daf8738 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:48fcd29520b81743b100269c1277a955 ;
    s223:hasProperty bdg2:4dac281ef13c621499ddf04c2d6ebdbb .

bdg2:efa39c6717ffbdeb51f016ff93f25e18 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:3fcfd7d39858eee5dbedab7c96d40ab0 ;
    s223:hasProperty bdg2:ecfa6d77671d1e8624a885c8878983da .

bdg2:efb3270d5c7b1e3937e2eb7fe7591836 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:5015ed8f2a7d8538e02c22cdaa8d9814 ;
    s223:hasProperty bdg2:fe87fc80bcf81d74cada5e08ed701d09 .

bdg2:f11395f574ee6ca14416d0aff8760401 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:eae306b45f01df380fcce813c29da752 ;
    s223:hasPhysicalLocation bdg2:b9ce728344626f07f463ae51b7a71f77 ;
    s223:observes <urn:anon:hash:7207654659992811927.169> .

bdg2:f18dcba75a77c12afdee740c2d268a0e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:1882fad112ffa9c0dfd782c60625147c ;
    s223:hasProperty bdg2:b3f32939f20456cd93fd07c165afd24f .

bdg2:f1c9727f8bb6509097004e329f4b42c4 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:4ddac598a89f6d344103935cfb542a81 ;
    s223:hasProperty bdg2:656a3bda5017b651a3a99df4250397b8 .

bdg2:f2e5b8d6044624a9236ba309bffcb1bc a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:50e4a0d52fa55ddcaa880f310ae40869 ;
    s223:hasPhysicalLocation bdg2:ae44fe7f191e0f68429cb65274a17f2b ;
    s223:observes <urn:anon:hash:7207654659992811927.46> .

bdg2:f3cc52d1a8ef7ac72cc16969ac68e6f5 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:aaf7f184218316b4a8d05128ae859afa ;
    s223:hasProperty bdg2:02c25582224f5c0f474107fe7aa1d968 .

bdg2:f42a623f01ed19aaff6e64308d3c8a06 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:0cd68c6f5ddc96ba20c9da28f15ab2f6 ;
    s223:hasProperty bdg2:bc8ea772c25804d2e149c00b12669b9f .

bdg2:f43c994f0b31e9da55bb3aafb75b8e56 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:f5334da4ac68505a2708274a55ad7304 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:f5d124983846822edb67eed9aa46d28a a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:c3ee637e589ba0877ce7df681126f731 ;
    s223:hasPhysicalLocation bdg2:7f4b3ae1601ce2902c202821b4e1e405 ;
    s223:observes <urn:anon:hash:7207654659992811927.180> .

bdg2:f5db264dd3cefb79d913c50fa87500c0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8d89808aa820c8a6e6c363dceb95ccde ;
    s223:hasPhysicalLocation bdg2:325665573393ea598bc03681fccc91aa ;
    s223:observes <urn:anon:hash:7207654659992811927.195> .

bdg2:f7052500cd56b44afe06a0201f0f7c60 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:dd39f8149b5676519de46da4fe8bdee5 ;
    s223:hasProperty bdg2:bf788a0259c3c237f32893400f24ecf3 .

bdg2:f70b41c671ebe7c7446c64b191d1c46c a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f3a51fcd0df36ce88d1a5e4e6ecdfd28 ;
    s223:hasProperty bdg2:22234c26d342c87616b45d8fa2f6f668 .

bdg2:f7a829be79e30350962b4485b3533486 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:f7c3f4dc5e0a88d8b66385456b206ea8 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:d4900c6f272df609bf44cbc2545a491f ;
    s223:hasProperty bdg2:d1423e1e98585830ded98991f02ac947 .

bdg2:f83a78ff24faad8fd92a59c0fc1c816a a rec:Desk ;
    rdfs:label "Desk" .

bdg2:f8a3cdde0974f40dc700d352097f2919 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:6ceee898a2528397f01084248e1e641e ;
    s223:hasPhysicalLocation bdg2:3779b592b4e7bed407f61c169ff59221 ;
    s223:observes <urn:anon:hash:7207654659992811927.92> .

bdg2:f8e3fab5f444cedd079c79cb6bbecc3b a rec:Desk ;
    rdfs:label "Desk" .

bdg2:f8e8e6f1b5b70177cbc1c26e3f903ab0 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:2779110b506053b7a42fbf0731afc296 ;
    s223:hasPhysicalLocation bdg2:617ceb9bd4697e20016b4a9767da98ac ;
    s223:observes <urn:anon:hash:7207654659992811927.38> .

bdg2:f9b0c682aef760f38142677c9ca403ba a rec:Desk ;
    rdfs:label "Desk" .

bdg2:fa13498bf569b1d1af9445c4558670e7 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:f1e0c29cf2e054593ceb24d9064b3bb6 ;
    s223:hasProperty bdg2:634a55377184cb7754e93e88b9b52c58 .

bdg2:fab4ef4f8ed9c62b5bfc7d5388bfc0b1 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:fb1bde46900afa7bad8d887112cf74d5 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:fb456648d612571b4eef67ca9655de29 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:fb7e701093138aa79ab9c04fff0c4576 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:e7e2d537ae320f7432ff5d885768d012 ;
    s223:hasPhysicalLocation bdg2:06c48e0294e055494226ad4666c7b25d ;
    s223:observes <urn:anon:hash:7207654659992811927.51> .

bdg2:fc23d24c84ce8ff382c21f069ea6f181 a rec:Desk ;
    rdfs:label "Desk" .

bdg2:fcd799c318240a07e9fa8677e7862937 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:dadfafbac75fed79568cfc525f9860b8 ;
    s223:hasPhysicalLocation bdg2:a1e1f1c53c17af3a81cd6e1444314864 ;
    s223:observes <urn:anon:hash:7207654659992811927.100> .

bdg2:fce51b531118eae82717f539784d2c7e a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:b5c255e1675a140756a76b8819dc282a ;
    s223:hasProperty bdg2:3841ade3efe8074bfe08153dc791c2a1 .

bdg2:fd206582fcbfa105d31ef1d3b3bbc0dd a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:8bdb5e5dec589806ad323f1c18120183 ;
    s223:hasPhysicalLocation bdg2:b834c590edece96e20e74809d7e243d6 ;
    s223:observes <urn:anon:hash:7207654659992811927.33> .

bdg2:fe0dd3d97b8c26648153ef7e07dc7d34 a s223:OccupantMotionSensor ;
    rdfs:label "OccupantMotionSensor" ;
    s223:hasObservationLocation bdg2:4ad6fe269ba772ba86bf3c912b3b2974 ;
    s223:hasPhysicalLocation bdg2:3779b592b4e7bed407f61c169ff59221 ;
    s223:observes <urn:anon:hash:7207654659992811927.55> .

bdg2:feb5d857e4687ce4e7d271b6f52d18d1 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:aaa920377c8e40355257035c3ae0510d ;
    s223:hasProperty bdg2:2dab9d60f962fbeb7a37b462eb1ed48f .

bdg2:fed7cd417304d832e00c8de06a32e3f5 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:92aeb60ca6eff2fc5d2c8e61f998c545 ;
    s223:hasProperty bdg2:5779927aeb1f3ce880f0249986eb7495 .

bdg2:ffe990365463e9fea0c4b2eef0951e19 a s223:Zone ;
    rdfs:label "Zone-Lighting" ;
    s223:hasDomain s223:Domain-Lighting ;
    s223:hasDomainSpace bdg2:76b4b068c93faafb901714a74ca21ee9 ;
    s223:hasProperty bdg2:10c84b1b2ea04f144195085041b4f7f8 .

<http://voag.linkedmodel.org/schema/voag#QUDT-CURRENCY-UNITS-VocabCatalogEntry> a ns2:CatalogEntry ;
    rdfs:label "QUDT CURRENCY UNITS Vocab Catalog Entry"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://voag.linkedmodel.org/schema/voag#QUDT-DIMENSIONS-VocabCatalogEntry> a ns2:CatalogEntry ;
    rdfs:label "QUDT DIMENSIONS Vocab Catalog Entry"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://voag.linkedmodel.org/schema/voag#QUDT-QUANTITY-KINDS-VocabCatalogEntry_v1.2> a ns2:CatalogEntry ;
    rdfs:label "QUDT Quantity Kinds Vocabulary Catalog Entry v1.2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

<http://voag.linkedmodel.org/schema/voag#QUDT-SchemaCatalogEntry> a ns2:CatalogEntry ;
    rdfs:label "QUDT Schema Catalog Entry"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

<http://voag.linkedmodel.org/schema/voag#QUDT-UNITS-VocabCatalogEntry> a ns2:CatalogEntry ;
    rdfs:label "QUDT Units Vocab Catalog Entry"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

<http://voag.linkedmodel.org/schema/voag#supersededBy> a rdf:Property ;
    rdfs:label "superseded by"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

<http://www.linkedmodel.org/schema/dtype> ns2:namespace "http://www.linkedmodel.org/schema/dtype#"^^xsd:anyURI ;
    ns2:namespacePrefix "dtype"^^xsd:string .

ns2:ConstraintsGraph a ns2:GraphRole ;
    rdfs:label "Constraints graph"^^xsd:string ;
    dcterms:description "A \"vaem:ConstraintsGraph\" is a graph that holds SPIN constraints"^^xsd:string ;
    ns2:filePrefix "CONSTRAINTS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:ControllersGraph a ns2:GraphRole ;
    rdfs:label "Controllers graph"^^xsd:string ;
    ns2:filePrefix "CONTROLLERS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:CurationGraph a ns2:GraphRole ;
    rdfs:label "Curation graph"^^xsd:string ;
    dcterms:description "A \"vaem:CurationGraph\" is a graph to hold metadata that is needed to describe, govern and provision another graph. A curation graph will likely use VOAG and VAEM for this purpose. The property \"vaem:curationGraph\" is used to link to the graph (or graphs) being curated"^^xsd:string ;
    ns2:filePrefix "CURATION"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:DataGraph a ns2:GraphRole ;
    rdfs:label "Data graph"^^xsd:string ;
    ns2:filePrefix "DATA"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:DocumentationGraph a ns2:GraphRole ;
    rdfs:label "Documentation graph"^^xsd:string ;
    ns2:filePrefix "DOC"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:FunctionsGraph a ns2:GraphRole ;
    rdfs:label "Functions graph"^^xsd:string ;
    ns2:filePrefix "FUNCTIONS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:LinkSetGraph a ns2:GraphRole ;
    rdfs:label "Link Set graph"^^xsd:string ;
    dcterms:description "A \"vaem:LinkSetGraph\" is a graph that holds statements that specify links between resources"^^xsd:string ;
    ns2:filePrefix "LINKSET"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:MappingGraph a ns2:GraphRole ;
    rdfs:label "Mapping graph"^^xsd:string ;
    dcterms:description "A graph that specifies a transformation of a graph into another graph or graphs. Invariably this is a SPINMap graph using SPARQL Rules (SPIN) to express the transforms."^^xsd:string ;
    ns2:filePrefix "MAPPINGS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:ProxyGraph a ns2:GraphRole ;
    rdfs:label "Proxy graph"^^xsd:string ;
    ns2:filePrefix "PROXY"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:RulesGraph a ns2:GraphRole ;
    rdfs:label "Rules Graph"^^xsd:string ;
    ns2:filePrefix "RULES"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:ScriptGraph a ns2:GraphRole ;
    rdfs:label "Script graph"^^xsd:string ;
    ns2:filePrefix "SCRIPT"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:TransformsGraph a ns2:GraphRole ;
    rdfs:label "Transforms graph"^^xsd:string ;
    ns2:filePrefix "TRANSFORMS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:ViewGraph a ns2:GraphRole ;
    rdfs:label "View graph"^^xsd:string ;
    ns2:filePrefix "VIEWS"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:VocabularyGraph a ns2:GraphRole ;
    rdfs:label "Vocabulary graph"^^xsd:string ;
    dcterms:description "An RDF/OWL Graph that is a controlled set of instances."^^xsd:string ;
    ns2:filePrefix "VOCAB"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:abbreviation a owl:DatatypeProperty ;
    rdfs:label "abbreviation"^^xsd:string ;
    dcterms:description "The property \"vaem:abbreviation\" provides a common way to define a commonly used abbreviation on a resource"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:dateCreated dcterms:description "The property \"vaem:dateCreated\" is intended for general use as the name implies.  The range of the property is set as \"vaem:dateUnion\" so as to allow a value to have a number of forms from a  year only to a full timestamp"^^xsd:string .

ns2:hasGraphMetadata a owl:AnnotationProperty ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range ns2:GraphMetaData .

ns2:idString dcterms:description "The property \"vaem:idString\" is intended for general use as a means to specifiy a unique reference to something. This is a data property with a string range and is a sub-property of \"vame:id\""^^xsd:string .

ns2:isElaboratedIn a owl:AnnotationProperty ;
    rdfs:label "isDefinedBy"^^xsd:string ;
    dcterms:description "An annotation used to reference a graph that elaborates (adds properties and axioms to) a resource"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI ;
    rdfs:subPropertyOf rdfs:isDefinedBy .

ns2:lastUpdated dcterms:description "The property \"vaem:lastUpdated\" is intended for general use as the name implies.  The range of the property is set as \"vaem:dateUnion\" so as to allow a value to have a number of forms from a  year only to a full timestamp"^^xsd:string .

ns2:logo a owl:AnnotationProperty ;
    dcterms:description "The property \"vaem:logo\" is a reference to an image that is used for publishing the ontology\""^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:anyURI .

ns2:ownedBy dcterms:description "The property \"vaem:ownedBy\" is a general property that in some cases could have scalar values or may refer to some concept of \"Party\".  For this reason, the  type of this property is set as \"rdf:Property\" and the property is rangeless. There are two sub-properties of \"vaem:ownedBy\", namely \"vaem:owner\" for string values and \"vaem:owningParty\" for referencing a party.  Ownership applies to those ontologies that are proprietary"^^xsd:string .

ns2:owningParty dcterms:description "The property \"vaem:owningParty\" is used to refer to some concept of \"Party\" and is a sub-property of \"vaem:ownedBy\""^^xsd:string .

ns2:rationale a owl:DatatypeProperty ;
    rdfs:label "rationale"^^xsd:string ;
    dcterms:description "A description of a justification for some other assertion or value"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:reifiableBy a owl:ObjectProperty ;
    rdfs:label "reifiable by"^^xsd:string ;
    dcterms:description "To express how statements in a model can be reifiable, this property is used to explicitly associate a property with a user-defined sub-class of \"rdf:Statement\". A recommended way of using this is to declare the properties that share the same reification constructs as sub-properties of a parent property that carries the \"vaem:reifiableBy\" property. The parent property should be of type \"rdf:Property\" so that it can have both datatype and object properties as sub-properties. By this means use and transformations of a model can be understood through a fully specified metamodel. \"vaem:reifiableBy\" is rangeless in order to comply with OWL DL semantics. Its range would have been rdfs:Class in order to refer to \"rdf:Statement\" sub-classes"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:releaseDate a owl:DatatypeProperty ;
    rdfs:label "release date"^^xsd:string ;
    dcterms:description "The property \"vaem:releaseDate\" is intended for general use as the name implies.  The range of the property is set as \"vaem:dateUnion\" so as to allow a value to have a number of forms from a  year only to a full timestamp"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subPropertyOf ns2:date .

ns2:title a owl:DatatypeProperty ;
    rdfs:label "title"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:todo a owl:AnnotationProperty ;
    rdfs:label "todo"^^xsd:string ;
    dcterms:description "As it name implies, a way to attach an annotation about a \"todo\" task"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:usesNonImportedResource a owl:AnnotationProperty ;
    rdfs:label "uses non-imported resource"^^xsd:string ;
    dcterms:description "The property \"vaem:usesNonImportedResource\" is used to express dependencies on resources from graphs that are not imported"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range rdfs:Resource .

ns2:withAttributionTo a owl:AnnotationProperty ;
    rdfs:label "with attribution to"^^xsd:string ;
    dcterms:description "The property \"vaem:withAttributionTo\" is an annotation property that is either used to hold either a string or a reference to an instance of \"voag:Attribution\", from the VOAG ontology"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

xsd:NOTATION a rdfs:Datatype .

xsd:QName a rdfs:Datatype .

xsd:base64Binary a rdfs:Datatype .

xsd:gDay a rdfs:Datatype .

xsd:gMonthDay a rdfs:Datatype .

xsd:gYearMonth a rdfs:Datatype .

xsd:hexBinary a rdfs:Datatype .

xsd:negativeInteger a rdfs:Datatype .

xsd:nonPositiveInteger a rdfs:Datatype .

skos:altLabel a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "alternative label"@en ;
    rdfs:comment "The range of skos:altLabel is the class of RDF plain literals."@en,
        "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf rdfs:label ;
    skos:definition "An alternative lexical label for a resource."@en ;
    skos:example "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."@en .

skos:changeNote a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "change note"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "A note about a modification to a concept."@en .

skos:definition a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "definition"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "A statement or formal explanation of the meaning of a concept."@en .

skos:editorialNote a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "editorial note"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "A note for an editor, translator or maintainer of the vocabulary."@en .

skos:exactMatch a rdf:Property,
        owl:ObjectProperty,
        owl:SymmetricProperty,
        owl:TransitiveProperty ;
    rdfs:label "has exact match"@en ;
    rdfs:comment "skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:closeMatch ;
    skos:definition "skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch."@en .

skos:example a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "example"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "An example of the use of a concept."@en .

skos:hiddenLabel a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "hidden label"@en ;
    rdfs:comment "The range of skos:hiddenLabel is the class of RDF plain literals."@en,
        "skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf rdfs:label ;
    skos:definition "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."@en .

skos:historyNote a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "history note"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "A note about the past state/use/meaning of a concept."@en .

skos:member a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "has member"@en ;
    rdfs:domain skos:Collection ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( skos:Concept skos:Collection ) ] ;
    skos:definition "Relates a collection to one of its members."@en .

skos:memberList a rdf:Property,
        owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "has member list"@en ;
    rdfs:comment """For any resource, every item in the list given as the value of the
      skos:memberList property is also a value of the skos:member property."""@en ;
    rdfs:domain skos:OrderedCollection ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:range rdf:List ;
    skos:definition "Relates an ordered collection to the RDF list containing its members."@en .

skos:prefLabel a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "preferred label"@en ;
    rdfs:comment "A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."@en,
        "The range of skos:prefLabel is the class of RDF plain literals."@en,
        """skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
      disjoint properties."""@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf rdfs:label ;
    skos:definition "The preferred lexical label for a resource, in a given language."@en .

skos:relatedMatch a rdf:Property,
        owl:ObjectProperty,
        owl:SymmetricProperty ;
    rdfs:label "has related match"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:mappingRelation,
        skos:related ;
    skos:definition "skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes."@en .

skos:scopeNote a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "scope note"@en ;
    rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
    rdfs:subPropertyOf skos:note ;
    skos:definition "A note that helps to clarify the meaning and/or the use of a concept."@en .

prov:wasDerivedFrom a rdf:Property ;
    rdfs:label "was derived from"^^xsd:string .

sh:AndConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "And constraint component"@en ;
    rdfs:comment "A constraint component that can be used to test whether a value node conforms to all members of a provided list of shapes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:AndConstraintComponent-and .

sh:ClassConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Class constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that each value node is an instance of a given type."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value needs to have class {$class}"^^xsd:string ;
    sh:parameter sh:ClassConstraintComponent-class ;
    sh:validator ns3:hasClass .

sh:ClosedConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Closed constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to indicate that focus nodes must only have values for those properties that have been explicitly enumerated via sh:property/sh:path."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Closed shape: only the enumerated properties can be used"^^xsd:string ;
    sh:nodeValidator [ a sh:SPARQLSelectValidator ;
            sh:message "Predicate {?path} is not allowed (closed shape)"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT $this (?predicate AS ?path) ?value
		WHERE {
			{
				FILTER ($closed) .
			}
			$this ?predicate ?value .
			FILTER (NOT EXISTS {
				GRAPH $shapesGraph {
					$currentShape sh:property/sh:path ?predicate .
				}
			} && (!bound($ignoredProperties) || NOT EXISTS {
				GRAPH $shapesGraph {
					$ignoredProperties rdf:rest*/rdf:first ?predicate .
				}
			}))
		}
"""^^xsd:string ] ;
    sh:parameter sh:ClosedConstraintComponent-closed,
        sh:ClosedConstraintComponent-ignoredProperties .

sh:DatatypeConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Datatype constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the datatype of all value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Values must have datatype {$datatype}"^^xsd:string ;
    sh:message "Value does not have datatype {$datatype}"^^xsd:string ;
    sh:parameter sh:DatatypeConstraintComponent-datatype .

sh:DisjointConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Disjoint constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that the set of value nodes is disjoint with the the set of nodes that have the focus node as subject and the value of a given property as predicate."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:DisjointConstraintComponent-disjoint ;
    sh:validator [ a sh:SPARQLAskValidator ;
            sh:ask """
		ASK {
			FILTER NOT EXISTS {
				$this $disjoint $value .
			}
		}
		"""^^xsd:string ;
            sh:message "Property must not share any values with {$disjoint}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] .

sh:EqualsConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Equals constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that the set of value nodes is equal to the set of nodes that have the focus node as subject and the value of a given property as predicate."@en ;
    rdfs:isDefinedBy sh: ;
    sh:message "Must have same values as {$equals}"^^xsd:string ;
    sh:nodeValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT DISTINCT $this ?value
		WHERE {
			{
				FILTER NOT EXISTS { $this $equals $this }
				BIND ($this AS ?value) .
			}
			UNION
			{
				$this $equals ?value .
				FILTER (?value != $this) .
			}
		}
		"""^^xsd:string ] ;
    sh:parameter sh:EqualsConstraintComponent-equals ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT DISTINCT $this ?value
		WHERE {
			{
				$this $PATH ?value .
				MINUS {
					$this $equals ?value .
				}
			}
			UNION
			{
				$this $equals ?value .
				MINUS {
					$this $PATH ?value .
				}
			}
		}
		"""^^xsd:string ] .

sh:ExpressionConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Expression constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that a given node expression produces true for all value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:ExpressionConstraintComponent-expression .

sh:HasValueConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Has-value constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that one of the value nodes is a given RDF node."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Must have value {$hasValue}"^^xsd:string ;
    sh:nodeValidator [ a sh:SPARQLAskValidator ;
            sh:ask """ASK {
    FILTER ($value = $hasValue)
}"""^^xsd:string ;
            sh:message "Value must be {$hasValue}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:parameter sh:HasValueConstraintComponent-hasValue ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:message "Missing expected value {$hasValue}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT $this
		WHERE {
			FILTER NOT EXISTS { $this $PATH $hasValue }
		}
		"""^^xsd:string ] .

sh:InConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "In constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to exclusively enumerate the permitted value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must be in {$in}"^^xsd:string ;
    sh:message "Value is not in {$in}"^^xsd:string ;
    sh:parameter sh:InConstraintComponent-in ;
    sh:validator ns3:isIn .

sh:JSConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "JavaScript constraint component"@en ;
    rdfs:comment "A constraint component with the parameter sh:js linking to a sh:JSConstraint containing a sh:script."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:JSConstraint-js .

sh:LanguageInConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Language-in constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to enumerate language tags that all value nodes must have."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Language must match any of {$languageIn}"^^xsd:string ;
    sh:message "Language does not match any of {$languageIn}"^^xsd:string ;
    sh:parameter sh:LanguageInConstraintComponent-languageIn ;
    sh:validator ns3:isLanguageIn .

sh:LessThanConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Less-than constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that each value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate."@en ;
    rdfs:isDefinedBy sh: ;
    sh:message "Value is not < value of {$lessThan}"^^xsd:string ;
    sh:parameter sh:LessThanConstraintComponent-lessThan ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT $this ?value
		WHERE {
			$this $PATH ?value .
			$this $lessThan ?otherValue .
			BIND (?value < ?otherValue AS ?result) .
			FILTER (!bound(?result) || !(?result)) .
		}
		"""^^xsd:string ] .

sh:LessThanOrEqualsConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "less-than-or-equals constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that every value node is smaller than all the nodes that have the focus node as subject and the value of a given property as predicate."@en ;
    rdfs:isDefinedBy sh: ;
    sh:message "Value is not <= value of {$lessThanOrEquals}"^^xsd:string ;
    sh:parameter sh:LessThanOrEqualsConstraintComponent-lessThanOrEquals ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT DISTINCT $this ?value
		WHERE {
			$this $PATH ?value .
			$this $lessThanOrEquals ?otherValue .
			BIND (?value <= ?otherValue AS ?result) .
			FILTER (!bound(?result) || !(?result)) .
		}
"""^^xsd:string ] .

sh:MaxCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-count constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the maximum number of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Must not have more than {$maxCount} values"^^xsd:string ;
    sh:message "More than {$maxCount} values"^^xsd:string ;
    sh:parameter sh:MaxCountConstraintComponent-maxCount ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT $this
		WHERE {
			$this $PATH ?value .
		}
		GROUP BY $this
		HAVING (COUNT(DISTINCT ?value) > $maxCount)
		"""^^xsd:string ] .

sh:MaxExclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-exclusive constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a maximum exclusive value."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must be < {$maxExclusive}"^^xsd:string ;
    sh:message "Value is not < {$maxExclusive}"^^xsd:string ;
    sh:parameter sh:MaxExclusiveConstraintComponent-maxExclusive ;
    sh:validator ns3:hasMaxExclusive .

sh:MaxInclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-inclusive constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a maximum inclusive value."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must be <= {$maxInclusive}"^^xsd:string ;
    sh:message "Value is not <= {$maxInclusive}"^^xsd:string ;
    sh:parameter sh:MaxInclusiveConstraintComponent-maxInclusive ;
    sh:validator ns3:hasMaxInclusive .

sh:MaxLengthConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Max-length constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the maximum string length of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must not have more than {$maxLength} characters"^^xsd:string ;
    sh:message "Value has more than {$maxLength} characters"^^xsd:string ;
    sh:parameter sh:MaxLengthConstraintComponent-maxLength ;
    sh:validator ns3:hasMaxLength .

sh:MinCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-count constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the minimum number of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Must have at least {$minCount} values"^^xsd:string ;
    sh:message "Fewer than {$minCount} values"^^xsd:string ;
    sh:parameter sh:MinCountConstraintComponent-minCount ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT $this
		WHERE {
			OPTIONAL {
				$this $PATH ?value .
			}
		}
		GROUP BY $this
		HAVING (COUNT(DISTINCT ?value) < $minCount)
		"""^^xsd:string ] .

sh:MinExclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-exclusive constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a minimum exclusive value."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must be > {$minExclusive}"^^xsd:string ;
    sh:message "Value is not > {$minExclusive}"^^xsd:string ;
    sh:parameter sh:MinExclusiveConstraintComponent-minExclusive ;
    sh:validator ns3:hasMinExclusive .

sh:MinInclusiveConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-inclusive constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the range of value nodes with a minimum inclusive value."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must be >= {$minInclusive}"^^xsd:string ;
    sh:message "Value is not >= {$minInclusive}"^^xsd:string ;
    sh:parameter sh:MinInclusiveConstraintComponent-minInclusive ;
    sh:validator ns3:hasMinInclusive .

sh:MinLengthConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Min-length constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the minimum string length of value nodes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must have less than {$minLength} characters"^^xsd:string ;
    sh:message "Value has less than {$minLength} characters"^^xsd:string ;
    sh:parameter sh:MinLengthConstraintComponent-minLength ;
    sh:validator ns3:hasMinLength .

sh:NodeConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Node constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that all value nodes conform to the given node shape."@en ;
    rdfs:isDefinedBy sh: ;
    sh:message "Value does not have shape {$node}"^^xsd:string ;
    sh:parameter sh:NodeConstraintComponent-node .

sh:NodeKindConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Node-kind constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to restrict the RDF node kind of each value node."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must have node kind {$nodeKind}"^^xsd:string ;
    sh:message "Value does not have node kind {$nodeKind}"^^xsd:string ;
    sh:parameter sh:NodeKindConstraintComponent-nodeKind ;
    sh:validator ns3:hasNodeKind .

sh:NotConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Not constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that value nodes do not conform to a given shape."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must not have shape {$not}"^^xsd:string ;
    sh:message "Value does have shape {$not}"^^xsd:string ;
    sh:parameter sh:NotConstraintComponent-not .

sh:OrConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Or constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the value nodes so that they conform to at least one out of several provided shapes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:OrConstraintComponent-or .

sh:PatternConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Pattern constraint component"@en ;
    ns3:staticConstraint true ;
    rdfs:comment "A constraint component that can be used to verify that every value node matches a given regular expression."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "Value must match pattern \"{$pattern}\""^^xsd:string ;
    sh:message "Value does not match pattern \"{$pattern}\""^^xsd:string ;
    sh:parameter sh:PatternConstraintComponent-flags,
        sh:PatternConstraintComponent-pattern ;
    sh:validator ns3:hasPattern .

sh:PropertyConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Property constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that all value nodes conform to the given property shape."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:PropertyConstraintComponent-property .

sh:QualifiedMaxCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Qualified-max-count constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that a specified maximum number of value nodes conforms to a given shape."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "No more than {$qualifiedMaxCount} values can have shape {$qualifiedValueShape}"^^xsd:string ;
    sh:message "More than {$qualifiedMaxCount} values have shape {$qualifiedValueShape}"^^xsd:string ;
    sh:parameter sh:QualifiedMaxCountConstraintComponent-qualifiedMaxCount,
        sh:QualifiedMaxCountConstraintComponent-qualifiedValueShape,
        sh:QualifiedMaxCountConstraintComponent-qualifiedValueShapesDisjoint .

sh:QualifiedMinCountConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Qualified-min-count constraint component"@en ;
    rdfs:comment "A constraint component that can be used to verify that a specified minimum number of value nodes conforms to a given shape."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "No fewer than {$qualifiedMinCount} values can have shape {$qualifiedValueShape}"^^xsd:string ;
    sh:message "Fewer than {$qualifiedMinCount} values have shape {$qualifiedValueShape}"^^xsd:string ;
    sh:parameter sh:QualifiedMinCountConstraintComponent-qualifiedMinCount,
        sh:QualifiedMinCountConstraintComponent-qualifiedValueShape,
        sh:QualifiedMinCountConstraintComponent-qualifiedValueShapesDisjoint .

sh:Rules a rdfs:Resource ;
    rdfs:label "SHACL Rules"^^xsd:string ;
    rdfs:comment "The SHACL rules entailment regime."^^xsd:string ;
    rdfs:seeAlso <https://www.w3.org/TR/shacl-af/#Rules> .

sh:SPARQLConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "SPARQL constraint component"@en ;
    rdfs:comment "A constraint component that can be used to define constraints based on SPARQL queries."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:SPARQLConstraintComponent-sparql .

sh:UniqueLangConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Unique-languages constraint component"@en ;
    ns3:localConstraint true ;
    rdfs:comment "A constraint component that can be used to specify that no pair of value nodes may use the same language tag."@en ;
    rdfs:isDefinedBy sh: ;
    sh:labelTemplate "No language can be used more than once"^^xsd:string ;
    sh:message "Language \"{?lang}\" used more than once"^^xsd:string ;
    sh:parameter sh:UniqueLangConstraintComponent-uniqueLang ;
    sh:propertyValidator [ a sh:SPARQLSelectValidator ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
		SELECT DISTINCT $this ?lang
		WHERE {
			{
				FILTER sameTerm($uniqueLang, true) .
			}
			$this $PATH ?value .
			BIND (lang(?value) AS ?lang) .
			FILTER (bound(?lang) && ?lang != "") .
			FILTER EXISTS {
				$this $PATH ?otherValue .
				FILTER (?otherValue != ?value && ?lang = lang(?otherValue)) .
			}
		}
		"""^^xsd:string ] .

sh:XoneConstraintComponent a sh:ConstraintComponent ;
    rdfs:label "Exactly one constraint component"@en ;
    rdfs:comment "A constraint component that can be used to restrict the value nodes so that they conform to exactly one out of several provided shapes."@en ;
    rdfs:isDefinedBy sh: ;
    sh:parameter sh:XoneConstraintComponent-xone .

sh:alternativePath a rdf:Property ;
    rdfs:label "alternative path"@en ;
    rdfs:comment "The (single) value of this property must be a list of path elements, representing the elements of alternative paths."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:List .

sh:annotationProperty a rdf:Property ;
    rdfs:label "annotation property"@en ;
    rdfs:comment "The annotation property that shall be set."@en ;
    rdfs:domain sh:ResultAnnotation ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:annotationValue a rdf:Property ;
    rdfs:label "annotation value"@en ;
    rdfs:comment "The (default) values of the annotation property."@en ;
    rdfs:domain sh:ResultAnnotation ;
    rdfs:isDefinedBy sh: .

sh:annotationVarName a rdf:Property ;
    rdfs:label "annotation variable name"@en ;
    rdfs:comment "The name of the SPARQL variable from the SELECT clause that shall be used for the values."@en ;
    rdfs:domain sh:ResultAnnotation ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:ask a rdf:Property ;
    rdfs:label "ask"@en ;
    rdfs:comment "The SPARQL ASK query to execute."@en ;
    rdfs:domain sh:SPARQLAskExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:condition a rdf:Property ;
    rdfs:label "condition"@en ;
    rdfs:comment "The shapes that the focus nodes need to conform to before a rule is executed on them."@en ;
    rdfs:domain sh:Rule ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Shape .

sh:conforms a rdf:Property ;
    rdfs:label "conforms"@en ;
    rdfs:comment "True if the validation did not produce any validation results, and false otherwise."@en ;
    rdfs:domain sh:ValidationReport ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:construct a rdf:Property ;
    rdfs:label "construct"@en ;
    rdfs:comment "The SPARQL CONSTRUCT query to execute."@en ;
    rdfs:domain sh:SPARQLConstructExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:deactivated a rdf:Property ;
    rdfs:label "deactivated"@en ;
    rdfs:comment "If set to true then all nodes conform to this."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:declare a rdf:Property ;
    rdfs:label "declare"@en ;
    rdfs:comment "Links a resource with its namespace prefix declarations."@en ;
    rdfs:domain owl:Ontology ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:PrefixDeclaration .

sh:defaultValue a rdf:Property ;
    rdfs:label "default value"@en ;
    rdfs:comment "A default value for a property, for example for user interface tools to pre-populate input fields."@en ;
    rdfs:domain sh:PropertyShape ;
    rdfs:isDefinedBy sh: .

sh:description a rdf:Property ;
    rdfs:label "description"@en ;
    rdfs:comment "Human-readable descriptions for the property in the context of the surrounding shape."@en ;
    rdfs:domain sh:PropertyShape ;
    rdfs:isDefinedBy sh: .

sh:detail a rdf:Property ;
    rdfs:label "detail"@en ;
    rdfs:comment "Links a result with other results that provide more details, for example to describe violations against nested shapes."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:AbstractResult .

sh:entailment a rdf:Property ;
    rdfs:label "entailment"@en ;
    rdfs:comment "An entailment regime that indicates what kind of inferencing is required by a shapes graph."@en ;
    rdfs:domain owl:Ontology ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:filterShape a rdf:Property ;
    rdfs:label "filter shape"@en ;
    rdfs:comment "The shape that all input nodes of the expression need to conform to."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Shape .

sh:focusNode a rdf:Property ;
    rdfs:label "focus node"@en ;
    rdfs:comment "The focus node that was validated when the result was produced."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: .

sh:group a rdf:Property ;
    rdfs:label "group"@en ;
    rdfs:comment "Can be used to link to a property group to indicate that a property shape belongs to a group of related property shapes."@en ;
    rdfs:domain sh:PropertyShape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:PropertyGroup .

sh:intersection a rdf:Property ;
    rdfs:label "intersection"@en ;
    rdfs:comment "A list of node expressions that shall be intersected."@en ;
    rdfs:isDefinedBy sh: .

sh:inversePath a rdf:Property ;
    rdfs:label "inverse path"@en ;
    rdfs:comment "The (single) value of this property represents an inverse path (object to subject)."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:jsFunctionName a rdf:Property ;
    rdfs:label "JavaScript function name"@en ;
    rdfs:comment "The name of the JavaScript function to execute."@en ;
    rdfs:domain sh:JSExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:jsLibrary a rdf:Property ;
    rdfs:label "JavaScript library"@en ;
    rdfs:comment "Declares which JavaScript libraries are needed to execute this."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:JSLibrary .

sh:jsLibraryURL a rdf:Property ;
    rdfs:label "JavaScript library URL"@en ;
    rdfs:comment "Declares the URLs of a JavaScript library. This should be the absolute URL of a JavaScript file. Implementations may redirect those to local files."@en ;
    rdfs:domain sh:JSLibrary ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:anyURI .

sh:labelTemplate a rdf:Property ;
    rdfs:label "label template"@en ;
    rdfs:comment "Outlines how human-readable labels of instances of the associated Parameterizable shall be produced. The values can contain {?paramName} as placeholders for the actual values of the given parameter."@en ;
    rdfs:domain sh:Parameterizable ;
    rdfs:isDefinedBy sh: .

sh:name a rdf:Property ;
    rdfs:label "name"@en ;
    rdfs:comment "Human-readable labels for the property in the context of the surrounding shape."@en ;
    rdfs:domain sh:PropertyShape ;
    rdfs:isDefinedBy sh: .

sh:namespace a rdf:Property ;
    rdfs:label "namespace"@en ;
    rdfs:comment "The namespace associated with a prefix in a prefix declaration."@en ;
    rdfs:domain sh:PrefixDeclaration ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:anyURI .

sh:nodeValidator a rdf:Property ;
    rdfs:label "shape validator"@en ;
    rdfs:comment "The validator(s) used to evaluate a constraint in the context of a node shape."@en ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Validator .

sh:nodes a rdf:Property ;
    rdfs:label "nodes"@en ;
    rdfs:comment "The node expression producing the input nodes of a filter shape expression."@en ;
    rdfs:isDefinedBy sh: .

sh:object a rdf:Property ;
    rdfs:label "object"@en ;
    rdfs:comment "An expression producing the nodes that shall be inferred as objects."@en ;
    rdfs:domain sh:TripleRule ;
    rdfs:isDefinedBy sh: .

sh:oneOrMorePath a rdf:Property ;
    rdfs:label "one or more path"@en ;
    rdfs:comment "The (single) value of this property represents a path that is matched one or more times."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:optional a rdf:Property ;
    rdfs:label "optional"@en ;
    rdfs:comment "Indicates whether a parameter is optional."@en ;
    rdfs:domain sh:Parameter ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:order a rdf:Property ;
    rdfs:label "order"@en ;
    rdfs:comment "Specifies the relative order of this compared to its siblings. For example use 0 for the first, 1 for the second."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:decimal .

sh:path a rdf:Property ;
    rdfs:label "path"@en ;
    rdfs:comment "Specifies the property path of a property shape."@en ;
    rdfs:domain sh:PropertyShape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:predicate a rdf:Property ;
    rdfs:label "predicate"@en ;
    rdfs:comment "An expression producing the properties that shall be inferred as predicates."@en ;
    rdfs:domain sh:TripleRule ;
    rdfs:isDefinedBy sh: .

sh:prefix a rdf:Property ;
    rdfs:label "prefix"@en ;
    rdfs:comment "The prefix of a prefix declaration."@en ;
    rdfs:domain sh:PrefixDeclaration ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:prefixes a rdf:Property ;
    rdfs:label "prefixes"@en ;
    rdfs:comment "The prefixes that shall be applied before parsing the associated SPARQL query."@en ;
    rdfs:domain sh:SPARQLExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range owl:Ontology .

sh:propertyValidator a rdf:Property ;
    rdfs:label "property validator"@en ;
    rdfs:comment "The validator(s) used to evaluate a constraint in the context of a property shape."@en ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Validator .

sh:result a rdf:Property ;
    rdfs:label "result"@en ;
    rdfs:comment "The validation results contained in a validation report."@en ;
    rdfs:domain sh:ValidationReport ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:ValidationResult .

sh:resultAnnotation a rdf:Property ;
    rdfs:label "result annotation"@en ;
    rdfs:comment "Links a SPARQL validator with zero or more sh:ResultAnnotation instances, defining how to derive additional result properties based on the variables of the SELECT query."@en ;
    rdfs:domain sh:SPARQLSelectValidator ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:ResultAnnotation .

sh:resultMessage a rdf:Property ;
    rdfs:label "result message"@en ;
    rdfs:comment "Human-readable messages explaining the cause of the result."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: .

sh:resultPath a rdf:Property ;
    rdfs:label "result path"@en ;
    rdfs:comment "The path of a validation result, based on the path of the validated property shape."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:resultSeverity a rdf:Property ;
    rdfs:label "result severity"@en ;
    rdfs:comment "The severity of the result, e.g. warning."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Severity .

sh:returnType a rdf:Property ;
    rdfs:label "return type"@en ;
    rdfs:comment "The expected type of values returned by the associated function."@en ;
    rdfs:domain sh:Function ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Class .

sh:rule a rdf:Property ;
    rdfs:label "rule"@en ;
    rdfs:comment "The rules linked to a shape."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Rule .

sh:select a rdf:Property ;
    rdfs:label "select"@en ;
    rdfs:comment "The SPARQL SELECT query to execute."@en ;
    rdfs:domain sh:SPARQLSelectExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:shapesGraph a rdf:Property ;
    rdfs:label "shapes graph"@en ;
    rdfs:comment "Shapes graphs that should be used when validating this data graph."@en ;
    rdfs:domain owl:Ontology ;
    rdfs:isDefinedBy sh: ;
    rdfs:range owl:Ontology .

sh:shapesGraphWellFormed a rdf:Property ;
    rdfs:label "shapes graph well-formed"@en ;
    rdfs:comment "If true then the validation engine was certain that the shapes graph has passed all SHACL syntax requirements during the validation process."@en ;
    rdfs:domain sh:ValidationReport ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:boolean .

sh:sourceConstraint a rdf:Property ;
    rdfs:label "source constraint"@en ;
    rdfs:comment "The constraint that was validated when the result was produced."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: .

sh:sourceConstraintComponent a rdf:Property ;
    rdfs:label "source constraint component"@en ;
    rdfs:comment "The constraint component that is the source of the result."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:ConstraintComponent .

sh:sourceShape a rdf:Property ;
    rdfs:label "source shape"@en ;
    rdfs:comment "The shape that is was validated when the result was produced."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Shape .

sh:subject a rdf:Property ;
    rdfs:label "subject"@en ;
    rdfs:comment "An expression producing the resources that shall be inferred as subjects."@en ;
    rdfs:domain sh:TripleRule ;
    rdfs:isDefinedBy sh: .

sh:suggestedShapesGraph a rdf:Property ;
    rdfs:label "suggested shapes graph"@en ;
    rdfs:comment "Suggested shapes graphs for this ontology. The values of this property may be used in the absence of specific sh:shapesGraph statements."@en ;
    rdfs:domain owl:Ontology ;
    rdfs:isDefinedBy sh: ;
    rdfs:range owl:Ontology .

sh:target a rdf:Property ;
    rdfs:label "target"@en ;
    rdfs:comment "Links a shape to a target specified by an extension language, for example instances of sh:SPARQLTarget."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Target .

sh:targetClass a rdf:Property ;
    rdfs:label "target class"@en ;
    rdfs:comment "Links a shape to a class, indicating that all instances of the class must conform to the shape."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Class .

sh:targetNode a rdf:Property ;
    rdfs:label "target node"@en ;
    rdfs:comment "Links a shape to individual nodes, indicating that these nodes must conform to the shape."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: .

sh:targetObjectsOf a rdf:Property ;
    rdfs:label "target objects of"@en ;
    rdfs:comment "Links a shape to a property, indicating that all all objects of triples that have the given property as their predicate must conform to the shape."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:targetSubjectsOf a rdf:Property ;
    rdfs:label "target subjects of"@en ;
    rdfs:comment "Links a shape to a property, indicating that all subjects of triples that have the given property as their predicate must conform to the shape."@en ;
    rdfs:domain sh:Shape ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdf:Property .

sh:union a rdf:Property ;
    rdfs:label "union"@en ;
    rdfs:comment "A list of node expressions that shall be used together."@en ;
    rdfs:isDefinedBy sh: .

sh:update a rdf:Property ;
    rdfs:label "update"@en ;
    rdfs:comment "The SPARQL UPDATE to execute."@en ;
    rdfs:domain sh:SPARQLUpdateExecutable ;
    rdfs:isDefinedBy sh: ;
    rdfs:range xsd:string .

sh:validator a rdf:Property ;
    rdfs:label "validator"@en ;
    rdfs:comment "The validator(s) used to evaluate constraints of either node or property shapes."@en ;
    rdfs:domain sh:ConstraintComponent ;
    rdfs:isDefinedBy sh: ;
    rdfs:range sh:Validator .

sh:value a rdf:Property ;
    rdfs:label "value"@en ;
    rdfs:comment "An RDF node that has caused the result."@en ;
    rdfs:domain sh:AbstractResult ;
    rdfs:isDefinedBy sh: .

sh:zeroOrMorePath a rdf:Property ;
    rdfs:label "zero or more path"@en ;
    rdfs:comment "The (single) value of this property represents a path that is matched zero or more times."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

sh:zeroOrOnePath a rdf:Property ;
    rdfs:label "zero or one path"@en ;
    rdfs:comment "The (single) value of this property represents a path that is matched zero or one times."@en ;
    rdfs:isDefinedBy sh: ;
    rdfs:range rdfs:Resource .

brick:Ablutions_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ablutions Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room for performing cleansing rituals before prayer"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ablutions> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ablutions>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Absolute_Humidity a brick:Quantity ;
    rdfs:label "Absolute Humidity"^^xsd:string ;
    qudt:applicableUnit unit:GRAIN-PER-GAL,
        unit:KiloGM-PER-M3,
        unit:LB-PER-FT3,
        unit:LB-PER-GAL,
        unit:LB-PER-GAL_UK,
        unit:LB-PER-GAL_US,
        unit:LB-PER-IN3,
        unit:LB-PER-M3,
        unit:LB-PER-YD3,
        unit:MilliGM-PER-DeciL,
        unit:OZ_PER-GAL,
        unit:OZ_PER-IN3,
        unit:PlanckDensity,
        unit:SLUG-PER-FT3,
        unit:TON_LONG-PER-YD3,
        unit:TON_SHORT-PER-YD3,
        unit:TON_UK-PER-YD3,
        unit:TON_US-PER-YD3 ;
    skos:broader brick:Humidity ;
    brick:hasQUDTReference qudtqk:AbsoluteHumidity .

brick:Absorption_Chiller a owl:Class,
        sh:NodeShape ;
    rdfs:label "Absorption Chiller"^^xsd:string ;
    rdfs:subClassOf brick:Chiller ;
    skos:definition "A chiller that utilizes a thermal or/and chemical process to produce the refrigeration effect necessary to provide chilled water. There is no mechanical compression of the refrigerant taking place within the machine, as occurs within more traditional vapor compression type chillers."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Absorption> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chiller> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Absorption>,
        <https://brickschema.org/schema/BrickTag#Chiller>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Acceleration_Time a brick:Quantity ;
    rdfs:label "Acceleration Time"^^xsd:string ;
    skos:broader brick:Time .

brick:Acceleration_Time_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Acceleration Time Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Time_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Acceleration> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Acceleration>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Access_Reader a owl:Class,
        sh:NodeShape ;
    rdfs:label "Access Reader"^^xsd:string ;
    rdfs:subClassOf brick:Access_Control_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reader> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Control> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Security> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Access> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Access>,
        <https://brickschema.org/schema/BrickTag#Control>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Reader>,
        <https://brickschema.org/schema/BrickTag#Security> .

brick:Active_Chilled_Beam a owl:Class,
        sh:NodeShape ;
    rdfs:label "Active Chilled Beam"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Beam ;
    skos:definition "A Chilled Beam with an integral primary air connection that induces air flow through the device."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Active> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Beam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Active>,
        <https://brickschema.org/schema/BrickTag#Beam>,
        <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Active_Energy a brick:Quantity ;
    rdfs:label "Active_Energy"^^xsd:string ;
    qudt:applicableUnit unit:KiloW-HR,
        unit:MegaW-HR,
        unit:W-HR ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Electric_Energy ;
    skos:definition "The integral of the active power over a time interval"^^xsd:string .

brick:Active_Power_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Active Power Sensor"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/AC_power#Active,_reactive,_and_apparent_power> ;
    rdfs:subClassOf brick:Electric_Power_Sensor ;
    skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, results in net transfer of energy in one direction"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Real> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Real>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Active_Power .

brick:Air_Flow_Loss_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Air Flow Loss Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Alarm ;
    skos:definition "An alarm that indicates loss in air flow."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loss> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Loss>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Air_Loop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Air Loop"^^xsd:string ;
    rdfs:subClassOf brick:Loop ;
    skos:definition "The set of connected equipment serving one path of air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Loop> .

brick:Alarm_Delay_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Alarm Delay Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Delay_Parameter ;
    skos:definition "A parameter determining how long to delay an alarm after sufficient conditions have been met"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Delay> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Delay>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Alternating_Current_Frequency a brick:Quantity ;
    rdfs:label "Alternating_Current_Frequency"^^xsd:string ;
    qudt:applicableUnit unit:GigaHZ,
        unit:HZ,
        unit:KiloHZ,
        unit:MegaHZ ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Frequency,
        brick:Frequency ;
    skos:definition "The frequency of the oscillations of alternating current"^^xsd:string,
        "The frequency of the oscillations of alternating current"@en ;
    skos:related brick:Electric_Current .

brick:Ammonia_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ammonia Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Quality_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ammonia> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ammonia>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Ammonia_Concentration ;
    brick:hasSubstance brick:Air .

brick:Apparent_Energy a brick:Quantity ;
    rdfs:label "Apparent_Energy"^^xsd:string ;
    qudt:applicableUnit unit:KiloV-A-HR,
        unit:MegaV-A-HR,
        unit:V-A-HR ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Electric_Energy ;
    skos:definition "The integral of the apparent power over a time interval"^^xsd:string .

brick:Apparent_Power a brick:Quantity ;
    rdfs:label "Apparent Power"^^xsd:string ;
    qudt:applicableUnit unit:KiloV-A,
        unit:MegaV-A,
        unit:V-A ;
    skos:broader brick:Electric_Power ;
    skos:definition "Apparent Power is the product of the rms voltage (U) between the terminals of a two-terminal element or two-terminal circuit and the rms electric current I in the element or circuit. Under sinusoidal conditions, the apparent power is the modulus of the complex power."@en ;
    brick:hasQUDTReference qudtqk:ApparentPower .

brick:Atmospheric_Pressure a brick:Quantity ;
    rdfs:label "Atmospheric Pressure"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:CM_H2O,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_HG,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_HG,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:MegaBAR,
        unit:MegaPA,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PSI,
        unit:PlanckPressure,
        unit:TORR ;
    skos:broader brick:Pressure ;
    skos:definition "The pressure exerted by the weight of the air above it at any point on the earth's surface. At sea level the atmosphere will support a column of mercury about (760 mm) high. This decreases with increasing altitude. The standard value for the atmospheric pressure at sea level in SI units is (101,325 pascals)."@en ;
    brick:hasQUDTReference qudtqk:AtmosphericPressure .

brick:Atrium a owl:Class,
        sh:NodeShape ;
    rdfs:label "Atrium"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Atrium_(architecture)> ;
    rdfs:subClassOf brick:Common_Space ;
    skos:definition "a large open-air or skylight covered space surrounded by a building."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Atrium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Atrium>,
        <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Auditorium a owl:Class,
        sh:NodeShape ;
    rdfs:label "Auditorium"^^xsd:string ;
    rdfs:subClassOf brick:Common_Space ;
    skos:definition "A space for performances or larger gatherings"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Auditorium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Auditorium>,
        <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Automatic_Mode_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Automatic Mode Command"^^xsd:string ;
    rdfs:subClassOf brick:Mode_Command ;
    skos:definition "Controls whether or not a device or controller is operating in \"Automatic\" mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Automatic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Automatic>,
        <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Automatic_Tint_Window a owl:Class,
        sh:NodeShape ;
    rdfs:label "Automatic Tint Window"^^xsd:string ;
    rdfs:subClassOf brick:Shading_Equipment ;
    skos:definition "A window with tint control."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Window> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Automatic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shade> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Automatic>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Shade>,
        <https://brickschema.org/schema/BrickTag#Tint>,
        <https://brickschema.org/schema/BrickTag#Window> .

brick:Availability_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Availability Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if a piece of equipment, system, or functionality is available for operation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Availability> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Availability>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Average_Cooling_Demand_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Average Cooling Demand Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Demand_Sensor ;
    skos:definition "Measures the average power consumed by a cooling process as the amount of power consumed over some interval"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Average> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Average>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Average_Exhaust_Air_Static_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Average Exhaust Air Static Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ;
    skos:definition "The computed average static pressure of air in exhaust regions of an HVAC system over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Average> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Average>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Static> .

brick:Average_Heating_Demand_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Average Heating Demand Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Demand_Sensor ;
    skos:definition "Measures the average power consumed by a heating process as the amount of power consumed over some interval"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Average> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Average>,
        <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Average_Supply_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Average Supply Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Flow_Sensor ;
    owl:equivalentClass brick:Average_Discharge_Air_Flow_Sensor ;
    skos:definition "The computed average flow of supply air over some interval"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Average> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Average>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Average_Zone_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Average Zone Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ;
    skos:definition "The computed average temperature of air in a zone, over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Average> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Average>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Basement a owl:Class,
        sh:NodeShape ;
    rdfs:label "Basement"^^xsd:string ;
    rdfs:subClassOf brick:Floor ;
    skos:definition "The floor of a building which is partly or entirely below ground level."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Basement> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Floor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Basement>,
        <https://brickschema.org/schema/BrickTag#Floor>,
        <https://brickschema.org/schema/BrickTag#Location> .

brick:Battery a owl:Class,
        sh:NodeShape ;
    rdfs:label "Battery"^^xsd:string ;
    rdfs:subClassOf brick:Energy_Storage ;
    skos:definition "A container that stores chemical energy that can be converted into electricity and used as a source of power"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Battery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Storage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Battery>,
        <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Storage> .

brick:Battery_Energy_Storage_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Battery Energy Storage System"^^xsd:string ;
    rdfs:subClassOf brick:Energy_Storage_System ;
    skos:definition "A collection of batteries that provides energy storage, along with their supporting equipment"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Storage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Battery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Battery>,
        <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Storage>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Battery_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Battery Room"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Room ;
    skos:definition "A room used to hold batteries for backup power"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electrical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Battery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Battery>,
        <https://brickschema.org/schema/BrickTag#Electrical>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Battery_Voltage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Battery Voltage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Voltage_Sensor ;
    skos:definition "Measures the capacity of a battery"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Battery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Battery>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Voltage> .

brick:Bench_Space a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bench Space"^^xsd:string ;
    rdfs:subClassOf brick:Outdoor_Area ;
    skos:definition "For areas of play in a stadium, the area for partcipants and referees by the side of the field"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Area> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bench> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outdoor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Area>,
        <https://brickschema.org/schema/BrickTag#Bench>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Outdoor> .

brick:Blind a owl:Class,
        sh:NodeShape ;
    rdfs:label "Blind"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Window_blind> ;
    rdfs:subClassOf brick:Shading_Equipment ;
    skos:definition "A window covering."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Blind> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shade> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Blind>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Shade> .

brick:Blind_Group a owl:Class,
        sh:NodeShape ;
    rdfs:label "Blind Group"^^xsd:string ;
    rdfs:subClassOf brick:Shading_System ;
    skos:definition "A group of Blinds commonly attached to a single controller."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Group> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shade> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Blind> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Blind>,
        <https://brickschema.org/schema/BrickTag#Group>,
        <https://brickschema.org/schema/BrickTag#Shade>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Boiler_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Boiler Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "A command to control a boiler"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Boiler> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Boiler>,
        <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Booster_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Booster Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "Fan activated to increase airflow beyond what is provided by the default configuration"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Booster> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Booster>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan> .

brick:Box_Mode_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Box Mode Command"^^xsd:string ;
    rdfs:subClassOf brick:Mode_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Breaker_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Breaker Panel"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "Breaker Panel distributes power into various end-uses."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Breaker> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Breaker>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Broadcast_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Broadcast Room"^^xsd:string ;
    rdfs:subClassOf brick:Media_Room ;
    skos:definition "A space to organize and manage a broadcast. Separate from studio"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Broadcast> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Media> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Broadcast>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Media>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Building_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Setpoint for humidity in a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Building_Air .

brick:Building_Air_Static_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Air Static Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Sensor ;
    skos:definition "The static pressure of air within a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Static> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Building_Air .

brick:Building_Air_Static_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Air Static Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint ;
    skos:definition "Sets static pressure of the entire building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Building_Air .

brick:Building_Chilled_Water_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Chilled Water Meter"^^xsd:string ;
    rdfs:subClassOf brick:Building_Meter,
        brick:Chilled_Water_Meter ;
    skos:definition "A meter that measures the usage or consumption of chilled water of a whole building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Meter>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Building_Electrical_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Electrical Meter"^^xsd:string ;
    rdfs:subClassOf brick:Building_Meter,
        brick:Electrical_Meter ;
    skos:definition "A meter that measures the usage or consumption of electricity of a whole building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electrical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Electrical>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Meter> .

brick:Building_Gas_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Gas Meter"^^xsd:string ;
    rdfs:subClassOf brick:Building_Meter,
        brick:Gas_Meter ;
    skos:definition "A meter that measures the usage or consumption of gas of a whole building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Meter> .

brick:Building_Hot_Water_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Hot Water Meter"^^xsd:string ;
    rdfs:subClassOf brick:Building_Meter,
        brick:Hot_Water_Meter ;
    skos:definition "A meter that measures the usage or consumption of hot water of a whole building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Meter>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Building_Water_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Building Water Meter"^^xsd:string ;
    rdfs:subClassOf brick:Building_Meter,
        brick:Water_Meter ;
    skos:definition "A meter that measures the usage or consumption of water of a whole building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Meter>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Bus_Riser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bus Riser"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "Bus Risers are commonly fed from a switchgear and rise up through a series of floors to the main power distribution source for each floor."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Riser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Riser> .

brick:Bypass_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bypass Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of bypass air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Bypass_Air .

brick:Bypass_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bypass Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for bypass air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Bypass_Air .

brick:Bypass_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bypass Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Bypass_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bypass Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Flow_Sensor ;
    skos:definition "Measures the rate of flow of bypass water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Bypass_Water .

brick:Bypass_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Bypass Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Water_Flow_Setpoint ;
    skos:definition "Sets the target flow rate of bypass water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Bypass_Water .

brick:CO2_Alarm_Sensitivity_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "CO2 Alarm Sensitivity Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ;
    skos:definition "A parameter indicates the sensitivity to activate a CO2 alarm."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensitivity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensitivity> .

brick:CO2_Differential_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "CO2 Differential Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Sensor ;
    skos:definition "Measures the difference between CO2 levels of inside and outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Differential_CO2_Concentration ;
    brick:hasSubstance brick:Air .

brick:CO2_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "CO2 Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Sensor ;
    skos:definition "Measures the concentration of CO2 in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:CO2_Concentration ;
    brick:hasSubstance brick:Air .

brick:CO_Differential_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "CO Differential Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#CO>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Differential_CO_Concentration ;
    brick:hasSubstance brick:Air .

brick:CO_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "CO Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO_Sensor ;
    skos:definition "Measures the concentration of CO"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#CO>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Cafeteria a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cafeteria"^^xsd:string ;
    rdfs:subClassOf brick:Common_Space ;
    skos:definition "A space to serve food and beverages"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cafeteria> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cafeteria>,
        <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Capacity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Capacity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Capacity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Capacity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Capacity .

brick:Ceiling_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ceiling Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "A fan installed on the ceiling of a room for the purpose of air circulation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ceiling> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ceiling>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan> .

brick:Centrifugal_Chiller a owl:Class,
        sh:NodeShape ;
    rdfs:label "Centrifugal Chiller"^^xsd:string ;
    rdfs:seeAlso <https://bellomyims.com/your-definitive-guide-to-centrifugal-chillers/> ;
    rdfs:subClassOf brick:Chiller ;
    skos:definition "A chiller that uses the vapor compression cycle to chill water. It throws off the heat collected from the chilled water plus the heat from the compressor to a water loop"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chiller> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Centrifugal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Centrifugal>,
        <https://brickschema.org/schema/BrickTag#Chiller>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Change_Filter_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Change Filter Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that indicates that a filter must be changed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Change> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Change>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Chilled_Water_Coil a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Coil"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Coil ;
    skos:definition "A cooling element made of pipe or tube that removes heat from equipment, machines or airflows that is filled with chilled water."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Coil>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of differential pressure of chilled water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Chilled_Water .

brick:Chilled_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Load Shed Reset Status"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Load_Shed_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Load Shed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Differential_Pressure_Setpoint,
        brick:Load_Shed_Differential_Pressure_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in water pressure on either side of a chilled water valve"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Chilled_Water .

brick:Chilled_Water_Differential_Pressure_Step_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Pressure Step Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Step_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Step> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Step>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Differential_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Differential Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor,
        brick:Water_Differential_Temperature_Sensor ;
    skos:definition "Measures the difference in temperature between the entering water to the chiller or other water cooling device and leaving water from the same chiller or other water cooling device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Temperature ;
    brick:hasSubstance brick:Chilled_Water .

brick:Chilled_Water_Loop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Loop"^^xsd:string ;
    rdfs:subClassOf brick:Water_Loop ;
    skos:definition "A collection of equipment that transport and regulate chilled water among each other"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Loop>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Pump a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Pump"^^xsd:string ;
    rdfs:subClassOf brick:Water_Pump ;
    skos:definition "A pump that performs work on chilled water; typically part of a chilled water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Static_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Static Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint ;
    skos:definition "Sets static pressure of chilled water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Chilled_Water .

brick:Chilled_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water System"^^xsd:string ;
    rdfs:subClassOf brick:Water_System ;
    skos:definition "The equipment, devices and conduits that handle the production and distribution of chilled water in a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_System_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water System Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:System_Enable_Command ;
    skos:definition "Enables operation of the chilled water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Chilled_Water_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Chilled Water Valve"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Valve,
        brick:Water_Valve ;
    skos:definition "A valve that modulates the flow of chilled water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Close_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Close Limit"^^xsd:string ;
    rdfs:subClassOf brick:Limit ;
    skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Close_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Close> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Close>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Cloudage a brick:Quantity ;
    rdfs:label "Cloudage"^^xsd:string ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Dimensionless ;
    skos:definition "The fraction of the sky obscured by clouds when observed from a particular location"^^xsd:string,
        "The fraction of the sky obscured by clouds when observed from a particular location"@en .

brick:Cold_Box a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cold Box"^^xsd:string ;
    rdfs:subClassOf brick:Laboratory ;
    skos:definition "in a gas separation unit, the insulated section that contains the low-temperature heat exchangers and distillation columns."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Laboratory> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cold> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Cold>,
        <https://brickschema.org/schema/BrickTag#Laboratory>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room> .

brick:Coldest_Zone_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Coldest Zone Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ;
    skos:definition "The zone temperature that is coldest; drives the supply temperature of hot air. A computed value rather than a physical sensor. Also referred to as a 'Lowest Zone Air Temperature Sensor'"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coldest> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Coldest>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Collection_Basin_Water_Heater a owl:Class,
        sh:NodeShape ;
    rdfs:label "Collection Basin Water Heater"^^xsd:string ;
    rdfs:seeAlso <https://www.coolingtowerworld.com/c-30-basin-heater.aspx> ;
    rdfs:subClassOf brick:Water_Heater ;
    skos:definition "Basin heaters prevent cold water basin freeze-up, e.g. in cooling towers, closed circuit fluid coolers, or evaporative condensers"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Basin> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heater> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Basin>,
        <https://brickschema.org/schema/BrickTag#Collection>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heater>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Collection_Basin_Water_Level_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Collection Basin Water Level Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Level_Alarm ;
    skos:definition "An alarm that indicates a high or low level of water in the collection basin, e.g. within a Cooling_Tower"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Basin> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Basin>,
        <https://brickschema.org/schema/BrickTag#Collection>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Collection_Basin_Water_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Collection Basin Water Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Level_Sensor ;
    skos:definition "Measures the level of the water in the collection basin, e.g. within a Cooling_Tower"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Basin> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Basin>,
        <https://brickschema.org/schema/BrickTag#Collection>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Level ;
    brick:hasSubstance brick:Collection_Basin_Water .

brick:Collection_Basin_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Collection Basin Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of the water in the collection basin, e.g. within a Cooling_Tower"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Basin> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Basin>,
        <https://brickschema.org/schema/BrickTag#Collection>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Collection_Basin_Water .

brick:Communication_Loss_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Communication Loss Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that indicates a loss of communication e.g. with a device or controller"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loss> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Communication> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Communication>,
        <https://brickschema.org/schema/BrickTag#Loss>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Complex_Power a brick:Quantity ;
    rdfs:label "Complex Power"^^xsd:string ;
    qudt:applicableUnit unit:KiloV-A,
        unit:MegaV-A,
        unit:V-A ;
    skos:broader brick:Electric_Power ;
    skos:definition "Complex Power, under sinusoidal conditions, is the product of the phasor (U) representing the voltage between the terminals of a linear two-terminal element or two-terminal circuit and the complex conjugate of the phasor (I) representing the electric current in the element or circuit."@en ;
    brick:hasQUDTReference qudtqk:ComplexPower .

brick:Compressor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Compressor"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "(1) device for mechanically increasing the pressure of a gas. (2) often described as being either open, hermetic, or semihermetic to describe how the compressor and motor drive is situated in relation to the gas or vapor being compressed. Types include centrifugal, axial flow, reciprocating, rotary screw, rotary vane, scroll, or diaphragm. 1. device for mechanically increasing the pressure of a gas. 2. specific machine, with or without accessories, for compressing refrigerant vapor."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Compressor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Compressor>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Concession a owl:Class,
        sh:NodeShape ;
    rdfs:label "Concession"^^xsd:string ;
    rdfs:subClassOf brick:Food_Service_Room ;
    skos:definition "A space to sell food and beverages. Usually embedded in a larger space and does not include a space where people consume their purchases"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Food> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Concessions> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Concessions>,
        <https://brickschema.org/schema/BrickTag#Food>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Condensate_Leak_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condensate Leak Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Leak_Alarm ;
    skos:definition "An alarm that indicates a leak of condensate from a cooling system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condensate> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leak> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Condensate>,
        <https://brickschema.org/schema/BrickTag#Leak>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Condenser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A heat exchanger in which the primary heat transfer vapor changes its state to a liquid phase."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Condenser_Heat_Exchanger a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Heat Exchanger"^^xsd:string ;
    rdfs:subClassOf brick:Heat_Exchanger ;
    skos:definition "A heat exchanger in which the primary heat transfer vapor changes its state to a liquid phase."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exchanger> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Exchanger>,
        <https://brickschema.org/schema/BrickTag#Heat> .

brick:Condenser_Water_Bypass_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water Bypass Valve"^^xsd:string ;
    rdfs:subClassOf brick:Bypass_Valve ;
    skos:definition "A valve installed in a bypass line of a condenser water loop"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Condenser_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Water_Flow_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Condenser_Water .

brick:Condenser_Water_Isolation_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water Isolation Valve"^^xsd:string ;
    rdfs:subClassOf brick:Isolation_Valve ;
    skos:definition "An isolation valve installed in the condenser water loop"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Isolation> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Isolation>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Condenser_Water_Pump a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water Pump"^^xsd:string ;
    rdfs:subClassOf brick:Water_Pump ;
    skos:definition "A pump that is part of a condenser system; the pump circulates condenser water from the chiller back to the cooling tower"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Condenser_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water System"^^xsd:string ;
    rdfs:seeAlso <https://www.linquip.com/blog/condenser-water-system-an-overview/> ;
    rdfs:subClassOf brick:Water_System ;
    skos:definition "A heat rejection system consisting of (typically) cooling towers, condenser water pumps, chillers and the piping connecting the components"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Condenser_Water_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condenser Water Valve"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Valve,
        brick:Water_Valve ;
    skos:definition "A valve that modulates the flow of condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Condensing_Natural_Gas_Boiler a owl:Class,
        sh:NodeShape ;
    rdfs:label "Condensing Natural Gas Boiler"^^xsd:string ;
    rdfs:subClassOf brick:Natural_Gas_Boiler ;
    skos:definition "A closed, pressure vessel that uses natural gas and heat exchanger that capture and reuse any latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condensing> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Boiler> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Boiler>,
        <https://brickschema.org/schema/BrickTag#Condensing>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural> .

brick:Conference_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Conference Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space dedicated in which to hold a meetings"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Conference> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Conference>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Constant_Air_Volume_Box a owl:Class,
        sh:NodeShape ;
    rdfs:label "Constant Air Volume Box"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Constant_air_volume> ;
    rdfs:subClassOf brick:Terminal_Unit ;
    owl:equivalentClass brick:CAV ;
    skos:definition "A terminal unit for which supply air flow rate is constant and the supply air temperature is varied to meet thermal load"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Volume> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Constant> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Constant>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Volume> .

brick:Contact_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Contact Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Senses or detects contact, such as for determining if a door is closed."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Contact> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Contact>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Control_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Control Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space from which operations are managed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Control> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Control>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Cooling_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls the amount of cooling to be delivered (typically as a proportion of total cooling output)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Cooling_Demand_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Demand Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Demand_Setpoint ;
    skos:definition "Sets the rate required for cooling"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Cooling_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Command that enables cooling functionality in equipment but certain condition(s) must be met first before actively cooling. For the actively cooling control, see Cooling_Command."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cooling> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Cooling>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Cooling_Start_Stop_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Start Stop Status"^^xsd:string ;
    rdfs:subClassOf brick:Start_Stop_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Cooling_Supply_Air_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Supply Air Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Deadband_Setpoint ;
    owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature of supply air for cooling"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Cooling_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Supply Air Temperature Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ;
    owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Cooling_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Supply Air Temperature Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ;
    owl:equivalentClass brick:Cooling_Discharge_Air_Temperature_Proportional_Band_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Cooling_Tower a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Tower"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Cooling_tower> ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A cooling tower is a heat rejection device that rejects waste heat to the atmosphere through the cooling of a water stream to a lower temperature. Cooling towers may either use the evaporation of water to remove process heat and cool the working fluid to near the wet-bulb air temperature or, in the case of closed circuit dry cooling towers, rely solely on air to cool the working fluid to near the dry-bulb air temperature."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tower> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Tower> .

brick:Cooling_Tower_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Tower Fan"^^xsd:string ;
    rdfs:seeAlso <https://highperformancehvac.com/cooling-tower-fan/> ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "A fan that pulls air through a cooling tower and across the louvers where the water falls to aid in heat exchange by the process of evaporation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tower> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Tower> .

brick:Cooling_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cooling Valve"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A valve that controls air temperature by modulating the amount of cold water flowing through a cooling coil"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Copy_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Copy Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room set aside for common office equipment, including printers and copiers"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Copy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Copy>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Core_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Core Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Embedded_Temperature_Sensor ;
    skos:definition "Measures the internal temperature of the radiant layer at the heat source or sink level of the radiant heating and cooling HVAC system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Core> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Core>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Core_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Core Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Embedded_Temperature_Setpoint ;
    skos:definition "Sets temperature for the core, i.e. the temperature at the heat source or sink level, of the radiant panel."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Core> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Core>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Cubicle a owl:Class,
        sh:NodeShape ;
    rdfs:label "Cubicle"^^xsd:string ;
    rdfs:subClassOf brick:Office ;
    skos:definition "A smaller space set aside for an individual, but not with a door and without full-height walls"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cubicle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cubicle>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Current_Angle a brick:Quantity ;
    rdfs:label "CurrentAngle"^^xsd:string ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Phasor_Angle ;
    skos:definition "Angle of current phasor"^^xsd:string,
        "Angle of current phasor"@en ;
    skos:related brick:Electric_Current .

brick:Current_Imbalance_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Current Imbalance Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Imbalance_Sensor ;
    skos:definition "A sensor which measures the current difference (imbalance) between phases of an electrical system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Imbalance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Imbalance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Current_Imbalance .

brick:Current_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Current Limit"^^xsd:string ;
    rdfs:subClassOf brick:Limit ;
    skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Current_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Current_Ratio_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Current Ratio Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets the ratio of currents in a transformer"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ratio> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Ratio>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Current_Total_Harmonic_Distortion a brick:Quantity ;
    rdfs:label "CurrentTotalHarmonicDistortion"^^xsd:string ;
    qudt:applicableUnit unit:DeciB_M,
        unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Dimensionless ;
    skos:definition "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)"^^xsd:string,
        "Measurement of harmonic distortion present in a signal defined as the sum of the powers of all harmonic components to the power of the fundamental frequency. (https://en.wikipedia.org/wiki/Total_harmonic_distortion)"@en ;
    skos:related brick:Electric_Current .

brick:Curtailment_Override_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Curtailment Override Command"^^xsd:string ;
    rdfs:subClassOf brick:Override_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Override> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Curtailment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Curtailment>,
        <https://brickschema.org/schema/BrickTag#Override>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:DC_Bus_Voltage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "DC Bus Voltage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Voltage_Sensor ;
    skos:definition "Measures the voltage across a DC bus"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bus> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dc> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bus>,
        <https://brickschema.org/schema/BrickTag#Dc>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Voltage> .

brick:Damper_Position_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Damper Position Command"^^xsd:string ;
    rdfs:subClassOf brick:Damper_Command,
        brick:Position_Command ;
    skos:definition "Controls the position (the degree of openness) of a damper"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position> ;
    brick:hasQuantity brick:Position .

brick:Damper_Position_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Damper Position Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Position_Sensor ;
    skos:definition "Measures the current position of a damper in terms of the percent of fully open"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Position .

brick:Damper_Position_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Damper Position Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets the position of damper"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Position .

brick:Damper_Position_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Damper Position Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Status> ;
    brick:hasQuantity brick:Position .

brick:Deceleration_Time a brick:Quantity ;
    rdfs:label "Deceleration Time"^^xsd:string ;
    skos:broader brick:Time .

brick:Deceleration_Time_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Deceleration Time Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Time_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deceleration> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deceleration>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Dehumidification_Start_Stop_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Dehumidification Start Stop Status"^^xsd:string ;
    rdfs:subClassOf brick:Start_Stop_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dehumidification> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Dehumidification>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Deionised_Water_Conductivity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Deionised Water Conductivity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Conductivity_Sensor ;
    skos:definition "Measures the electrical conductance of deionised water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Conductivity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deionised> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Conductivity>,
        <https://brickschema.org/schema/BrickTag#Deionised>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Conductivity ;
    brick:hasSubstance brick:Deionized_Water .

brick:Deionised_Water_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Deionised Water Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Level_Sensor ;
    skos:definition "Measures the height/level of deionised water in some container"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deionised> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deionised>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Level ;
    brick:hasSubstance brick:Deionized_Water .

brick:Deionized_Water_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Deionized Water Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Alarm ;
    skos:definition "An alarm that indicates deionized water leaks."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deionized> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Deionized>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Derivative_Gain_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Derivative Gain Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Gain_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Derivative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gain> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Derivative>,
        <https://brickschema.org/schema/BrickTag#Gain>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Derivative_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Derivative Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Derivative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Derivative>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Detention_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Detention Room"^^xsd:string ;
    rdfs:subClassOf brick:Security_Service_Room ;
    skos:definition "A space for the temporary involuntary confinement of people"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detention> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Detention>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Dewpoint_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Dewpoint Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets dew point"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Dewpoint .

brick:Differential_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Differential Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Temperature_Setpoint ;
    skos:definition "Sets temperature of diffrential air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Differential_Temperature ;
    brick:hasSubstance brick:Air .

brick:Differential_Dry_Bulb_Temperature a brick:Quantity ;
    rdfs:label "Differential Dry Bulb Temperature"^^xsd:string ;
    qudt:isDeltaQuantity true ;
    skos:broader brick:Dry_Bulb_Temperature ;
    brick:hasQUDTReference qudtqk:Dry_Bulb_Temperature .

brick:Differential_Dynamic_Pressure a brick:Quantity ;
    rdfs:label "Differential Dynamic Pressure"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:CM_H2O,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_HG,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_HG,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:MegaBAR,
        unit:MegaPA,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PSI,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:isDeltaQuantity true ;
    skos:broader brick:Differential_Pressure,
        brick:Velocity_Pressure ;
    brick:hasQUDTReference qudtqk:DynamicPressure .

brick:Differential_Entering_Leaving_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Differential Entering Leaving Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ;
    skos:definition "Measures the difference in temperature between entering and leaving water of water a circuit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Chilled_Water,
        brick:Leaving_Chilled_Water .

brick:Differential_Pressure_Bypass_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Differential Pressure Bypass Valve"^^xsd:string ;
    rdfs:subClassOf brick:Bypass_Valve ;
    skos:definition "A 2-way, self contained proportional valve with an integral differential pressure adjustment setting."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bypass> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Bypass>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Differential_Speed_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Differential Speed Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Speed_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Differential_Speed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Differential Speed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Setpoint ;
    skos:definition "Sets differential speed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Differential_Static_Pressure a brick:Quantity ;
    rdfs:label "Differential Static Pressure"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:CM_H2O,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_HG,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_HG,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:MegaBAR,
        unit:MegaPA,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PSI,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:isDeltaQuantity true ;
    skos:broader brick:Differential_Pressure,
        brick:Static_Pressure ;
    brick:hasQUDTReference qudtqk:StaticPressure .

brick:Dimmer a owl:Class,
        sh:NodeShape ;
    rdfs:label "Dimmer"^^xsd:string ;
    rdfs:subClassOf brick:Switch ;
    skos:definition "A switch providing continuous control over all or part of a lighting installation; typically potentiometer-based"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dimmer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Interface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Switch> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Dimmer>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Interface>,
        <https://brickschema.org/schema/BrickTag#Switch> .

brick:Direct_Expansion_Cooling_Coil a owl:Class,
        sh:NodeShape ;
    rdfs:label "Direct Expansion Cooling Coil"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Coil ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Expansion> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Direct> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Coil>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Direct>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Expansion> .

brick:Direct_Expansion_Heating_Coil a owl:Class,
        sh:NodeShape ;
    rdfs:label "Direct Expansion Heating Coil"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Coil ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Expansion> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Direct> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Coil>,
        <https://brickschema.org/schema/BrickTag#Direct>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Expansion>,
        <https://brickschema.org/schema/BrickTag#Heat> .

brick:Direction_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Direction Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Commands that affect the direction of some phenomenon"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Direction> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Direction>,
        <https://brickschema.org/schema/BrickTag#Point> ;
    brick:hasQuantity brick:Direction .

brick:Disable_Differential_Enthalpy_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Differential Enthalpy Command"^^xsd:string ;
    rdfs:subClassOf brick:Disable_Command ;
    skos:definition "Disables the use of differential enthalpy control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Disable_Differential_Temperature_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Differential Temperature Command"^^xsd:string ;
    rdfs:subClassOf brick:Disable_Command ;
    skos:definition "Disables the use of differential temperature control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Disable_Fixed_Enthalpy_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Fixed Enthalpy Command"^^xsd:string ;
    rdfs:subClassOf brick:Disable_Command ;
    skos:definition "Disables the use of fixed enthalpy control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Fixed>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Disable_Fixed_Temperature_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Fixed Temperature Command"^^xsd:string ;
    rdfs:subClassOf brick:Disable_Command ;
    skos:definition "Disables the use of fixed temperature temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Fixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Disable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Hot Water System Outside Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ;
    skos:definition "Disables hot water system when outside air temperature reaches the indicated value"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Disable_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disable Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if functionality has been disabled"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Disable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Discharge_Air_Differential_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Discharge Air Differential Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ;
    owl:equivalentClass brick:Supply_Air_Differential_Pressure_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Discharge> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Discharge>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Supply_Air .

brick:Disconnect_Switch a owl:Class,
        sh:NodeShape ;
    rdfs:label "Disconnect Switch"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "Building power is most commonly provided by utility company through a master disconnect switch (sometimes called a service disconnect) in the main electrical room of a building. The Utility Company provided master disconnect switch often owns or restricts access to this switch. There can also be other cases where a disconnect is placed into an electrical system to allow service cut-off to a portion of the building."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Disconnect> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Switch> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Disconnect>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Switch> .

brick:Displacement_Flow_Air_Diffuser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Displacement Flow Air Diffuser"^^xsd:string ;
    rdfs:subClassOf brick:Air_Diffuser ;
    skos:definition "An air diffuser that is designed for low discharge air speeds to minimize turbulence and induction of room air. This diffuser is used with displacement ventilation systems."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Diffuser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Displacement> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Diffuser>,
        <https://brickschema.org/schema/BrickTag#Displacement>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Flow> .

brick:Domestic_Hot_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Domestic Hot Water System"^^xsd:string ;
    rdfs:subClassOf brick:System ;
    skos:definition "The equipment, devices and conduits that handle the production and distribution of domestic hot water in a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Domestic_Hot_Water_System_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Domestic Hot Water System Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_System_Enable_Command ;
    skos:definition "Enables operation of the domestic hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Domestic_Hot_Water_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Domestic Hot Water Valve"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Valve ;
    skos:definition "A valve regulating the flow of domestic hot water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Domestic_Water_Loop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Domestic Water Loop"^^xsd:string ;
    rdfs:subClassOf brick:Water_Loop ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Loop>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Drench_Hose a owl:Class,
        sh:NodeShape ;
    rdfs:label "Drench Hose"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Wash_Station ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hose> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Drench> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wash> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Drench>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Hose>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Station>,
        <https://brickschema.org/schema/BrickTag#Wash> .

brick:Drive_Ready_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Drive Ready Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if a hard drive or other storage device is ready to be used, e.g. in the context of RAID"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ready> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Drive> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Drive>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Ready>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Dry_Cooler a owl:Class,
        sh:NodeShape ;
    rdfs:label "Dry Cooler"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A dry cooler is a fluid cooler that uses air, a relatively dry, non-liquid fluid to accomplish process cooling. (https://submer.com/submer-academy/library/dry-cooler/)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dry> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cooler> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#HVAC> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cooler>,
        <https://brickschema.org/schema/BrickTag#Dry>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#HVAC> .

brick:EconCycle_Start_Stop_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "EconCycle Start Stop Status"^^xsd:string ;
    rdfs:subClassOf brick:Start_Stop_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Econcycle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Econcycle>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Economizer a owl:Class,
        sh:NodeShape ;
    rdfs:label "Economizer"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "Device that, on proper variable sensing, initiates control signals or actions to conserve energy. A control system that reduces the mechanical heating and cooling requirement."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Economizer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Economizer>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Economizer_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Economizer Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that is part of an economizer that is used to module the flow of air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Economizer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Economizer>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Effective_Air_Temperature_Cooling_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Air Temperature Cooling Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Effective_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Effective_Air_Temperature_Heating_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Air Temperature Heating Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint,
        brick:Heating_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Effective_Return_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Return Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint,
        brick:Return_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Effective_Room_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Room Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint,
        brick:Room_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Effective_Supply_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Supply Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Setpoint ;
    owl:equivalentClass brick:Effective_Discharge_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Effective_Zone_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Effective Zone Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Effective_Air_Temperature_Setpoint,
        brick:Zone_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Effective> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Effective>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Electric_Baseboard_Radiator a owl:Class,
        sh:NodeShape ;
    rdfs:label "Electric Baseboard Radiator"^^xsd:string ;
    rdfs:subClassOf brick:Baseboard_Radiator,
        brick:Electric_Radiator ;
    skos:definition "Electric heating device located at or near the floor"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Baseboard> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Baseboard>,
        <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Radiator> .

brick:Electric_Boiler a owl:Class,
        sh:NodeShape ;
    rdfs:label "Electric Boiler"^^xsd:string ;
    rdfs:subClassOf brick:Boiler ;
    skos:definition "A closed, pressure vessel that uses electricity for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Boiler> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Boiler>,
        <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Elevator a owl:Class,
        sh:NodeShape ;
    rdfs:label "Elevator"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Elevator> ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "A device that provides vertical transportation between floors, levels or decks of a building, vessel or other structure"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Elevator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Elevator>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Embedded_Surface_System_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Embedded Surface System Panel"^^xsd:string ;
    rdfs:seeAlso <https://www.rehva.eu/eshop/detail/no07-low-temperature-heating-and-high-temperature-cooling> ;
    rdfs:subClassOf brick:Radiant_Panel ;
    owl:equivalentClass brick:ESS_Panel ;
    skos:definition "Radiant panel heating and cooling system where the energy heat source or sink is embedded in a radiant layer which is thermally insulated from the building structure."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Embedded> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Embedded>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#Surface>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Emergency_Air_Flow_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Air Flow System"^^xsd:string ;
    rdfs:subClassOf brick:Safety_System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Emergency_Air_Flow_System_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Air Flow System Status"^^xsd:string ;
    rdfs:subClassOf brick:System_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Emergency_Generator_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Generator Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Alarm ;
    skos:definition "An alarm that indicates off-normal conditions associated with an emergency generator"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Generator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Generator>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Emergency_Generator_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Generator Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if an emergency generator is active"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Generator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Generator>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Emergency_Phone a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Phone"^^xsd:string ;
    rdfs:subClassOf brick:Intercom_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Phone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Security> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Intercom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Intercom>,
        <https://brickschema.org/schema/BrickTag#Phone>,
        <https://brickschema.org/schema/BrickTag#Security> .

brick:Emergency_Power_Off_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Power Off System"^^xsd:string ;
    rdfs:subClassOf brick:Safety_System ;
    skos:definition "A system that can power down a single piece of equipment or a single system from a single point"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Emergency_Power_Off_System_Activated_By_High_Temperature_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Power Off System Activated By High Temperature Status"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Power_Off_System_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Emergency_Power_Off_System_Activated_By_Leak_Detection_System_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Power Off System Activated By Leak Detection System Status"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Power_Off_System_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leak> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Detection>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Leak>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Emergency_Push_Button_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Emergency Push Button Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if an emergency button has been pushed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Push> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Button> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Button>,
        <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Push>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Employee_Entrance_Lobby a owl:Class,
        sh:NodeShape ;
    rdfs:label "Employee Entrance Lobby"^^xsd:string ;
    rdfs:subClassOf brick:Lobby ;
    skos:definition "An open space near an entrance that is typicaly only used for employees"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Employee> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lobby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entrance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Employee>,
        <https://brickschema.org/schema/BrickTag#Entrance>,
        <https://brickschema.org/schema/BrickTag#Lobby>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Enable_Differential_Enthalpy_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enable Differential Enthalpy Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Enables the use of differential enthalpy control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Enable_Differential_Temperature_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enable Differential Temperature Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Enables the use of differential temperature control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Enable_Fixed_Enthalpy_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enable Fixed Enthalpy Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Enables the use of fixed enthalpy control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Fixed>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Enable_Fixed_Temperature_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enable Fixed Temperature Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Enables the use of fixed temperature control"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Fixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Enable_Hot_Water_System_Outside_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enable Hot Water System Outside Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ;
    skos:definition "Enables hot water system when outside air temperature reaches the indicated value"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Energy_Generation_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Energy Generation Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Generation_Sensor ;
    skos:definition "A sensor measuring the amount of generated energy."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Generation> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Generation>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Energy_Usage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Energy Usage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Energy_Sensor,
        brick:Usage_Sensor ;
    skos:definition "Measures the total amount of energy used over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Usage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Usage> .

brick:Energy_Zone a owl:Class,
        sh:NodeShape ;
    rdfs:label "Energy Zone"^^xsd:string ;
    rdfs:subClassOf brick:Zone ;
    skos:definition "A space or group of spaces that are managed or monitored as one unit for energy purposes"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Entering_Chilled_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Chilled Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
        brick:Entering_Water_Flow_Sensor ;
    skos:definition "Measures the rate of flow of chilled entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Entering_Chilled_Water .

brick:Entering_Chilled_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Chilled Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
        brick:Entering_Water_Flow_Setpoint ;
    skos:definition "Sets the target flow rate of chilled entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Entering_Chilled_Water .

brick:Entering_Chilled_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Chilled Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of chilled water that is enteringed to a cooling tower"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Chilled_Water .

brick:Entering_Chilled_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Chilled Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint,
        brick:Entering_Water_Temperature_Setpoint ;
    skos:definition "Sets the temperature of entering (downstream of the chilled water load) chilled water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Chilled_Water .

brick:Entering_Condenser_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Condenser Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Water_Flow_Sensor ;
    skos:definition "Measures the flow of the entering condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Entering_Condenser_Water .

brick:Entering_Condenser_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Condenser Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of the entering condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Condenser_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Condenser Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ;
    skos:definition "The temperature setpoint for the entering condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Condenser_Water .

brick:Entering_Domestic_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Domestic Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor,
        brick:Entering_Hot_Water_Temperature_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Domestic_Hot_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Domestic Hot Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint,
        brick:Entering_Water_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering High Temperature Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of high-temperature hot water enteringed to a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Hot_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Hot Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Water_Flow_Sensor,
        brick:Hot_Water_Flow_Sensor ;
    skos:definition "Measures the rate of flow of hot entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Entering_Hot_Water .

brick:Entering_Hot_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Hot Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Water_Flow_Setpoint,
        brick:Hot_Water_Flow_Setpoint ;
    skos:definition "Sets the target flow rate of hot entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Entering_Hot_Water .

brick:Entering_Hot_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Hot Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint,
        brick:Hot_Water_Temperature_Setpoint ;
    skos:definition "Sets the temperature of entering (downstream of the hot water load) hot water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Hot_Water .

brick:Entering_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Medium Temperature Hot Water Temperature High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Load_Shed_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Medium Temperature Hot Water Temperature Load Shed Status"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Load_Shed_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Medium Temperature Hot Water Temperature Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Medium Temperature Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of medium-temperature hot water entering a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Differential Pressure Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of differential pressure of entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Entering_Water .

brick:Entering_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Differential Pressure Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Differential Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Alarm ;
    skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the entering water."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Water_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature of entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Water .

brick:Entering_Water_Temperature_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Temperature Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Integral_Time_Parameter,
        brick:Temperature_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Temperature_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Temperature Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Proportional_Band_Parameter,
        brick:Temperature_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Entering_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entering Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of entering water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entering> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entering>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Entering_Water .

brick:Enthalpy_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Enthalpy Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets enthalpy"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Enthalpy .

brick:Entrance a owl:Class,
        sh:NodeShape ;
    rdfs:label "Entrance"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "The location and space of a building where people enter and exit the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Entrance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Entrance>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Environment_Box a owl:Class,
        sh:NodeShape ;
    rdfs:label "Environment Box"^^xsd:string ;
    rdfs:subClassOf brick:Laboratory ;
    skos:definition "(also known as climatic chamber), enclosed space designed to create a particular environment."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Laboratory> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Environment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Environment>,
        <https://brickschema.org/schema/BrickTag#Laboratory>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room> .

brick:Equipment_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Equipment Room"^^xsd:string ;
    rdfs:subClassOf brick:Telecom_Room ;
    skos:definition "A telecommunications room where equipment that serves the building is stored"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Telecom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Telecom> .

brick:Evaporative_Heat_Exchanger a owl:Class,
        sh:NodeShape ;
    rdfs:label "Evaporative Heat Exchanger"^^xsd:string ;
    rdfs:subClassOf brick:Heat_Exchanger ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Evaporative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exchanger> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Evaporative>,
        <https://brickschema.org/schema/BrickTag#Exchanger>,
        <https://brickschema.org/schema/BrickTag#Heat> .

brick:Even_Month_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Even Month Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Even> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Month> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Even>,
        <https://brickschema.org/schema/BrickTag#Month>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Exercise_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exercise Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "An indoor room used for exercise and physical activities"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exercise> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Exercise>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Exhaust_Air_Dewpoint_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Dewpoint Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Dewpoint_Sensor ;
    skos:definition "Measures dewpoint of exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Dewpoint ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to exhaust air from the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Differential_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Differential Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ;
    skos:definition "Sets the target air differential pressure between an upstream and downstream point in a exhaust air duct or conduit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    skos:definition "Measures the relative humidity of exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Stack_Flow_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Stack Flow Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Deadband_Setpoint,
        brick:Exhaust_Air_Stack_Flow_Setpoint ;
    skos:definition "Sets the size of a deadband of exhaust air stack flow"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stack> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Stack> .

brick:Exhaust_Air_Stack_Flow_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Stack Flow Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Exhaust_Air_Flow_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stack> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Stack>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Exhaust_Air_Stack_Flow_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Stack Flow Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Exhaust_Air_Flow_Proportional_Band_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stack> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Stack> .

brick:Exhaust_Air_Stack_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Stack Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Exhaust_Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of air in the exhaust air stack"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stack> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Stack> .

brick:Exhaust_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Static Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Static> .

brick:Exhaust_Air_Static_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Static Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint ;
    skos:definition "Sets static pressure of exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Sensor ;
    skos:definition "Measures the temperature of exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Air_Velocity_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Air Velocity Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Velocity_Pressure_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Velocity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Velocity> ;
    brick:hasQuantity brick:Velocity_Pressure ;
    brick:hasSubstance brick:Exhaust_Air .

brick:Exhaust_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that modulates the flow of exhaust air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Exhaust> .

brick:Exhaust_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Exhaust Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "Fan moving exhaust air -- air that must be removed from a space due to contaminants"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Fan> .

brick:Eye_Wash_Station a owl:Class,
        sh:NodeShape ;
    rdfs:label "Eye Wash Station"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Wash_Station ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Eye> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wash> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Eye>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Station>,
        <https://brickschema.org/schema/BrickTag#Wash> .

brick:Fan_Coil_Unit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fan Coil Unit"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Fan_coil_unit> ;
    rdfs:subClassOf brick:Terminal_Unit ;
    owl:equivalentClass brick:FCU ;
    skos:definition "Terminal device consisting of a heating and/or cooling heat exchanger or 'coil' and fan that is used to control the temperature in the space where it is installed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Coil>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Unit> .

brick:Fan_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fan On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:Fan_Status,
        brick:On_Off_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Fan_Speed_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fan Speed Command"^^xsd:string ;
    rdfs:subClassOf brick:Fan_Command ;
    skos:definition "Controls the speed of fans"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Fan_VFD a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fan VFD"^^xsd:string ;
    rdfs:subClassOf brick:VFD ;
    skos:definition "Variable-frequency drive for fans"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#VFD> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#VFD> .

brick:Fault_Reset_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fault Reset Command"^^xsd:string ;
    rdfs:subClassOf brick:Reset_Command ;
    skos:definition "Clears a fault status"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fault> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Fault>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset> .

brick:Field_Of_Play a owl:Class,
        sh:NodeShape ;
    rdfs:label "Field Of Play"^^xsd:string ;
    rdfs:subClassOf brick:Outdoor_Area ;
    skos:definition "The area of a stadium where athletic events occur, e.g. the soccer pitch"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Field> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Play> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Area> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outdoor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Area>,
        <https://brickschema.org/schema/BrickTag#Field>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Outdoor>,
        <https://brickschema.org/schema/BrickTag#Play> .

brick:Filter_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Filter Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in pressure on either side of a filter"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Filter_Reset_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Filter Reset Command"^^xsd:string ;
    rdfs:subClassOf brick:Reset_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset> .

brick:Final_Filter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Final Filter"^^xsd:string ;
    rdfs:subClassOf brick:Filter ;
    skos:definition "The last, high-efficiency filter installed in a sequence to remove the finest particulates from the substance being filtered"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Final> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Final> .

brick:Fire_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Fire_Safety_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Safety> .

brick:Fire_Alarm_Control_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Alarm Control Panel"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Fire_alarm_control_panel> ;
    rdfs:subClassOf brick:Fire_Safety_Equipment ;
    skos:definition "Fire alarm panel is the controlling component of a fire alarm system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Control> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Control>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#Safety> .

brick:Fire_Alarm_Manual_Call_Point a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Alarm Manual Call Point"^^xsd:string ;
    rdfs:seeAlso <http://www.coopermedc.com/products/manual-alarm-call-points> ;
    rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ;
    skos:definition "Manual alarm call points are designed for the purpose of raising an alarm manually once verification of a fire or emergency condition exists. by operating the push button or break glass the alarm signal can be raised."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Call> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Manual> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Call>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Manual>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Station> .

brick:Fire_Alarm_Pull_Station a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Alarm Pull Station"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Manual_fire_alarm_activation#Fire_alarm_pull_station> ;
    rdfs:subClassOf brick:Manual_Fire_Alarm_Activation_Equipment ;
    skos:definition "An active fire protection device (usually wall-mounted) that when activated initiates an alarm on a fire alarm system. In its simplest form the user activates the alarm by pulling the handle down."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Manual> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pull> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Manual>,
        <https://brickschema.org/schema/BrickTag#Pull>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Station> .

brick:Fire_Control_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Control Panel"^^xsd:string ;
    rdfs:subClassOf brick:Fire_Safety_Equipment ;
    skos:definition "A panel-mounted device that provides status and control of a fire safety system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Control> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Control>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#Safety> .

brick:Fire_Safety_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Safety System"^^xsd:string ;
    rdfs:seeAlso <https://assetinsights.net/Glossary/G_Fire_Safety_System.html> ;
    rdfs:subClassOf brick:Safety_System ;
    skos:definition "A system containing devices and equipment that monitor, detect and suppress fire hazards"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Fire_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Measures the presence of fire"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Fire_Zone a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fire Zone"^^xsd:string ;
    rdfs:subClassOf brick:Zone ;
    skos:definition "combustion chamber in a furnace or boiler."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:First_Aid_Kit a owl:Class,
        sh:NodeShape ;
    rdfs:label "First Aid Kit"^^xsd:string ;
    rdfs:subClassOf brick:Safety_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Aid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#FirstAid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Aid>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#FirstAid>,
        <https://brickschema.org/schema/BrickTag#Safety> .

brick:First_Aid_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "First Aid Room"^^xsd:string ;
    rdfs:subClassOf brick:Medical_Room ;
    skos:definition "A room for a person with minor injuries can be treated or temporarily treated until transferred to a more advanced medical facility"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Aid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#First> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meidcal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Aid>,
        <https://brickschema.org/schema/BrickTag#First>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Meidcal>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Flow_Loss a brick:Quantity ;
    rdfs:label "FlowLoss"^^xsd:string ;
    qudt:applicableUnit unit:M3-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Flow ;
    skos:definition "The amount of flow rate that is lost during distribution"^^xsd:string .

brick:Formaldehyde_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Formaldehyde Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Quality_Sensor ;
    skos:definition "Measures the concentration of formaldehyde in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Formaldehyde> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Formaldehyde>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Formaldehyde_Concentration ;
    brick:hasSubstance brick:Air .

brick:Freeze_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Freeze Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if a substance contained within a vessel has frozen"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Freeze> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Freeze>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Freezer a owl:Class,
        sh:NodeShape ;
    rdfs:label "Freezer"^^xsd:string ;
    rdfs:subClassOf brick:Laboratory ;
    skos:definition "cold chamber usually kept at a temperature of 22°F to 31°F (–5°C to –1°C), with high-volume air circulation."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Freezer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Laboratory> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Freezer>,
        <https://brickschema.org/schema/BrickTag#Laboratory>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room> .

brick:Frequency_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Frequency Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets frequency"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frequency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Frequency>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Frequency .

brick:Frost_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Frost Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor,
        brick:Temperature_Sensor ;
    skos:definition "Senses the presence of frost or conditions that may cause frost"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frost> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Frost>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Frost .

brick:Fume_Hood a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fume Hood"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A fume-collection device mounted over a work space, table, or shelf and serving to conduct unwanted gases away from the area enclosed."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hood> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fume> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fume>,
        <https://brickschema.org/schema/BrickTag#Hood> .

brick:Fume_Hood_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Fume Hood Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of air in a fume hood"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fume> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hood> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Fume>,
        <https://brickschema.org/schema/BrickTag#Hood>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Gas_Distribution a owl:Class,
        sh:NodeShape ;
    rdfs:label "Gas Distribution"^^xsd:string ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "Utilize a gas distribution source to represent how gas is distributed across multiple destinations"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Distribution> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Distribution>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas> .

brick:Gas_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Gas Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Measures gas concentration (other than CO2)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Gas_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Gas System"^^xsd:string ;
    rdfs:subClassOf brick:System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Gas_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Gas Valve"^^xsd:string ;
    rdfs:subClassOf brick:Valve ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Gatehouse a owl:Class,
        sh:NodeShape ;
    rdfs:label "Gatehouse"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "The standalone building used to manage the entrance to a campus or building grounds"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gatehouse> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Gatehouse>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Generator_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Generator Room"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Room ;
    skos:definition "A room for electrical equipment, specifically electrical generators."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electrical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Generator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electrical>,
        <https://brickschema.org/schema/BrickTag#Generator>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:HVAC_Zone a owl:Class,
        sh:NodeShape ;
    rdfs:label "HVAC Zone"^^xsd:string ;
    rdfs:subClassOf brick:Zone ;
    skos:definition "a space or group of spaces, within a building with heating, cooling, and ventilating requirements, that are sufficiently similar so that desired conditions (e.g., temperature) can be maintained throughout using a single sensor (e.g., thermostat or temperature sensor)."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#HVAC> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#HVAC>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Hail_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hail Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Measures hail in terms of its size and damage potential"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hail> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hail>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasSubstance brick:Hail .

brick:Hallway a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hallway"^^xsd:string ;
    rdfs:subClassOf brick:Common_Space ;
    skos:definition "A common space, used to connect other parts of a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hallway> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Hallway>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Hazardous_Materials_Storage a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hazardous Materials Storage"^^xsd:string ;
    rdfs:subClassOf brick:Storage_Room ;
    skos:definition "A storage space set aside (usually with restricted access) for the storage of materials that can be hazardous to living beings or the environment"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hazardous> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Storage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Materials> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hazardous>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Materials>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Storage> .

brick:Heat_Detector a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Detector"^^xsd:string ;
    rdfs:subClassOf brick:Fire_Safety_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detector> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Detector>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Safety> .

brick:Heat_Exchanger_Leaving_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Exchanger Leaving Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ice> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tank> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ice>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Tank>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Heat_Exchanger_System_Enable_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Exchanger System Enable Status"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Status,
        brick:System_Status ;
    skos:definition "Indicates if the heat exchanger system has been enabled"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exchanger> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Exchanger>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Heat_Recovery_Hot_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Recovery Hot Water System"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Recovery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Recovery>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Heat_Sink_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Sink Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Sensor ;
    skos:definition "Measure temperature of the heat sink on a device such as a VFD."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat_Sink> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat_Sink>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Heat_Wheel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Wheel"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Thermal_wheel> ;
    rdfs:subClassOf brick:Heat_Exchanger ;
    skos:definition "A rotary heat exchanger positioned within the supply and exhaust air streams of an air handling system in order to recover heat energy"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wheel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Wheel> .

brick:Heat_Wheel_VFD a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heat Wheel VFD"^^xsd:string ;
    rdfs:subClassOf brick:VFD ;
    skos:definition "A VFD that drives a heat wheel"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#VFD> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wheel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#VFD>,
        <https://brickschema.org/schema/BrickTag#Wheel> .

brick:Heating_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls the amount of heating to be delivered (typically as a proportion of total heating output)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Heating_Demand_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Demand Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Demand_Setpoint ;
    skos:definition "Sets the rate required for heating"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Heating_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Command that enables heating functionality in equipment but certain condition(s) must be met first before actively heating. For the actively heating control, see Heating_Command."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heating> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Heating>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Heating_Start_Stop_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Start Stop Status"^^xsd:string ;
    rdfs:subClassOf brick:Start_Stop_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Heating_Supply_Air_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Supply Air Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Deadband_Setpoint ;
    owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature of supply air for heating"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Heating_Supply_Air_Temperature_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Supply Air Temperature Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Integral_Time_Parameter ;
    owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Heating_Supply_Air_Temperature_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Supply Air Temperature Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Temperature_Proportional_Band_Parameter ;
    owl:equivalentClass brick:Heating_Discharge_Air_Temperature_Proportional_Band_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Heating_Thermal_Power_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Heating Thermal Power Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Thermal_Power_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Thermal> .

brick:High_Air_Flow_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Air Flow Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Alarm ;
    skos:definition "An alarm that indicates that the air flow is higher than normal."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:High_CO2_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High CO2 Alarm"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Alarm ;
    skos:definition "A device that indicates high concentration of carbon dioxide."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:High_Head_Pressure_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Head Pressure Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Pressure_Alarm ;
    skos:definition "An alarm that indicates a high pressure generated on the output side of a gas compressor in a refrigeration or air conditioning system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Head> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Head>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure> .

brick:High_Humidity_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Humidity Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Alarm ;
    skos:definition "An alarm that indicates high concentration of water vapor in the air."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:High_Humidity_Alarm_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Humidity Alarm Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Parameter ;
    skos:definition "A parameter determining the humidity level at which to trigger a high humidity alarm"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:High_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Outside Air Lockout Temperature Differential Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ;
    skos:definition "The upper bound of the outside air temperature lockout range"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lockout> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Lockout>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:High_Return_Air_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Return Air Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:High_Temperature_Alarm,
        brick:Return_Air_Temperature_Alarm ;
    skos:definition "An alarm that indicates that return air temperature is too high"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:High_Static_Pressure_Cutout_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Static Pressure Cutout Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint_Limit ;
    skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a High_Static_Pressure_Cutout_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cutout> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cutout>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static> .

brick:High_Supply_Air_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Supply Air Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:High_Temperature_Alarm,
        brick:Supply_Air_Temperature_Alarm ;
    owl:equivalentClass brick:High_Discharge_Air_Temperature_Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:High_Temperature_Alarm_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "High Temperature Alarm Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Parameter ;
    skos:definition "A parameter determining the temperature level at which to trigger a high temperature alarm"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Hold_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hold Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hold> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hold>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Hospitality_Box a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hospitality Box"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room at a stadium, usually overlooking the field of play, that is physical separate from the other seating at the venue"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hospitality> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Hospitality>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Hot_Box a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Box"^^xsd:string ;
    rdfs:subClassOf brick:Laboratory ;
    skos:definition "hot air chamber forming part of an air handler."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Laboratory> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Laboratory>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room> .

brick:Hot_Water_Baseboard_Radiator a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Baseboard Radiator"^^xsd:string ;
    rdfs:subClassOf brick:Baseboard_Radiator,
        brick:Hot_Water_Radiator ;
    skos:definition "Hydronic heating device located at or near the floor"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Baseboard> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Baseboard>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Radiator>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Coil a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Coil"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Coil ;
    skos:definition "A heating element typically made of pipe, tube or wire that emits heat that is filled with hot water."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Coil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Coil>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Differential Pressure Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of differential pressure of hot water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Hot_Water .

brick:Hot_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Differential Pressure Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Differential Pressure Load Shed Reset Status"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Load_Shed_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Differential Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Differential_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Differential Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Entering_Hot_Water_Temperature_Sensor,
        brick:Leaving_Hot_Water_Temperature_Sensor,
        brick:Water_Differential_Temperature_Sensor ;
    skos:definition "Measures the difference in temperature between the entering water to the boiler or other water heating device and leaving water from the same boiler or other water heating device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Loop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Loop"^^xsd:string ;
    rdfs:subClassOf brick:Water_Loop ;
    skos:definition "A collection of equipment that transport and regulate hot water among each other"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Loop>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Pump a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Pump"^^xsd:string ;
    rdfs:subClassOf brick:Water_Pump ;
    skos:definition "A pump that performs work on hot water; typically part of a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Hot_Water_Static_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Static Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint ;
    skos:definition "Sets static pressure of hot air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Hot_Water .

brick:Hot_Water_Usage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Hot Water Usage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Water_Usage_Sensor ;
    skos:definition "Measures the amount of hot water that is consumed, over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Usage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Usage>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Humidification_Start_Stop_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidification Start Stop Status"^^xsd:string ;
    rdfs:subClassOf brick:Start_Stop_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidification> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Humidification>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Humidifier a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidifier"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A device that adds moisture to air or other gases"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidifier> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Humidifier> .

brick:Humidifier_Fault_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidifier Fault Status"^^xsd:string ;
    rdfs:subClassOf brick:Fault_Status ;
    skos:definition "Indicates the presence of a fault in a humidifier"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidifier> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fault> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Fault>,
        <https://brickschema.org/schema/BrickTag#Humidifier>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Humidify_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidify Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidify> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Humidify>,
        <https://brickschema.org/schema/BrickTag#Point> ;
    brick:hasQuantity brick:Humidity .

brick:Humidity_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidity Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of humidity"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity .

brick:Humidity_Tolerance_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Humidity Tolerance Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Parameter,
        brick:Tolerance_Parameter ;
    skos:definition "A parameter determining the difference between upper and lower limits of humidity."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tolerance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Tolerance> .

brick:IDF a owl:Class,
        sh:NodeShape ;
    rdfs:label "IDF"^^xsd:string ;
    rdfs:subClassOf brick:Distribution_Frame ;
    skos:definition "An room for an intermediate distribution frame, where cables carrying signals from the main distrubtion frame terminate and then feed out to endpoints"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Distribution> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Telecom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#IDF> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frame> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Distribution>,
        <https://brickschema.org/schema/BrickTag#Frame>,
        <https://brickschema.org/schema/BrickTag#IDF>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Telecom> .

brick:Ice_Tank_Leaving_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ice Tank Leaving Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of water leaving an ice tank"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ice> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tank> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ice>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Tank>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Illuminance_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Illuminance Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Target Illuminance of the zone."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Illuminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Illuminance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Induction_Unit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Induction Unit"^^xsd:string ;
    rdfs:subClassOf brick:Terminal_Unit ;
    skos:definition "A device with an primary air connection and integrated coil and condensate pan that performs sensible and latent cooling of a space. Essentially an Active Chilled Beam with a built in condensate pan."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Induction> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Induction>,
        <https://brickschema.org/schema/BrickTag#Unit> .

brick:Information_Area a owl:Class,
        sh:NodeShape ;
    rdfs:label "Information Area"^^xsd:string ;
    rdfs:subClassOf brick:Outdoor_Area ;
    skos:definition "An information booth or kiosk where visitors would look for information"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Information> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outdoor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Area> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Area>,
        <https://brickschema.org/schema/BrickTag#Information>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Outdoor> .

brick:Inside_Face_Surface_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Inside Face Surface Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ;
    skos:definition "Measures the inside surface (relative to the space) of the radiant panel of the radiant heating and cooling HVAC system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Face> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Inside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Face>,
        <https://brickschema.org/schema/BrickTag#Inside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Surface>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Inside_Face_Surface_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Inside Face Surface Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ;
    skos:definition "Sets temperature for the inside face surface temperature of the radiant panel."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Face> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Inside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Face>,
        <https://brickschema.org/schema/BrickTag#Inside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Surface>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Intake_Air_Filter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Intake Air Filter"^^xsd:string ;
    rdfs:subClassOf brick:Filter ;
    skos:definition "Filters air intake"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Intake> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Intake> .

brick:Intake_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Intake Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Sensor ;
    skos:definition "Measures air at the interface between the building and the outside"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Intake> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Intake>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Intrusion_Detection_Equipment a owl:Class,
        sh:NodeShape ;
    rdfs:label "Intrusion Detection Equipment"^^xsd:string ;
    rdfs:subClassOf brick:Security_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Security> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Intrusion> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Detection>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Intrusion>,
        <https://brickschema.org/schema/BrickTag#Security> .

brick:Inverter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Inverter"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "A device that changes direct current into alternating current"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Inverter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Inverter> .

brick:Janitor_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Janitor Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room set aside for the storage of cleaning equipment and supplies"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Janitor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Janitor>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Jet_Nozzle_Air_Diffuser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Jet Nozzle Air Diffuser"^^xsd:string ;
    rdfs:subClassOf brick:Air_Diffuser ;
    skos:definition "An air diffuser that is designed to produce high velocity discharge air stream to throw the air over a large distance or target the air stream to a localize area"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Nozzle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Jet> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Diffuser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Diffuser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Jet>,
        <https://brickschema.org/schema/BrickTag#Nozzle> .

brick:Laminar_Flow_Air_Diffuser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Laminar Flow Air Diffuser"^^xsd:string ;
    rdfs:subClassOf brick:Air_Diffuser ;
    skos:definition "An air diffuser that is designed for low discharge air speeds to provide uniform and unidirectional air pattern which minimizes room air entrainment"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Diffuser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Laminar> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Diffuser>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Laminar> .

brick:Last_Fault_Code_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Last Fault Code Status"^^xsd:string ;
    rdfs:subClassOf brick:Fault_Status ;
    skos:definition "Indicates the last fault code that occurred"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Last> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Code> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fault> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Code>,
        <https://brickschema.org/schema/BrickTag#Fault>,
        <https://brickschema.org/schema/BrickTag#Last>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Lead_Lag_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lead Lag Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Enables lead/lag operation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lag> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lead> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Lag>,
        <https://brickschema.org/schema/BrickTag#Lead>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Lead_Lag_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lead Lag Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if lead/lag operation is enabled"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lead> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lag> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Lag>,
        <https://brickschema.org/schema/BrickTag#Lead>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Lead_On_Off_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lead On Off Command"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Command ;
    skos:definition "Controls the active/inactive status of the \"lead\" part of a lead/lag system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lead> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Lead>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Leaving_Chilled_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Chilled Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Flow_Sensor,
        brick:Leaving_Water_Flow_Sensor ;
    skos:definition "Measures the rate of flow of chilled leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Leaving_Chilled_Water .

brick:Leaving_Chilled_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Chilled Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Flow_Setpoint,
        brick:Leaving_Water_Flow_Setpoint ;
    skos:definition "Sets the target flow rate of chilled leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Leaving_Chilled_Water .

brick:Leaving_Chilled_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Chilled Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of chilled water that is supplied from a chiller"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Chilled_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Chilled Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Water_Temperature_Setpoint,
        brick:Leaving_Water_Temperature_Setpoint ;
    skos:definition "Temperature setpoint for leaving chilled water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Condenser_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Condenser Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Condenser_Water_Flow_Sensor,
        brick:Leaving_Water_Flow_Sensor ;
    skos:definition "Measures the flow of the leaving condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Leaving_Condenser_Water .

brick:Leaving_Condenser_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Condenser Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Condenser_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of the leaving condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Leaving_Condenser_Water .

brick:Leaving_Condenser_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Condenser Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint ;
    skos:definition "The temperature setpoint for the leaving condenser water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Condenser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Condenser>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Domestic_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Domestic Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Sensor,
        brick:Leaving_Hot_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of domestic water supplied by a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Domestic_Hot_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Domestic Hot Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Domestic_Hot_Water_Temperature_Setpoint,
        brick:Leaving_Water_Temperature_Setpoint ;
    skos:definition "Sets temperature of leavinging part of domestic hot water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Domestic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Domestic>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_High_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving High Temperature Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of high-temperature hot water supplied by a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Hot_Water_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Hot Water Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Flow_Sensor,
        brick:Leaving_Water_Flow_Sensor ;
    skos:definition "Measures the rate of flow of hot leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Leaving_Hot_Water .

brick:Leaving_Hot_Water_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Hot Water Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Flow_Setpoint,
        brick:Leaving_Water_Flow_Setpoint ;
    skos:definition "Sets the target flow rate of hot leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Leaving_Hot_Water .

brick:Leaving_Hot_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Hot Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Temperature_Setpoint,
        brick:Leaving_Water_Temperature_Setpoint ;
    skos:definition "Temperature setpoint for leaving hot water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Medium_Temperature_Hot_Water_Temperature_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Medium Temperature Hot Water Temperature High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Medium Temperature Hot Water Temperature Load Shed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Load_Shed_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Load_Shed_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Medium Temperature Hot Water Temperature Load Shed Status"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Load_Shed_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Medium Temperature Hot Water Temperature Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Medium_Temperature_Hot_Water_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Medium Temperature Hot Water Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Hot_Water_Temperature_Sensor ;
    skos:definition "Measures the temperature of medium-temperature hot water supplied by a hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Water_Differential_Pressure_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Differential Pressure Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of differential pressure of leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Leaving_Water .

brick:Leaving_Water_Differential_Pressure_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Differential Pressure Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Water_Differential_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Differential Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Proportional_Band ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Water_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Alarm ;
    skos:definition "An alarm that indicates the off-normal conditions associated with temperature of the leaving water."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Water_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Leaving_Water_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature of leaving water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Leaving_Water .

brick:Leaving_Water_Temperature_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Temperature Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Integral_Time_Parameter,
        brick:Temperature_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Time>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Leaving_Water_Temperature_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Leaving Water Temperature Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Proportional_Band_Parameter,
        brick:Temperature_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Leaving> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#Leaving>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Library a owl:Class,
        sh:NodeShape ;
    rdfs:label "Library"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A place for the storage and/or consumption of physical media, e.g. books, periodicals, and DVDs/CDs"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Library> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Library>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Light_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Light Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls the amount of the light provided by the device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Light> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Light>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Lighting_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lighting System"^^xsd:string ;
    rdfs:subClassOf brick:System ;
    skos:definition "The equipment, devices and interfaces that serve or are a part of the lighting subsystem in a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lighting> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Lighting>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Lighting_Zone a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lighting Zone"^^xsd:string ;
    rdfs:subClassOf brick:Zone ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lighting> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Lighting>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Liquid_Detection_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Liquid Detection Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Liquid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Detection>,
        <https://brickschema.org/schema/BrickTag#Liquid>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Load_Current_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Load Current Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Current_Sensor ;
    skos:definition "Measures the current consumed by a load"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Loading_Dock a owl:Class,
        sh:NodeShape ;
    rdfs:label "Loading Dock"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A part of a facility where delivery trucks can load and unload. Usually partially enclosed with specific traffic lanes leading to the dock"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dock> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loading> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Dock>,
        <https://brickschema.org/schema/BrickTag#Loading>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Locally_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Locally On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Locally> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Locally>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Lockout_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lockout Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if a piece of equipment, system, or functionality has been locked out from operation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lockout> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Lockout>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Low_Battery_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Battery Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that indicates the battery is low."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Battery> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Battery>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Low_Freeze_Protect_Temperature_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Freeze Protect Temperature Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Protect> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Freeze> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Freeze>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Protect>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Humidity_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Humidity Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Alarm ;
    skos:definition "An alarm that indicates low concentration of water vapor in the air."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Low_Humidity_Alarm_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Humidity Alarm Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Parameter ;
    skos:definition "A parameter determining the humidity level at which to trigger a low humidity alarm"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Low_Outside_Air_Lockout_Temperature_Differential_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Outside Air Lockout Temperature Differential Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Lockout_Temperature_Differential_Parameter ;
    skos:definition "The lower bound of the outside air temperature lockout range"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lockout> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Lockout>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Outside_Air_Temperature_Enable_Differential_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Outside Air Temperature Enable Differential Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Enable_Differential_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Outside_Air_Temperature_Enable_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Outside Air Temperature Enable Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Return_Air_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Return Air Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Low_Temperature_Alarm,
        brick:Return_Air_Temperature_Alarm ;
    skos:definition "An alarm that indicates that return air temperature is too low"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Suction_Pressure_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Suction Pressure Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Pressure_Alarm ;
    skos:definition "An alarm that indicates a low suction pressure in the compressor in a refrigeration or air conditioning system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Suction> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Suction> .

brick:Low_Supply_Air_Flow_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Supply Air Flow Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Low_Air_Flow_Alarm ;
    owl:equivalentClass brick:Low_Discharge_Air_Flow_Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Low_Supply_Air_Temperature_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Supply Air Temperature Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Low_Temperature_Alarm,
        brick:Supply_Air_Temperature_Alarm ;
    owl:equivalentClass brick:Low_Discharge_Air_Temperature_Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Temperature_Alarm_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Temperature Alarm Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Parameter ;
    skos:definition "A parameter determining the temperature level at which to trigger a low temperature alarm"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Low_Voltage_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Low Voltage Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Voltage_Alarm ;
    skos:definition "An alarm that indicates the voltage is lower than its normal state."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Voltage> .

brick:Lowest_Exhaust_Air_Static_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Lowest Exhaust Air Static Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Exhaust_Air_Static_Pressure_Sensor ;
    skos:definition "The lowest observed static pressure of air in exhaust regions of an HVAC system over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lowest> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Exhaust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Exhaust>,
        <https://brickschema.org/schema/BrickTag#Lowest>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Static> .

brick:Luminaire a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminaire"^^xsd:string ;
    rdfs:subClassOf brick:Lighting ;
    skos:definition "A complete lighting unit consisting of a lamp or lamps and ballast(s) (when applicable) together with the parts designed to distribute the light, to position and protect the lamps, and to connect the lamps to the power supply."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminaire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Luminaire> .

brick:Luminaire_Driver a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminaire Driver"^^xsd:string ;
    rdfs:subClassOf brick:Lighting ;
    skos:definition "A power source for a luminaire"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Driver> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminaire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Driver>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Luminaire> .

brick:Luminance_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminance Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Luminance>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Luminance_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminance Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls the amount of luminance delivered by a lighting system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Luminance>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Luminance_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminance Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Measures the luminous intensity per unit area of light travelling in a given direction"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Luminance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Luminance .

brick:Luminance_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Luminance Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets luminance"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Luminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Luminance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Luminance .

brick:Luminous_Flux a brick:Quantity ;
    rdfs:label "Luminous Flux"^^xsd:string ;
    qudt:applicableUnit unit:LM ;
    skos:broader brick:Luminance ;
    brick:hasQUDTReference qudtqk:LuminousFlux .

brick:Luminous_Intensity a brick:Quantity ;
    rdfs:label "Luminous Intensity"^^xsd:string ;
    qudt:applicableUnit unit:CD,
        unit:CP ;
    skos:broader brick:Luminance ;
    brick:hasQUDTReference qudtqk:LuminousIntensity .

brick:MDF a owl:Class,
        sh:NodeShape ;
    rdfs:label "MDF"^^xsd:string ;
    rdfs:subClassOf brick:Distribution_Frame ;
    skos:definition "A room for the Main Distribution Frame, the central place of a building where cables carrying signals meet and connect to the outside world"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Telecom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Distribution> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frame> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#MDF> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Distribution>,
        <https://brickschema.org/schema/BrickTag#Frame>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#MDF>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Telecom> .

brick:Mail_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mail Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room where mail is recieved and sorted for distribution to the rest of the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mail> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Mail>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Maintenance_Mode_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Maintenance Mode Command"^^xsd:string ;
    rdfs:subClassOf brick:Mode_Command ;
    skos:definition "Controls whether or not a device or controller is operating in \"Maintenance\" mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Maintenance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Maintenance>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Maintenance_Required_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Maintenance Required Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that indicates that repair/maintenance is required on an associated device or equipment"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Maintenance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Required> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Maintenance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Required> .

brick:Majlis a owl:Class,
        sh:NodeShape ;
    rdfs:label "Majlis"^^xsd:string ;
    rdfs:subClassOf brick:Lounge ;
    skos:definition "In Arab countries, an Majlis is a private lounge where visitors are recieved and entertained"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Majlis> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lounge> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Lounge>,
        <https://brickschema.org/schema/BrickTag#Majlis>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Makeup_Water_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Makeup Water Valve"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Valve,
        brick:Water_Valve ;
    skos:definition "A valve regulating the flow of makeup water into a water holding tank, e.g. a cooling tower, hot water tank"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Liquid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Makeup> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fluid> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fluid>,
        <https://brickschema.org/schema/BrickTag#Liquid>,
        <https://brickschema.org/schema/BrickTag#Makeup>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Manual_Auto_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Manual Auto Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates if a system is under manual or automatic operation"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Manual> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Auto> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Auto>,
        <https://brickschema.org/schema/BrickTag#Manual>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Massage_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Massage Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "Usually adjunct to an athletic facility, a private/semi-private space where massages are performed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Massage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Massage>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Max_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Setpoint ;
    skos:definition "Setpoint for maximum air temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Max_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Chilled Water Differential Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit,
        brick:Max_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Max_Frequency_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Frequency Command"^^xsd:string ;
    rdfs:subClassOf brick:Frequency_Command ;
    skos:definition "Sets the maximum permitted frequency"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frequency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Frequency>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Max_Fresh_Air_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Fresh Air Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit,
        brick:Max_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Fresh_Air_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fresh> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Fresh>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Max_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Hot Water Differential Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit,
        brick:Max_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Max_Load_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Load Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Load_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Max_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Occupied Cooling Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Max_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Occupied Heating Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Max_Outside_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Outside Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Max_Position_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Position Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Limit,
        brick:Position_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Position_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Max_Speed_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Speed Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Limit,
        brick:Speed_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Speed_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Max_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Supply Air Static Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Limit,
        brick:Max_Static_Pressure_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Discharge_Air_Static_Pressure_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Max_Supply_Air_Temperature_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Supply Air Temperature Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Temperature_Setpoint_Limit,
        brick:Supply_Air_Temperature_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Discharge_Air_Temperature_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en,
        "Parameter for the maximum value of a Supply_Air_Temperature_Setpoint"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Max_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Unoccupied Cooling Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Cooling_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Max_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Unoccupied Heating Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Max_Heating_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Max_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places an upper bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Max_Water_Level_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Water Level Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Level_Alarm ;
    skos:definition "Alarm indicating that the maximum water level was reached"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Max_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Max Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Setpoint ;
    skos:definition "Setpoint for max water temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Max> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Max>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Water .

brick:Media_Hot_Desk a owl:Class,
        sh:NodeShape ;
    rdfs:label "Media Hot Desk"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "A non-enclosed space used by members of the media temporarily to cover an event while they are present at a venue"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Desk> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Media> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Desk>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Media>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Media_Production_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Media Production Room"^^xsd:string ;
    rdfs:subClassOf brick:Media_Room ;
    skos:definition "A enclosed space used by media professionals for the production of media"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Media> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Production> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Media>,
        <https://brickschema.org/schema/BrickTag#Production>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Reset_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Reset Status"^^xsd:string ;
    rdfs:subClassOf brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Medium_Temperature_Hot_Water_Differential_Pressure_Load_Shed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Medium Temperature Hot Water Differential Pressure Load Shed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Medium_Temperature_Hot_Water_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Medium Temperature Hot Water Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in water pressure between sections of a medium temperature hot water system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Medium_Temperature_Hot_Water_Differential_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Medium Temperature Hot Water Differential Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Differential_Pressure_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Medium> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Medium>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Methane_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Methane Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Quality_Sensor ;
    skos:definition "Measures the concentration of methane in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Methane> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Methane>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Methane_Concentration ;
    brick:hasSubstance brick:Air .

brick:Min_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Setpoint ;
    skos:definition "Setpoint for minimum air temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Min_Chilled_Water_Differential_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Chilled Water Differential Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit,
        brick:Min_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Chilled_Water_Differential_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Min_Frequency_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Frequency Command"^^xsd:string ;
    rdfs:subClassOf brick:Frequency_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frequency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Frequency>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Min_Fresh_Air_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Fresh Air Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Fresh_Air_Setpoint_Limit,
        brick:Min_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Fresh_Air_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fresh> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Fresh>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Min_Hot_Water_Differential_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Hot Water Differential Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Pressure_Setpoint_Limit,
        brick:Min_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Hot_Water_Differential_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Min_Load_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Load Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Load_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Min_Occupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Occupied Cooling Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Occupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Cooling_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Min_Occupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Occupied Heating Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Occupied_Heating_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Occupied_Heating_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Min_Outside_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Outside Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Outside_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Min_Position_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Position Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Limit,
        brick:Position_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Position_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Min_Speed_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Speed Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Limit,
        brick:Speed_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Speed_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Min_Supply_Air_Static_Pressure_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Supply Air Static Pressure Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Limit,
        brick:Min_Static_Pressure_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Discharge_Air_Static_Pressure_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Supply_Air_Static_Pressure_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Min_Supply_Air_Temperature_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Supply Air Temperature Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Temperature_Setpoint_Limit,
        brick:Supply_Air_Temperature_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Discharge_Air_Temperature_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Supply_Air_Temperature_Setpoint."@en,
        "Parameter for the minimum value of a Supply_Air_Temperature_Setpoint"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Min_Unoccupied_Cooling_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Unoccupied Cooling Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Cooling_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Unoccupied_Cooling_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Cooling_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Min_Unoccupied_Heating_Supply_Air_Flow_Setpoint_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Unoccupied Heating Supply Air Flow Setpoint Limit"^^xsd:string ;
    rdfs:subClassOf brick:Min_Heating_Supply_Air_Flow_Setpoint_Limit ;
    owl:equivalentClass brick:Min_Unoccupied_Heating_Discharge_Air_Flow_Setpoint_Limit ;
    skos:definition "A parameter that places a lower bound on the range of permitted values of a Unoccupied_Heating_Supply_Air_Flow_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Min_Water_Level_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Water Level Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Level_Alarm ;
    skos:definition "Alarm indicating that the minimum water level was reached"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Min_Water_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Min Water Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Water_Temperature_Setpoint ;
    skos:definition "Setpoint for min water temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Min> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Min>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Water .

brick:Mixed_Air_Filter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Filter"^^xsd:string ;
    rdfs:subClassOf brick:Filter ;
    skos:definition "A filter that is applied to the mixture of recirculated and outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Mixed> .

brick:Mixed_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of mixed air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Mixed_Air .

brick:Mixed_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    skos:definition "Measures the humidity of mixed air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Mixed_Air .

brick:Mixed_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for mixed air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Mixed_Air .

brick:Mixed_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Sensor ;
    skos:definition "Measures the temperature of mixed air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Mixed_Air .

brick:Mixed_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Setpoint ;
    skos:definition "Sets temperature of mixed air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Mixed_Air .

brick:Mixed_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Mixed Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that modulates the flow of the mixed outside and return air streams"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Mixed> .

brick:Motor_Control_Center a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor Control Center"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "The Motor Control Center is a specialized type of switchgear which provides electrical power to major mechanical systems in the building such as HVAC components."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Center> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Control> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Center>,
        <https://brickschema.org/schema/BrickTag#Control>,
        <https://brickschema.org/schema/BrickTag#Equipment> .

brick:Motor_Current_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor Current Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Current_Sensor ;
    skos:definition "Measures the current consumed by a motor"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Motor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Motor>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Motor_Direction_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor Direction Status"^^xsd:string ;
    rdfs:subClassOf brick:Direction_Status ;
    skos:definition "Indicates which direction a motor is operating in, e.g. forward or reverse"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Direction> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Motor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Direction>,
        <https://brickschema.org/schema/BrickTag#Motor>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Motor_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Motor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Motor>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Motor_Speed_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor Speed Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Speed_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Motor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Motor>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Motor_Torque_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Motor Torque Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Torque_Sensor ;
    skos:definition "Measures the torque, or rotating power, of a motor"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Motor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Torque> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Motor>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Torque> .

brick:NO2_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "NO2 Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Quality_Sensor ;
    skos:definition "Measures the concentration of NO2 in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#NO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#NO2>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:NO2_Concentration ;
    brick:hasSubstance brick:Air .

brick:Natural_Gas_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Natural Gas Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Flow_Sensor ;
    skos:definition "Measures the rate of flow of natural gas"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Natural_Gas .

brick:Natural_Gas_Seismic_Shutoff_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Natural Gas Seismic Shutoff Valve"^^xsd:string ;
    rdfs:subClassOf brick:Valve ;
    skos:definition "Valves that automatically shut off your natural gas service when an earthquake of a sufficient magnitude occurs at the location."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Seismic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shutoff> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural>,
        <https://brickschema.org/schema/BrickTag#Seismic>,
        <https://brickschema.org/schema/BrickTag#Shutoff>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Natural_Gas_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Natural Gas Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Sensor ;
    skos:definition "Measures the temperature of natural gas"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasSubstance brick:Natural_Gas .

brick:Natural_Gas_Usage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Natural Gas Usage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Usage_Sensor ;
    skos:definition "Measures the amount of natural gas that is consumed or used, over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Usage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Usage> .

brick:No_Water_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "No Water Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Alarm ;
    skos:definition "Alarm indicating that there is no water in the equipment or system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#No> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#No>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Noncondensing_Natural_Gas_Boiler a owl:Class,
        sh:NodeShape ;
    rdfs:label "Noncondensing Natural Gas Boiler"^^xsd:string ;
    rdfs:subClassOf brick:Natural_Gas_Boiler ;
    skos:definition "A closed, pressure vessel that uses natural gas with no system to capture latent heat for heating water or other fluids to supply steam or hot water for heating, humidification, or other applications."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gas> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Noncondensing> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Natural> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Boiler> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Boiler>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Gas>,
        <https://brickschema.org/schema/BrickTag#Natural>,
        <https://brickschema.org/schema/BrickTag#Noncondensing> .

brick:Occupancy_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls whether or not a device or controller is operating in \"Occupied\" mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupancy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Occupancy>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Occupancy_Count_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy Count Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Sensors measuring the number of people in an area"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Count> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupancy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Count>,
        <https://brickschema.org/schema/BrickTag#Occupancy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Occupancy_Count .

brick:Occupancy_Percentage a brick:Quantity ;
    rdfs:label "Occupancy_Percentage"^^xsd:string ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Dimensionless,
        brick:Occupancy ;
    skos:definition "Percent of total occupancy of space that is occupied"^^xsd:string,
        "Percent of total occupancy of space that is occupied"@en .

brick:Occupancy_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupancy Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Detects occupancy of some space or area"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupancy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Occupancy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Occupancy .

brick:Occupied_Air_Temperature_Cooling_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Air Temperature Cooling Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Occupied_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Air_Temperature_Heating_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Air Temperature Heating Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Occupied_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Cooling_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Cooling Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Mode_Status,
        brick:Occupied_Mode_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Occupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Cooling Supply Air Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Supply_Air_Flow_Setpoint,
        brick:Occupied_Supply_Air_Flow_Setpoint ;
    owl:equivalentClass brick:Occupied_Cooling_Discharge_Air_Flow_Setpoint ;
    skos:definition "Sets supply air flow rate for cooling when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Occupied_Cooling_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Cooling Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature for cooling when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature .

brick:Occupied_Cooling_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Cooling Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint ;
    skos:definition "Sets temperature for cooling when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Heating_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Heating Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Mode_Status,
        brick:Occupied_Mode_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Occupied_Heating_Supply_Air_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Heating Supply Air Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Supply_Air_Flow_Setpoint,
        brick:Occupied_Supply_Air_Flow_Setpoint ;
    owl:equivalentClass brick:Occupied_Heating_Discharge_Air_Flow_Setpoint ;
    skos:definition "Sets supply air flow rate for heating when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Occupied_Heating_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Heating Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of temperature for heating when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature .

brick:Occupied_Heating_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Heating Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint ;
    skos:definition "Sets temperature for heating when occupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Target humidity level when the location is occupied."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Occupied_Return_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Return Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint,
        brick:Return_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Room_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Room Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint,
        brick:Room_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Supply_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Supply Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Setpoint ;
    owl:equivalentClass brick:Occupied_Discharge_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Occupied_Zone_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Occupied Zone Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Occupied_Air_Temperature_Setpoint,
        brick:Zone_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Off_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Off Command"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Command ;
    skos:definition "An Off Command controls or reports the binary 'off' status of a control loop, relay or equipment activity. It can only be used to stop/deactivate an associated equipment or process, or determine that the related entity is 'off'"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Office_Kitchen a owl:Class,
        sh:NodeShape ;
    rdfs:label "Office Kitchen"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A common space, usually near or in a breakroom, where minor food preperation occurs"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Kitchen> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Kitchen>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:On_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "On Command"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Command ;
    skos:definition "An On Command controls or reports the binary 'on' status of a control loop, relay or equipment activity. It can only be used to start/activate an associated equipment or process, or determine that the related entity is 'on'"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:On_Timer_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "On Timer Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Duration_Sensor ;
    owl:equivalentClass brick:Run_Time_Sensor ;
    skos:definition "Measures the duration for which a device was in an active or \"on\" state"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Timer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Timer> .

brick:Open_Close_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Open Close Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates the open/close status of a device such as a damper or valve"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Open> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Close> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Close>,
        <https://brickschema.org/schema/BrickTag#Open>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Open_Heating_Valve_Outside_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Open Heating Valve Outside Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Outside_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Open> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Open>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Open_Office a owl:Class,
        sh:NodeShape ;
    rdfs:label "Open Office"^^xsd:string ;
    rdfs:subClassOf brick:Office ;
    skos:definition "An open space used for work or study by mulitple people. Usuaully subdivided into cubicles or desks"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Open> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Open>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Operative_Temperature a brick:Quantity ;
    rdfs:label "Operative_Temperature"^^xsd:string ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_F,
        unit:K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Temperature,
        brick:Temperature ;
    skos:definition "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)"^^xsd:string,
        "The uniform temperature of an imaginary black enclosure in which an occupant would exchange the same amount of heat by radiation plus convection as in the actual nonuniform environment (https://en.wikipedia.org/wiki/Operative_temperature)"@en .

brick:Output_Frequency_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Output Frequency Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Frequency_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frequency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Output> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Frequency>,
        <https://brickschema.org/schema/BrickTag#Output>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Output_Voltage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Output Voltage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Voltage_Sensor ;
    skos:definition "Measures the voltage output by some process or device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Output> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Output>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Voltage> .

brick:Outside a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside"^^xsd:string ;
    rdfs:subClassOf brick:Location ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Outside> .

brick:Outside_Air_CO2_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air CO2 Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Sensor ;
    skos:definition "Measures the concentration of CO2 in outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:CO2_Concentration ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_CO_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air CO Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO_Sensor ;
    skos:definition "Measures the concentration of CO in outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#CO>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:CO_Concentration ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Dewpoint_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Dewpoint Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Dewpoint_Sensor ;
    skos:definition "Senses the dewpoint temperature of outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Dewpoint ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Enthalpy_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Enthalpy Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Enthalpy_Sensor ;
    skos:definition "Measures the total heat content of outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Enthalpy ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of outside air into the system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Setpoint ;
    skos:definition "Sets outside air flow rate"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Grains_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Grains Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Grains_Sensor ;
    skos:definition "Measures the mass of water vapor in outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Grains> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Grains>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:GrainsOfMoisture ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    skos:definition "Measures the relative humidity of outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Lockout_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Lockout Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Outside_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lockout> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Lockout>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Outside_Air_Temperature_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Temperature High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Temperature_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Temperature Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Air_Wet_Bulb_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Air Wet Bulb Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Wet_Bulb_Temperature_Sensor,
        brick:Outside_Air_Temperature_Sensor ;
    skos:definition "A sensor measuring the wet-bulb temperature of outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Bulb> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wet> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Bulb>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Wet> ;
    brick:hasQuantity brick:Wet_Bulb_Temperature ;
    brick:hasSubstance brick:Outside_Air .

brick:Outside_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that modulates the flow of outside air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Outside> .

brick:Outside_Face_Surface_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Face Surface Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Radiant_Panel_Temperature_Sensor ;
    skos:definition "Measures the outside surface (relative to the space) of the radiant panel of a radiant heating and cooling HVAC system."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Face> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Face>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Surface>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Outside_Face_Surface_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Face Surface Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Radiant_Panel_Temperature_Setpoint ;
    skos:definition "Sets temperature for the outside face surface temperature of the radiant panel."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Face> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Face>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Surface>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Outside_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "Fan moving outside air; air that is supplied into the building from the outdoors"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Outside> .

brick:Outside_Illuminance_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Outside Illuminance Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Illuminance_Sensor ;
    skos:definition "Measures the total luminous flux incident on an outside, per unit area"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Illuminance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Outside> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Illuminance>,
        <https://brickschema.org/schema/BrickTag#Outside>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Overload_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Overload Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that can indicate when a full-load current is exceeded."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Overload> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Overload>,
        <https://brickschema.org/schema/BrickTag#Point> .

brick:Overridden_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Overridden Off Status"^^xsd:string ;
    rdfs:subClassOf brick:Off_Status,
        brick:Overridden_Status ;
    skos:definition "Indicates if a control loop, relay or equipment has been turned off when it would otherwise be scheduled to be on"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Overridden> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#Overridden>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Overridden_On_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Overridden On Status"^^xsd:string ;
    rdfs:subClassOf brick:On_Status,
        brick:Overridden_Status ;
    skos:definition "Indicates if a control loop, relay or equipment has been turned on when it would otherwise be scheduled to be off"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Overridden> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Overridden>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Ozone_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ozone Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Quality_Sensor ;
    skos:definition "Measures the concentration of ozone in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ozone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Ozone>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Ozone_Concentration ;
    brick:hasSubstance brick:Air .

brick:PAU a owl:Class,
        sh:NodeShape ;
    rdfs:label "PAU"^^xsd:string ;
    rdfs:subClassOf brick:AHU ;
    skos:definition "A type of AHU, use to pre-treat the outdoor air before feed to AHU"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PAU> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#PAU> .

brick:PIR_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "PIR Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Motion_Sensor ;
    skos:definition "Detects the presense of motion in some area using the differential change in infrared intensity between two or more receptors"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PIR> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#PIR>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:PM10_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "PM10 Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:PM10_Sensor ;
    skos:definition "Detects level of particulates of size 10 microns"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PM10> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Matter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Particulate> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Matter>,
        <https://brickschema.org/schema/BrickTag#PM10>,
        <https://brickschema.org/schema/BrickTag#Particulate>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:PM1_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "PM1 Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:PM1_Sensor ;
    skos:definition "Detects level of particulates of size 1 microns"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PM1> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Particulate> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Matter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Matter>,
        <https://brickschema.org/schema/BrickTag#PM1>,
        <https://brickschema.org/schema/BrickTag#Particulate>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:PM2.5_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "PM2.5 Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:PM2.5_Sensor ;
    skos:definition "Detects level of particulates of size 2.5 microns"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PM2.5> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Particulate> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Matter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Matter>,
        <https://brickschema.org/schema/BrickTag#PM2.5>,
        <https://brickschema.org/schema/BrickTag#Particulate>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:PVT_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "PVT Panel"^^xsd:string ;
    rdfs:subClassOf brick:PV_Panel,
        brick:Solar_Thermal_Collector ;
    skos:definition "A type of solar panels that convert solar radiation into usable thermal and electrical energy"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PV> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Solar> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collector> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Collector>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#PV>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#Solar>,
        <https://brickschema.org/schema/BrickTag#Thermal> .

brick:PV_Generation_System a owl:Class ;
    rdfs:label "PV Generation System"^^xsd:string ;
    rdfs:subClassOf brick:Energy_Generation_System ;
    skos:definition "A collection of photovoltaic devices that generates energy"@en .

brick:Parking_Level a owl:Class,
        sh:NodeShape ;
    rdfs:label "Parking Level"^^xsd:string ;
    rdfs:subClassOf brick:Floor ;
    skos:definition "A floor of a parking structure"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Floor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parking> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Floor>,
        <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Parking> .

brick:Parking_Space a owl:Class,
        sh:NodeShape ;
    rdfs:label "Parking Space"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "An area large enough to park an individual vehicle"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parking> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Parking>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Parking_Structure a owl:Class,
        sh:NodeShape ;
    rdfs:label "Parking Structure"^^xsd:string ;
    rdfs:subClassOf brick:Building ;
    skos:definition "A building or part of a building devoted to vehicle parking"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parking> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Structure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Parking>,
        <https://brickschema.org/schema/BrickTag#Structure> .

brick:Passive_Chilled_Beam a owl:Class,
        sh:NodeShape ;
    rdfs:label "Passive Chilled Beam"^^xsd:string ;
    rdfs:subClassOf brick:Chilled_Beam ;
    skos:definition "A chilled beam that does not have an integral air supply and instead relies on natural convection to draw air through the device."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Passive> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Chilled> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Beam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Beam>,
        <https://brickschema.org/schema/BrickTag#Chilled>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Passive> .

brick:Peak_Demand_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Peak Demand Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Demand_Sensor ;
    skos:definition "The peak power consumed by a process over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Peak> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Peak>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Peak_Power .

brick:Phasor_Magnitude a brick:Quantity ;
    rdfs:label "PhasorMagnitude"^^xsd:string ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:definition "Magnitude component of a phasor"^^xsd:string ;
    skos:related brick:Phasor .

brick:Photovoltaic_Current_Output_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Photovoltaic Current Output Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Current_Output_Sensor ;
    owl:equivalentClass brick:PV_Current_Output_Sensor ;
    skos:definition "Senses the amperes of electrical current produced as output by a photovoltaic device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Output> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Photovoltaic> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Current> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Current>,
        <https://brickschema.org/schema/BrickTag#Output>,
        <https://brickschema.org/schema/BrickTag#Photovoltaic>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Piezoelectric_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Piezoelectric Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Senses changes pressure, acceleration, temperature, force or strain via the piezoelectric effect"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Piezoelectric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Piezoelectric>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:PlugStrip a owl:Class,
        sh:NodeShape ;
    rdfs:label "PlugStrip"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Power_strip> ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "A device containing a block of electrical sockets allowing multiple electrical devices to be powered from a single electrical socket."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PlugStrip> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#PlugStrip> .

brick:Plumbing_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Plumbing Room"^^xsd:string ;
    rdfs:subClassOf brick:Service_Room ;
    skos:definition "A service room devoted to the operation and routing of water in a building. Usually distinct from the HVAC subsystems."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Plumbing> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Plumbing>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Portfolio a owl:Class,
        sh:NodeShape ;
    rdfs:label "Portfolio"^^xsd:string ;
    rdfs:subClassOf brick:Collection ;
    skos:definition "A collection of sites"@en ;
    sh:property [ sh:or ( [ sh:class brick:Site ] ) ;
            sh:path brick:hasPart ] ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Portfolio> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Collection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Collection>,
        <https://brickschema.org/schema/BrickTag#Portfolio> .

brick:Power_Factor_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Power Factor Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Sensors measuring power Factor, under periodic conditions, is the ratio of the absolute value of the active power (P) to the apparent power (S)."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Factor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Factor>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Power_Factor .

brick:Power_Loss_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Power Loss Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Power_Alarm ;
    skos:definition "An alarm that indicates a power failure."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loss> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Loss>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power> .

brick:Prayer_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Prayer Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A room set aside for prayer"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Prayer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Prayer>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Pre_Filter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pre Filter"^^xsd:string ;
    rdfs:subClassOf brick:Filter ;
    skos:definition "A filter installed in front of a more efficient filter to extend the life of the more expensive higher efficiency filter"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pre> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Pre> .

brick:Pre_Filter_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pre Filter Status"^^xsd:string ;
    rdfs:subClassOf brick:Filter_Status ;
    skos:definition "Indicates if a prefilter needs to be replaced"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pre> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pre>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Preheat_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Preheat Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "A command to activate preheating"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Preheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Preheat> .

brick:Preheat_Demand_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Preheat Demand Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Demand_Setpoint ;
    skos:definition "Sets the rate required for preheat"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Preheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Preheat>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Preheat_Hot_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Preheat Hot Water System"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Preheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Preheat>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Preheat_Hot_Water_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Preheat Hot Water Valve"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_Valve ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Preheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Preheat>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Preheat_Supply_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Preheat Supply Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Temperature_Sensor ;
    owl:equivalentClass brick:Preheat_Discharge_Air_Temperature_Sensor ;
    skos:definition "Measures the temperature of supply air before it is heated"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Preheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Preheat>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Private_Office a owl:Class,
        sh:NodeShape ;
    rdfs:label "Private Office"^^xsd:string ;
    rdfs:subClassOf brick:Enclosed_Office ;
    skos:definition "An office devoted to a single individual, with walls and door"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Private> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enclosed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Enclosed>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Private>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Pump_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pump Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Controls or reports the speed of a pump (typically as a proportion of its full pumping capacity)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pump> .

brick:Pump_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pump On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Pump_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pump Room"^^xsd:string ;
    rdfs:subClassOf brick:Mechanical_Room ;
    skos:definition "A mechanical room that houses pumps"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mechanical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Mechanical>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Pump_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pump Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Status of a pump"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Pump_VFD a owl:Class,
        sh:NodeShape ;
    rdfs:label "Pump VFD"^^xsd:string ;
    rdfs:subClassOf brick:VFD ;
    skos:definition "Variable-frequency drive for pumps"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pump> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#VFD> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Pump>,
        <https://brickschema.org/schema/BrickTag#VFD> .

brick:Radiant_Ceiling_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Radiant Ceiling Panel"^^xsd:string ;
    rdfs:seeAlso <https://www.rehva.eu/eshop/detail/no07-low-temperature-heating-and-high-temperature-cooling> ;
    rdfs:subClassOf brick:Radiant_Panel ;
    owl:equivalentClass brick:RC_Panel ;
    skos:definition "Radiant panel heating and cooling system that are usually made from metal and suspended under the ceiling or insulated from the building structure."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiant> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ceiling> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Ceiling>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#Radiant> .

brick:Radiant_Temperature a brick:Quantity ;
    rdfs:label "Radiant_Temperature"^^xsd:string ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_F,
        unit:K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Temperature,
        brick:Temperature ;
    skos:definition "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)"^^xsd:string,
        "the uniform temperature of an imaginary enclosure in which the radiant heat transfer from the human body is equal to the radiant heat transfer in the actual non-uniform enclosure. (https://en.wikipedia.org/wiki/Mean_radiant_temperature)"@en .

brick:Radiation_Hot_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Radiation Hot Water System"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiation> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Radiation>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Radon_Concentration_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Radon Concentration Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Radioactivity_Concentration_Sensor ;
    skos:definition "Measures the concentration of radioactivity due to radon"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Concentration> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radon> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Concentration>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Radon>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Radon_Concentration ;
    brick:hasSubstance brick:Air .

brick:Rain_Duration_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Rain Duration Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Duration_Sensor ;
    skos:definition "Measures the duration of precipitation within some time frame"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Duration> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Rain> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Duration>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Rain>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Rain_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Rain Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "Measures the amount of precipitation fallen"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Rain> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Rain>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Precipitation .

brick:Rated_Speed_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Rated Speed Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Speed_Setpoint ;
    skos:definition "Sets rated speed"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Rated> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Rated>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Reactive_Energy_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Reactive Energy Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Electric_Energy_Sensor ;
    skos:definition "Measures the integral of reactive power"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Energy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reactive> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Energy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reactive>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Reactive_Energy .

brick:Reactive_Power_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Reactive Power Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Electric_Power_Sensor ;
    skos:definition "Measures the portion of power that, averaged over a complete cycle of the AC waveform, is due to stored energy which returns to the source in each cycle"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reactive> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Reactive>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Reactive_Power .

brick:Reception a owl:Class,
        sh:NodeShape ;
    rdfs:label "Reception"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space, usually in a lobby, where visitors to a building or space can go to after arriving at a building and inform building staff that they have arrived"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reception> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Reception>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Refrigerant_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Refrigerant Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Refrigerant> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Refrigerant>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Level ;
    brick:hasSubstance brick:Refrigerant .

brick:Reheat_Hot_Water_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Reheat Hot Water System"^^xsd:string ;
    rdfs:subClassOf brick:Hot_Water_System ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Hot> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Hot>,
        <https://brickschema.org/schema/BrickTag#Reheat>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Reheat_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Reheat Valve"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Valve ;
    skos:definition "A valve that controls air temperature by modulating the amount of hot water flowing through a reheat coil"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Reheat>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Relay a owl:Class,
        sh:NodeShape ;
    rdfs:label "Relay"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Relay> ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "an electrically operated switch"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relay> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Relay> .

brick:Relay_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Relay Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "Commands to switch the relay"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relay> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relay> .

brick:Relief_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Relief Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relief> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Relief> .

brick:Relief_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Relief Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "A fan that is a component of a Relief Air System, ensuring building doesn't become over-pressurised"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relief> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Relief> .

brick:Remotely_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Remotely On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Status ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Remotely> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Remotely>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Retail_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Retail Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space set aside for retail in a larger establishment, e.g. a gift shop in a hospital"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Retail> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Retail>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Return_Air_CO2_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air CO2 Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Sensor ;
    skos:definition "Measures the concentration of CO2 in return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:CO2_Concentration ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_CO2_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air CO2 Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:CO2_Setpoint ;
    skos:definition "Sets some property of CO2 in Return Air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO2> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#CO2>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint> .

brick:Return_Air_CO_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air CO Sensor"^^xsd:string ;
    rdfs:subClassOf brick:CO_Sensor ;
    skos:definition "Measures the concentration of CO in return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CO> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#CO>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:CO_Concentration ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Dewpoint_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Dewpoint Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Dewpoint_Sensor ;
    skos:definition "Senses the dewpoint temperature of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Dewpoint ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in pressure between the return and supply side"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Differential_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Differential Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Setpoint ;
    skos:definition "Sets the target air differential pressure between an upstream and downstream point in a return air duct or conduit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Enthalpy_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Enthalpy Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Enthalpy_Sensor ;
    skos:definition "Measures the total heat content of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enthalpy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Enthalpy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Enthalpy ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Filter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Filter"^^xsd:string ;
    rdfs:subClassOf brick:Filter ;
    skos:definition "Filters return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Filter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Filter>,
        <https://brickschema.org/schema/BrickTag#Return> .

brick:Return_Air_Flow_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Flow Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Sensor ;
    skos:definition "Measures the rate of flow of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Grains_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Grains Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Grains_Sensor ;
    skos:definition "Measures the mass of water vapor in return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Grains> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Grains>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:GrainsOfMoisture ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    skos:definition "Measures the relative humidity of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Plenum a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Plenum"^^xsd:string ;
    rdfs:subClassOf brick:Air_Plenum ;
    skos:definition "A component of the HVAC the receives air from the room to recirculate or exhaust to or from the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Plenum> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Plenum>,
        <https://brickschema.org/schema/BrickTag#Return> .

brick:Return_Air_Temperature_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Temperature High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Temperature_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Temperature Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Sensor ;
    skos:definition "Measures the temperature of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Return_Air .

brick:Return_Damper a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Damper"^^xsd:string ;
    rdfs:subClassOf brick:Damper ;
    skos:definition "A damper that modulates the flow of return air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Damper> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Damper>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Return> .

brick:Return_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "Fan moving return air -- air that is circulated from the building back into the HVAC system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Return> .

brick:Return_Heating_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Return Heating Valve"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Valve ;
    skos:definition "A valve installed on the return side of a heat exchanger"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Riser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Riser"^^xsd:string ;
    rdfs:subClassOf brick:Vertical_Space ;
    skos:definition "A vertical shaft indented for installing building infrastructure e.g., electrical wire, network communication wire, plumbing, etc"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Vertical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Riser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Riser>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Vertical> .

brick:Rooftop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Rooftop"^^xsd:string ;
    rdfs:subClassOf brick:Floor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Floor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Rooftop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Floor>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Rooftop> .

brick:Rotational_Speed a brick:Quantity ;
    rdfs:label "Rotational_Speed"^^xsd:string ;
    qudt:applicableUnit unit:DEG-PER-HR,
        unit:DEG-PER-MIN,
        unit:DEG-PER-SEC,
        unit:RAD-PER-HR,
        unit:RAD-PER-MIN,
        unit:RAD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Frequency,
        qudtqk:Speed,
        brick:Speed ;
    skos:definition "Rotational speed"^^xsd:string .

brick:Run_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Run Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Run> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Run> .

brick:Run_Request_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Run Request Status"^^xsd:string ;
    rdfs:subClassOf brick:Run_Status ;
    skos:definition "Indicates if a request has been filed to start a device or equipment"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Run> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Request> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Request>,
        <https://brickschema.org/schema/BrickTag#Run>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Safety_Shower a owl:Class,
        sh:NodeShape ;
    rdfs:label "Safety Shower"^^xsd:string ;
    rdfs:subClassOf brick:Emergency_Wash_Station ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wash> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shower> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Emergency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Emergency>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Shower>,
        <https://brickschema.org/schema/BrickTag#Station>,
        <https://brickschema.org/schema/BrickTag#Wash> .

brick:Sash_Position_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Sash Position Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Position_Sensor ;
    skos:definition "Measures the current position of a sash in terms of the percent of fully open"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sash> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Sash>,
        <https://brickschema.org/schema/BrickTag#Sensor> ;
    brick:hasQuantity brick:Position .

brick:Schedule_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Schedule Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Setpoint ;
    skos:definition "The current setpoint as indicated by the schedule"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Schedule> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Schedule>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature .

brick:Sensor_Failure_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Sensor Failure Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Failure_Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Failure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Failure>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor> .

brick:Server_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Server Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Server> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Server> .

brick:Shared_Office a owl:Class,
        sh:NodeShape ;
    rdfs:label "Shared Office"^^xsd:string ;
    rdfs:subClassOf brick:Enclosed_Office ;
    skos:definition "An office used by multiple people"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shared> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enclosed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Enclosed>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Shared>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Short_Cycle_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Short Cycle Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Cycle_Alarm ;
    skos:definition "An alarm that indicates a short cycle occurred. A short cycle occurs when a cooling cycle is prevented from completing its full cycle"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Short> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cycle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Cycle>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Short> .

brick:Shower a owl:Class,
        sh:NodeShape ;
    rdfs:label "Shower"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space containing showers, usually adjacent to an athletic or execise area"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shower> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Shower>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Smoke_Detector a owl:Class,
        sh:NodeShape ;
    rdfs:label "Smoke Detector"^^xsd:string ;
    rdfs:subClassOf brick:Fire_Safety_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fire> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Safety> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detector> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Smoke> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Detector>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fire>,
        <https://brickschema.org/schema/BrickTag#Safety>,
        <https://brickschema.org/schema/BrickTag#Smoke> .

brick:Soil_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Soil Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Sensor ;
    skos:definition "Measures the temperature of soil"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Soil> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Soil>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasSubstance brick:Soil .

brick:Solar_Azimuth_Angle_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Solar Azimuth Angle Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Angle_Sensor ;
    skos:definition "Measures the azimuth angle of the sun"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Angle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Solar> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Azimuth> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Angle>,
        <https://brickschema.org/schema/BrickTag#Azimuth>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Solar> .

brick:Solar_Irradiance a brick:Quantity ;
    rdfs:label "SolarIrradiance"^^xsd:string ;
    qudt:applicableUnit unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Irradiance ;
    skos:definition "The power per unit area of solar electromagnetic radiation incident on a surface"^^xsd:string,
        "The power per unit area of solar electromagnetic radiation incident on a surface"@en .

brick:Solar_Radiance_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Solar Radiance Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Sensor ;
    skos:definition "The amount of light that passes through or is emitted from the sun and falls within a given solid angle in a specified direction"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Solar> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Radiance>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Solar> ;
    brick:hasQuantity brick:Solar_Radiance .

brick:Solar_Zenith_Angle_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Solar Zenith Angle Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Angle_Sensor ;
    skos:definition "Measures the zenith angle of the sun"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Solar> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zenith> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Angle> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Angle>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Solar>,
        <https://brickschema.org/schema/BrickTag#Zenith> .

brick:Space_Heater a owl:Class,
        sh:NodeShape ;
    rdfs:label "Space Heater"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "A heater used to warm the air in an enclosed area, such as a room or office"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heater> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Heater>,
        <https://brickschema.org/schema/BrickTag#Space> .

brick:Speed_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Speed Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "A command to set speed to a certain degree."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Speed> .

brick:Speed_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Speed Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Mode_Status,
        brick:Speed_Status ;
    skos:definition "Status indicating the speed mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Speed>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Speed_Reset_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Speed Reset Command"^^xsd:string ;
    rdfs:subClassOf brick:Reset_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Speed> ;
    brick:hasQuantity brick:Speed .

brick:Sports_Service_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Sports Service Room"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A class of spaces used in the support of sports"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sports> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Sports> .

brick:Stage_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Stage Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "A point representing a discrete stage which the equipment should be operating at. The desired stage number should be identified by an entity property"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Stage> .

brick:Stage_Riser a owl:Class,
        sh:NodeShape ;
    rdfs:label "Stage Riser"^^xsd:string ;
    rdfs:subClassOf brick:Furniture ;
    skos:definition "A low platform in a space or on a stage"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Furniture> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Riser> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Furniture>,
        <https://brickschema.org/schema/BrickTag#Riser>,
        <https://brickschema.org/schema/BrickTag#Stage> .

brick:Stages_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Stages Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Indicates which stage a control loop or equipment is in"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stages> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Stages>,
        <https://brickschema.org/schema/BrickTag#Status> .

brick:Staircase a owl:Class,
        sh:NodeShape ;
    rdfs:label "Staircase"^^xsd:string ;
    rdfs:subClassOf brick:Vertical_Space ;
    skos:definition "A vertical space containing stairs"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Staircase> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Vertical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Staircase>,
        <https://brickschema.org/schema/BrickTag#Vertical> .

brick:Standby_CRAC a owl:Class,
        sh:NodeShape ;
    rdfs:label "Standby CRAC"^^xsd:string ;
    rdfs:subClassOf brick:CRAC ;
    skos:definition "A CRAC that is activated as part of a lead/lag operation or when an alarm occurs in a primary unit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#CRAC> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Standby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#CRAC>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Standby> .

brick:Standby_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Standby Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "Fan that is activated as part of a lead/lag operation or when a primary fan raises an alarm"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Standby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Standby> .

brick:Standby_Glycool_Unit_On_Off_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Standby Glycool Unit On Off Status"^^xsd:string ;
    rdfs:subClassOf brick:Standby_Unit_On_Off_Status ;
    skos:definition "Indicates the on/off status of a standby glycool unit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Glycool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Standby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Glycool>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Standby>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Unit> .

brick:Start_Stop_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Start Stop Command"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Command ;
    skos:definition "A Start/Stop Command controls or reports the active/inactive status of a control sequence"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Start> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Stop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Start>,
        <https://brickschema.org/schema/BrickTag#Stop> .

brick:Steam_Baseboard_Radiator a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam Baseboard Radiator"^^xsd:string ;
    rdfs:subClassOf brick:Baseboard_Radiator,
        brick:Steam_Radiator ;
    skos:definition "Steam heating device located at or near the floor"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Radiator> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Baseboard> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Baseboard>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Radiator>,
        <https://brickschema.org/schema/BrickTag#Steam> .

brick:Steam_Distribution a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam Distribution"^^xsd:string ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "Utilize a steam distribution source to represent how steam is distributed across multiple destinations"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Distribution> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Distribution>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Steam> .

brick:Steam_On_Off_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam On Off Command"^^xsd:string ;
    rdfs:subClassOf brick:On_Off_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Off> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#On> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Off>,
        <https://brickschema.org/schema/BrickTag#On>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Steam> .

brick:Steam_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam System"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Ventilation_Air_Conditioning_System ;
    skos:definition "The equipment, devices and conduits that handle the production and distribution of steam in a building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Steam>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:Steam_Usage_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam Usage Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Usage_Sensor ;
    skos:definition "Measures the amount of steam that is consumed or used, over some period of time"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Usage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Steam>,
        <https://brickschema.org/schema/BrickTag#Usage> .

brick:Steam_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Steam Valve"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Steam> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Steam>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Studio a owl:Class,
        sh:NodeShape ;
    rdfs:label "Studio"^^xsd:string ;
    rdfs:subClassOf brick:Media_Room ;
    skos:definition "A room used for the production or media, usually with either a specialized set or a specialized sound booth for recording"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Media> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Studio> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Media>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Studio> .

brick:Supply_Air_Dewpoint_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Dewpoint Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Dewpoint_Sensor ;
    owl:equivalentClass brick:Discharge_Air_Dewpoint_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Differential_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Differential Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Differential_Pressure_Sensor ;
    owl:equivalentClass brick:Discharge_Air_Differential_Pressure_Sensor ;
    skos:definition "Measures the difference in pressure between an upstream and downstream of an air duct or other air conduit used to supply air into the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Differential_Pressure ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Duct_Pressure_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Duct Pressure Status"^^xsd:string ;
    rdfs:subClassOf brick:Pressure_Status ;
    owl:equivalentClass brick:Discharge_Air_Duct_Pressure_Status ;
    skos:definition "Indicates if air pressure in supply duct is within expected bounds"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Duct> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Duct>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Flow_Demand_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Flow Demand Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Air_Flow_Demand_Setpoint,
        brick:Supply_Air_Flow_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Flow_Demand_Setpoint ;
    skos:definition "Sets the rate of supply air flow required for a process"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Demand> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Demand>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Flow ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Flow_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Flow High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Flow_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Flow_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Flow Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Flow_Reset_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Flow_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    owl:equivalentClass brick:Discharge_Air_Humidity_Sensor ;
    skos:definition "Measures the relative humidity of supply air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Humidity_Setpoint ;
    skos:definition "Humidity setpoint for supply air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Integral_Gain_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Integral Gain Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Integral_Gain_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Integral_Gain_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gain> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Gain>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Proportional_Gain_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Proportional Gain Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Proportional_Gain_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Proportional_Gain_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Gain> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Gain>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Smoke_Detection_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Smoke Detection Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Air_Alarm,
        brick:Smoke_Detection_Alarm ;
    owl:equivalentClass brick:Discharge_Air_Smoke_Detection_Alarm ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Detection> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Smoke> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Detection>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Smoke>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Static_Pressure_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Static Pressure Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Deadband_Setpoint,
        brick:Supply_Air_Static_Pressure_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Static_Pressure_Deadband_Setpoint ;
    skos:definition "Sets the size of a deadband of static pressure of supply air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Static_Pressure_Integral_Time_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Static Pressure Integral Time Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Integral_Time_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Static_Pressure_Integral_Time_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Time> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Integral> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Integral>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Time> .

brick:Supply_Air_Static_Pressure_Proportional_Band_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Static Pressure Proportional Band Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Proportional_Band_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Static_Pressure_Proportional_Band_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Proportional> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#PID> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Band> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Band>,
        <https://brickschema.org/schema/BrickTag#PID>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Proportional>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Static_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Static Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Sensor ;
    owl:equivalentClass brick:Discharge_Air_Static_Pressure_Sensor ;
    skos:definition "The static pressure of air within supply regions of an HVAC system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Supply> ;
    brick:hasQuantity brick:Static_Pressure ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Static_Pressure_Step_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Static Pressure Step Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Air_Static_Pressure_Step_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Static_Pressure_Step_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Step> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Step>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Supply_Air_Temperature_Cooling_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature Cooling Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Temperature_Cooling_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Supply_Air_Temperature_Heating_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature Heating Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Supply_Air_Temperature_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Temperature_Heating_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Supply_Air_Temperature_High_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature High Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_High_Reset_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Temperature_High_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#High> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#High>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Temperature_Low_Reset_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature Low Reset Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Low_Reset_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Temperature_Low_Reset_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Low> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Low>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Temperature ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Temperature_Reset_Differential_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature Reset Differential Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Differential_Reset_Setpoint ;
    owl:equivalentClass brick:Discharge_Air_Temperature_Reset_Differential_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reset> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Reset>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Air_Temperature_Step_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Temperature Step Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Step_Parameter ;
    owl:equivalentClass brick:Discharge_Air_Temperature_Step_Parameter ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Step> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Step>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Supply_Air_Velocity_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Air Velocity Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Velocity_Pressure_Sensor ;
    owl:equivalentClass brick:Discharge_Air_Velocity_Pressure_Sensor ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Velocity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Velocity> ;
    brick:hasQuantity brick:Velocity_Pressure ;
    brick:hasSubstance brick:Supply_Air .

brick:Supply_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Supply Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    owl:equivalentClass brick:Discharge_Fan ;
    skos:definition "Fan moving supply air -- air that is supplied from the HVAC system into the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Supply> .

brick:Surveillance_Camera a owl:Class,
        sh:NodeShape ;
    rdfs:label "Surveillance Camera"^^xsd:string ;
    rdfs:subClassOf brick:Camera,
        brick:Video_Surveillance_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Security> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Surveillance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Camera> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Video> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Camera>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Security>,
        <https://brickschema.org/schema/BrickTag#Surveillance>,
        <https://brickschema.org/schema/BrickTag#Video> .

brick:Switch_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Switch Room"^^xsd:string ;
    rdfs:subClassOf brick:Telecom_Room ;
    skos:definition "A telecommuncations room housing network switches"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Telecom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Switch> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Switch>,
        <https://brickschema.org/schema/BrickTag#Telecom> .

brick:Switch_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Switch Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Status of a switch"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Switch> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Switch> .

brick:Switchgear a owl:Class,
        sh:NodeShape ;
    rdfs:label "Switchgear"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "A main disconnect or service disconnect feeds power to a switchgear, which then distributes power to the rest of the building through smaller amperage-rated disconnects."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Switchgear> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Switchgear> .

brick:System_Shutdown_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "System Shutdown Status"^^xsd:string ;
    rdfs:subClassOf brick:Status,
        brick:System_Status ;
    skos:definition "Indicates if a system has been shutdown"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shutdown> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shutdown>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#System> .

brick:TETRA_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "TETRA Room"^^xsd:string ;
    rdfs:subClassOf brick:Telecom_Room ;
    skos:definition "A room used for local two-way radio networks, e.g. the portable radios carried by facilities staff"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Telecom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#TETRA> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#TETRA>,
        <https://brickschema.org/schema/BrickTag#Telecom> .

brick:TVOC_Level_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "TVOC Level Sensor"^^xsd:string ;
    rdfs:subClassOf brick:TVOC_Sensor ;
    skos:definition "A sensor measuring the level of all VOCs in air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Particulate> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Matter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#TVOC> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Level> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Level>,
        <https://brickschema.org/schema/BrickTag#Matter>,
        <https://brickschema.org/schema/BrickTag#Particulate>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#TVOC> .

brick:Team_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Team Room"^^xsd:string ;
    rdfs:subClassOf brick:Enclosed_Office ;
    skos:definition "An office used by multiple team members for specific work tasks. Distinct from Conference Room"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Office> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Team> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enclosed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Enclosed>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Office>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Team> .

brick:Temperature_Adjust_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Temperature Adjust Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Adjust_Sensor ;
    skos:definition "Measures user-provided adjustment of temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Adjust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Adjust>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature> ;
    brick:hasQuantity brick:Differential_Temperature .

brick:Temperature_Alarm_Sensitivity_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Temperature Alarm Sensitivity Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Alarm_Sensitivity_Parameter ;
    skos:definition "A parameter indicates the sensitivity to activate a temperature alarm."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensitivity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensitivity>,
        <https://brickschema.org/schema/BrickTag#Temperature> .

brick:Temperature_Tolerance_Parameter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Temperature Tolerance Parameter"^^xsd:string ;
    rdfs:subClassOf brick:Temperature_Parameter,
        brick:Tolerance_Parameter ;
    skos:definition "A parameter determining the difference between upper and lower limits of temperature."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tolerance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Parameter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Parameter>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Tolerance> .

brick:Temporary_Occupancy_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Temporary Occupancy Status"^^xsd:string ;
    rdfs:subClassOf brick:Occupancy_Status ;
    skos:definition "For systems that differentiate between scheduled occupied/unoccupied mode, this indicates if a space is temporarily occupied when it would otherwise be unoccupied"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupancy> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temporary> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Occupancy>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Temporary> .

brick:Thermal_Energy a brick:Quantity ;
    rdfs:label "Thermal Energy"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT,
        unit:BTU_MEAN,
        unit:BTU_TH,
        unit:CAL_15_DEG_C,
        unit:CAL_IT,
        unit:CAL_MEAN,
        unit:CAL_TH,
        unit:GigaJ,
        unit:J,
        unit:KiloCAL,
        unit:KiloCAL_IT,
        unit:KiloCAL_Mean,
        unit:KiloCAL_TH,
        unit:KiloJ,
        unit:MegaJ,
        unit:N-M,
        unit:THM_EEC,
        unit:THM_US ;
    skos:broader brick:Energy ;
    skos:definition "Thermal Energy} is the portion of the thermodynamic or internal energy of a system that is responsible for the temperature of the system. From a macroscopic thermodynamic description, the thermal energy of a system is given by its constant volume specific heat capacity C(T), a temperature coefficient also called thermal capacity, at any given absolute temperature (T): (U_{thermal = C(T) \\cdot T)."@en ;
    brick:hasQUDTReference qudtqk:ThermalEnergy .

brick:Thermal_Power a brick:Quantity ;
    rdfs:label "ThermalPower"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT,
        unit:KiloW,
        unit:MegaW,
        unit:MilliW,
        unit:W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader qudtqk:Power,
        brick:Power ;
    skos:definition "`"@en .

brick:Thermal_Power_Meter a owl:Class,
        sh:NodeShape ;
    rdfs:label "Thermal Power Meter"^^xsd:string ;
    rdfs:subClassOf brick:Meter ;
    skos:definition "A standalone thermal power meter"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Meter> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Power> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Meter>,
        <https://brickschema.org/schema/BrickTag#Power>,
        <https://brickschema.org/schema/BrickTag#Thermal> .

brick:Thermally_Activated_Building_System_Panel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Thermally Activated Building System Panel"^^xsd:string ;
    rdfs:seeAlso <https://www.rehva.eu/eshop/detail/no07-low-temperature-heating-and-high-temperature-cooling> ;
    rdfs:subClassOf brick:Radiant_Panel ;
    owl:equivalentClass brick:TABS_Panel ;
    skos:definition "Radiant panel heating and cooling system where the energy heat source or sink is embedded in the building structure such as in slabs and walls."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Panel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermally> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Activated> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Building> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Activated>,
        <https://brickschema.org/schema/BrickTag#Building>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Panel>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Thermally> .

brick:Thermostat a owl:Class,
        sh:NodeShape ;
    rdfs:label "Thermostat"^^xsd:string ;
    rdfs:subClassOf brick:HVAC_Equipment ;
    skos:definition "An automatic control device used to maintain temperature at a fixed or adjustable setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermostat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Thermostat> .

brick:Thermostat_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Thermostat Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "Status of a thermostat"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermostat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Thermostat> .

brick:Thermostatic_Mixing_Valve a owl:Class,
        sh:NodeShape ;
    rdfs:label "Thermostatic Mixing Valve"^^xsd:string ;
    rdfs:seeAlso <https://en.wikipedia.org/wiki/Thermostatic_mixing_valve> ;
    rdfs:subClassOf brick:Water_Valve ;
    skos:definition "A valve that blends hot water with cold water to ensure constant, safe shower and bath outlet temperatures, preventing scalding."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mixed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Thermal> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Mixed>,
        <https://brickschema.org/schema/BrickTag#Thermal>,
        <https://brickschema.org/schema/BrickTag#Valve>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Ticketing_Booth a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ticketing Booth"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "A room or space used to sell or distribute tickets to events at a venue"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Booth> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ticketing> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Booth>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Ticketing> .

brick:Tint_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Tint Command"^^xsd:string ;
    rdfs:subClassOf brick:Command ;
    skos:definition "The target level of window tint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Tint> .

brick:Tint_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Tint Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "The current level of window tint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Tint> .

brick:Touchpanel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Touchpanel"^^xsd:string ;
    rdfs:subClassOf brick:Interface ;
    skos:definition "A switch used to operate all or part of a lighting installation that uses a touch-based mechanism (typically resistive or capacitive) rather than a mechanical actuator"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Touchpanel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Interface> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Interface>,
        <https://brickschema.org/schema/BrickTag#Touchpanel> .

brick:Trace_Heat_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Trace Heat Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Heat_Sensor ;
    skos:definition "Measures the surface temperature of pipelines carrying temperature-sensitive products; typically used to avoid frosting/freezing"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Trace> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Trace> .

brick:Transfer_Fan a owl:Class,
        sh:NodeShape ;
    rdfs:label "Transfer Fan"^^xsd:string ;
    rdfs:subClassOf brick:Fan ;
    skos:definition "A fan that transfers air from a space to another space."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Fan> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Transfer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Fan>,
        <https://brickschema.org/schema/BrickTag#Transfer> .

brick:Transformer a owl:Class,
        sh:NodeShape ;
    rdfs:label "Transformer"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Equipment ;
    skos:definition "A Transformer is usually fed by a high-voltage source and then steps down the voltage to a lower-voltage feed for low-voltage application (such as lights). Transformers also can step up voltage, but this generally does not apply to in building distribution."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Transformer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Transformer> .

brick:Transformer_Room a owl:Class,
        sh:NodeShape ;
    rdfs:label "Transformer Room"^^xsd:string ;
    rdfs:subClassOf brick:Electrical_Room ;
    skos:definition "An electrical room where electricity enters and is transformed to different voltages and currents by the equipment contained in the room"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electrical> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Service> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Transformer> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electrical>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Service>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Transformer> .

brick:Tunnel a owl:Class,
        sh:NodeShape ;
    rdfs:label "Tunnel"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "An enclosed space that connects buildings. Often underground"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tunnel> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Tunnel> .

brick:Underfloor_Air_Plenum a owl:Class,
        sh:NodeShape ;
    rdfs:label "Underfloor Air Plenum"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Plenum ;
    skos:definition "An open space between a structural concrete slab and the underside of a raised access floor system that connects to an air handling unit to receive conditioned and/or ventilating air before delivery to the room(s)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Plenum> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Underfloor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Plenum>,
        <https://brickschema.org/schema/BrickTag#Underfloor> .

brick:Underfloor_Air_Plenum_Static_Pressure_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Underfloor Air Plenum Static Pressure Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Sensor ;
    skos:definition "Measures the outward push of air against the plenum surfaces and used to measure the resistance when air moves through the plenum"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Underfloor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Plenum> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Plenum>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Underfloor> .

brick:Underfloor_Air_Plenum_Static_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Underfloor Air Plenum Static Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Static_Pressure_Setpoint ;
    skos:definition "Sets the underfloor air plenum static pressure"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Underfloor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Plenum> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Static> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Plenum>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Static>,
        <https://brickschema.org/schema/BrickTag#Underfloor> .

brick:Underfloor_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Underfloor Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Air_Temperature_Sensor ;
    skos:definition "Measures the temperature of underfloor air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Underfloor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Underfloor> .

brick:Unit_Failure_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unit Failure Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Failure_Alarm ;
    skos:definition "An alarm that indicates the failure of an equipment or device"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Failure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Failure>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Unit> .

brick:Unoccupied_Air_Temperature_Cooling_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Air Temperature Cooling Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Unoccupied_Air_Temperature_Setpoint ;
    skos:definition "Sets temperature of air when unoccupied for cooling"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Air_Temperature_Heating_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Air Temperature Heating Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Unoccupied_Air_Temperature_Setpoint ;
    skos:definition "Sets temperature of air when unoccupied for heating"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Cooling_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Cooling Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Mode_Status,
        brick:Unoccupied_Mode_Status ;
    skos:definition "Indicates whether a system, device or control loop is in an unoccupied cooling mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Cooling_Supply_Air_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Cooling Supply Air Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Supply_Air_Flow_Setpoint,
        brick:Unoccupied_Supply_Air_Flow_Setpoint ;
    owl:equivalentClass brick:Unoccupied_Cooling_Discharge_Air_Flow_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Cooling_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Cooling Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Cooling_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Cooling Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Heating_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Heating Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Mode_Status,
        brick:Unoccupied_Mode_Status ;
    skos:definition "Indicates whether a system, device or control loop is in an unoccupied heating mode"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Heating_Supply_Air_Flow_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Heating Supply Air Flow Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Supply_Air_Flow_Setpoint,
        brick:Unoccupied_Supply_Air_Flow_Setpoint ;
    owl:equivalentClass brick:Unoccupied_Heating_Discharge_Air_Flow_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Flow> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Flow>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Heating_Temperature_Deadband_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Heating Temperature Deadband Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Temperature_Deadband_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Deadband> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Deadband>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Heating_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Heating Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Target humidity level when the location is unoccupied."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Return_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Return Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Return_Air_Temperature_Setpoint,
        brick:Unoccupied_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Return> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Return>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Room_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Room Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Room_Air_Temperature_Setpoint,
        brick:Unoccupied_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Supply_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Supply Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Supply_Air_Temperature_Setpoint,
        brick:Unoccupied_Air_Temperature_Setpoint ;
    owl:equivalentClass brick:Unoccupied_Discharge_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Supply> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Supply>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied> .

brick:Unoccupied_Zone_Air_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Unoccupied Zone Air Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Unoccupied_Air_Temperature_Setpoint,
        brick:Zone_Air_Temperature_Setpoint ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heat>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Unoccupied>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:VFD_Enable_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "VFD Enable Command"^^xsd:string ;
    rdfs:subClassOf brick:Enable_Command ;
    skos:definition "Enables operation of a variable frequency drive"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Enable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#VFD> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Enable>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#VFD> .

brick:Valve_Position_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Valve Position Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Alarm ;
    skos:definition "An alarm that indicates that the valve position is not in a normal state."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Valve_Position_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Valve Position Command"^^xsd:string ;
    rdfs:subClassOf brick:Position_Command,
        brick:Valve_Command ;
    skos:definition "Controls the position (the degree of openness) of a valve"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Valve> ;
    brick:hasQuantity brick:Position .

brick:Valve_Position_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Valve Position Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Position_Sensor ;
    skos:definition "Measures the current position of a valve in terms of the percent of fully open"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Position> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Position>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Valve> ;
    brick:hasQuantity brick:Position .

brick:Valve_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Valve Status"^^xsd:string ;
    rdfs:subClassOf brick:Status ;
    skos:definition "The current status of the valve."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Valve> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Valve> .

brick:Variable_Air_Volume_Box_With_Reheat a owl:Class,
        sh:NodeShape ;
    rdfs:label "Variable Air Volume Box With Reheat"^^xsd:string ;
    rdfs:subClassOf brick:Variable_Air_Volume_Box ;
    owl:equivalentClass brick:RVAV ;
    skos:definition "A VAV box with a reheat coil mounted on the discharge end of the unit that can heat the air delivered to a zone"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Reheat> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Volume> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Variable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Box> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Box>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Reheat>,
        <https://brickschema.org/schema/BrickTag#Variable>,
        <https://brickschema.org/schema/BrickTag#Volume> .

brick:Variable_Frequency_Drive a owl:Class,
        sh:NodeShape ;
    rdfs:label "Variable Frequency Drive"^^xsd:string ;
    rdfs:seeAlso <https://xp20.ashrae.org/terminology/index.php?term=vfd&submit=Search> ;
    rdfs:subClassOf brick:Motor ;
    owl:equivalentClass brick:VFD ;
    skos:definition "Electronic device that varies its output frequency to vary the rotating speed of a motor, given a fixed input frequency. Used with fans or pumps to vary the flow in the system as a function of a maintained pressure."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Variable> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Frequency> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Drive> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Drive>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Frequency>,
        <https://brickschema.org/schema/BrickTag#Variable> .

brick:Velocity_Pressure_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Velocity Pressure Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Pressure_Setpoint ;
    skos:definition "Sets static veloicty pressure"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Pressure> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Velocity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Pressure>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Velocity> .

brick:Vent_Operating_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Vent Operating Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Operating_Mode_Status ;
    skos:definition "Indicates the current operating mode of a vent"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Vent> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Operating> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Operating>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Vent> .

brick:Ventilation_Air_Flow_Ratio_Limit a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ventilation Air Flow Ratio Limit"^^xsd:string ;
    rdfs:subClassOf brick:Limit ;
    skos:definition "A parameter that places a lower or upper bound on the range of permitted values of a Ventilation_Air_Flow_Ratio_Setpoint."@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ratio> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ventilation> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Limit> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Limit>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Ratio>,
        <https://brickschema.org/schema/BrickTag#Ventilation> .

brick:Ventilation_Air_System a owl:Class,
        sh:NodeShape ;
    rdfs:label "Ventilation Air System"^^xsd:string ;
    rdfs:subClassOf brick:Air_System ;
    skos:definition "The equipment, devices, and conduits that handle the introduction and distribution of ventilation air in the building"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#System> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ventilation> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#System>,
        <https://brickschema.org/schema/BrickTag#Ventilation> .

brick:Video_Intercom a owl:Class,
        sh:NodeShape ;
    rdfs:label "Video Intercom"^^xsd:string ;
    rdfs:subClassOf brick:Intercom_Equipment ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Security> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Video> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Intercom> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Intercom>,
        <https://brickschema.org/schema/BrickTag#Security>,
        <https://brickschema.org/schema/BrickTag#Video> .

brick:Visitor_Lobby a owl:Class,
        sh:NodeShape ;
    rdfs:label "Visitor Lobby"^^xsd:string ;
    rdfs:subClassOf brick:Lobby ;
    skos:definition "A lobby for visitors to the building. Sometimes used to distinguish from an employee entrance looby"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Visitor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Common> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Lobby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Common>,
        <https://brickschema.org/schema/BrickTag#Lobby>,
        <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Visitor> .

brick:Voltage_Angle a brick:Quantity ;
    rdfs:label "VoltageAngle"^^xsd:string ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:isDefinedBy <https://brickschema.org/schema/Brick> ;
    skos:broader brick:Phasor_Angle ;
    skos:definition "Angle of voltage phasor"^^xsd:string,
        "Angle of voltage phasor"@en ;
    skos:related brick:Voltage .

brick:Voltage_Imbalance_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Voltage Imbalance Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Imbalance_Sensor ;
    skos:definition "A sensor which measures the voltage difference (imbalance) between phases of an electrical system"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Imbalance> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Imbalance>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Voltage> ;
    brick:hasQuantity brick:Voltage_Imbalance .

brick:Voltage_Ratio_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Voltage Ratio Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Setpoint ;
    skos:definition "Sets the ratio of voltage in a transformer"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Ratio> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Electric> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Voltage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Electric>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Ratio>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Voltage> .

brick:Wardrobe a owl:Class,
        sh:NodeShape ;
    rdfs:label "Wardrobe"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "Storage for clothing, costumes, or uniforms"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wardrobe> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Wardrobe> .

brick:Warm_Cool_Adjust_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Warm Cool Adjust Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Adjust_Sensor ;
    skos:definition "User provided adjustment of zone temperature, typically in the range of +/- 5 degrees"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Warm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Adjust> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Adjust>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Warm> .

brick:Warmest_Zone_Air_Temperature_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Warmest Zone Air Temperature Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Zone_Air_Temperature_Sensor ;
    skos:definition "The zone temperature that is warmest; drives the supply temperature of cold air. A computed value rather than a physical sensor. Also referred to as a 'Highest Zone Air Temperature Sensor'"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Warmest> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Warmest>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Waste_Storage a owl:Class,
        sh:NodeShape ;
    rdfs:label "Waste Storage"^^xsd:string ;
    rdfs:subClassOf brick:Storage_Room ;
    skos:definition "A room used for storing waste such as trash or recycling"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Waste> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Storage> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Storage>,
        <https://brickschema.org/schema/BrickTag#Waste> .

brick:Water_Differential_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Water Differential Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Differential_Temperature_Setpoint ;
    skos:definition "Sets the target differential temperature between the start and end of a heat transfer cycle in a water circuit"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Differential> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Differential>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Water> ;
    brick:hasQuantity brick:Differential_Temperature ;
    brick:hasSubstance brick:Water .

brick:Water_Distribution a owl:Class,
        sh:NodeShape ;
    rdfs:label "Water Distribution"^^xsd:string ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "Utilize a water distribution source to represent how water is distributed across multiple destinations (pipes)"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Distribution> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Distribution>,
        <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Water_Loss_Alarm a owl:Class,
        sh:NodeShape ;
    rdfs:label "Water Loss Alarm"^^xsd:string ;
    rdfs:subClassOf brick:Water_Alarm ;
    skos:definition "An alarm that indicates a loss of water e.g. during transport"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Loss> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Alarm> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Alarm>,
        <https://brickschema.org/schema/BrickTag#Loss>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Water_Tank a owl:Class,
        sh:NodeShape ;
    rdfs:label "Water Tank"^^xsd:string ;
    rdfs:subClassOf brick:Space ;
    skos:definition "A space used to hold water"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Water> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Tank> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Tank>,
        <https://brickschema.org/schema/BrickTag#Water> .

brick:Weather_Condition a brick:Quantity ;
    rdfs:label "Weather Condition"^^xsd:string .

brick:Weather_Station a owl:Class,
        sh:NodeShape ;
    rdfs:label "Weather Station"^^xsd:string ;
    rdfs:seeAlso <https://bedes.lbl.gov/bedes-online/weather-station> ;
    rdfs:subClassOf brick:Equipment ;
    skos:definition "A dedicated weather measurement station"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Weather> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Station> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Equipment> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Equipment>,
        <https://brickschema.org/schema/BrickTag#Station>,
        <https://brickschema.org/schema/BrickTag#Weather> .

brick:Wind_Direction_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Wind Direction Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Direction_Sensor ;
    skos:definition "Measures the direction of wind in degrees relative to North"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wind> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Direction> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Direction>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Wind> ;
    brick:hasQuantity brick:Wind_Direction .

brick:Wind_Speed_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Wind Speed Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Speed_Sensor ;
    skos:definition "Measured speed of wind, caused by air moving from high to low pressure"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Speed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Wind> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Speed>,
        <https://brickschema.org/schema/BrickTag#Wind> ;
    brick:hasQuantity brick:Linear_Speed .

brick:Workshop a owl:Class,
        sh:NodeShape ;
    rdfs:label "Workshop"^^xsd:string ;
    rdfs:subClassOf brick:Room ;
    skos:definition "A space used to house equipment that can be used to repair or fabricate things"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Workshop> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Space> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Room> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Location> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Location>,
        <https://brickschema.org/schema/BrickTag#Room>,
        <https://brickschema.org/schema/BrickTag#Space>,
        <https://brickschema.org/schema/BrickTag#Workshop> .

brick:Zone_Air_Conditioning_Mode_Status a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Conditioning Mode Status"^^xsd:string ;
    rdfs:subClassOf brick:Mode_Status ;
    skos:definition "Indicates the mode of AC for a zone"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Conditioning> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Mode> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Status> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Conditioning>,
        <https://brickschema.org/schema/BrickTag#Mode>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Status>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Zone_Air_Cooling_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Cooling Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Cooling_Temperature_Setpoint,
        brick:Zone_Air_Temperature_Setpoint ;
    skos:definition "The upper (cooling) setpoint for zone air temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Cool> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Cool>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Zone_Air_Dewpoint_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Dewpoint Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Dewpoint_Sensor ;
    skos:definition "Measures dewpoint of zone air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Dewpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Dewpoint>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Zone> ;
    brick:hasQuantity brick:Dewpoint ;
    brick:hasSubstance brick:Zone_Air .

brick:Zone_Air_Heating_Temperature_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Heating Temperature Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Heating_Temperature_Setpoint,
        brick:Zone_Air_Temperature_Setpoint ;
    skos:definition "The lower (heating) setpoint for zone air temperature"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Temperature> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Heating> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Heating>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Temperature>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Zone_Air_Humidity_Sensor a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Humidity Sensor"^^xsd:string ;
    rdfs:subClassOf brick:Relative_Humidity_Sensor ;
    skos:definition "Measures the relative humidity of zone air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Sensor> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Relative> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Relative>,
        <https://brickschema.org/schema/BrickTag#Sensor>,
        <https://brickschema.org/schema/BrickTag#Zone> ;
    brick:hasQuantity brick:Relative_Humidity ;
    brick:hasSubstance brick:Zone_Air .

brick:Zone_Air_Humidity_Setpoint a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Air Humidity Setpoint"^^xsd:string ;
    rdfs:subClassOf brick:Humidity_Setpoint ;
    skos:definition "Humidity setpoint for zone air"@en ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Humidity> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Setpoint> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Air> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Air>,
        <https://brickschema.org/schema/BrickTag#Humidity>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Setpoint>,
        <https://brickschema.org/schema/BrickTag#Zone> ;
    brick:hasQuantity brick:Humidity ;
    brick:hasSubstance brick:Zone_Air .

brick:Zone_Occupied_Load_Shed_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Occupied Load Shed Command"^^xsd:string ;
    rdfs:subClassOf brick:Occupied_Load_Shed_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Occupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Occupied>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Zone_Standby_Load_Shed_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Standby Load Shed Command"^^xsd:string ;
    rdfs:subClassOf brick:Standby_Load_Shed_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Standby> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Standby>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:Zone_Unoccupied_Load_Shed_Command a owl:Class,
        sh:NodeShape ;
    rdfs:label "Zone Unoccupied Load Shed Command"^^xsd:string ;
    rdfs:subClassOf brick:Unoccupied_Load_Shed_Command ;
    sh:rule [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Zone> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Command> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Unoccupied> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Point> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Shed> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ],
        [ a sh:TripleRule ;
            sh:object <https://brickschema.org/schema/BrickTag#Load> ;
            sh:predicate brick:hasTag ;
            sh:subject sh:this ] ;
    brick:hasAssociatedTag <https://brickschema.org/schema/BrickTag#Command>,
        <https://brickschema.org/schema/BrickTag#Load>,
        <https://brickschema.org/schema/BrickTag#Point>,
        <https://brickschema.org/schema/BrickTag#Shed>,
        <https://brickschema.org/schema/BrickTag#Unoccupied>,
        <https://brickschema.org/schema/BrickTag#Zone> .

brick:aggregate a brick:EntityProperty ;
    rdfs:label "Aggregate"^^xsd:string ;
    rdfs:domain brick:Point ;
    rdfs:range <https://brickschema.org/schema/BrickShape#AggregationShape> ;
    skos:definition "Description of how the dta for this point is aggregated"^^xsd:string .

brick:azimuth a brick:EntityProperty ;
    rdfs:label "Azimuth"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#AzimuthShape> ;
    skos:definition "(Horizontal) angle between a projected vector and a reference vector (typically a compass bearing). The projected vector usually indicates the direction of a face or plane."^^xsd:string .

brick:buildingPrimaryFunction a brick:EntityProperty ;
    rdfs:label "Building primary function"^^xsd:string ;
    rdfs:domain brick:Building ;
    rdfs:range <https://brickschema.org/schema/BrickShape#BuildingPrimaryFunctionShape> ;
    rdfs:seeAlso "https://project-haystack.org/tag/primaryFunction"^^xsd:string ;
    skos:definition "Enumerated string applied to a site record to indicate the building's primary function. The list of primary functions is derived from the US Energy Star program (adopted from Project Haystack)"^^xsd:string .

brick:buildingThermalTransmittance a brick:EntityProperty ;
    rdfs:label "Building thermal transmittance"^^xsd:string ;
    rdfs:domain brick:Building ;
    rdfs:range <https://brickschema.org/schema/BrickShape#ThermalTransmittanceShape> ;
    rdfs:seeAlso "https://www.iso.org/obp/ui/#iso:std:iso:13789:ed-3:v1:en"^^xsd:string ;
    rdfs:subPropertyOf brick:thermalTransmittance ;
    skos:definition "The area-weighted average heat transfer coefficient (commonly referred to as a U-value) for a building envelope"^^xsd:string .

brick:coolingCapacity a brick:EntityProperty ;
    rdfs:label "Cooling capacity"^^xsd:string ;
    rdfs:domain brick:Chiller ;
    rdfs:range <https://brickschema.org/schema/BrickShape#CoolingCapacityShape> ;
    rdfs:seeAlso "https://project-haystack.org/tag/coolingCapacity"^^xsd:string ;
    skos:definition "Measurement of a chiller ability to remove heat (adopted from Project Haystack)"^^xsd:string .

brick:coordinates a brick:EntityProperty ;
    rdfs:label "Coordinates"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#CoordinateShape> ;
    skos:definition "The location of an entity in latitude/longitude"^^xsd:string .

brick:currentFlowType a brick:EntityProperty ;
    rdfs:label "Current flow type"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#CurrentFlowTypeShape> ;
    skos:definition "The current flow type of the entity"^^xsd:string .

brick:electricalPhaseCount a brick:EntityProperty ;
    rdfs:label "Electrical phase count"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PhaseCountShape> ;
    skos:definition "Entity has these phases"^^xsd:string .

brick:electricalPhases a brick:EntityProperty ;
    rdfs:label "Electrical phases"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PhasesShape> ;
    skos:definition "Entity has these electrical AC phases"^^xsd:string .

brick:feedsAir rdfs:subPropertyOf brick:feeds ;
    skos:definition "Passes air"@en .

brick:grossArea a brick:EntityProperty ;
    rdfs:label "Gross area"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#AreaShape> ;
    rdfs:subPropertyOf brick:area ;
    skos:definition "Entity has gross 2-dimensional area"^^xsd:string .

brick:hasAddress rdfs:label "Has address"^^xsd:string ;
    rdfs:domain brick:Building ;
    rdfs:range <http://www.w3.org/2006/vcard/ns#Address> ;
    rdfs:subPropertyOf <http://www.w3.org/2006/vcard/ns#hasAddress> ;
    skos:definition "To specify the address of a building."@en .

brick:hasInputSubstance a owl:AsymmetricProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty ;
    rdfs:label "Has input substance"^^xsd:string ;
    rdfs:range brick:Substance ;
    skos:definition "The subject receives the given substance as an input to its internal process"@en .

brick:hasOutputSubstance a owl:AsymmetricProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty ;
    rdfs:label "Has output substance"^^xsd:string ;
    rdfs:range brick:Substance ;
    skos:definition "The subject produces or exports the given substance from its internal process"@en .

brick:hasQUDTReference a owl:AsymmetricProperty,
        owl:IrreflexiveProperty,
        owl:ObjectProperty ;
    rdfs:label "Has QUDT reference"^^xsd:string ;
    skos:definition "Points to the relevant QUDT definition"@en .

brick:isVirtualMeter a brick:EntityProperty ;
    rdfs:label "is virtual meter"^^xsd:string ;
    rdfs:domain brick:Meter ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VirtualMeterShape> ;
    skos:definition "True if the associated meter is 'virtual', i.e. a logical meter which includes or aggregates information from a variety of sources such as other submeters or equipment."^^xsd:string .

brick:measuredModuleConversionEfficiency a brick:EntityProperty ;
    rdfs:label "Measured module conversion efficiency"^^xsd:string ;
    rdfs:domain brick:PV_Panel ;
    rdfs:range <https://brickschema.org/schema/BrickShape#EfficiencyShape> ;
    rdfs:subPropertyOf brick:conversionEfficiency ;
    skos:definition "The measured percentage of sunlight that is converted into usable power"^^xsd:string .

brick:measuredPowerInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerShape> ;
    skos:definition "The nominal measured power input of the entity"^^xsd:string .

brick:measuredPowerOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerShape> ;
    skos:definition "The nominal measured power output of the entity"^^xsd:string .

brick:netArea a brick:EntityProperty ;
    rdfs:label "Net area"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#AreaShape> ;
    rdfs:subPropertyOf brick:area ;
    skos:definition "Entity has net 2-dimensional area"^^xsd:string .

brick:operationalStage a brick:EntityProperty ;
    rdfs:label "Operational stage"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#StageShape> ;
    skos:definition "The associated operational stage"^^xsd:string .

brick:operationalStageCount a brick:EntityProperty ;
    rdfs:label "Operational stage count"^^xsd:string ;
    rdfs:domain brick:Equipment ;
    rdfs:range <https://brickschema.org/schema/BrickShape#StageShape> ;
    skos:definition "The number of operational stages supported by this eqiupment"^^xsd:string .

brick:panelArea a brick:EntityProperty ;
    rdfs:label "Panel area"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#AreaShape> ;
    rdfs:subPropertyOf brick:area ;
    skos:definition "Surface area of a panel, such as a PV panel"^^xsd:string .

brick:powerComplexity a brick:EntityProperty ;
    rdfs:label "Power complexity"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerComplexityShape> ;
    skos:definition "Entity has this power complexity"^^xsd:string .

brick:powerFlow a brick:EntityProperty ;
    rdfs:label "Power flow"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerFlowShape> ;
    skos:definition "Entity has this power flow relative to the building'"^^xsd:string .

brick:ratedMaximumCurrentInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#ElectricCurrentShape> ;
    rdfs:subPropertyOf brick:ratedCurrentInput ;
    skos:definition "The maximum current that can be input to the entity"^^xsd:string .

brick:ratedMaximumCurrentOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#ElectricCurrentShape> ;
    rdfs:subPropertyOf brick:ratedCurrentOutput ;
    skos:definition "The maximum current that can be output by the entity"^^xsd:string .

brick:ratedMaximumVoltageInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VoltageShape> ;
    rdfs:subPropertyOf brick:ratedVoltageInput ;
    skos:definition "The maximum voltage that can be input to the entity"^^xsd:string .

brick:ratedMaximumVoltageOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VoltageShape> ;
    rdfs:subPropertyOf brick:ratedVoltageOutput ;
    skos:definition "The maximum voltage that can be output by the entity"^^xsd:string .

brick:ratedMinimumCurrentInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#ElectricCurrentShape> ;
    rdfs:subPropertyOf brick:ratedCurrentInput ;
    skos:definition "The minimum current that can be input to the entity"^^xsd:string .

brick:ratedMinimumCurrentOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#ElectricCurrentShape> ;
    rdfs:subPropertyOf brick:ratedCurrentOutput ;
    skos:definition "The minimum current that can be output by the entity"^^xsd:string .

brick:ratedMinimumVoltageInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VoltageShape> ;
    rdfs:subPropertyOf brick:ratedVoltageInput ;
    skos:definition "The minimum voltage that can be input to the entity"^^xsd:string .

brick:ratedMinimumVoltageOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VoltageShape> ;
    rdfs:subPropertyOf brick:ratedVoltageOutput ;
    skos:definition "The minimum voltage that can be output by the entity"^^xsd:string .

brick:ratedModuleConversionEfficiency a brick:EntityProperty ;
    rdfs:label "Rated module conversion efficiency"^^xsd:string ;
    rdfs:domain brick:PV_Panel ;
    rdfs:range <https://brickschema.org/schema/BrickShape#EfficiencyShape> ;
    rdfs:subPropertyOf brick:conversionEfficiency ;
    skos:definition "The *rated* percentage of sunlight that is converted into usable power, as measured using Standard Test Conditions (STC): 1000 W/sqm irradiance, 25 degC panel temperature, no wind"^^xsd:string .

brick:ratedPowerInput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerShape> ;
    skos:definition "The nominal rated power input of the entity"^^xsd:string .

brick:ratedPowerOutput a brick:EntityProperty ;
    rdfs:range <https://brickschema.org/schema/BrickShape#PowerShape> ;
    skos:definition "The nominal rated power output of the entity"^^xsd:string .

brick:temperatureCoefficientofPmax a brick:EntityProperty ;
    rdfs:label "Temperature coefficient"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#TemperatureCoefficientPerDegreeCelsiusShape> ;
    skos:definition "The % change in power output for every degree celsius that the entity is hotter than 25 degrees celsius"^^xsd:string .

brick:tilt a brick:EntityProperty ;
    rdfs:label "Tilt"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#TiltShape> ;
    skos:definition "The direction an entity is facing in degrees above the horizon"^^xsd:string .

brick:volume a brick:EntityProperty ;
    rdfs:label "Volume"^^xsd:string ;
    rdfs:range <https://brickschema.org/schema/BrickShape#VolumeShape> ;
    skos:definition "Entity has 3-dimensional volume"^^xsd:string .

brick:yearBuilt a brick:EntityProperty ;
    rdfs:label "Year built"^^xsd:string ;
    rdfs:domain brick:Building ;
    rdfs:range <https://brickschema.org/schema/BrickShape#YearBuiltShape> ;
    rdfs:seeAlso "https://project-haystack.org/tag/yearBuilt"^^xsd:string ;
    skos:definition "Four digit year that a building was first built. (adopted from Project Haystack)"^^xsd:string .

<https://brickschema.org/schema/Brick/ref#BACnetReferenceShape> a sh:NodeShape ;
    skos:definition "Infers a BACnetReference instance from the object of an hasExternalReference."^^xsd:string ;
    sh:rule [ a sh:TripleRule ;
            sh:condition <https://brickschema.org/schema/Brick/ref#BACnetReference> ;
            sh:object <https://brickschema.org/schema/Brick/ref#BACnetReference> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetObjectsOf <https://brickschema.org/schema/Brick/ref#hasExternalReference> .

<https://brickschema.org/schema/Brick/ref#IFCReferenceShape> a sh:NodeShape ;
    skos:definition "Infers a IFCReference instance from the object of an hasExternalReference."^^xsd:string ;
    sh:rule [ a sh:TripleRule ;
            sh:condition <https://brickschema.org/schema/Brick/ref#IFCReference> ;
            sh:object <https://brickschema.org/schema/Brick/ref#IFCReference> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetObjectsOf <https://brickschema.org/schema/Brick/ref#hasExternalReference> .

<https://brickschema.org/schema/Brick/ref#TimeseriesReferenceShape> a sh:NodeShape ;
    skos:definition "Infers a TimeseriesReference instance from the object of an hasExternalReference."^^xsd:string ;
    sh:rule [ a sh:TripleRule ;
            sh:condition <https://brickschema.org/schema/Brick/ref#TimeseriesReference> ;
            sh:object <https://brickschema.org/schema/Brick/ref#TimeseriesReference> ;
            sh:predicate rdf:type ;
            sh:subject sh:this ] ;
    sh:targetObjectsOf <https://brickschema.org/schema/Brick/ref#hasExternalReference> .

<https://brickschema.org/schema/Brick/ref#bacnet-read-property> a owl:DatatypeProperty ;
    rdfs:label "bacnet-read-property"^^xsd:string ;
    rdfs:comment "The property of the BACnet object to read to get the current value of this entity."^^xsd:string .

<https://brickschema.org/schema/Brick/ref#hasTimeseriesReference> a owl:ObjectProperty ;
    rdfs:label "hasTimeseriesReference"^^xsd:string ;
    rdfs:subPropertyOf <https://brickschema.org/schema/Brick/ref#hasExternalReference> ;
    skos:definition "Metadata for accessing related timeseries data: Relates a Brick point to the TimeseriesReference that indicates where and how the data for this point is stored"@en ;
    sh:class <https://brickschema.org/schema/Brick/ref#TimeseriesReference> .

<https://brickschema.org/schema/BrickShape#Absolute_HumidityShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:SLUG-PER-FT3 unit:GRAIN-PER-GAL unit:TON_LONG-PER-YD3 unit:TON_US-PER-YD3 unit:KiloGM-PER-M3 unit:OZ_PER-GAL unit:TON_SHORT-PER-YD3 unit:LB-PER-GAL_US unit:PlanckDensity unit:LB-PER-GAL_UK unit:MilliGM-PER-DeciL unit:LB-PER-IN3 unit:LB-PER-FT3 unit:OZ_PER-IN3 unit:LB-PER-M3 unit:LB-PER-YD3 unit:TON_UK-PER-YD3 unit:LB-PER-GAL ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Active_EnergyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:W-HR unit:MegaW-HR unit:KiloW-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Active_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Alternating_Current_FrequencyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:HZ unit:GigaHZ unit:MegaHZ unit:KiloHZ ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Ammonia_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#AngleShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:MIN_Angle unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Apparent_EnergyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:KiloV-A-HR unit:MegaV-A-HR unit:V-A-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Apparent_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Atmospheric_PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#BuildingMeterRule> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
        CONSTRUCT {
            $this rdf:type ?newtype .
        }
        WHERE {
            $this brick:meters ?bldg .
            ?bldg rdf:type/rdfs:subClassOf* brick:Building .
            $this rdf:type ?type .
            BIND(IRI(CONCAT("https://brickschema.org/schema/Brick#Building_", strafter(str(?type), "https://brickschema.org/schema/Brick#"))) as ?newtype) .
            FILTER (strEnds(str(?type), "_Meter"))
        }
        """^^xsd:string ] ;
    sh:targetClass brick:Meter .

<https://brickschema.org/schema/BrickShape#CO2_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#CO_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Complex_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#ConductivityShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MegaS-PER-M unit:MilliS-PER-M unit:MicroS-PER-CentiM unit:PicoS-PER-M unit:NanoS-PER-CentiM unit:S-PER-CentiM unit:KiloS-PER-M unit:S-PER-M unit:DeciS-PER-M unit:MicroS-PER-M unit:NanoS-PER-M unit:MilliS-PER-CentiM ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Current_AngleShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Current_ImbalanceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PERCENT ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Current_Total_Harmonic_DistortionShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PERCENT unit:DeciB_M ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#DeprecationRule> a sh:NodeShape ;
    sh:property [ sh:maxCount 0 ;
            sh:message "This concept is deprecated"^^xsd:string ;
            sh:path ( rdf:type brick:deprecation ) ;
            sh:severity sh:Warning ],
        [ sh:class sh:NodeShape ;
            sh:maxCount 1 ;
            sh:path brick:deprecationMitigationRule ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:path brick:deprecationMitigationMessage ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:path brick:deprecatedInVersion ] ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
        CONSTRUCT { $this owl:deprecated true }
        WHERE { $this brick:deprecation ?dep }
        """^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetSubjectsOf brick:deprecation .

<https://brickschema.org/schema/BrickShape#DeprecationRuleForInstances> a sh:NodeShape ;
    sh:severity sh:Warning ;
    sh:sparql [ a sh:SPARQLConstraint ;
            sh:message "Entity has type which is deprecated"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select "SELECT $this WHERE { $this rdf:type/owl:deprecated true }"^^xsd:string ] ;
    sh:targetClass brick:Entity .

<https://brickschema.org/schema/BrickShape#DewpointShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:DEG_R unit:K unit:MilliDEG_C unit:PlanckTemperature unit:DEG_C unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Differential_CO2_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Differential_CO_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Differential_Dynamic_PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Differential_Static_PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Differential_TemperatureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:DEG_R unit:K unit:MilliDEG_C unit:PlanckTemperature unit:DEG_C unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Dry_Bulb_TemperatureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:DEG_C unit:K unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Electric_CurrentShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:KiloA unit:MilliA unit:A_Stat unit:MicroA unit:A unit:A_Ab unit:NanoA unit:PicoA unit:MegaA unit:BIOT unit:PlanckCurrent ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Electric_EnergyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:J unit:MegaV-A_Reactive-HR unit:KiloV-A_Reactive-HR unit:KiloV-A-HR unit:V-A_Reactive-HR unit:V-A-HR unit:W-HR unit:MegaV-A-HR unit:MegaW-HR unit:KiloW-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Electric_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MilliW unit:PSI-M3-PER-SEC unit:TeraW unit:MegaV-A_Reactive unit:MegaW unit:MegaPA-M3-PER-SEC unit:PA-L-PER-SEC unit:ERG-PER-SEC unit:MegaPA-L-PER-SEC unit:MilliBAR-M3-PER-SEC unit:PSI-IN3-PER-SEC unit:HP_Electric unit:HP-PER-M unit:PicoW unit:HP_Metric unit:V-A unit:FT-LB_F-PER-HR unit:HP unit:KiloV-A_Reactive unit:KiloW unit:KiloV-A unit:PA-M3-PER-SEC unit:J-PER-HR unit:HP-PER-V unit:KiloCAL-PER-SEC unit:KiloCAL-PER-MIN unit:PSI-YD3-PER-SEC unit:MicroW unit:MegaV-A unit:NanoW unit:PlanckPower unit:W unit:BTU_IT-PER-SEC unit:J-PER-SEC unit:V-A_Reactive unit:GigaW unit:HP_Brake unit:MegaJ-PER-SEC unit:HP_Boiler unit:TON_FG unit:FT-LB_F-PER-SEC unit:BAR-M3-PER-SEC unit:FT-LB_F-PER-MIN unit:MilliBAR-L-PER-SEC unit:BAR-L-PER-SEC unit:BTU_IT-PER-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#EnthalpyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:BTU_TH unit:TOE unit:MegaJ unit:ExaJ unit:CAL_TH unit:MegaTOE unit:PlanckEnergy unit:ERG unit:KiloV-A-HR unit:W-SEC unit:KiloJ unit:MegaEV unit:THM_US unit:N-M unit:TeraJ unit:EV unit:MilliJ unit:TonEnergy unit:KiloW-HR unit:QUAD unit:TeraW-HR unit:THM_EEC unit:PetaJ unit:J unit:KiloV-A_Reactive-HR unit:KiloEV unit:MegaV-A_Reactive-HR unit:GigaEV unit:FemtoJ unit:AttoJ unit:BTU_IT unit:KiloCAL unit:FT-LB_F unit:GigaW-HR unit:V-A_Reactive-HR unit:CAL_IT unit:GigaJ unit:V-A-HR unit:W-HR unit:E_h unit:MegaV-A-HR unit:MegaW-HR unit:FT-PDL ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#FlowShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:OZ_VOL_US-PER-SEC unit:QT_US-PER-DAY unit:QT_UK-PER-MIN unit:BU_US_DRY-PER-HR unit:MilliL-PER-DAY unit:GAL_US-PER-MIN unit:PK_US_DRY-PER-DAY unit:BBL_US-PER-DAY unit:GAL_UK-PER-DAY unit:BBL_UK_PET-PER-MIN unit:OZ_VOL_UK-PER-SEC unit:PK_UK-PER-HR unit:L-PER-MIN unit:CentiM3-PER-DAY unit:OZ_VOL_US-PER-HR unit:GAL_US-PER-SEC unit:BU_UK-PER-SEC unit:CentiM3-PER-MIN unit:PK_US_DRY-PER-MIN unit:M3-PER-HR unit:BU_UK-PER-MIN unit:OZ_VOL_US-PER-MIN unit:PINT_UK-PER-DAY unit:OZ_VOL_UK-PER-DAY unit:BBL_UK_PET-PER-HR unit:DeciM3-PER-MIN unit:GI_UK-PER-MIN unit:BBL_US_PET-PER-SEC unit:PINT_US-PER-HR unit:PINT_US-PER-SEC unit:QT_US-PER-MIN unit:YD3-PER-DAY unit:IN3-PER-HR unit:PINT_UK-PER-HR unit:YD3-PER-MIN unit:BU_UK-PER-DAY unit:OZ_VOL_US-PER-DAY unit:DeciM3-PER-DAY unit:MilliL-PER-HR unit:PINT_US-PER-DAY unit:PINT_UK-PER-SEC unit:IN3-PER-SEC unit:BU_US_DRY-PER-MIN unit:CentiM3-PER-HR unit:QT_UK-PER-SEC unit:QT_UK-PER-DAY unit:GAL_US-PER-HR unit:GAL_UK-PER-HR unit:PK_UK-PER-MIN unit:L-PER-SEC unit:BU_US_DRY-PER-DAY unit:GAL_UK-PER-MIN unit:QT_UK-PER-HR unit:YD3-PER-HR unit:YD3-PER-SEC unit:PK_UK-PER-DAY unit:GI_US-PER-MIN unit:DeciM3-PER-SEC unit:L-PER-DAY unit:CentiM3-PER-SEC unit:PINT_US-PER-MIN unit:M3-PER-DAY unit:L-PER-HR unit:BU_US_DRY-PER-SEC unit:FT3-PER-MIN unit:GI_US-PER-HR unit:M3-PER-MIN unit:FT3-PER-SEC unit:PK_US_DRY-PER-HR unit:FT3-PER-DAY unit:BBL_US-PER-MIN unit:PK_US_DRY-PER-SEC unit:GI_UK-PER-DAY unit:GI_US-PER-SEC unit:GAL_UK-PER-SEC unit:BBL_UK_PET-PER-DAY unit:GI_US-PER-DAY unit:BBL_US_PET-PER-HR unit:FT3-PER-HR unit:GI_UK-PER-HR unit:IN3-PER-MIN unit:BBL_UK_PET-PER-SEC unit:QT_US-PER-SEC unit:MilliL-PER-MIN unit:QT_US-PER-HR unit:PINT_UK-PER-MIN unit:PK_UK-PER-SEC unit:MilliL-PER-SEC unit:OZ_VOL_UK-PER-MIN unit:GAL_US-PER-DAY unit:BU_UK-PER-HR unit:M3-PER-SEC unit:OZ_VOL_UK-PER-HR unit:GI_UK-PER-SEC unit:KiloL-PER-HR unit:DeciM3-PER-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Flow_LossShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:M3-PER-SEC ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Formaldehyde_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#FrequencyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PER-WK unit:MegaHZ unit:PER-MIN unit:PERCENT-PER-DAY unit:NUM-PER-HR unit:NUM-PER-YR unit:GigaHZ unit:SAMPLE-PER-SEC unit:KiloHZ unit:PER-MO unit:PER-DAY unit:PERCENT-PER-HR unit:PER-SEC unit:PERCENT-PER-WK unit:TeraHZ unit:PER-YR unit:PER-HR unit:failures-in-time unit:HZ unit:PER-MilliSEC unit:NUM-PER-SEC unit:PlanckFrequency ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#GrainsOfMoistureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:GRAIN ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#IlluminanceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:LUX unit:FC unit:Phot ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#InferInverseProperties> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
?o ?invP $this .
$this ?p ?o .
}
WHERE {
  { $this ?p ?o } UNION { ?o ?invP $this } .
  ?p owl:inverseOf ?invP .
}
			"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass brick:Entity .

<https://brickschema.org/schema/BrickShape#InferSymmetricProperties> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
?o ?prop $this .
$this ?prop ?o .
}
WHERE {
  { $this ?prop ?o } UNION { ?o ?prop $this } .
  ?prop a owl:SymmetricProperty .
}
			"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass brick:Entity .

<https://brickschema.org/schema/BrickShape#IrradianceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:W-PER-M2 unit:W-PER-FT2 unit:W-PER-CentiM2 unit:W-PER-IN2 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#LevelShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroM unit:IN unit:KiloM unit:YD unit:M unit:CentiM unit:FT unit:MilliM unit:DeciM ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Linear_SpeedShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:FT-PER-SEC unit:MI-PER-HR unit:KiloM-PER-SEC unit:M-PER-SEC unit:KiloM-PER-HR unit:FT-PER-HR unit:MI-PER-SEC unit:M-PER-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#LuminanceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:LA unit:CP unit:STILB unit:CD unit:CD-PER-M2 unit:CD-PER-IN2 unit:FT-LA unit:LM ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Luminous_FluxShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:LM ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Luminous_IntensityShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:CP unit:CD ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#MassShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:LunarMass unit:PlanckMass unit:GM unit:OZ_TROY unit:Pennyweight unit:TON_Metric unit:TON_SHORT unit:EarthMass unit:GRAIN unit:Quarter_UK unit:CentiGM unit:DeciTON_Metric unit:DeciTONNE unit:KiloTON_Metric unit:DWT unit:LB unit:PicoGM unit:TON_Assay unit:U unit:CARAT unit:MilliGM unit:Stone_UK unit:HectoGM unit:TONNE unit:DeciGM unit:CWT_LONG unit:KiloTONNE unit:OZ unit:TON_UK unit:SLUG unit:Da unit:MegaGM unit:TON_US unit:Hundredweight_US unit:DecaGM unit:KiloGM unit:SolarMass unit:AMU unit:DRAM_UK unit:DRAM_US unit:NanoGM unit:MicroGM unit:Hundredweight_UK unit:CWT_SHORT unit:LB_T unit:TON_LONG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#MeterRelationshipRule> a sh:NodeShape ;
    sh:property [ sh:message "Relationship between meters is hasSubMeter/isSubMeterOf, not meters/isMeteredBy"^^xsd:string ;
            sh:path brick:isMeteredBy ;
            sh:qualifiedMaxCount 0 ;
            sh:qualifiedValueShape [ sh:class brick:Meter ] ],
        [ sh:message "Relationship between meters is hasSubMeter/isSubMeterOf, not meters/isMeteredBy"^^xsd:string ;
            sh:path brick:meters ;
            sh:qualifiedMaxCount 0 ;
            sh:qualifiedValueShape [ sh:class brick:Meter ] ] ;
    sh:targetClass brick:Meter .

<https://brickschema.org/schema/BrickShape#Methane_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#NO2_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#OWLEquivalentClassRule1> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
    ?s a ?t2 .
} WHERE {
    ?s a $this .
    { ?t2 owl:equivalentClass $this }
    UNION
    { $this owl:equivalentClass ?t2 }
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetSubjectsOf owl:equivalentClass .

<https://brickschema.org/schema/BrickShape#OWLEquivalentClassRule2> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
    ?s a ?t2 .
} WHERE {
    ?s a $this .
    { ?t2 owl:equivalentClass $this }
    UNION
    { $this owl:equivalentClass ?t2 }
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetObjectsOf owl:equivalentClass .

<https://brickschema.org/schema/BrickShape#Occupancy_PercentageShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PERCENT ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#OneLastKnownValuePerEntity> a sh:NodeShape ;
    sh:property [ sh:maxCount 1 ;
            sh:message "Only one last known value per entity is allowed"^^xsd:string ;
            sh:path brick:lastKnownValue ] ;
    sh:targetSubjectsOf brick:lastKnownValue .

<https://brickschema.org/schema/BrickShape#Operative_TemperatureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:DEG_C unit:K unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Ozone_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PM10_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PM1_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PM2.5_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Peak_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MilliW unit:W unit:MegaW unit:KiloW ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Phasor_AngleShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Phasor_MagnitudeShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PositionShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PERCENT ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Power_FactorShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:UNITLESS ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PrecipitationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroM unit:IN unit:KiloM unit:YD unit:M unit:CentiM unit:FT unit:MilliM unit:DeciM ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#RDFSRangeRule> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
    ?val a ?shape .
} WHERE {
    $this rdfs:range ?shape .
    ?shape a sh:NodeShape .
    ?ent $this ?val .
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetSubjectsOf rdfs:range .

<https://brickschema.org/schema/BrickShape#RDFSSubPropertyOfRule> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
    ?s ?super ?o .
} WHERE {
    $this rdfs:subPropertyOf ?super .
    ?s $this ?o .
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetSubjectsOf rdfs:subPropertyOf .

<https://brickschema.org/schema/BrickShape#RadianceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:W-PER-M2-SR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Radiant_TemperatureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:DEG_C unit:K unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Radon_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:BQ-PER-M3 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Reactive_EnergyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:KiloV-A_Reactive-HR unit:V-A_Reactive-HR unit:MegaV-A_Reactive-HR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Reactive_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:V-A_Reactive unit:MegaV-A_Reactive unit:KiloV-A_Reactive ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Real_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MegaV-A unit:V-A unit:KiloV-A ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Relative_HumidityShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:UNITLESS ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Rotational_SpeedShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:RAD-PER-MIN unit:RAD-PER-HR unit:DEG-PER-SEC unit:DEG-PER-HR unit:RAD-PER-SEC unit:DEG-PER-MIN ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Solar_IrradianceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:W-PER-M2 unit:W-PER-FT2 unit:W-PER-CentiM2 unit:W-PER-IN2 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Solar_RadianceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:W-PER-M2-SR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#SpeedShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:RAD-PER-MIN unit:RAD-PER-HR unit:FT3-PER-MIN-FT2 unit:FT-PER-SEC unit:MI-PER-HR unit:HZ-M unit:MegaHZ-M unit:DEG-PER-MIN unit:M-PER-SEC unit:KiloM-PER-HR unit:DEG-PER-SEC unit:DEG-PER-HR unit:MI-PER-SEC unit:BFT unit:GigaHZ-M unit:KiloM-PER-SEC unit:GigaC-PER-M3 unit:FT-PER-HR unit:M-PER-HR unit:RAD-PER-SEC ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Static_PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#TVOC_ConcentrationShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:PPM unit:PPB unit:MicroGM-PER-M3 ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#TagInferenceRule> a sh:NodeShape ;
    sh:rule [ a sh:SPARQLRule ;
            sh:construct """
CONSTRUCT {
$this brick:hasTag ?tag .
} WHERE {
    $this rdf:type/rdfs:subClassOf* ?class .
    ?class brick:hasAssociatedTag ?tag .
}"""^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ] ;
    sh:targetClass brick:Entity .

<https://brickschema.org/schema/BrickShape#Thermal_EnergyShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:BTU_TH unit:KiloCAL_Mean unit:THM_EEC unit:J unit:MegaJ unit:CAL_TH unit:KiloCAL_TH unit:KiloCAL_IT unit:KiloJ unit:THM_US unit:N-M unit:BTU_MEAN unit:BTU_IT unit:CAL_MEAN unit:KiloCAL unit:CAL_15_DEG_C unit:CAL_IT unit:GigaJ ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Thermal_PowerShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MilliW unit:BTU_IT unit:KiloW unit:MegaW unit:W ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#TimeShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:MO_MeanGREGORIAN unit:SH unit:MegaYR unit:MicroSEC unit:MilliH-PER-OHM unit:MO unit:MO_MeanJulian unit:POISE-PER-BAR unit:DAY_Sidereal unit:KiloSEC unit:HR_Sidereal unit:YR unit:PlanckTime unit:MicroH-PER-KiloOHM unit:NanoSEC unit:YR_TROPICAL unit:MIN unit:PA-SEC-PER-BAR unit:H-PER-OHM unit:CentiPOISE-PER-BAR unit:MIN_Sidereal unit:SEC unit:MilliH-PER-KiloOHM unit:YR_Common unit:PicoSEC unit:YR_Sidereal unit:DAY unit:WK unit:HR unit:H-PER-KiloOHM unit:MO_Synodic unit:MilliPA-SEC-PER-BAR unit:MicroH-PER-OHM unit:MilliSEC ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#TimeseriesReferenceOnPointsConstraint> a sh:NodeShape ;
    sh:sparql [ a sh:SPARQLConstraint ;
            sh:message "Only Brick Points can have external timeseries references"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
            SELECT $this
            WHERE {
                $this ref:hasExternalReference ?ref .
                ?ref rdf:type ref:TimeseriesReference .
                FILTER NOT EXISTS { $this rdf:type/rdfs:subClassOf* brick:Point }
            }
        """^^xsd:string ] ;
    sh:targetSubjectsOf <https://brickschema.org/schema/Brick/ref#hasExternalReference> .

<https://brickschema.org/schema/BrickShape#TorqueShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:KiloN-M unit:N-M unit:N-CentiM unit:J unit:DeciN-M unit:OZ_F-IN unit:LB_F-FT unit:MegaN-M unit:DYN-CentiM unit:MicroN-M unit:KiloGM_F-M unit:LB_F-IN unit:MilliN-M unit:KiloGM_F-PER-M unit:CentiN-M ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Velocity_PressureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:N-PER-CentiM2 unit:MicroATM unit:MicroTORR unit:N-PER-MilliM2 unit:KIP_F-PER-IN2 unit:KiloGM_F-PER-M2 unit:HectoBAR unit:MegaBAR unit:KiloLB_F-PER-IN2 unit:DecaPA unit:KiloGM_F-PER-MilliM2 unit:IN_HG unit:DYN-PER-CentiM2 unit:KiloGM-PER-M-SEC2 unit:FT_H2O unit:ATM_T unit:PA unit:KiloGM_F-PER-CentiM2 unit:FT_HG unit:CM_H2O unit:MilliBAR unit:MicroPA unit:MilliPA unit:BARAD unit:CentiM_H2O unit:MilliM_H2O unit:MegaPA unit:MilliM_HGA unit:HectoPA unit:PSI unit:CentiBAR unit:CentiM_HG unit:GigaPA unit:BARYE unit:PlanckPressure unit:DeciBAR unit:LB_F-PER-IN2 unit:N-PER-M2 unit:KiloBAR unit:ATM unit:MicroBAR unit:MilliM_HG unit:PDL-PER-FT2 unit:KiloPA unit:TORR unit:IN_H2O unit:LB_F-PER-FT2 unit:KiloPA_A unit:GM_F-PER-CentiM2 unit:MilliTORR unit:BAR ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#VirtualMeterRule> a sh:NodeShape ;
    sh:sparql [ a sh:SPARQLConstraint ;
            sh:message "Only meters can have the isVirtualMeter property be true"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
            SELECT $this WHERE {
                $this brick:isVirtualMeter/brick:value true .
                FILTER NOT EXISTS { $this rdf:type/rdfs:subClassOf* brick:Meter } .
            }
        """^^xsd:string ] ;
    sh:targetClass brick:Entity .

<https://brickschema.org/schema/BrickShape#Voltage_AngleShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Voltage_ImbalanceShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:PERCENT ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#Wet_Bulb_TemperatureShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:in ( unit:DEG_C unit:K unit:DEG_F ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ],
        [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ] .

<https://brickschema.org/schema/BrickShape#Wind_DirectionShape> a owl:Class,
        sh:NodeShape ;
    rdfs:subClassOf <https://brickschema.org/schema/BrickShape#ValueShape> ;
    sh:property [ a sh:PropertyShape ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:or <https://brickschema.org/schema/BrickShape#NumericValue> ;
            sh:path brick:value ],
        [ a sh:PropertyShape ;
            sh:in ( unit:MicroRAD unit:MilliARCSEC unit:RAD unit:GON unit:MilliRAD unit:REV unit:MIL unit:GRAD unit:ARCMIN unit:ARCSEC unit:DEG ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path brick:hasUnit ] .

<https://brickschema.org/schema/BrickShape#domain_shape_isMeteredBy> a sh:NodeShape ;
    sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Location ] [ sh:class brick:Collection ] ) ;
    sh:targetSubjectsOf brick:isMeteredBy .

<https://brickschema.org/schema/BrickShape#hasHotColdDeck> a sh:NodeShape ;
    sh:property [ sh:message "DDAHU must have a brick:Cold_Deck"^^xsd:string ;
            sh:path brick:hasPart ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class brick:Cold_Deck ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ sh:message "DDAHU must have a brick:Hot_Deck"^^xsd:string ;
            sh:path brick:hasPart ;
            sh:qualifiedMaxCount 1 ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class brick:Hot_Deck ] ;
            sh:qualifiedValueShapesDisjoint true ] ;
    sh:targetClass brick:DDAHU .

<https://brickschema.org/schema/BrickShape#hasLocationShape> a sh:NodeShape ;
    sh:message "Points are a virtual concept and always belonging to a physical device, represented by Equipment. Thus, it cannot have a Location alone."^^xsd:string ;
    sh:not [ sh:class brick:Point ] ;
    sh:targetSubjectsOf brick:hasLocation .

<https://brickschema.org/schema/BrickShape#hasQuantity> a sh:NodeShape ;
    sh:class qudt:QuantityKind ;
    sh:targetObjectsOf brick:hasQuantity .

<https://brickschema.org/schema/BrickShape#hasSubstance> a sh:NodeShape ;
    sh:class brick:Substance ;
    sh:targetObjectsOf brick:hasSubstance .

<https://brickschema.org/schema/BrickShape#range_shape_meters> a sh:NodeShape ;
    sh:property [ sh:minCount 1 ;
            sh:or ( [ sh:class brick:Equipment ] [ sh:class brick:Location ] [ sh:class brick:Collection ] ) ;
            sh:path brick:meters ] ;
    sh:targetSubjectsOf brick:meters .

<https://w3id.org/rec> rdfs:label "RealEstateCore"^^xsd:string ;
    owl:versionInfo "4.0"^^xsd:string .

rec:substance a owl:AnnotationProperty ;
    rdfs:label "substance"^^xsd:string ;
    rdfs:domain rec:feeds,
        rec:isFedBy ;
    rdfs:range [ a rdfs:Datatype ;
            owl:oneOf ( "ACElec"^^xsd:string "Air"^^xsd:string "BlowdownWater"^^xsd:string "ChilledWater"^^xsd:string "ColdDomesticWater"^^xsd:string "Condensate"^^xsd:string "CondenserWater"^^xsd:string "DCElec"^^xsd:string "Diesel"^^xsd:string "DriveElec"^^xsd:string "Ethernet"^^xsd:string "ExhaustAir"^^xsd:string "Freight"^^xsd:string "FuelOil"^^xsd:string "Gasoline"^^xsd:string "GreaseExhaustAir"^^xsd:string "HotDomesticWater"^^xsd:string "HotWater"^^xsd:string "IrrigationWater"^^xsd:string "Light"^^xsd:string "MakeupWater"^^xsd:string "NaturalGas"^^xsd:string "NonPotableDomesticWater"^^xsd:string "OutsideAir"^^xsd:string "People"^^xsd:string "Propane"^^xsd:string "RecircHotDomesticWater"^^xsd:string "Refrig"^^xsd:string "ReturnAir"^^xsd:string "SprinklerWater"^^xsd:string "Steam"^^xsd:string "StormDrainage"^^xsd:string "SupplyAir"^^xsd:string "TransferAir"^^xsd:string "WasteVentDrainage"^^xsd:string "Water"^^xsd:string ) ] .

ns4:description a ns4:StandardProperty,
        owl:DatatypeProperty ;
    ns4:propertyEnum ns4:PropertyIdentifier-description ;
    ns4:propertyName "description"^^xsd:string ;
    ns4:propertyRef ns4:Description ;
    skos:definition "The content of the description field of the BACnet object."^^xsd:string .

ns4:device-identifier a rdf:Property ;
    rdfs:label "Device identifier"^^xsd:string ;
    rdfs:comment "The Object_Identifier property of the device object within the BACnet device.  See ASHRAE 135-2024 Clause 12.11.1."^^xsd:string .

ns4:device-name a rdf:Property ;
    rdfs:label "Device name"^^xsd:string ;
    rdfs:comment "The name of the BACnet device being referenced, more formally the Object_Name property of the device object within the BACnet device.  See ASHRAE 135-2024 Clause 12.11.2."^^xsd:string .

ns4:object-type a ns4:StandardProperty,
        rdf:Property,
        owl:DatatypeProperty ;
    rdfs:label "object-type"^^xsd:string ;
    ns4:propertyEnum ns4:PropertyIdentifier-object-type ;
    ns4:propertyName "object-type"^^xsd:string ;
    ns4:propertyOf ns4:Object ;
    ns4:propertyRef ns4:Object_Type ;
    rdfs:subPropertyOf ns4:ReadableProperty ;
    skos:definition "The type of the BACnet object"^^xsd:string .

ns4:objectOf a owl:ObjectProperty ;
    rdfs:label "objectOf"^^xsd:string ;
    rdfs:comment "The 'parent' BACnet device that hosts this BACnet object."^^xsd:string ;
    rdfs:range ns4:BACnetDevice .

ns4:priority-for-writing a rdf:Property ;
    rdfs:label "Priority for writing"^^xsd:string ;
    rdfs:comment """This parameter shall be an integer in the range 1..16, which indicates the priority assigned to the WriteProperty service. If an attempt
is made to write to a commandable property without specifying the bacnet:priority-for-writing, a default priority of 16 (the lowest priority) shall
be assumed. If an attempt is made to write to a property that is not commandable with a specified priority, the priority shall be
ignored.  See ASHRAE 135-2024 Clause 15.9.1.1.5."""^^xsd:string .

ns4:property-array-index a rdf:Property ;
    rdfs:label "Property array index"^^xsd:string ;
    rdfs:comment """If the property identified is of datatype array, this optional property of type Unsigned shall indicate the array index of
the element of the `Property` referenced by the ReadProperty service or the Read Access Specification of the ReadPropertyMultiple service. If the bacnet:property-array-index is omitted, this shall mean that the entire
array shall be referenced.  See ASHRAE 135-2024 Clause 15.5.1.1.3 and Clause 15.7.1.1.1."""^^xsd:string .

ns4:property-identifier a rdf:Property ;
    rdfs:label "Property identifier"^^xsd:string ;
    rdfs:comment "The Object_Identifier `Property` of the object being referenced.  For example, for the object identifier of an Analog Value Object, see ASHRAE 135-2024 Clause 12.4.1."^^xsd:string .

s223:12V-12V-Neg a s223:12V-12V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 12 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-12V ;
    s223:hasDCNegativeVoltage s223:Voltage-12V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "12V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-12V .

s223:12V-12V-Pos a s223:12V-12V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 12 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-12V ;
    s223:hasDCPositiveVoltage s223:Voltage-12V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "12V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-12V .

s223:12V-6V-Neg-6V-Pos a s223:12V-6V-Neg-6V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 6 VDC and positive 6 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-12V ;
    s223:hasDCNegativeVoltage s223:Voltage-6V ;
    s223:hasDCPositiveVoltage s223:Voltage-6V ;
    rdfs:comment "6V-Neg-6V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-12V .

s223:24V-12V-Neg-12V-Pos a s223:24V-12V-Neg-12V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 12 VDC and positive 12 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-24V ;
    s223:hasDCNegativeVoltage s223:Voltage-12V ;
    s223:hasDCPositiveVoltage s223:Voltage-12V ;
    rdfs:comment "12V-Neg-12V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-24V .

s223:24V-24V-Neg a s223:24V-24V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 24 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-24V ;
    s223:hasDCNegativeVoltage s223:Voltage-24V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "24V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-24V .

s223:24V-24V-Pos a s223:24V-24V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 24 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-24V ;
    s223:hasDCPositiveVoltage s223:Voltage-24V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "24V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-24V .

s223:380V-190V-Neg-190V-Pos a s223:380V-190V-Neg-190V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 190 VDC and positive 190 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-380V ;
    s223:hasDCNegativeVoltage s223:Voltage-190V ;
    s223:hasDCPositiveVoltage s223:Voltage-190V ;
    rdfs:comment "190V-Neg-190V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-380V .

s223:380V-380V-Neg a s223:380V-380V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 380 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-380V ;
    s223:hasDCNegativeVoltage s223:Voltage-380V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "380V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-380V .

s223:380V-380V-Pos a s223:380V-380V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 380 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-380V ;
    s223:hasDCPositiveVoltage s223:Voltage-380V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "380V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-380V .

s223:48V-24V-Neg-24V-Pos a s223:48V-24V-Neg-24V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 24 VDC and positive 24 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-48V ;
    s223:hasDCNegativeVoltage s223:Voltage-24V ;
    s223:hasDCPositiveVoltage s223:Voltage-24V ;
    rdfs:comment "24V-Neg-24V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-48V .

s223:48V-48V-Neg a s223:48V-48V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 48 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-48V ;
    s223:hasDCNegativeVoltage s223:Voltage-48V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "48V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-48V .

s223:48V-48V-Pos a s223:48V-48V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 48 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-48V ;
    s223:hasDCPositiveVoltage s223:Voltage-48V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "48V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-48V .

s223:5V-2.5V-Neg-2.5V-Pos a s223:5V-2.5V-Neg-2.5V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 2.5 VDC and positive 2.5 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-5V ;
    s223:hasDCNegativeVoltage s223:Voltage-2.5V ;
    s223:hasDCPositiveVoltage s223:Voltage-2.5V ;
    rdfs:comment "2.5V-Neg-2.5V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-5V .

s223:5V-5V-Neg a s223:5V-5V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 5 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-5V ;
    s223:hasDCNegativeVoltage s223:Voltage-5V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "5V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-5V .

s223:5V-5V-Pos a s223:5V-5V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 5 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-5V ;
    s223:hasDCPositiveVoltage s223:Voltage-5V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "5V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-5V .

s223:6V-3V-Neg-3V-Pos a s223:6V-3V-Neg-3V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 3 VDC and positive 3 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-6V ;
    s223:hasDCNegativeVoltage s223:Voltage-3V ;
    s223:hasDCPositiveVoltage s223:Voltage-3V ;
    rdfs:comment "3V-Neg-3V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-6V .

s223:6V-6V-Neg a s223:6V-6V-Neg,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Negative 6 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-6V ;
    s223:hasDCNegativeVoltage s223:Voltage-6V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "6V-Neg"^^xsd:string ;
    rdfs:subClassOf s223:DC-6V .

s223:6V-6V-Pos a s223:6V-6V-Pos,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Positive 6 VDC electricity"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-6V ;
    s223:hasDCPositiveVoltage s223:Voltage-6V ;
    s223:hasDCZeroVoltage s223:Voltage-0V ;
    rdfs:comment "6V-Pos"^^xsd:string ;
    rdfs:subClassOf s223:DC-6V .

s223:AC-10000VLL-1Ph-60Hz a s223:AC-10000VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-10000VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-10000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-10000VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-10000VLL-3Ph-60Hz a s223:AC-10000VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-10000VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-10000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-10000VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-10000VLL-5770VLN-1Ph-60Hz a s223:AC-10000VLL-5770VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-10000VLL-5770VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-10000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-5770V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-10000VLL-5770VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-10000VLL-5770VLN-3Ph-60Hz a s223:AC-10000VLL-5770VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-10000VLL-5770VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-10000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-5770V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-10000VLL-5770VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-110VLN-1Ph-50Hz a s223:AC-110VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-110VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-110V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-110VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-120VLN-1Ph-60Hz a s223:AC-120VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-120VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-120VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-127VLN-1Ph-50Hz a s223:AC-127VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-127VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-127V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-127VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-139VLN-1Ph-50Hz a s223:AC-139VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-139VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-139V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-139VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-1730VLN-1Ph-60Hz a s223:AC-1730VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-1730VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-1730V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-1730VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-1900VLN-1Ph-60Hz a s223:AC-1900VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-1900VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-1900V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-1900VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-190VLL-110VLN-1Ph-50Hz a s223:AC-190VLL-110VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-190VLL-110VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-190V ;
    s223:hasACLineNeutralVoltage s223:Voltage-110V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-190VLL-110VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-190VLL-110VLN-3Ph-50Hz a s223:AC-190VLL-110VLN-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-190VLL-110VLN-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-190V ;
    s223:hasACLineNeutralVoltage s223:Voltage-110V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-190VLL-110VLN-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-190VLL-1Ph-50Hz a s223:AC-190VLL-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-190VLL-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-190V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-190VLL-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-190VLL-3Ph-50Hz a s223:AC-190VLL-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-190VLL-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-190V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-190VLL-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-208VLL-120VLN-1Ph-60Hz a s223:AC-208VLL-120VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-208VLL-120VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-208V ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-208VLL-120VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-208VLL-120VLN-3Ph-60Hz a s223:AC-208VLL-120VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-208VLL-120VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-208V ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-208VLL-120VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-208VLL-1Ph-60Hz a s223:AC-208VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-208VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-208V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-208VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-208VLL-3Ph-60Hz a s223:AC-208VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-208VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-208V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-208VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-208VLN-1Ph-60Hz a s223:AC-208VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-208VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-208V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-208VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-219VLN-1Ph-60Hz a s223:AC-219VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-219VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-219V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-219VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-220VLL-127VLN-1Ph-50Hz a s223:AC-220VLL-127VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-220VLL-127VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-220V ;
    s223:hasACLineNeutralVoltage s223:Voltage-127V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-220VLL-127VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-220VLL-127VLN-3Ph-50Hz a s223:AC-220VLL-127VLN-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-220VLL-127VLN-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-220V ;
    s223:hasACLineNeutralVoltage s223:Voltage-127V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-220VLL-127VLN-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-220VLL-1Ph-50Hz a s223:AC-220VLL-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-220VLL-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-220V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-220VLL-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-220VLL-3Ph-50Hz a s223:AC-220VLL-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-220VLL-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-220V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-220VLL-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-230VLN-1Ph-50Hz a s223:AC-230VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-230VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-230V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-230VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-2400VLN-1Ph-60Hz a s223:AC-2400VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-2400VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-2400V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-2400VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-120VLN-1Ph-60Hz a s223:AC-240VLL-120VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-120VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLL-120VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-139VLN-1Ph-50Hz a s223:AC-240VLL-139VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-139VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasACLineNeutralVoltage s223:Voltage-139V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLL-139VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-139VLN-3Ph-50Hz a s223:AC-240VLL-139VLN-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-139VLN-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasACLineNeutralVoltage s223:Voltage-139V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-240VLL-139VLN-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-1Ph-50Hz a s223:AC-240VLL-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLL-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-1Ph-60Hz a s223:AC-240VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-208VLN-120VLN-1Ph-60Hz a s223:AC-240VLL-208VLN-120VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-208VLN-120VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V,
        s223:Voltage-208V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLL-208VLN-120VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-208VLN-120VLN-3Ph-60Hz a s223:AC-240VLL-208VLN-120VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-208VLN-120VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasACLineNeutralVoltage s223:Voltage-120V,
        s223:Voltage-208V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-240VLL-208VLN-120VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-3Ph-50Hz a s223:AC-240VLL-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-240VLL-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLL-3Ph-60Hz a s223:AC-240VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-240VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-240VLN-1Ph-50Hz a s223:AC-240VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-240VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-240VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-24VLN-1Ph-50Hz a s223:AC-24VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-24VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-24V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-24VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-24VLN-1Ph-60Hz a s223:AC-24VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-24VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-24V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-24VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3000VLL-1730VLN-1Ph-60Hz a s223:AC-3000VLL-1730VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3000VLL-1730VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-1730V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3000VLL-1730VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3000VLL-1730VLN-3Ph-60Hz a s223:AC-3000VLL-1730VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3000VLL-1730VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-1730V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-3000VLL-1730VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3000VLL-1Ph-60Hz a s223:AC-3000VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3000VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3000VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3000VLL-3Ph-60Hz a s223:AC-3000VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3000VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-3000VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3300VLL-1900VLN-1Ph-60Hz a s223:AC-3300VLL-1900VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3300VLL-1900VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3300V ;
    s223:hasACLineNeutralVoltage s223:Voltage-1900V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3300VLL-1900VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3300VLL-1900VLN-3Ph-60Hz a s223:AC-3300VLL-1900VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3300VLL-1900VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3300V ;
    s223:hasACLineNeutralVoltage s223:Voltage-1900V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-3300VLL-1900VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3300VLL-1Ph-60Hz a s223:AC-3300VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3300VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3300V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3300VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3300VLL-3Ph-60Hz a s223:AC-3300VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3300VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-3300V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-3300VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3460VLN-1Ph-60Hz a s223:AC-3460VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3460VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-3460V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3460VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-347VLN-1Ph-60Hz a s223:AC-347VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-347VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-347V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-347VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-380VLL-1Ph-60Hz a s223:AC-380VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-380VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-380V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-380VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-380VLL-219VLN-1Ph-60Hz a s223:AC-380VLL-219VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-380VLL-219VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-380V ;
    s223:hasACLineNeutralVoltage s223:Voltage-219V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-380VLL-219VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-380VLL-219VLN-3Ph-60Hz a s223:AC-380VLL-219VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-380VLL-219VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-380V ;
    s223:hasACLineNeutralVoltage s223:Voltage-219V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-380VLL-219VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-380VLL-3Ph-60Hz a s223:AC-380VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-380VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-380V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-380VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-3810VLN-1Ph-60Hz a s223:AC-3810VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-3810VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-3810V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-3810VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-400VLL-1Ph-50Hz a s223:AC-400VLL-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-400VLL-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-400V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-400VLL-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-400VLL-230VLN-1Ph-50Hz a s223:AC-400VLL-230VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-400VLL-230VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-400V ;
    s223:hasACLineNeutralVoltage s223:Voltage-230V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-400VLL-230VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-400VLL-230VLN-3Ph-50Hz a s223:AC-400VLL-230VLN-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-400VLL-230VLN-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-400V ;
    s223:hasACLineNeutralVoltage s223:Voltage-230V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-400VLL-230VLN-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-400VLL-3Ph-50Hz a s223:AC-400VLL-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-400VLL-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-400V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-400VLL-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-415VLL-1Ph-50Hz a s223:AC-415VLL-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-415VLL-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-415V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-415VLL-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-415VLL-240VLN-1Ph-50Hz a s223:AC-415VLL-240VLN-1Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-415VLL-240VLN-1Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-415V ;
    s223:hasACLineNeutralVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-415VLL-240VLN-1Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-415VLL-240VLN-3Ph-50Hz a s223:AC-415VLL-240VLN-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-415VLL-240VLN-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-415V ;
    s223:hasACLineNeutralVoltage s223:Voltage-240V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-415VLL-240VLN-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-415VLL-3Ph-50Hz a s223:AC-415VLL-3Ph-50Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-415VLL-3Ph-50Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-415V ;
    s223:hasFrequency s223:Frequency-50Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-415VLL-3Ph-50Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-4160VLL-1Ph-60Hz a s223:AC-4160VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-4160VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-4160V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-4160VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-4160VLL-2400VLN-1Ph-60Hz a s223:AC-4160VLL-2400VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-4160VLL-2400VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-4160V ;
    s223:hasACLineNeutralVoltage s223:Voltage-2400V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-4160VLL-2400VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-4160VLL-2400VLN-3Ph-60Hz a s223:AC-4160VLL-2400VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-4160VLL-2400VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-4160V ;
    s223:hasACLineNeutralVoltage s223:Voltage-2400V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-4160VLL-2400VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-4160VLL-3Ph-60Hz a s223:AC-4160VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-4160VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-4160V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-4160VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-480VLL-1Ph-60Hz a s223:AC-480VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-480VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-480V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-480VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-480VLL-277VLN-1Ph-60Hz a s223:AC-480VLL-277VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-480VLL-277VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-480V ;
    s223:hasACLineNeutralVoltage s223:Voltage-277V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-480VLL-277VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-480VLL-277VLN-3Ph-60Hz a s223:AC-480VLL-277VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-480VLL-277VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-480V ;
    s223:hasACLineNeutralVoltage s223:Voltage-277V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-480VLL-277VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-480VLL-3Ph-60Hz a s223:AC-480VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-480VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-480V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-480VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-5770VLN-1Ph-60Hz a s223:AC-5770VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-5770VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineNeutralVoltage s223:Voltage-5770V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-5770VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6000VLL-1Ph-60Hz a s223:AC-6000VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6000VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-6000VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6000VLL-3460VLN-1Ph-60Hz a s223:AC-6000VLL-3460VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6000VLL-3460VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-3460V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-6000VLL-3460VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6000VLL-3460VLN-3Ph-60Hz a s223:AC-6000VLL-3460VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6000VLL-3460VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6000V ;
    s223:hasACLineNeutralVoltage s223:Voltage-3460V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-6000VLL-3460VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6000VLL-3Ph-60Hz a s223:AC-6000VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6000VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6000V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-6000VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-600VLL-1Ph-60Hz a s223:AC-600VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-600VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-600V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-600VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-600VLL-347VLN-1Ph-60Hz a s223:AC-600VLL-347VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-600VLL-347VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-600V ;
    s223:hasACLineNeutralVoltage s223:Voltage-347V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-600VLL-347VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-600VLL-347VLN-3Ph-60Hz a s223:AC-600VLL-347VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-600VLL-347VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-600V ;
    s223:hasACLineNeutralVoltage s223:Voltage-347V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-600VLL-347VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-600VLL-3Ph-60Hz a s223:AC-600VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-600VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-600V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-600VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6600VLL-1Ph-60Hz a s223:AC-6600VLL-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6600VLL-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6600V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-6600VLL-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6600VLL-3810VLN-1Ph-60Hz a s223:AC-6600VLL-3810VLN-1Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6600VLL-3810VLN-1Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6600V ;
    s223:hasACLineNeutralVoltage s223:Voltage-3810V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-SinglePhase ;
    rdfs:comment "`AC-6600VLL-3810VLN-1Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6600VLL-3810VLN-3Ph-60Hz a s223:AC-6600VLL-3810VLN-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6600VLL-3810VLN-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6600V ;
    s223:hasACLineNeutralVoltage s223:Voltage-3810V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-6600VLL-3810VLN-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AC-6600VLL-3Ph-60Hz a s223:AC-6600VLL-3Ph-60Hz,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "AC-6600VLL-3Ph-60Hz"^^xsd:string ;
    s223:hasACLineLineVoltage s223:Voltage-6600V ;
    s223:hasFrequency s223:Frequency-60Hz ;
    s223:hasNumberOfElectricalPhases s223:NumberOfElectricalPhases-ThreePhase ;
    rdfs:comment "`AC-6600VLL-3Ph-60Hz`"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-AC .

s223:AirHeatExchanger a s223:Class,
        sh:NodeShape ;
    rdfs:label "Air heat exchanger"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that transfers heat from one air stream to another while keeping the two media separate."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `AirHeatExchanger` shall have no bidirectional connection points."^^xsd:string ;
            sh:message "s223: An `AirHeatExchanger` shall have no bidirectional connection points."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 0 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ;
                    sh:message "s223: An `AirHeatExchanger` shall have no bidirectional connection points."^^xsd:string ] ],
        [ rdfs:comment "An `AirHeatExchanger` shall have at least two outlets using the medium `Fluid-Air`, each paired with an inlet."^^xsd:string ;
            sh:message "s223: An `AirHeatExchanger` shall have at least two outlets using the medium `Fluid-Air`, each paired with an inlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:InletConnectionPoint ;
                                    sh:minCount 1 ;
                                    sh:path s223:pairedConnectionPoint ],
                                [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "An `AirHeatExchanger` shall have at least two inlets using the medium `Fluid-Air`, each paired with an outlet."^^xsd:string ;
            sh:message "s223: An `AirHeatExchanger` shall have at least two inlets using the medium `Fluid-Air`, each paired with an outlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Fluid-Air ;
                                    sh:path s223:hasMedium ],
                                [ sh:class s223:OutletConnectionPoint ;
                                    sh:minCount 1 ;
                                    sh:path s223:pairedConnectionPoint ] ] ] ] .

s223:Aspect-Alarm a s223:Aspect-Alarm,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Alarm"^^xsd:string ;
    rdfs:comment "The property value indicates whether an alarm condition is active or provides details about an active alarm."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-CatalogNumber a s223:Aspect-CatalogNumber,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Catalog number"^^xsd:string ;
    rdfs:comment "The property value is a number or other identifier of a product in a manufacturer’s catalog."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Deadband a s223:Aspect-Deadband,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Deadband"^^xsd:string ;
    rdfs:comment "The property value is a range around a setpoint where no control action is taken to avoid unnecessary corrections."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Fault a s223:Aspect-Fault,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Fault"^^xsd:string ;
    rdfs:comment "The property value is a fault indicator or code that signals a malfunction or issue with the system or equipment."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-HighLimit a s223:Aspect-HighLimit,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "High limit"^^xsd:string ;
    rdfs:comment "The property value is an upper threshold used in a control or alarm detection algorithm."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-LowLimit a s223:Aspect-LowLimit,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Low limit"^^xsd:string ;
    rdfs:comment "The property value is a lower threshold used in a control or alarm detection algorithm."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Manufacturer a s223:Aspect-Manufacturer,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Manufacturer"^^xsd:string ;
    rdfs:comment "The property value is a name or other identifier of the product’s manufacturer."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Maximum a s223:Aspect-Maximum,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Maximum"^^xsd:string ;
    rdfs:comment "The property value is a highest specified or observed value. (Examples: upper limit of the specified operating voltage range; maximum measured temperature.)"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Minimum a s223:Aspect-Minimum,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Minimum"^^xsd:string ;
    rdfs:comment "The property value is a lowest specified or observed value. (Examples: lower limit of the specified operating voltage range; minimum measured temperature.)"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Nominal a s223:Aspect-Nominal,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Nominal"^^xsd:string ;
    rdfs:comment "The property value is a value that is expected or desired under normal operating conditions, but may not reflect the actual value at all times. (Example: nominal voltage.)"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-OperatingMode a s223:Aspect-OperatingMode,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Operating mode"^^xsd:string ;
    rdfs:comment "The property value is the current intended mode of operation, such as 'Automatic', 'On', or 'Off'."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-OperatingStatus a s223:Aspect-OperatingStatus,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Operating status"^^xsd:string ;
    rdfs:comment "The property value is the current operational status of the system or equipment, such as 'Running,' 'Stopped,' or 'Maintenance Mode.'"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Rated a s223:Aspect-Rated,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Rated"^^xsd:string ;
    rdfs:comment "The property value indicates a limit for continuous safe operation set by the manufacturer, but may not reflect the actual value at all times. (Example: rated voltage.)"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-SerialNumber a s223:Aspect-SerialNumber,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Serial number"^^xsd:string ;
    rdfs:comment "The property value is the serial number assigned by the manufacturer to the system or equipment."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Setpoint a s223:Aspect-Setpoint,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Setpoint"^^xsd:string ;
    rdfs:comment "The property value is a target value for a control algorithm."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:Aspect-Threshold a s223:Aspect-Threshold,
        s223:Class,
        sh:NodeShape ;
    rdfs:label "Threshold"^^xsd:string ;
    rdfs:comment "The property value is a threshold used in a control algorithm."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Aspect .

s223:BACnetExternalReference a s223:Class,
        sh:NodeShape ;
    rdfs:label "BACnet external reference"^^xsd:string ;
    rdfs:comment "An `ExternalReference` that contains BACnet protocol parameter values necessary to associate a `Property` with a value."^^xsd:string ;
    rdfs:subClassOf s223:ExternalReference .

s223:Battery a s223:Class,
        sh:NodeShape ;
    rdfs:label "Battery"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that stores a defined amount of chemical energy that can be converted to electrical energy via a chemical process. This process, typically referred to as discharging, produces a specific electrical voltage and current."^^xsd:string ;
    rdfs:subClassOf s223:Equipment .

s223:Constituent-Ar a s223:Class,
        s223:Constituent-Ar,
        sh:NodeShape ;
    rdfs:label "Ar"^^xsd:string ;
    rdfs:comment "Argon"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-CH4 a s223:Class,
        s223:Constituent-CH4,
        sh:NodeShape ;
    rdfs:label "CH4"^^xsd:string ;
    rdfs:comment "Methane"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-CO a s223:Class,
        s223:Constituent-CO,
        sh:NodeShape ;
    rdfs:label "CO"^^xsd:string ;
    rdfs:comment "Carbon monoxide"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-H2S a s223:Class,
        s223:Constituent-H2S,
        sh:NodeShape ;
    rdfs:label "H2S"^^xsd:string ;
    rdfs:comment "Hydrogen sulfide"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-N2 a s223:Class,
        s223:Constituent-N2,
        sh:NodeShape ;
    rdfs:label "N2"^^xsd:string ;
    rdfs:comment "Nitrogen"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-NH3 a s223:Class,
        s223:Constituent-NH3,
        sh:NodeShape ;
    rdfs:label "NH3"^^xsd:string ;
    rdfs:comment "Ammonia"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-O2 a s223:Class,
        s223:Constituent-O2,
        sh:NodeShape ;
    rdfs:label "O2"^^xsd:string ;
    rdfs:comment "Oxygen"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-O3 a s223:Class,
        s223:Constituent-O3,
        sh:NodeShape ;
    rdfs:label "O3"^^xsd:string ;
    rdfs:comment "Ozone"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-Oil a s223:Class,
        s223:Constituent-Oil,
        sh:NodeShape ;
    rdfs:label "Oil"^^xsd:string ;
    rdfs:comment "Oil as an impurity within some `Mix-Fluid`"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-Radon a s223:Class,
        s223:Constituent-Radon,
        sh:NodeShape ;
    rdfs:label "Radon"^^xsd:string ;
    rdfs:comment "Radon"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-SO2 a s223:Class,
        s223:Constituent-SO2,
        sh:NodeShape ;
    rdfs:label "SO2"^^xsd:string ;
    rdfs:comment "Sulfur dioxide"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Constituent-VolatileOrganicCompounds a s223:Class,
        s223:Constituent-VolatileOrganicCompounds,
        sh:NodeShape ;
    rdfs:label "Volatile organic compounds"^^xsd:string ;
    rdfs:comment "`Constituent-VolatileOrganicCompounds`"^^xsd:string ;
    rdfs:subClassOf s223:Medium-Constituent .

s223:Domain-ConveyanceSystems a s223:Class,
        s223:Domain-ConveyanceSystems,
        sh:NodeShape ;
    rdfs:label "Conveyance systems domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that moves people or things within a building. Example `Domain-ConveyanceSystems` equipment include `Elevator` and `Escalator`."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-Electrical a s223:Class,
        s223:Domain-Electrical,
        sh:NodeShape ;
    rdfs:label "Electrical domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that distributes and monitors electrical power within a building. Example `Domain-Electrical` equipment include `ElectricityBreaker`, `ElectricEnergyConverter`, and `ElectricityMeter`."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-FireProtection a s223:Class,
        s223:Domain-FireProtection,
        sh:NodeShape ;
    rdfs:label "Fire protection domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that detect and mitigate the spread of fire within a building. Example `Domain-FireProtection` equipment include smoke detectors, alarms, and emergency public address systems."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-Networking a s223:Class,
        s223:Domain-Networking,
        sh:NodeShape ;
    rdfs:label "Networking domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that distributes and manages the flow of communication signals within a building. Example `Domain-Networking` equipment include `EthernetSwitch` and `PowerOverEthernetSwitch`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-Occupancy a s223:Class,
        s223:Domain-Occupancy,
        sh:NodeShape ;
    rdfs:label "Occupancy domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that determine whether and how many people are moving or present within a building. Example `Domain-Occupancy` equipment include `OccupantMotionSensor`, `OccupantPresenceSensor` and `OccupantCountSensor`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-PhysicalSecurity a s223:Class,
        s223:Domain-PhysicalSecurity,
        sh:NodeShape ;
    rdfs:label "Physical security domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that control and monitor physical access to spaces within or outside of a building. Example `Domain-PhysicalSecurity` equipment include cameras, keycard sensors, and biometric scanners."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-Plumbing a s223:Class,
        s223:Domain-Plumbing,
        sh:NodeShape ;
    rdfs:label "Plumbing domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that distributes, holds, removes and monitors water within or outside of a building. Example `Domain-Plumbing` equipment include `Faucet`, `Sink`, and `FlushToilet`."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:Domain-Refrigeration a s223:Class,
        s223:Domain-Refrigeration,
        sh:NodeShape ;
    rdfs:label "Refrigeration domain"^^xsd:string ;
    rdfs:comment "The domain that represents equipment that maintain internal temperatures below the surrounding ambient temperature with a building. Example `Domain-Refrigeration` equipment include `Refrigerator` and `Freezer`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Domain .

s223:EM-Microwave a s223:Class,
        s223:EM-Microwave,
        sh:NodeShape ;
    rdfs:label "Microwave"^^xsd:string ;
    rdfs:comment "`EM-Microwave`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-EM .

s223:ElectricCurrentSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric current sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of electric current."^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "An `ElectricCurrentSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `ElectricCurrent`."^^xsd:string ;
            sh:message "s223: An `ElectricCurrentSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of `ElectricCurrent`."^^xsd:string ;
            sh:path ( s223:observes qudt:hasQuantityKind ) ;
            sh:value qudtqk:ElectricCurrent ] .

s223:ElectricOven a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electric oven"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` with an enclosed chamber designed for baking, roasting, and other cooking methods that rely on circulating heat."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "An `ElectricOven` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:message "s223: An `ElectricOven` shall have at least one inlet using the medium `Constituent-Electricity`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Constituent-Electricity ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ElectricalPhaseIdentifier-A a s223:Class,
        s223:ElectricalPhaseIdentifier-A,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier A"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-A"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-AB a s223:Class,
        s223:ElectricalPhaseIdentifier-AB,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier AB"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-AB"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-ABC a s223:Class,
        s223:ElectricalPhaseIdentifier-ABC,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier ABC"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-ABC"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-B a s223:Class,
        s223:ElectricalPhaseIdentifier-B,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier B"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-B"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-BC a s223:Class,
        s223:ElectricalPhaseIdentifier-BC,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier BC"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-BC"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-C a s223:Class,
        s223:ElectricalPhaseIdentifier-C,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier C"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-C"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:ElectricalPhaseIdentifier-CA a s223:Class,
        s223:ElectricalPhaseIdentifier-CA,
        sh:NodeShape ;
    rdfs:label "Electrical phase identifier CA"^^xsd:string ;
    rdfs:comment "ElectricalPhaseIdentifier-CA"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ElectricalPhaseIdentifier .

s223:Electricity-Earth a s223:Class,
        s223:Electricity-Earth,
        sh:NodeShape ;
    rdfs:label "Earth"^^xsd:string ;
    rdfs:comment "`Electricity-Earth`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Electricity .

s223:Electricity-Neutral a s223:Class,
        s223:Electricity-Neutral,
        sh:NodeShape ;
    rdfs:label "Neutral"^^xsd:string ;
    rdfs:comment "`Electricity-Neutral`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Electricity .

s223:ElectricityMeter a s223:Class,
        sh:NodeShape ;
    rdfs:label "Electricity meter"^^xsd:string ;
    rdfs:comment """A piece of `Equipment` that contains at least one `VoltageSensor` and one `ElectricCurrentSensor`, and reports one or more
properties of electricity. Example reported properties include the following `QuantityKind`s: `Voltage`, `ElectricCurrent`, `ActiveEnergy`,
`ActivePower`, `ReactivePower`, `ApparentPower`, `PowerFactor`, and `Frequency` with unit Hertz. An `ElectricityMeter` may optionally contain a `Function` that represents the mathematical calculations of the reported properties of electricity."""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "The medium observed by the sensors contained by an `ElectricityMeter` shall be a `Constituent-Electricity`."^^xsd:string ;
            sh:class s223:Constituent-Electricity ;
            sh:message "s223: The medium observed by the sensors contained by an `ElectricityMeter` shall be a `Constituent-Electricity`."^^xsd:string ;
            sh:minCount 1 ;
            sh:path ( s223:contains s223:hasObservationLocation s223:hasMedium ) ],
        [ rdfs:comment "An `ElectricityMeter` shall contain at least one `VoltageSensor`."^^xsd:string ;
            sh:message "s223: An `ElectricityMeter` shall contain at least one `VoltageSensor`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:VoltageSensor ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "An `ElectricityMeter` shall contain at least one `ElectricCurrentSensor`."^^xsd:string ;
            sh:message "s223: An `ElectricityMeter` shall contain at least one `ElectricCurrentSensor`."^^xsd:string ;
            sh:path s223:contains ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:ElectricCurrentSensor ] ;
            sh:qualifiedValueShapesDisjoint true ],
        [ rdfs:comment "The observation location of the sensors contained by an `ElectricityMeter` shall be either a `Connection` or a `ConnectionPoint`."^^xsd:string ;
            sh:message "s223: The observation location of the sensors contained by an `ElectricityMeter` shall be either a `Connection` or a `ConnectionPoint`."^^xsd:string ;
            sh:minCount 1 ;
            sh:or ( [ sh:class s223:Connection ] [ sh:class s223:ConnectionPoint ] ) ;
            sh:path ( s223:contains s223:hasObservationLocation ) ] .

s223:FiberEthernet-1X9 a s223:Class,
        s223:FiberEthernet-1X9,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet 1X9"^^xsd:string ;
    rdfs:comment "FiberEthernet-1X9"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-300PIN a s223:Class,
        s223:FiberEthernet-300PIN,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet 300PIN"^^xsd:string ;
    rdfs:comment "FiberEthernet-300PIN"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-CFP a s223:Class,
        s223:FiberEthernet-CFP,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet CFP"^^xsd:string ;
    rdfs:comment "FiberEthernet-CFP"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-CFP2 a s223:Class,
        s223:FiberEthernet-CFP2,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet CFP2"^^xsd:string ;
    rdfs:comment "FiberEthernet-CFP2"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-CFP4 a s223:Class,
        s223:FiberEthernet-CFP4,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet CFP4"^^xsd:string ;
    rdfs:comment "FiberEthernet-CFP4"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-CPAK a s223:Class,
        s223:FiberEthernet-CPAK,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet CPAK"^^xsd:string ;
    rdfs:comment "FiberEthernet-CPAK"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-CXP a s223:Class,
        s223:FiberEthernet-CXP,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet CXP"^^xsd:string ;
    rdfs:comment "FiberEthernet-CXP"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-GBIC a s223:Class,
        s223:FiberEthernet-GBIC,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet GBIC"^^xsd:string ;
    rdfs:comment "FiberEthernet-GBIC"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-QSFP a s223:Class,
        s223:FiberEthernet-QSFP,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet QSFP"^^xsd:string ;
    rdfs:comment "FiberEthernet-QSFP"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

<http://data.ashrae.org/standard223#FiberEthernet-QSFP+> a s223:Class,
        <http://data.ashrae.org/standard223#FiberEthernet-QSFP+>,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet QSFP+"^^xsd:string ;
    rdfs:comment "FiberEthernet-QSFP+"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-QSFP28 a s223:Class,
        s223:FiberEthernet-QSFP28,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet QSFP28"^^xsd:string ;
    rdfs:comment "FiberEthernet-QSFP28"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-SFF a s223:Class,
        s223:FiberEthernet-SFF,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet SFF"^^xsd:string ;
    rdfs:comment "FiberEthernet-SFF"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-SFP a s223:Class,
        s223:FiberEthernet-SFP,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet SFP"^^xsd:string ;
    rdfs:comment "FiberEthernet-SFP"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

<http://data.ashrae.org/standard223#FiberEthernet-SFP+> a s223:Class,
        <http://data.ashrae.org/standard223#FiberEthernet-SFP+>,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet SFP+"^^xsd:string ;
    rdfs:comment "FiberEthernet-SFP+"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-X2 a s223:Class,
        s223:FiberEthernet-X2,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet X2"^^xsd:string ;
    rdfs:comment "FiberEthernet-X2"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-XENPAK a s223:Class,
        s223:FiberEthernet-XENPAK,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet XENPAK"^^xsd:string ;
    rdfs:comment "FiberEthernet-XENPAK"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:FiberEthernet-XFP a s223:Class,
        s223:FiberEthernet-XFP,
        sh:NodeShape ;
    rdfs:label "Fiber Ethernet XFP"^^xsd:string ;
    rdfs:comment "FiberEthernet-XFP"^^xsd:string ;
    rdfs:subClassOf s223:Signal-FiberEthernet .

s223:Gas-Superheated a s223:Class,
        s223:Gas-Superheated,
        sh:NodeShape ;
    rdfs:label "Superheated gas"^^xsd:string ;
    rdfs:comment "Gas-Superheated"^^xsd:string ;
    rdfs:subClassOf s223:ThermodynamicPhase-Gas .

s223:GlycolSolution-15Percent a s223:Class,
        s223:GlycolSolution-15Percent,
        sh:NodeShape ;
    rdfs:label "15 percent glycol solution"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Water concentration"^^xsd:string ;
            s223:hasValue 85.0 ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ],
        [ a s223:QuantifiableProperty ;
            rdfs:label "Glycol concentration"^^xsd:string ;
            s223:hasValue 15.0 ;
            s223:ofConstituent s223:Constituent-Glycol ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    s223:hasFreezingPoint [ a s223:QuantifiableProperty ;
            rdfs:label "Freezing point"^^xsd:string ;
            qudt:hasQuantityKind qudtqk:Temperature ] ;
    rdfs:comment "`GlycolSolution-15Percent`"^^xsd:string ;
    rdfs:subClassOf s223:Water-GlycolSolution .

s223:GlycolSolution-30Percent a s223:Class,
        s223:GlycolSolution-30Percent,
        sh:NodeShape ;
    rdfs:label "30 percent glycol solution"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Glycol concentration"^^xsd:string ;
            s223:hasValue 30.0 ;
            s223:ofConstituent s223:Constituent-Glycol ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ],
        [ a s223:QuantifiableProperty ;
            rdfs:label "Water concentration"^^xsd:string ;
            s223:hasValue 70.0 ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    s223:hasFreezingPoint [ a s223:QuantifiableProperty ;
            rdfs:label "Freezing point"^^xsd:string ;
            qudt:hasQuantityKind qudtqk:Temperature ] ;
    rdfs:comment "`GlycolSolution-30Percent`"^^xsd:string ;
    rdfs:subClassOf s223:Water-GlycolSolution .

s223:HydronicHeatExchanger a s223:Class,
        sh:NodeShape ;
    rdfs:label "Hydronic heat exchanger"^^xsd:string ;
    rdfs:comment "A piece of equipment that transfers heat from one liquid stream to another while keeping the two media separate."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `HydronicHeatExchanger` shall have at least two inlets using the medium `Mix-Fluid`, each paired with an outlet."^^xsd:string ;
            sh:message "s223: A `HydronicHeatExchanger` shall have at least two inlets using the medium `Mix-Fluid`, each paired with an outlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:OutletConnectionPoint ;
                                    sh:minCount 1 ;
                                    sh:path s223:pairedConnectionPoint ],
                                [ sh:class s223:Mix-Fluid ;
                                    sh:path s223:hasMedium ] ] ] ],
        [ rdfs:comment "A `HydronicHeatExchanger` shall have no bidirectional connection points."^^xsd:string ;
            sh:message "s223: A `HydronicHeatExchanger` shall have no bidirectional connection points."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 0 ;
            sh:qualifiedValueShape [ sh:class s223:BidirectionalConnectionPoint ] ],
        [ rdfs:comment "A `HydronicHeatExchanger` shall have no connection points using the medium `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `HydronicHeatExchanger` shall have no connection points using the medium `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMaxCount 0 ;
            sh:qualifiedValueShape [ sh:property [ sh:class s223:Fluid-Air ;
                            sh:path s223:hasMedium ] ] ],
        [ rdfs:comment "A `HydronicHeatExchanger` shall have at least two outlets using the medium `Mix-Fluid`, each paired with an inlet."^^xsd:string ;
            sh:message "s223: A `HydronicHeatExchanger` shall have at least two outlets using the medium `Mix-Fluid`, each paired with an inlet."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 2 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:InletConnectionPoint ;
                                    sh:minCount 1 ;
                                    sh:path s223:pairedConnectionPoint ],
                                [ sh:class s223:Mix-Fluid ;
                                    sh:path s223:hasMedium ] ] ] ] .

s223:ISMBand-BluetoothLE a s223:Class,
        s223:ISMBand-BluetoothLE,
        sh:NodeShape ;
    rdfs:label "BluetoothLE"^^xsd:string ;
    rdfs:comment "The BluetoothLE radio frequency communication protocol"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:ISMBand-IEEE802.11 a s223:Class,
        s223:ISMBand-IEEE802.11,
        sh:NodeShape ;
    rdfs:label "IEEE 802.11"^^xsd:string ;
    rdfs:comment "The IEEE 802.11 radio frequency communication protocol"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:ISMBand-IEEE802.15.4 a s223:Class,
        s223:ISMBand-IEEE802.15.4,
        sh:NodeShape ;
    rdfs:label "IEEE 802.15.4"^^xsd:string ;
    rdfs:comment "The IEEE 802.15.4 radio frequency communication protocol"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:ISMBand-LoRaWAN a s223:Class,
        s223:ISMBand-LoRaWAN,
        sh:NodeShape ;
    rdfs:label "LoRaWAN"^^xsd:string ;
    rdfs:comment "The LoRaWAN radio frequency communication protocol"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:ISMBand-NFC a s223:Class,
        s223:ISMBand-NFC,
        sh:NodeShape ;
    rdfs:label "NFC"^^xsd:string ;
    rdfs:comment "NFC radio frequency communication protocols"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:ISMBand-RFID a s223:Class,
        s223:ISMBand-RFID,
        sh:NodeShape ;
    rdfs:label "RFID"^^xsd:string ;
    rdfs:comment "RFID radio frequency communication protocols"^^xsd:string ;
    rdfs:subClassOf s223:UHF-ISMBand .

s223:Light-Ultraviolet a s223:Class,
        s223:Light-Ultraviolet,
        sh:NodeShape ;
    rdfs:label "Ultraviolet light"^^xsd:string ;
    rdfs:comment "`Light-Ultraviolet`"^^xsd:string ;
    rdfs:subClassOf s223:EM-Light .

s223:Light-Visible a s223:Class,
        s223:Light-Visible,
        sh:NodeShape ;
    rdfs:label "Visible light"^^xsd:string ;
    rdfs:comment "`Light-Visible`"^^xsd:string ;
    rdfs:subClassOf s223:EM-Light .

s223:Liquid-Subcooled a s223:Class,
        s223:Liquid-Subcooled,
        sh:NodeShape ;
    rdfs:label "Subcooled liquid"^^xsd:string ;
    rdfs:comment "Liquid-Subcooled"^^xsd:string ;
    rdfs:subClassOf s223:ThermodynamicPhase-Liquid .

s223:Logical-False a s223:Class,
        s223:Logical-False,
        sh:NodeShape ;
    rdfs:label "Logical false"^^xsd:string ;
    rdfs:comment "Logical-False"^^xsd:string ;
    rdfs:subClassOf s223:Binary-Logical .

s223:Logical-True a s223:Class,
        s223:Logical-True,
        sh:NodeShape ;
    rdfs:label "Logical true"^^xsd:string ;
    rdfs:comment "Logical-True"^^xsd:string ;
    rdfs:subClassOf s223:Binary-Logical .

s223:Medium-MechanicalLinkage a s223:Class,
        s223:Medium-MechanicalLinkage,
        sh:NodeShape ;
    rdfs:label "Mechanical linkage"^^xsd:string ;
    rdfs:comment "This class supports the transfer of mechanical power at `ConnectionPoint`s or through `Connection`s."^^xsd:string ;
    rdfs:subClassOf s223:Substance-Medium .

s223:Modulated-0-10V a s223:Class,
        s223:Modulated-0-10V,
        sh:NodeShape ;
    rdfs:label "Modulated 0-10 V"^^xsd:string ;
    rdfs:comment "Modulated-0-10V"^^xsd:string ;
    rdfs:subClassOf s223:Signal-Modulated .

s223:Modulated-4-20mA a s223:Class,
        s223:Modulated-4-20mA,
        sh:NodeShape ;
    rdfs:label "Modulated 4-20 mA"^^xsd:string ;
    rdfs:comment "Modulated-4-20mA"^^xsd:string ;
    rdfs:subClassOf s223:Signal-Modulated .

s223:Modulated-Resistive a s223:Class,
        s223:Modulated-Resistive,
        sh:NodeShape ;
    rdfs:label "Modulated resistive"^^xsd:string ;
    rdfs:comment "Modulated-Resistive"^^xsd:string ;
    rdfs:subClassOf s223:Signal-Modulated .

s223:Motion-False a s223:Class,
        s223:Motion-False,
        sh:NodeShape ;
    rdfs:label "Motion-based false"^^xsd:string ;
    rdfs:comment "`Motion-False`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Motion .

s223:Motion-True a s223:Class,
        s223:Motion-True,
        sh:NodeShape ;
    rdfs:label "Motion-based true"^^xsd:string ;
    rdfs:comment "`Motion-True`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Motion .

s223:NOX-NO a s223:Class,
        s223:NOX-NO,
        sh:NodeShape ;
    rdfs:label "NO"^^xsd:string ;
    rdfs:comment "Nitric oxide (NO)"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-NOX .

s223:NOX-NO2 a s223:Class,
        s223:NOX-NO2,
        sh:NodeShape ;
    rdfs:label "NO2"^^xsd:string ;
    rdfs:comment "Nitrogen dioxide (NO2)"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-NOX .

s223:Occupied-False a s223:Class,
        s223:Occupied-False,
        sh:NodeShape ;
    rdfs:label "False"^^xsd:string ;
    rdfs:comment "`Occupied-False`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Occupied .

s223:Occupied-True a s223:Class,
        s223:Occupied-True,
        sh:NodeShape ;
    rdfs:label "True"^^xsd:string ;
    rdfs:comment "`Occupied-True`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Occupied .

s223:OnOff-Off a s223:Class,
        s223:OnOff-Off,
        sh:NodeShape ;
    rdfs:label "Off"^^xsd:string ;
    rdfs:comment "OnOff-Off"^^xsd:string ;
    rdfs:subClassOf s223:Binary-OnOff .

s223:OnOff-On a s223:Class,
        s223:OnOff-On,
        sh:NodeShape ;
    rdfs:label "On"^^xsd:string ;
    rdfs:comment "OnOff-On"^^xsd:string ;
    rdfs:subClassOf s223:Binary-OnOff .

s223:Particulate-PM1.0 a s223:Class,
        s223:Particulate-PM1.0,
        sh:NodeShape ;
    rdfs:label "PM 1.0"^^xsd:string ;
    rdfs:comment "Particulate-PM1.0"^^xsd:string ;
    rdfs:subClassOf s223:Substance-Particulate .

s223:Particulate-PM10.0 a s223:Class,
        s223:Particulate-PM10.0,
        sh:NodeShape ;
    rdfs:label "PM 10.0"^^xsd:string ;
    rdfs:comment "Particulate-PM10.0"^^xsd:string ;
    rdfs:subClassOf s223:Substance-Particulate .

s223:Particulate-PM2.5 a s223:Class,
        s223:Particulate-PM2.5,
        sh:NodeShape ;
    rdfs:label "PM 2.5"^^xsd:string ;
    rdfs:comment "Particulate-PM2.5"^^xsd:string ;
    rdfs:subClassOf s223:Substance-Particulate .

s223:Particulate-Smoke a s223:Class,
        s223:Particulate-Smoke,
        sh:NodeShape ;
    rdfs:label "Smoke"^^xsd:string ;
    rdfs:comment "Smoke as a particulate of unspecified size, but formed as a product of combustion"^^xsd:string ;
    rdfs:subClassOf s223:Substance-Particulate .

s223:PoE-802.3af-1 a s223:Class,
        s223:PoE-802.3af-1,
        sh:NodeShape ;
    rdfs:label "PoE 802.3af-1"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-PoE ;
    rdfs:comment "PoE-802.3af-1"^^xsd:string ;
    rdfs:subClassOf s223:DC-PoE .

s223:PoE-802.3at-2 a s223:Class,
        s223:PoE-802.3at-2,
        sh:NodeShape ;
    rdfs:label "PoE 802.3at-2"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-PoE ;
    rdfs:comment "PoE-802.3at-2"^^xsd:string ;
    rdfs:subClassOf s223:DC-PoE .

s223:PoE-802.3bt-3 a s223:Class,
        s223:PoE-802.3bt-3,
        sh:NodeShape ;
    rdfs:label "PoE 802.3bt-3"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-PoE ;
    rdfs:comment "PoE-802.3bt-3"^^xsd:string ;
    rdfs:subClassOf s223:DC-PoE .

s223:PoE-802.3bt-4 a s223:Class,
        s223:PoE-802.3bt-4,
        sh:NodeShape ;
    rdfs:label "PoE 802.3bt-4"^^xsd:string ;
    s223:hasDCDifferentialVoltage s223:Voltage-PoE ;
    rdfs:comment "PoE-802.3bt-4"^^xsd:string ;
    rdfs:subClassOf s223:DC-PoE .

s223:Position-Closed a s223:Class,
        s223:Position-Closed,
        sh:NodeShape ;
    rdfs:label "Closed"^^xsd:string ;
    rdfs:comment "Position-Closed"^^xsd:string ;
    rdfs:subClassOf s223:Binary-Position .

s223:Position-Open a s223:Class,
        s223:Position-Open,
        sh:NodeShape ;
    rdfs:label "Open"^^xsd:string ;
    rdfs:comment "Position-Open"^^xsd:string ;
    rdfs:subClassOf s223:Binary-Position .

s223:Presence-False a s223:Class,
        s223:Presence-False,
        sh:NodeShape ;
    rdfs:label "Presence-based false"^^xsd:string ;
    rdfs:comment "`Presence-False`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Presence .

s223:Presence-True a s223:Class,
        s223:Presence-True,
        sh:NodeShape ;
    rdfs:label "Presence-based true"^^xsd:string ;
    rdfs:comment "`Presence-True`"^^xsd:string ;
    rdfs:subClassOf s223:Occupancy-Presence .

s223:PressureSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Pressure sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of pressure."^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "A `PressureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of Pressure."^^xsd:string ;
            sh:message "s223: A `PressureSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of Pressure."^^xsd:string ;
            sh:path ( s223:observes qudt:hasQuantityKind ) ;
            sh:value qudtqk:Pressure ] .

s223:RadiantHeater a s223:Class,
        sh:NodeShape ;
    rdfs:label "Radiant heater"^^xsd:string ;
    rdfs:comment """
A piece of `Equipment` with heating or cooling surface that delivers 50% or more of its heat transfer by radiation.
A `RadiantHeater` shall:

- Have the role `Role-Heating`.

- Have at least one outlet connection point using the medium `Light-Infrared`.

- Conform to exactly one of the following patterns:
  - **Pattern 1:**
    - Exactly one inlet connection point using the medium `Constituent-Electricity` or `Fluid-NaturalGas`.
  - **Pattern 2:**
    - Exactly one inlet connection point using the medium `Fluid-Water`.
    - Exactly one outlet connection point using the medium Fluid-Water.
"""^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `RadiantHeater` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:message "s223: A `RadiantHeater` shall at least have the role `Role-Heating`."^^xsd:string ;
            sh:path s223:hasRole ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:Role-Heating ] ],
        [ rdfs:comment "A `RadiantHeater` shall have at least one outlet using the medium `Light-Infrared`."^^xsd:string ;
            sh:message "s223: A `RadiantHeater` shall have at least one outlet using the medium `Light-Infrared`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:property [ sh:class s223:Light-Infrared ;
                                    sh:path s223:hasMedium ] ] ] ] ;
    sh:xone ( [ sh:property [ rdfs:comment "Pattern 1: A radiant heater shall have at least one inlet using the medium `Constituent-Electricity` or `Fluid-NaturalGas`."^^xsd:string ;
                        sh:message "s223: Pattern 1: A radiant heater shall have at least one inlet using the medium `Constituent-Electricity` or `Fluid-NaturalGas`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                                sh:node [ sh:property [ sh:or ( [ sh:class s223:Constituent-Electricity ] [ sh:class s223:Fluid-NaturalGas ] ) ;
                                                sh:path s223:hasMedium ] ] ] ] ] [ sh:property [ rdfs:comment "Pattern 2: A radiant heater shall have an inlet using the medium `Fluid-Water`."^^xsd:string ;
                        sh:message "s223: Pattern 2: A radiant heater shall have an inlet using the medium `Fluid-Water`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] ] ],
                    [ rdfs:comment "Pattern 2: A radiant heater shall have an outlet using the medium `Fluid-Water`."^^xsd:string ;
                        sh:message "s223: Pattern 2: A radiant heater shall have an outlet using the medium `Fluid-Water`."^^xsd:string ;
                        sh:path s223:hasConnectionPoint ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                                sh:node [ sh:property [ sh:class s223:Fluid-Water ;
                                                sh:path s223:hasMedium ] ] ] ] ] ) .

s223:Refrigerant-R-123 a s223:Class,
        s223:Refrigerant-R-123,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-123"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-123`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-1234yf a s223:Class,
        s223:Refrigerant-R-1234yf,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-1234yf"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-1234yf`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-1234ze a s223:Class,
        s223:Refrigerant-R-1234ze,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-1234ze"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-1234ze`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-134A a s223:Class,
        s223:Refrigerant-R-134A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-134A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-134A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-22 a s223:Class,
        s223:Refrigerant-R-22,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-22"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-22`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-290 a s223:Class,
        s223:Refrigerant-R-290,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-290"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-290` (Propane)"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-32 a s223:Class,
        s223:Refrigerant-R-32,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-32"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-32`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-404A a s223:Class,
        s223:Refrigerant-R-404A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-404A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-404A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-407A a s223:Class,
        s223:Refrigerant-R-407A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-407A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-407A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-407C a s223:Class,
        s223:Refrigerant-R-407C,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-407C"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-407C`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-407F a s223:Class,
        s223:Refrigerant-R-407F,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-407F"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-407F`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-410A a s223:Class,
        s223:Refrigerant-R-410A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-410A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-410A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-422A a s223:Class,
        s223:Refrigerant-R-422A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-422A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-422A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-422C a s223:Class,
        s223:Refrigerant-R-422C,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-422C"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-422C`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-422D a s223:Class,
        s223:Refrigerant-R-422D,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-422D"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-422D`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-427A a s223:Class,
        s223:Refrigerant-R-427A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-427A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-427A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-438A a s223:Class,
        s223:Refrigerant-R-438A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-438A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-438A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-444A a s223:Class,
        s223:Refrigerant-R-444A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-444A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-444A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-445A a s223:Class,
        s223:Refrigerant-R-445A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-445A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-445A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-448A a s223:Class,
        s223:Refrigerant-R-448A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-448A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-448A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-449A a s223:Class,
        s223:Refrigerant-R-449A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-449A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-449A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-450A a s223:Class,
        s223:Refrigerant-R-450A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-450A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-450A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-454A a s223:Class,
        s223:Refrigerant-R-454A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-454A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-454A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-454C a s223:Class,
        s223:Refrigerant-R-454C,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-454C"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-454C`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-455A a s223:Class,
        s223:Refrigerant-R-455A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-455A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-455A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-457A a s223:Class,
        s223:Refrigerant-R-457A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-457A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-457A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-459B a s223:Class,
        s223:Refrigerant-R-459B,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-459B"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-459B`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-507 a s223:Class,
        s223:Refrigerant-R-507,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-507"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-507`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-513A a s223:Class,
        s223:Refrigerant-R-513A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-513A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-513A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-516A a s223:Class,
        s223:Refrigerant-R-516A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-516A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-516A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-600A a s223:Class,
        s223:Refrigerant-R-600A,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-600A"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-600A`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-717 a s223:Class,
        s223:Refrigerant-R-717,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-717"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-717`"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Refrigerant-R-744 a s223:Class,
        s223:Refrigerant-R-744,
        sh:NodeShape ;
    rdfs:label "Refrigerant R-744"^^xsd:string ;
    rdfs:comment "`Refrigerant-R-744` (Transcritical CO2)"^^xsd:string ;
    rdfs:subClassOf s223:Constituent-Refrigerant .

s223:Role-Condenser a s223:Class,
        s223:Role-Condenser,
        sh:NodeShape ;
    rdfs:label "Condenser role"^^xsd:string ;
    rdfs:comment "`Role-Condenser`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Dehumidifying a s223:Class,
        s223:Role-Dehumidifying,
        sh:NodeShape ;
    rdfs:label "Dehumidifying role"^^xsd:string ;
    rdfs:comment "`Role-Dehumidifying`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Discharge a s223:Class,
        s223:Role-Discharge,
        sh:NodeShape ;
    rdfs:label "Discharge role"^^xsd:string ;
    rdfs:comment "`Role-Discharge`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Economizer a s223:Class,
        s223:Role-Economizer,
        sh:NodeShape ;
    rdfs:label "Economizer role"^^xsd:string ;
    rdfs:comment "`Role-Economizer`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Evaporator a s223:Class,
        s223:Role-Evaporator,
        sh:NodeShape ;
    rdfs:label "Evaporator role"^^xsd:string ;
    rdfs:comment "`Role-Evaporator`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Exhaust a s223:Class,
        s223:Role-Exhaust,
        sh:NodeShape ;
    rdfs:label "Exhaust role"^^xsd:string ;
    rdfs:comment "`Role-Exhaust`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Expansion a s223:Class,
        s223:Role-Expansion,
        sh:NodeShape ;
    rdfs:label "Expansion role"^^xsd:string ;
    rdfs:comment "`Role-Expansion`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Generator a s223:Class,
        s223:Role-Generator,
        sh:NodeShape ;
    rdfs:label "Generator role"^^xsd:string ;
    rdfs:comment "`Role-Generator`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-HeatRecovery a s223:Class,
        s223:Role-HeatRecovery,
        sh:NodeShape ;
    rdfs:label "Heat recovery role"^^xsd:string ;
    rdfs:comment "Role-HeatRecovery"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Load a s223:Class,
        s223:Role-Load,
        sh:NodeShape ;
    rdfs:label "Load role"^^xsd:string ;
    rdfs:comment "`Role-Load`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-OutdoorAirIntake a s223:Class,
        s223:Role-OutdoorAirIntake,
        sh:NodeShape ;
    rdfs:label "Outdoor air intake role"^^xsd:string ;
    rdfs:comment "`Role-OutdoorAirIntake`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Primary a s223:Class,
        s223:Role-Primary,
        sh:NodeShape ;
    rdfs:label "Primary role"^^xsd:string ;
    rdfs:comment "`Role-Primary`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Recirculating a s223:Class,
        s223:Role-Recirculating,
        sh:NodeShape ;
    rdfs:label "Recirculating role"^^xsd:string ;
    rdfs:comment "`Role-Recirculating`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Relief a s223:Class,
        s223:Role-Relief,
        sh:NodeShape ;
    rdfs:label "Relief role"^^xsd:string ;
    rdfs:comment "`Role-Relief`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Return a s223:Class,
        s223:Role-Return,
        sh:NodeShape ;
    rdfs:label "Return role"^^xsd:string ;
    rdfs:comment "`Role-Return`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Secondary a s223:Class,
        s223:Role-Secondary,
        sh:NodeShape ;
    rdfs:label "Secondary role"^^xsd:string ;
    rdfs:comment "`Role-Secondary`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Supply a s223:Class,
        s223:Role-Supply,
        sh:NodeShape ;
    rdfs:label "Supply role"^^xsd:string ;
    rdfs:comment "`Role-Supply`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Role-Ventilating a s223:Class,
        s223:Role-Ventilating,
        sh:NodeShape ;
    rdfs:label "Ventilating role"^^xsd:string ;
    rdfs:comment "`Role-Ventilating`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Role .

s223:Signal-EHF a s223:Class,
        s223:Signal-EHF,
        sh:NodeShape ;
    rdfs:label "EHF"^^xsd:string ;
    rdfs:comment "RF Signal Extremely High Frequency 30 GHz to 300 GHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-EIA485 a s223:Class,
        s223:Signal-EIA485,
        sh:NodeShape ;
    rdfs:label "EIA485"^^xsd:string ;
    rdfs:comment "Signal EIA485"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-Signal .

s223:Signal-ELF a s223:Class,
        s223:Signal-ELF,
        sh:NodeShape ;
    rdfs:label "ELF"^^xsd:string ;
    rdfs:comment "RF Signal Extremely Low Frequency 3 Hz to 30 Hz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-HF a s223:Class,
        s223:Signal-HF,
        sh:NodeShape ;
    rdfs:label "HF"^^xsd:string ;
    rdfs:comment "RF Signal High Frequency 3 MHz to 30 MHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-IEC14908 a s223:Class,
        s223:Signal-IEC14908,
        sh:NodeShape ;
    rdfs:label "IEC 14908"^^xsd:string ;
    rdfs:comment "Signal-IEC14908"^^xsd:string ;
    rdfs:subClassOf s223:Electricity-Signal .

s223:Signal-LF a s223:Class,
        s223:Signal-LF,
        sh:NodeShape ;
    rdfs:label "LF"^^xsd:string ;
    rdfs:comment "RF Signal Low Frequency 30 kHz to 300 kHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-MF a s223:Class,
        s223:Signal-MF,
        sh:NodeShape ;
    rdfs:label "MF"^^xsd:string ;
    rdfs:comment "RF Signal Medium Frequency 300 kHz to 3 MHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-SHF a s223:Class,
        s223:Signal-SHF,
        sh:NodeShape ;
    rdfs:label "SHF"^^xsd:string ;
    rdfs:comment "RF Signal Super High Frequency 3 GHz to 30 GHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-SLF a s223:Class,
        s223:Signal-SLF,
        sh:NodeShape ;
    rdfs:label "SLF"^^xsd:string ;
    rdfs:comment "RF Signal Super Low Frequency 30 Hz to 300 Hz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-THF a s223:Class,
        s223:Signal-THF,
        sh:NodeShape ;
    rdfs:label "THF"^^xsd:string ;
    rdfs:comment "RF Signal Tremendously High Frequency 300 GHz to 3 THz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-ULF a s223:Class,
        s223:Signal-ULF,
        sh:NodeShape ;
    rdfs:label "ULF"^^xsd:string ;
    rdfs:comment "RF Signal Ultra Low Frequency 300 Hz to 3 kHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-VHF a s223:Class,
        s223:Signal-VHF,
        sh:NodeShape ;
    rdfs:label "VHF"^^xsd:string ;
    rdfs:comment "RF Signal Very High Frequency 30 MHz to 300 MHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Signal-VLF a s223:Class,
        s223:Signal-VLF,
        sh:NodeShape ;
    rdfs:label "VLF"^^xsd:string ;
    rdfs:comment "RF Signal Very Low Frequency 3 kHz to 30 kHz"^^xsd:string ;
    rdfs:subClassOf s223:RF-Signal .

s223:Substance-Soot a s223:Class,
        s223:Substance-Soot,
        sh:NodeShape ;
    rdfs:label "Soot"^^xsd:string ;
    rdfs:comment "Carbon particles resulting from the incomplete combustion of hydrocarbons. Soot is considered a hazardous substance with carcinogenic properties."^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-Substance .

s223:ThermodynamicPhase-Solid a s223:Class,
        s223:ThermodynamicPhase-Solid,
        sh:NodeShape ;
    rdfs:label "Solid phase"^^xsd:string ;
    rdfs:comment "`ThermodynamicPhase-Solid`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ThermodynamicPhase .

s223:ThermodynamicPhase-Vapor a s223:Class,
        s223:ThermodynamicPhase-Vapor,
        sh:NodeShape ;
    rdfs:label "Vapor phase"^^xsd:string ;
    rdfs:comment "`ThermodynamicPhase-Vapor`"^^xsd:string ;
    rdfs:subClassOf s223:EnumerationKind-ThermodynamicPhase .

s223:UHF-LicensedBand a s223:Class,
        s223:UHF-LicensedBand,
        sh:NodeShape ;
    rdfs:label "Licensed band"^^xsd:string ;
    rdfs:comment "This class represents communication protocols that use radio frequencies in licensed bands of the UHF spectrum."^^xsd:string ;
    rdfs:subClassOf s223:Signal-UHF .

s223:VoltageSensor a s223:Class,
        sh:NodeShape ;
    rdfs:label "Voltage sensor"^^xsd:string ;
    rdfs:comment "A `Sensor` that `observes` a `QuantifiableObservableProperty` that represents a measure of voltage."^^xsd:string ;
    rdfs:subClassOf s223:Sensor ;
    sh:property [ rdfs:comment "A `VoltageSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of Voltage."^^xsd:string ;
            sh:message "s223: A `VoltageSensor` shall always observe a `QuantifiableObservableProperty` that has a `QuantityKind` of Voltage."^^xsd:string ;
            sh:path ( s223:observes qudt:hasQuantityKind ) ;
            sh:value qudtqk:Voltage ] .

s223:Water-ChilledWater a s223:Class,
        s223:Water-ChilledWater,
        sh:NodeShape ;
    rdfs:label "Chilled water"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Water concentration"^^xsd:string ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    rdfs:comment "Water-Chilled water"^^xsd:string ;
    rdfs:subClassOf s223:Fluid-Water .

s223:Water-HotWater a s223:Class,
        s223:Water-HotWater,
        sh:NodeShape ;
    rdfs:label "Hot water"^^xsd:string ;
    s223:composedOf [ a s223:QuantifiableProperty ;
            rdfs:label "Water concentration"^^xsd:string ;
            s223:ofConstituent s223:Constituent-H2O ;
            qudt:hasQuantityKind qudtqk:VolumeFraction ;
            qudt:hasUnit unit:PERCENT ] ;
    rdfs:comment "Water-Hot water"^^xsd:string ;
    rdfs:subClassOf s223:Fluid-Water .

s223:Weekday-Friday a s223:Class,
        s223:Weekday-Friday,
        sh:NodeShape ;
    rdfs:label "Friday"^^xsd:string ;
    rdfs:comment "Weekday-Friday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekday .

s223:Weekday-Monday a s223:Class,
        s223:Weekday-Monday,
        sh:NodeShape ;
    rdfs:label "Monday"^^xsd:string ;
    rdfs:comment "Weekday-Monday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekday .

s223:Weekday-Thursday a s223:Class,
        s223:Weekday-Thursday,
        sh:NodeShape ;
    rdfs:label "Thursday"^^xsd:string ;
    rdfs:comment "Weekday-Thursday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekday .

s223:Weekday-Tuesday a s223:Class,
        s223:Weekday-Tuesday,
        sh:NodeShape ;
    rdfs:label "Tuesday"^^xsd:string ;
    rdfs:comment "Weekday-Tuesday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekday .

s223:Weekday-Wednesday a s223:Class,
        s223:Weekday-Wednesday,
        sh:NodeShape ;
    rdfs:label "Wednesday"^^xsd:string ;
    rdfs:comment "Weekday-Wednesday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekday .

s223:Weekend-Saturday a s223:Class,
        s223:Weekend-Saturday,
        sh:NodeShape ;
    rdfs:label "Saturday"^^xsd:string ;
    rdfs:comment "Weekend-Saturday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekend .

s223:Weekend-Sunday a s223:Class,
        s223:Weekend-Sunday,
        sh:NodeShape ;
    rdfs:label "Sunday"^^xsd:string ;
    rdfs:comment "Weekend-Sunday"^^xsd:string ;
    rdfs:subClassOf s223:DayOfWeek-Weekend .

s223:Window a s223:Class,
        sh:NodeShape ;
    rdfs:label "Window"^^xsd:string ;
    rdfs:comment "A piece of `Equipment` that provides a pathway for `EM-Light` or `Fluid-Air` (or both) to flow from a room to another room or the building exterior through a vertical or nearly vertical area of the room envelope."^^xsd:string ;
    rdfs:subClassOf s223:Equipment ;
    sh:property [ rdfs:comment "A `Window` shall have at least one outlet using the medium `EM-Light` or `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Window` shall have at least one outlet using the medium `EM-Light` or `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:OutletConnectionPoint ;
                    sh:node [ sh:or ( [ sh:property [ sh:class s223:EM-Light ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Fluid-Air ;
                                                sh:path s223:hasMedium ] ] ) ] ] ],
        [ rdfs:comment "A `Window` shall have at least one inlet using the medium `EM-Light` or `Fluid-Air`."^^xsd:string ;
            sh:message "s223: A `Window` shall have at least one inlet using the medium `EM-Light` or `Fluid-Air`."^^xsd:string ;
            sh:path s223:hasConnectionPoint ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class s223:InletConnectionPoint ;
                    sh:node [ sh:or ( [ sh:property [ sh:class s223:EM-Light ;
                                                sh:path s223:hasMedium ] ] [ sh:property [ sh:class s223:Fluid-Air ;
                                                sh:path s223:hasMedium ] ] ) ;
                            sh:severity sh:Warning ] ] ] .

s223:WiredEthernet-1000BASE-T a s223:Class,
        s223:WiredEthernet-1000BASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 1000BASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-1000BASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-1000BASE-T1 a s223:Class,
        s223:WiredEthernet-1000BASE-T1,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 1000BASE-T1"^^xsd:string ;
    rdfs:comment "WiredEthernet-1000BASE-T1"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-100BASE-T1 a s223:Class,
        s223:WiredEthernet-100BASE-T1,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 100BASE-T1"^^xsd:string ;
    rdfs:comment "WiredEthernet-100BASE-T1"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-100BASE-TX a s223:Class,
        s223:WiredEthernet-100BASE-TX,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 100BASE-TX"^^xsd:string ;
    rdfs:comment "WiredEthernet-100BASE-TX"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-10BASE-T a s223:Class,
        s223:WiredEthernet-10BASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 10BASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-10BASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-10BASE-T1L a s223:Class,
        s223:WiredEthernet-10BASE-T1L,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 10BASE-T1L"^^xsd:string ;
    rdfs:comment "WiredEthernet-10BASE-T1L"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-10BASE-T1S a s223:Class,
        s223:WiredEthernet-10BASE-T1S,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 10BASE-T1S"^^xsd:string ;
    rdfs:comment "WiredEthernet-10BASE-T1S"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-10GBASE-T a s223:Class,
        s223:WiredEthernet-10GBASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 10GBASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-10GBASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-10GBASE-T1 a s223:Class,
        s223:WiredEthernet-10GBASE-T1,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 10GBASE-T1"^^xsd:string ;
    rdfs:comment "WiredEthernet-10GBASE-T1"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-2.5GBASE-T a s223:Class,
        s223:WiredEthernet-2.5GBASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 2.5GBASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-2.5GBASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-2.5GBASE-T1 a s223:Class,
        s223:WiredEthernet-2.5GBASE-T1,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 2.5GBASE-T1"^^xsd:string ;
    rdfs:comment "WiredEthernet-2.5GBASE-T1"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-25GBASE-T a s223:Class,
        s223:WiredEthernet-25GBASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 25GBASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-25GBASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-40GBASE-T a s223:Class,
        s223:WiredEthernet-40GBASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 40GBASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-40GBASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-5GBASE-T a s223:Class,
        s223:WiredEthernet-5GBASE-T,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 5GBASE-T"^^xsd:string ;
    rdfs:comment "WiredEthernet-5GBASE-T"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:WiredEthernet-5GBASE-T1 a s223:Class,
        s223:WiredEthernet-5GBASE-T1,
        sh:NodeShape ;
    rdfs:label "Wired Ethernet 5GBASE-T1"^^xsd:string ;
    rdfs:comment "WiredEthernet-5GBASE-T1"^^xsd:string ;
    rdfs:subClassOf s223:Signal-WiredEthernet .

s223:actuates a s223:Relation,
        rdf:Property ;
    rdfs:label "actuates"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Actuator` with the `Equipment` that it actuates."^^xsd:string .

s223:connected a s223:SymmetricRelation,
        rdf:Property ;
    rdfs:label "connected"^^xsd:string ;
    rdfs:comment "The relation `connected` indicates that two connectable things are `connected` without regard to the direction of flow."^^xsd:string .

s223:connectedThrough a s223:Relation,
        rdf:Property ;
    rdfs:label "connected through"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Connectable` thing with a `Connection`, without regard to the direction of flow. It is used to discover what connection links two connectable things."^^xsd:string .

s223:connectsFrom a s223:Relation,
        rdf:Property ;
    rdfs:label "connects from"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Connectable` thing with a `Connection`, with an implied direction of flow. B `connectsFrom` A indicates a flow from A to B."^^xsd:string .

s223:connectsTo a s223:Relation,
        rdf:Property ;
    rdfs:label "connects to"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Connection` with a `Connectable` thing, with an implied direction of flow. A `connectsTo` B indicates a flow from A to B."^^xsd:string .

s223:hasACLineLineVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has AC line-line voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Constituent-Electricity` with an electrical voltage between two live lines."^^xsd:string .

s223:hasACLineNeutralVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has AC line-neutral voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Electricity-AC` medium with an electrical voltage between a live line and a neutral line."^^xsd:string .

s223:hasAlarmStatus a s223:Relation,
        rdf:Property ;
    rdfs:label "has alarm status"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `EnumerableProperty` that describes an Alarm or Status with a `QuantifiableProperty`."^^xsd:string .

s223:hasBoundaryConnectionPoint a s223:Relation,
        rdf:Property ;
    rdfs:label "has boundary connection point"^^xsd:string ;
    rdfs:comment "The `hasBoundaryConnectionPoint` relation means the `ConnectionPoint` represents the boundary of a `System` (see {s223:System}) defined by the modeler, such as a model fragment provided by the vendor of a collection of equipment intended for integration with another model. The presence of this relation is used to indicate that such a \"dangling connection point\" should not generate a validation error in a non-integrated context but should generate an error in an integrated context."^^xsd:string .

s223:hasDCDifferentialVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has DC differential voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Electricity-DC` medium with a differential voltage."^^xsd:string .

s223:hasDCNegativeVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has DC negative voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Electricity-DC` medium with a negative polarity voltage."^^xsd:string .

s223:hasDCPositiveVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has DC positive voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Electricity-DC` medium with a positive polarity voltage."^^xsd:string .

s223:hasDCZeroVoltage a s223:Relation,
        rdf:Property ;
    rdfs:label "has DC zero voltage"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an `Electricity-DC` medium with a zero value voltage."^^xsd:string .

s223:hasDeadband a s223:Relation,
        rdf:Property ;
    rdfs:label "has deadband"^^xsd:string ;
    rdfs:comment "This relation binds a control setpoint to the `QuantifiableProperty` indicating the range of values within which a sensed variable can vary without indicating a condition has changed."^^xsd:string .

s223:hasDomainSpace a s223:Relation,
        rdf:Property ;
    rdfs:label "has domain space"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Zone` with its component `DomainSpace`s."^^xsd:string .

s223:hasExternalReference a s223:Relation,
        rdf:Property ;
    rdfs:label "has external reference"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Property` with an external telemetry source."^^xsd:string .

s223:hasFreezingPoint a s223:Relation,
        rdf:Property ;
    rdfs:label "has freezing point"^^xsd:string ;
    rdfs:comment "The relation `hasFreezingPoint` is used to associate a freezing point with a glycol solution, but could be used with other Mediums as appropriate."^^xsd:string .

s223:hasFrequency a s223:Relation,
        rdf:Property ;
    rdfs:label "has frequency"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an AC electricity `Substance-Medium` with its electrical frequency."^^xsd:string .

s223:hasMeasurementResolution a s223:Relation,
        rdf:Property ;
    rdfs:label "has measurement resolution"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Sensor` with the `QuantifiableProperty` whose value indicates the smallest recognizable change in engineering units that the `Sensor` is able to measure."^^xsd:string .

s223:hasMember a s223:Relation,
        rdf:Property ;
    rdfs:label "has member"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `System` with its component `Equipment` and/or `System`s."^^xsd:string .

s223:hasNumberOfElectricalPhases a s223:Relation,
        rdf:Property ;
    rdfs:label "has number of electrical phases"^^xsd:string ;
    rdfs:comment "A `Relation` that associates an AC electricity `Substance-Medium` with its number of electrical phases."^^xsd:string .

s223:hasPhysicalLocation a s223:Relation,
        rdf:Property ;
    rdfs:label "has physical location"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a piece of `Equipment` with its physical location (i.e., in a `PhysicalSpace`). The physical location of a piece of `Equipment` is not necessarily the same as the location affected by the operation of the `Equipment`. For example, an air handler may physically be located on the roof, but its effect is to provide conditioned air to a `Zone` or `DomainSpace` within the building. By following the path of connections, it can be determined what other equipment or spaces are possibly impacted by the `Equipment`."^^xsd:string .

s223:hasSetpoint a s223:Relation,
        rdf:Property ;
    rdfs:label "has setpoint"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a control setpoint with the `QuantifiableProperty` indicating the desired value which the control process is trying to maintain."^^xsd:string .

s223:hasThermodynamicPhase a s223:Relation,
        rdf:Property ;
    rdfs:label "has thermodynamic phase"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a Medium with its thermodynamic phases."^^xsd:string .

s223:hasThreshold a s223:Relation,
        rdf:Property ;
    rdfs:label "has threshold"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a threshold with the `QuantifiableProperty` indicating a specific value at which an action may be taken, distinguished from an offset or a range."^^xsd:string .

s223:inverseOf a s223:Relation,
        rdf:Property ;
    rdfs:label "inverse of"^^xsd:string ;
    rdfs:comment "A `Relation` that associates `Relation`s that are inverses of one another, such as `connectedTo` and `connectedFrom`."^^xsd:string .

s223:ofMedium a s223:Relation,
        rdf:Property ;
    rdfs:label "of medium"^^xsd:string ;
    rdfs:comment "A `Relation` that associates a `Property` with the specific Medium it describes. A `Property` corresponding to the temperature of a medium would be associated with this medium using the relation `ofMedium`."^^xsd:string .

<http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValveOrShape1> a sh:NodeShape ;
    rdfs:label "Chilled Water Valve Or Shape 1"^^xsd:string ;
    rdfs:comment "A ChilledWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
    sh:message "g36: A ChilledWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A ChilledWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 1 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:QuantifiableActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue qudtqk:DimensionlessRatio ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path qudt:hasQuantityKind ],
                                            [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ] ] ] ] ] [ sh:property [ rdfs:comment "A ChilledWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 2 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 2 ;
                        sh:qualifiedValueShape [ sh:class s223:EnumeratedActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue s223:EnumerationKind-Binary ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasEnumerationKind ],
                                            [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ] ] ] ] ] ) ;
    sh:targetClass <http://data.ashrae.org/standard223/1.0/extensions/g36#ChilledWaterValve> .

<http://data.ashrae.org/standard223/1.0/extensions/g36#DamperOrShape1> a sh:NodeShape ;
    rdfs:label "Damper Or Shape 1"^^xsd:string ;
    rdfs:comment "A damper shall have at least one analog damper command property or at least two binary damper command properties using the relation hasProperty."^^xsd:string ;
    sh:message "g36: A damper shall have at least one analog damper command property or at least two binary damper command properties using the relation hasProperty."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A damper shall have at least one analog damper command property or at least two binary damper command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 1 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:QuantifiableActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ],
                                            [ sh:hasValue qudtqk:DimensionlessRatio ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path qudt:hasQuantityKind ] ] ] ] ] [ sh:property [ rdfs:comment "A damper shall have at least one analog damper command property or at least two binary damper command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 2 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 2 ;
                        sh:qualifiedValueShape [ sh:class s223:EnumeratedActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ],
                                            [ sh:hasValue s223:EnumerationKind-Binary ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasEnumerationKind ] ] ] ] ] ) ;
    sh:targetClass <http://data.ashrae.org/standard223/1.0/extensions/g36#Damper> .

<http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValveOrShape1> a sh:NodeShape ;
    rdfs:label "Hot Water Valve Or Shape 1"^^xsd:string ;
    rdfs:comment "A HotWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
    sh:message "g36: A HotWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
    sh:or ( [ sh:property [ rdfs:comment "A HotWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 1 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 1 ;
                        sh:qualifiedValueShape [ sh:class s223:QuantifiableActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ],
                                            [ sh:hasValue qudtqk:DimensionlessRatio ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path qudt:hasQuantityKind ] ] ] ] ] [ sh:property [ rdfs:comment "A HotWaterValve shall have at least one analog valve command property or at least two binary valve command properties using the relation hasProperty."^^xsd:string ;
                        sh:minCount 2 ;
                        sh:path s223:hasProperty ;
                        sh:qualifiedMinCount 2 ;
                        sh:qualifiedValueShape [ sh:class s223:EnumeratedActuatableProperty ;
                                sh:node [ sh:property [ sh:hasValue s223:Binary-Position ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasAspect ],
                                            [ sh:hasValue s223:EnumerationKind-Binary ;
                                                sh:maxCount 1 ;
                                                sh:minCount 1 ;
                                                sh:path s223:hasEnumerationKind ] ] ] ] ] ) ;
    sh:targetClass <http://data.ashrae.org/standard223/1.0/extensions/g36#HotWaterValve> .

ns3:ActionGroup a ns3:ShapeClass ;
    rdfs:label "Action group"^^xsd:string ;
    rdfs:comment "A group of ResourceActions, used to arrange items in menus etc. Similar to sh:PropertyGroups, they may have a sh:order and should have labels (in multiple languages if applicable)."^^xsd:string ;
    rdfs:subClassOf rdfs:Resource .

ns3:AllObjectsTarget a sh:SPARQLTargetType ;
    rdfs:label "All objects target"^^xsd:string ;
    rdfs:comment "A target containing all objects in the data graph as focus nodes."^^xsd:string ;
    rdfs:subClassOf sh:Target ;
    sh:labelTemplate "All objects"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:select """SELECT DISTINCT ?this
WHERE {
    ?anyS ?anyP ?this .
}"""^^xsd:string .

ns3:AllSubjectsTarget a sh:SPARQLTargetType ;
    rdfs:label "All subjects target"^^xsd:string ;
    rdfs:comment "A target containing all subjects in the data graph as focus nodes."^^xsd:string ;
    rdfs:subClassOf sh:Target ;
    sh:labelTemplate "All subjects"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
    sh:select """SELECT DISTINCT ?this
WHERE {
    ?this ?anyP ?anyO .
}"""^^xsd:string .

ns3:ClosedByTypesConstraintComponent-closedByTypes a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:boolean ;
    sh:description "True to indicate that the focus nodes are closed by their types. A constraint violation is reported for each property value of the focus node where the property is not among those that are explicitly declared via sh:property/sh:path in any of the rdf:types of the focus node (and their superclasses). The property rdf:type is always permitted."^^xsd:string ;
    sh:maxCount 1 ;
    sh:path ns3:closedByTypes .

ns3:CoExistsWithConstraintComponent-coExistsWith a sh:Parameter ;
    ns3:editor ns3:PropertyAutoCompleteEditor ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    ns3:viewer ns3:PropertyLabelViewer ;
    sh:description "The properties that must co-exist with the surrounding property (path). If the surrounding property path has any value then the given property must also have a value, and vice versa."^^xsd:string ;
    sh:name "co-exists with"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:coExistsWith .

ns3:ConstraintReificationShape-message a sh:PropertyShape ;
    ns3:singleLine true ;
    sh:name "messages"^^xsd:string ;
    sh:nodeKind sh:Literal ;
    sh:or ns3:StringOrLangString ;
    sh:path sh:message .

ns3:ConstraintReificationShape-severity a sh:PropertyShape ;
    sh:class sh:Severity ;
    sh:maxCount 1 ;
    sh:name "severity"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path sh:severity .

ns3:GraphValidationTestCase a ns3:ShapeClass ;
    rdfs:label "Graph validation test case"^^xsd:string ;
    rdfs:comment "A test case that performs SHACL constraint validation on the whole graph and compares the results with the expected validation results stored with the test case. By default this excludes meta-validation (i.e. the validation of the shape definitions themselves). If that's desired, set dash:validateShapes to true."^^xsd:string ;
    rdfs:subClassOf ns3:ValidationTestCase .

ns3:HasValueInConstraintComponent-hasValueIn a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:description "At least one of the value nodes must be a member of the given list."^^xsd:string ;
    sh:name "has value in"^^xsd:string ;
    sh:node ns3:ListShape ;
    sh:path ns3:hasValueIn .

ns3:HasValueWithClassConstraintComponent-hasValueWithClass a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:class rdfs:Class ;
    sh:description "One of the values of the property path must be an instance of the given class."^^xsd:string ;
    sh:name "has value with class"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:hasValueWithClass .

ns3:IndexedConstraintComponent-indexed a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:boolean ;
    sh:description "True to activate indexing for this property."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "indexed"^^xsd:string ;
    sh:path ns3:indexed .

ns3:ListNodeShape a sh:NodeShape ;
    rdfs:label "List node shape"^^xsd:string ;
    rdfs:comment "Defines constraints on what it means for a node to be a node within a well-formed RDF list. Note that this does not check whether the rdf:rest items are also well-formed lists as this would lead to unsupported recursion."^^xsd:string ;
    sh:or ( [ sh:hasValue () ;
                sh:property [ a sh:PropertyShape ;
                        sh:maxCount 0 ;
                        sh:path rdf:first ],
                    [ a sh:PropertyShape ;
                        sh:maxCount 0 ;
                        sh:path rdf:rest ] ] [ sh:not [ sh:hasValue () ] ;
                sh:property [ a sh:PropertyShape ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path rdf:rest ],
                    [ a sh:PropertyShape ;
                        sh:maxCount 1 ;
                        sh:minCount 1 ;
                        sh:path rdf:first ] ] ) .

ns3:ListShape a sh:NodeShape ;
    rdfs:label "List shape"^^xsd:string ;
    rdfs:comment """Defines constraints on what it means for a node to be a well-formed RDF list.

The focus node must either be rdf:nil or not recursive. Furthermore, this shape uses dash:ListNodeShape as a "helper" to walk through all members of the whole list (including itself)."""^^xsd:string ;
    sh:or ( [ sh:hasValue () ] [ sh:not [ sh:hasValue () ] ;
                sh:property [ a sh:PropertyShape ;
                        ns3:nonRecursive true ;
                        sh:path [ sh:oneOrMorePath rdf:rest ] ] ] ) ;
    sh:property [ a sh:PropertyShape ;
            rdfs:comment "Each list member (including this node) must be have the shape dash:ListNodeShape."^^xsd:string ;
            sh:node ns3:ListNodeShape ;
            sh:path [ sh:zeroOrMorePath rdf:rest ] ] .

ns3:NonRecursiveConstraintComponent-nonRecursive a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:boolean ;
    sh:description """Used to state that a property or path must not point back to itself.

For example, "a person cannot have itself as parent" can be expressed by setting dash:nonRecursive=true for a given sh:path.

To express that a person cannot have itself among any of its (recursive) parents, use a sh:path with the + operator such as ex:parent+."""^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "non-recursive"^^xsd:string ;
    sh:path ns3:nonRecursive .

ns3:ParameterConstraintComponent-parameter a sh:Parameter ;
    sh:path sh:parameter .

ns3:PrimaryKeyConstraintComponent-uriStart a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:string ;
    sh:description "The start of the URIs of well-formed resources. If specified then the associated property/path serves as \"primary key\" for all target nodes (instances). All such target nodes need to have a URI that starts with the given string, followed by the URI-encoded value of the primary key property."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "URI start"^^xsd:string ;
    sh:path ns3:uriStart .

ns3:ReifiableByConstraintComponent-reifiableBy a sh:Parameter ;
    sh:class sh:NodeShape ;
    sh:description "Can be used to specify the node shape that may be applied to reified statements produced by a property shape. The property shape must have a URI resource as its sh:path. The values of this property must be node shapes. User interfaces can use this information to determine which properties to present to users when reified statements are explored or edited. Also, SHACL validators can use it to determine how to validate reified triples. Use dash:None to indicate that no reification should be permitted."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "reifiable by"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:reifiableBy .

ns3:RootClassConstraintComponent-rootClass a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:class rdfs:Class ;
    sh:description "The root class."^^xsd:string ;
    sh:name "root class"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:rootClass .

ns3:ScriptAPIShape-generateClass a sh:PropertyShape ;
    sh:class sh:NodeShape ;
    sh:description "The API generator will produce classes for each value of this property and all its subclasses and superclasses."^^xsd:string ;
    sh:group ns3:ScriptAPIGenerationRules ;
    sh:name "generate class"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:order 0.0 ;
    sh:path ns3:generateClass .

ns3:ScriptAPIShape-generatePrefixClasses a sh:PropertyShape ;
    sh:datatype xsd:string ;
    sh:description "If a prefix (such as \"edg\") is listed here then the API generator will produce classes for all RDFS classes or node shapes from the associated namespace."^^xsd:string ;
    sh:group ns3:ScriptAPIGenerationRules ;
    sh:name "generate prefix classes"^^xsd:string ;
    sh:order 15.0 ;
    sh:path ns3:generatePrefixClasses .

ns3:ScriptAPIShape-generatePrefixConstants a sh:PropertyShape ;
    sh:datatype xsd:string ;
    sh:description "If a prefix (such as \"edg\") is listed here then the API generator will produce constants for class, datatype, shape and property names."^^xsd:string ;
    sh:group ns3:ScriptAPIGenerationRules ;
    sh:name "generate prefix constants"^^xsd:string ;
    sh:order 10.0 ;
    sh:path ns3:generatePrefixConstants .

ns3:ScriptConstraint a ns3:ShapeClass ;
    rdfs:label "Script constraint"^^xsd:string ;
    rdfs:comment """The class of constraints that are based on Scripts. Depending on whether dash:onAllValues is set to true, these scripts can access the following pre-assigned variables:

- focusNode: the focus node of the constraint (a NamedNode)
- if dash:onAllValues is not true: value: the current value node (e.g. a JavaScript string for xsd:string literals, a number for numeric literals or true or false for xsd:boolean literals. All other literals become LiteralNodes, and non-literals become instances of NamedNode)
- if dash:onAllValues is true: values: an array of current value nodes, as above.

If the expression returns an array then each array member will be mapped to one validation result, following the mapping rules below.

For string results, a validation result will use the string as sh:resultMessage.
For boolean results, a validation result will be produced if the result is false (true means no violation).

For object results, a validation result will be produced using the value of the field "message" of the object as result message. If the field "value" has a value then this will become the sh:value in the violation.

Unless another sh:message has been directly returned, the sh:message of the dash:ScriptConstraint will be used, similar to sh:message at SPARQL Constraints. These sh:messages can access the values {$focusNode}, {$value} etc as template variables."""^^xsd:string ;
    rdfs:subClassOf ns3:Script .

ns3:ScriptConstraintComponent-scriptConstraint a sh:Parameter ;
    sh:class ns3:ScriptConstraint ;
    sh:description "The Script constraint(s) to apply."^^xsd:string ;
    sh:name "script constraint"^^xsd:string ;
    sh:path ns3:scriptConstraint .

ns3:SingleLineConstraintComponent-singleLine a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:boolean ;
    sh:description "True to state that the lexical form of literal value nodes must not contain any line breaks. False to state that line breaks are explicitly permitted."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "single line"^^xsd:string ;
    sh:path ns3:singleLine .

ns3:StemConstraintComponent-stem a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:string ;
    sh:description "If specified then every value node must be an IRI and the IRI must start with the given string value."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "stem"^^xsd:string ;
    sh:path ns3:stem .

ns3:StringOrLangString a rdf:List ;
    rdfs:label "String or langString"^^xsd:string ;
    rdf:first [ sh:datatype xsd:string ] ;
    rdf:rest ( [ sh:datatype rdf:langString ] ) ;
    rdfs:comment "An rdf:List that can be used in property constraints as value for sh:or to indicate that all values of a property must be either xsd:string or rdf:langString."^^xsd:string .

ns3:SubSetOfConstraintComponent-subSetOf a sh:Parameter ;
    ns3:editor ns3:PropertyAutoCompleteEditor ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    ns3:viewer ns3:PropertyLabelViewer ;
    sh:description "Can be used to state that all value nodes must also be values of a specified other property at the same focus node."^^xsd:string ;
    sh:name "sub-set of"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:subSetOf .

ns3:SymmetricConstraintComponent-symmetric a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:datatype xsd:boolean ;
    sh:description "If set to true then if A relates to B then B must relate to A."^^xsd:string ;
    sh:maxCount 1 ;
    sh:name "symmetric"^^xsd:string ;
    sh:path ns3:symmetric .

ns3:UniqueValueForClassConstraintComponent-uniqueValueForClass a sh:Parameter ;
    ns3:reifiableBy ns3:ConstraintReificationShape ;
    sh:class rdfs:Class ;
    sh:description "States that the values of the property must be unique for all instances of a given class (and its subclasses)."^^xsd:string ;
    sh:name "unique value for class"^^xsd:string ;
    sh:nodeKind sh:IRI ;
    sh:path ns3:uniqueValueForClass .

ns3:ValidationTestCase a ns3:ShapeClass ;
    rdfs:label "Validation test case"^^xsd:string ;
    ns3:abstract true ;
    rdfs:comment "Abstract superclass for test cases concerning SHACL constraint validation. Future versions may add new kinds of validatin test cases, e.g. to validate a single resource only."^^xsd:string ;
    rdfs:subClassOf ns3:TestCase .

ns3:closedByTypes a rdf:Property ;
    rdfs:label "closed by types"^^xsd:string .

ns3:coExistsWith a rdf:Property ;
    rdfs:label "co-exists with"^^xsd:string ;
    rdfs:comment "Specifies a property that must have a value whenever the property path has a value, and must have no value whenever the property path has no value."^^xsd:string ;
    rdfs:range rdf:Property .

ns3:hasClass a sh:SPARQLAskValidator ;
    rdfs:label "has class"^^xsd:string ;
    sh:ask """
		ASK {
			$value rdf:type/rdfs:subClassOf* $class .
		}
		"""^^xsd:string ;
    sh:message "Value does not have class {$class}"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMaxExclusive a sh:SPARQLAskValidator ;
    rdfs:label "has max exclusive"^^xsd:string ;
    rdfs:comment "Checks whether a given node (?value) has a value less than (<) the provided ?maxExclusive. Returns false if this cannot be determined, e.g. because values do not have comparable types."^^xsd:string ;
    sh:ask "ASK { FILTER ($value < $maxExclusive) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMaxInclusive a sh:SPARQLAskValidator ;
    rdfs:label "has max inclusive"^^xsd:string ;
    rdfs:comment "Checks whether a given node (?value) has a value less than or equal to (<=) the provided ?maxInclusive. Returns false if this cannot be determined, e.g. because values do not have comparable types."^^xsd:string ;
    sh:ask "ASK { FILTER ($value <= $maxInclusive) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMaxLength a sh:SPARQLAskValidator ;
    rdfs:label "has max length"^^xsd:string ;
    rdfs:comment "Checks whether a given string (?value) has a length within a given maximum string length."^^xsd:string ;
    sh:ask """
		ASK {
			FILTER (STRLEN(str($value)) <= $maxLength) .
		}
		"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMinExclusive a sh:SPARQLAskValidator ;
    rdfs:label "has min exclusive"^^xsd:string ;
    rdfs:comment "Checks whether a given node (?value) has value greater than (>) the provided ?minExclusive. Returns false if this cannot be determined, e.g. because values do not have comparable types."^^xsd:string ;
    sh:ask "ASK { FILTER ($value > $minExclusive) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMinInclusive a sh:SPARQLAskValidator ;
    rdfs:label "has min inclusive"^^xsd:string ;
    rdfs:comment "Checks whether a given node (?value) has value greater than or equal to (>=) the provided ?minInclusive. Returns false if this cannot be determined, e.g. because values do not have comparable types."^^xsd:string ;
    sh:ask "ASK { FILTER ($value >= $minInclusive) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasMinLength a sh:SPARQLAskValidator ;
    rdfs:label "has min length"^^xsd:string ;
    rdfs:comment "Checks whether a given string (?value) has a length within a given minimum string length."^^xsd:string ;
    sh:ask """
		ASK {
			FILTER (STRLEN(str($value)) >= $minLength) .
		}
		"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasNodeKind a sh:SPARQLAskValidator ;
    rdfs:label "has node kind"^^xsd:string ;
    rdfs:comment "Checks whether a given node (?value) has a given sh:NodeKind (?nodeKind). For example, sh:hasNodeKind(42, sh:Literal) = true."^^xsd:string ;
    sh:ask """
		ASK {
			FILTER ((isIRI($value) && $nodeKind IN ( sh:IRI, sh:BlankNodeOrIRI, sh:IRIOrLiteral ) ) ||
				(isLiteral($value) && $nodeKind IN ( sh:Literal, sh:BlankNodeOrLiteral, sh:IRIOrLiteral ) ) ||
				(isBlank($value)   && $nodeKind IN ( sh:BlankNode, sh:BlankNodeOrIRI, sh:BlankNodeOrLiteral ) )) .
		}
		"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasPattern a sh:SPARQLAskValidator ;
    rdfs:label "has pattern"^^xsd:string ;
    rdfs:comment "Checks whether the string representation of a given node (?value) matches a given regular expression (?pattern). Returns false if the value is a blank node."^^xsd:string ;
    sh:ask "ASK { FILTER (!isBlank($value) && IF(bound($flags), regex(str($value), $pattern, $flags), regex(str($value), $pattern))) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasRootClass a sh:SPARQLAskValidator ;
    rdfs:label "has root class"^^xsd:string ;
    sh:ask """ASK {
    $value rdfs:subClassOf* $rootClass .
}"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasStem a sh:SPARQLAskValidator ;
    rdfs:label "has stem"^^xsd:string ;
    rdfs:comment "Checks whether a given node is an IRI starting with a given stem."^^xsd:string ;
    sh:ask "ASK { FILTER (isIRI($value) && STRSTARTS(str($value), $stem)) }"^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:hasValueIn a rdf:Property ;
    rdfs:label "has value in"^^xsd:string ;
    rdfs:comment "Specifies a constraint that at least one of the value nodes must be a member of the given list."^^xsd:string ;
    rdfs:range rdf:List .

ns3:hasValueWithClass a rdf:Property ;
    rdfs:label "has value with class"^^xsd:string ;
    rdfs:comment "Specifies a constraint that at least one of the value nodes must be an instance of a given class."^^xsd:string ;
    rdfs:range rdfs:Class .

ns3:indexed a rdf:Property ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range xsd:boolean .

ns3:isIn a sh:SPARQLAskValidator ;
    rdfs:label "is in"^^xsd:string ;
    sh:ask """
		ASK {
			GRAPH $shapesGraph {
				$in (rdf:rest*)/rdf:first $value .
			}
		}
		"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:isLanguageIn a sh:SPARQLAskValidator ;
    rdfs:label "is language in"^^xsd:string ;
    sh:ask """
		ASK {
			BIND (lang($value) AS ?valueLang) .
			FILTER EXISTS {
				GRAPH $shapesGraph {
					$languageIn (rdf:rest*)/rdf:first ?lang .
				    FILTER (langMatches(?valueLang, ?lang))
				} }
		}
		"""^^xsd:string ;
    sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> .

ns3:isSubClassOf-subclass a sh:Parameter ;
    sh:class rdfs:Class ;
    sh:description "The (potential) subclass."^^xsd:string ;
    sh:name "subclass"^^xsd:string ;
    sh:path ns3:subclass .

ns3:isSubClassOf-superclass a sh:Parameter ;
    sh:class rdfs:Class ;
    sh:description "The (potential) superclass."^^xsd:string ;
    sh:name "superclass"^^xsd:string ;
    sh:order 1.0 ;
    sh:path ns3:superclass .

ns3:reifiableBy a rdf:Property ;
    rdfs:label "reifiable by"^^xsd:string ;
    rdfs:comment "Can be used to specify the node shape that may be applied to reified statements produced by a property shape. The property shape must have a URI resource as its sh:path. The values of this property must be node shapes. User interfaces can use this information to determine which properties to present to users when reified statements are explored or edited. Use dash:None to indicate that no reification should be permitted."^^xsd:string ;
    rdfs:domain sh:PropertyShape ;
    rdfs:range sh:NodeShape .

ns3:rootClass a rdf:Property ;
    rdfs:label "root class"^^xsd:string .

ns3:singleLine a rdf:Property ;
    rdfs:label "single line"^^xsd:string ;
    rdfs:range xsd:boolean .

ns3:stem a rdf:Property ;
    rdfs:label "stem"@en ;
    rdfs:comment "Specifies a string value that the IRI of the value nodes must start with."@en ;
    rdfs:range xsd:string .

ns3:subSetOf a rdf:Property ;
    rdfs:label "sub set of"^^xsd:string .

ns3:symmetric a rdf:Property ;
    rdfs:label "symmetric"^^xsd:string ;
    rdfs:comment "True to declare that the associated property path is symmetric."^^xsd:string .

ns3:uniqueValueForClass a rdf:Property ;
    rdfs:label "unique value for class"^^xsd:string .

dcterms:author a owl:AnnotationProperty ;
    rdfs:label "author"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

dcterms:contributor a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "contributor"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

dcterms:isReplacedBy a rdf:Property ;
    rdfs:label "is replaced by"^^xsd:string .

dcterms:rights a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "rights"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

dcterms:source a rdf:Property ;
    rdfs:label "source"^^xsd:string .

dcterms:subject a rdf:Property,
        owl:AnnotationProperty ;
    rdfs:label "subject"^^xsd:string ;
    rdfs:isDefinedBy dcterms: ;
    rdfs:range xsd:string .

qudt:AbstractQuantityKind-altSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:altSymbol .

qudt:AbstractQuantityKind-broader a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:path skos:broader .

qudt:AbstractQuantityKind-latexSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexSymbol .

qudt:AbstractQuantityKind-symbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:symbol .

qudt:Array-isHeterogeneous a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:isHeterogeneous .

qudt:Array-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:node qudt:NumericListShape ;
    sh:path qudt:value .

qudt:AuralCue-sound a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:anyURI ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:sound .

qudt:BalancedTree-maxDepth a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:maxDepth .

qudt:BaseDimensionMagnitude-hasBaseQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasBaseQuantityKind .

qudt:BaseDimensionMagnitude-vectorMagnitude a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:vectorMagnitude .

qudt:BitAligned a qudt:AlignmentType ;
    rdfs:label "Bit Aligned"^^xsd:string,
        "Bit aligned"^^xsd:string ;
    dcterms:description "Alignment at a bit level."^^rdf:HTML ;
    ns1:literal "bit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:BitField01 a rdfs:Datatype ;
    rdfs:label "Bit Field of 1 bit"^^xsd:string ;
    qudt:abbreviation "bf1"^^xsd:string ;
    qudt:bits 1 ;
    qudt:id "T010-01"^^xsd:string ;
    qudt:mySQLName "BIT(1)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField01 ;
    ns1:literal "B1"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField02 a rdfs:Datatype ;
    rdfs:label "Bit Field of 2 bits"^^xsd:string ;
    qudt:abbreviation "bf2"^^xsd:string ;
    qudt:bits 2 ;
    qudt:id "T010-02"^^xsd:string ;
    qudt:mySQLName "BIT(2)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField02 ;
    ns1:code 182 ;
    ns1:literal "B2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField03 a rdfs:Datatype ;
    rdfs:label "Bit Field of 3 bits"^^xsd:string ;
    qudt:abbreviation "bf3"^^xsd:string ;
    qudt:bits 3 ;
    qudt:id "T010-03"^^xsd:string ;
    qudt:mySQLName "BIT(3)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField03 ;
    ns1:code 183 ;
    ns1:literal "B3"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField04 a rdfs:Datatype ;
    rdfs:label "Bit Field of 4 bits"^^xsd:string ;
    qudt:abbreviation "bf4"^^xsd:string ;
    qudt:bits 4 ;
    qudt:id "T010-04"^^xsd:string ;
    qudt:mySQLName "BIT(4)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField04 ;
    ns1:code 184 ;
    ns1:literal "B4"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField05 a rdfs:Datatype ;
    rdfs:label "Bit Field of 5 bits"^^xsd:string ;
    qudt:abbreviation "bf5"^^xsd:string ;
    qudt:bits 5 ;
    qudt:id "T010-05"^^xsd:string ;
    qudt:mySQLName "BIT(5)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField05 ;
    ns1:code 185 ;
    ns1:literal "B5"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField06 a rdfs:Datatype ;
    rdfs:label "Bit Field of 6 bits"^^xsd:string ;
    qudt:abbreviation "bf6"^^xsd:string ;
    qudt:bits 6 ;
    qudt:id "T010-06"^^xsd:string ;
    qudt:mySQLName "BIT(6)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField06 ;
    ns1:code 186 ;
    ns1:literal "B6"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField07 a rdfs:Datatype ;
    rdfs:label "Bit Field of 7 bits"^^xsd:string ;
    qudt:abbreviation "bf7"^^xsd:string ;
    qudt:bits 7 ;
    qudt:id "T010-07"^^xsd:string ;
    qudt:mySQLName "BIT(7)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField07 ;
    ns1:code 187 ;
    ns1:literal "B7"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField08 a rdfs:Datatype ;
    rdfs:label "Bit Field of 8 bits"^^xsd:string ;
    qudt:abbreviation "bf8"^^xsd:string ;
    qudt:bits 8 ;
    qudt:id "T010-08"^^xsd:string ;
    qudt:mySQLName "BIT(8)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField08 ;
    ns1:code 188 ;
    ns1:literal "B8"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField09 a rdfs:Datatype ;
    rdfs:label "Bit Field of 9 bits"^^xsd:string ;
    qudt:abbreviation "bf9"^^xsd:string ;
    qudt:bits 9 ;
    qudt:id "T010-09"^^xsd:string ;
    qudt:mySQLName "BIT(9)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField09 ;
    ns1:code 189 ;
    ns1:literal "B9"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField10 a rdfs:Datatype ;
    rdfs:label "Bit Field Of 10 Bits"^^xsd:string ;
    qudt:abbreviation "bf10"^^xsd:string ;
    qudt:bitOrder qudt:BigEndian ;
    qudt:bits 10 ;
    qudt:byteOrder qudt:BigEndian ;
    qudt:id "T010-02"^^xsd:string ;
    qudt:mySQLName "BIT(10)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField10 ;
    ns1:code 190 ;
    ns1:literal "B10"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf qudt:BitField,
        rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField11 a rdfs:Datatype ;
    rdfs:label "Bit Field Of 11 Bits"^^xsd:string ;
    qudt:abbreviation "bf11"^^xsd:string ;
    qudt:bits 11 ;
    qudt:id "T010-11"^^xsd:string ;
    qudt:mySQLName "BIT(11)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField11 ;
    ns1:code 191 ;
    ns1:literal "B11"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf qudt:BitField,
        rdfs:Literal ;
    prov:wasInfluencedBy <http://dev.mysql.com/doc/refman/5.0/en/bit-type.html>,
        "http://dev.mysql.com/doc/refman/5.0/en/bit-type.html"^^xsd:anyURI .

qudt:BitField12 a rdfs:Datatype ;
    rdfs:label "Bit Field of 12 bits"^^xsd:string ;
    qudt:abbreviation "bf12"^^xsd:string ;
    qudt:bits 12 ;
    qudt:mySQLName "BIT(12)"^^xsd:string ;
    qudt:rdfsDatatype qudt:BitField12 ;
    ns1:literal "B12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf qudt:BitField,
        rdfs:Literal .

qudt:BooleanType-encoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:BooleanEncodingType ;
    sh:path qudt:encoding .

qudt:ByColumn a qudt:ArrayDataOrder ;
    rdfs:label "By Column"^^xsd:string ;
    ns1:literal "byColumn"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:ByLeftMostIndex a qudt:ArrayDataOrder ;
    rdfs:label "By Left Most Index"^^xsd:string ;
    ns1:literal "byLeftMostIndex"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:ByRow a qudt:ArrayDataOrder ;
    rdfs:label "By row"^^xsd:string ;
    ns1:literal "byRow"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:ByteAligned a qudt:AlignmentType ;
    rdfs:label "Byte Aligned"^^xsd:string,
        "Byte aligned"^^xsd:string ;
    dcterms:description "Alignment of a field at a byte boundary."^^rdf:HTML ;
    ns1:literal "byte"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CHAR a qudt:CharacterType ;
    rdfs:label "CHAR"^^xsd:string ;
    qudt:bits 8 ;
    qudt:bytes 1 ;
    qudt:encoding qudt:CharEncoding ;
    qudt:id "T001-01"^^xsd:string ;
    qudt:rdfsDatatype xsd:byte ;
    ns1:literal "char"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:CardinalityType-literal a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path ns1:literal .

qudt:Citation-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path dcterms:description .

qudt:Citation-url a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:maxCount 1 ;
    sh:path qudt:url .

qudt:ColorCue-rgbCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:rgbCode .

qudt:Comment-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path dcterms:description .

qudt:Comment-rationale a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype rdf:HTML ;
    sh:minCount 0 ;
    sh:path qudt:rationale .

qudt:CompositeDataStructure-dataElement a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:DataSetElement ;
    sh:path qudt:field .

qudt:CompositeDatatype-alignment a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:AlignmentType ;
    sh:path qudt:alignment .

qudt:CompositeDatatype-padding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:PaddingType ;
    sh:maxCount 1 ;
    sh:path qudt:padding .

qudt:CompositionTree-compositionFunction a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CompositionFunction ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:function .

qudt:Concept-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:abbreviation .

qudt:Concept-code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path ns1:code .

qudt:Concept-deprecated a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:deprecated .

qudt:Concept-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path dcterms:description .

qudt:Concept-exactMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Concept ;
    sh:path qudt:exactMatch .

qudt:Concept-guidance a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype rdf:HTML ;
    sh:path qudt:guidance .

qudt:Concept-hasRule a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Rule ;
    sh:path qudt:hasRule .

qudt:Concept-id a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:id .

qudt:Concept-isReplacedBy a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path dcterms:isReplacedBy .

qudt:Concept-plainTextDescription a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:plainTextDescription .

qudt:Concept-type a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:minCount 1 ;
    sh:path rdf:type .

qudt:ConstantValue-exactConstant a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:exactConstant .

qudt:ContextualUnit-broader a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path skos:broader .

qudt:CoordinateSystem-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:abbreviation .

qudt:CoordinateSystem-acronym a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path ns2:acronym .

qudt:CoordinateSystem-coordinateCenter a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateCenterKind ;
    sh:maxCount 1 ;
    sh:path qudt:coordinateCenter .

qudt:CoordinateSystem-originDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:originDefinition .

qudt:CoordinateSystem-referenceFrame a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:ReferenceFrame ;
    sh:maxCount 1 ;
    sh:path qudt:referenceFrame .

qudt:Coordinates-3D-DoublePrecision-double_X a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:double_X .

qudt:Coordinates-3D-DoublePrecision-double_Y a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:double_Y .

qudt:Coordinates-3D-DoublePrecision-double_Z a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:double_Z .

qudt:Coordinates-3D-SinglePrecision-float_X a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:float_X .

qudt:Coordinates-3D-SinglePrecision-float_Y a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:float_Y .

qudt:Coordinates-3D-SinglePrecision-float_Z a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:float ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:float_Z .

qudt:Coordinates-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateMember ;
    sh:path qudt:elementDatatype .

qudt:CurrencyUnit-currencyCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:currencyCode .

qudt:CurrencyUnit-currencyExponent a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:integer ;
    sh:path qudt:currencyExponent .

qudt:CurrencyUnit-currencyNumber a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:currencyNumber ;
    sh:pattern "^\\d{3}$"^^xsd:string .

qudt:DATETIME a qudt:DateStringType ;
    rdfs:label "Date Time"^^xsd:string ;
    dcterms:description "A time stamp encoded as a string 'YYYY-MM-DDThh:mm:ss[.dd]' or 'YYYY-DDDThh:mm:ss[.dd]', where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant, 'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. As many 'd' characters to the right of the period as required may be used to obtain the required precision. All fields require leading zeros."^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:exactMatch qudt:UTC-DATETIME ;
    qudt:rdfsDatatype xsd:dateTime ;
    ns1:literal "datetime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:DataEncoding-bitOrder a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EndianType ;
    sh:maxCount 1 ;
    sh:path qudt:bitOrder .

qudt:DataEncoding-byteOrder a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EndianType ;
    sh:maxCount 1 ;
    sh:path qudt:byteOrder .

qudt:DataEncoding-encoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Encoding ;
    sh:maxCount 1 ;
    sh:path qudt:encoding .

qudt:DataItem-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:node qudt:NumericListShape ;
    sh:path qudt:value .

qudt:DataSetElement-elementLabel a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:elementLabel .

qudt:DataSetElement-optional a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:optional .

qudt:DataSetElement-quantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:QuantityKind ;
    sh:maxCount 1 ;
    sh:path qudt:hasQuantityKind .

qudt:Datatype-ansiSQLName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:ansiSQLName .

qudt:Datatype-basis a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:maxCount 1 ;
    sh:path qudt:basis .

qudt:Datatype-bounded a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:bounded .

qudt:Datatype-cName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:cName .

qudt:Datatype-cardinality a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CardinalityType ;
    sh:maxCount 1 ;
    sh:path qudt:cardinality .

qudt:Datatype-id a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:deactivated true ;
    sh:maxCount 1 ;
    sh:path qudt:id .

qudt:Datatype-javaName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:javaName .

qudt:Datatype-jsName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:jsName .

qudt:Datatype-matlabName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:matlabName .

qudt:Datatype-microsoftSQLServerName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:microsoftSQLServerName .

qudt:Datatype-mySQLName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:minCount 0 ;
    sh:path qudt:mySQLName .

qudt:Datatype-odbcName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:odbcName .

qudt:Datatype-oleDBName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:oleDBName .

qudt:Datatype-oracleSQLName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:oracleSQLName .

qudt:Datatype-orderedType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:OrderedType ;
    sh:maxCount 1 ;
    sh:path qudt:orderedType .

qudt:Datatype-protocolBuffersName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:protocolBuffersName .

qudt:Datatype-pythonName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:pythonName .

qudt:Datatype-vbName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:vbName .

qudt:DateTimeStringEncodingType-allowedPattern a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:minCount 1 ;
    sh:path qudt:allowedPattern .

qudt:DateTimeStringType-encoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:DateTimeStringEncodingType ;
    sh:maxCount 1 ;
    sh:path qudt:encoding .

qudt:DimensionalityPropertyShape a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:dimensionality .

qudt:DimensionalityShape a sh:NodeShape ;
    rdfs:label "Dimensions Shape"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:severity sh:Warning ;
    sh:sparql [ sh:message "\"{$this}\" has {$actualDimensions} dimensions extent and needs to have {$specifiedDimensions}"^^xsd:string ;
            sh:prefixes <http://data.ashrae.org/standard223/1.0/data/pnnl-bdg2-1> ;
            sh:select """
        SELECT $this $actualDimensions $specifiedDimensions
        WHERE {
            $this qudt:dimensionality $dimensionality .
            $this qudt:dimensions ?dimensions .
            ?dimensions rdf:rest*/rdf:first $specifiedDimensions .
            { SELECT $this (COUNT(?listValue )AS $actualDimensions)
              WHERE {
              $this qudt:value/rdf:rest*/rdf:first ?listValue .
              } GROUP BY $this
            }
            FILTER ($actualDimensions != $specifiedDimensions)
          }
        """^^xsd:string ] ;
    sh:targetClass qudt:Array,
        qudt:List .

qudt:DiscreteState-inverted a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:inverted .

qudt:DoublePrecisionEncoding a qudt:FloatingPointEncodingType ;
    rdfs:label "Double Precision Encoding"^^xsd:string ;
    qudt:bytes 64 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:EarthCoordinateSystem-coordinateCenter a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateCenterKind ;
    sh:hasValue qudt:CCT_EarthCentered ;
    sh:path qudt:coordinateCenter .

qudt:Encoding-bits a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:bits .

qudt:Encoding-bytes a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:bytes .

qudt:EngineeringValueTupleMember-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:RealSinglePrecisionType ;
    sh:path qudt:elementDatatype .

qudt:EnumeratedQuantity-enumeratedValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:EnumeratedValue ;
    sh:maxCount 1 ;
    sh:path qudt:enumeratedValue .

qudt:EnumeratedQuantity-enumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Enumeration ;
    sh:maxCount 1 ;
    sh:path qudt:enumeration .

qudt:EnumeratedValue-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:abbreviation .

qudt:EnumeratedValue-altSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:altSymbol .

qudt:EnumeratedValue-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path dcterms:description .

qudt:EnumeratedValue-symbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:symbol .

qudt:Enumeration-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:abbreviation .

qudt:Enumeration-bits a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:bits .

qudt:Enumeration-default a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:EnumeratedValue ;
    sh:maxCount 1 ;
    sh:path qudt:default .

qudt:Enumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EnumeratedValue ;
    sh:path qudt:defaultValue .

qudt:Enumeration-element a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:EnumeratedValue ;
    sh:minCount 1 ;
    sh:path qudt:element .

qudt:Enumeration-encoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:encoding .

qudt:Enumeration-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EnumeratedValue ;
    sh:path ns1:value .

qudt:FLOAT_IEEE754-BINARY64 a qudt:RealDoublePrecisionType ;
    rdfs:label "IEEE754 BINARY64"^^xsd:string ;
    dcterms:description """
  <p>The IEEE-754 floating point datatype is a technical standard established in 1985 by the Institute of Electrical and Electronics Engineers (IEEE). 
  Many hardware floating point units use the IEEE 754 standard.
  """^^rdf:HTML ;
    qudt:base 2 ;
    qudt:bits 64 ;
    qudt:exactMatch qudt:FLOAT-DP ;
    qudt:id "T006-05"^^xsd:string ;
    qudt:maxExponent 970 ;
    qudt:maxMantissa 9007199254740991 ;
    qudt:minMantissa -9007199254740991 ;
    qudt:rdfsDatatype xsd:double ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/IEEE_floating_point> .

qudt:FT_INERTIAL a qudt:FrameType ;
    rdfs:label "Inertial Frame Type"^^xsd:string ;
    ns1:literal "inertial"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:FactorUnit-exponent a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:exponent .

qudt:FactorUnit-hasUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasUnit .

qudt:FieldType-elementName a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:elementName .

qudt:FieldType-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:path qudt:elementDatatype .

qudt:FieldType-fieldLabel a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:fieldLabel .

qudt:FieldType-fieldType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:minCount 1 ;
    sh:path qudt:fieldType .

qudt:Figure-figureCaption a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:figureCaption .

qudt:Figure-figureLabel a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:figureLabel .

qudt:Figure-height a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:height .

qudt:Figure-image a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:maxCount 1 ;
    sh:path qudt:image .

qudt:Figure-imageLocation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:imageLocation .

qudt:Figure-landscape a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:landscape .

qudt:Figure-width a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:width .

qudt:FunctionDatatype-argType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:path qudt:argType .

qudt:FunctionDatatype-functionArity a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:functionArity .

qudt:FunctionDatatype-returnType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:returnType .

qudt:HeterogenousArray-datatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:datatype .

qudt:HexBinaryType-length a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:length .

qudt:HexBinaryType-maxLength a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:maxLength .

qudt:HexBinaryType-minLength a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:minLength .

qudt:HexBinaryType-pattern a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:pattern .

qudt:IERS-TN-32-2004 a qudt:Citation ;
    rdfs:label "IERS-TN-32-2004"^^xsd:string ;
    dcterms:description """
  <p>IERS Conventions (2003), D. D. McCarthy and Gérard Petit (eds.), IERS Technical Note No. 32, 2004;
   <a href="http://www.iers.org/iers/publications/tn/tn32">http://www.iers.org/iers/publications/tn/tn32</a>.
  """^^rdf:HTML ;
    qudt:url "http://www.iers.org/iers/publications/tn/tn32."^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:IconicCue-image a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:image .

qudt:InertialCoordinateFrame-frameType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue qudt:FT_NON-ROTATING ;
    sh:path qudt:frameType .

qudt:InformativeReferencePropertyShape a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:or ( [ sh:datatype xsd:anyURI ] [ sh:class qudt:Citation ] ) ;
    sh:path qudt:informativeReference .

qudt:KinestheticCue-code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path ns1:code .

qudt:LittleEndian a qudt:EndianType ;
    rdfs:label "Little Endian"^^xsd:string ;
    dcterms:description "A little-endian machine stores the least significant byte first."^^rdf:HTML ;
    ns1:code 2 ;
    ns1:literal "little"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:LunarCoordinateSystem-coordinateCenter a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateCenterKind ;
    sh:hasValue qudt:CCT_MoonCentered ;
    sh:path qudt:coordinateCenter .

qudt:LunarCoordinateSystem-realization a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:realization .

qudt:LunarCoordinateSystem-xAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:xAxisDefinition .

qudt:LunarCoordinateSystem-yAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:yAxisDefinition .

qudt:LunarCoordinateSystem-zAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:zAxisDefinition .

qudt:Major a qudt:MajorMinorType ;
    rdfs:label "Major"^^xsd:string ;
    ns1:code 2 ;
    ns1:literal "major"^^xsd:string ;
    ns1:order 2 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/shacl/datatype> .

qudt:MarsCoordinateSystem-coordinateCenter a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateCenterKind ;
    sh:hasValue qudt:CCT_MarsCentered ;
    sh:path qudt:coordinateCenter .

qudt:Minor a qudt:MajorMinorType ;
    rdfs:label "Minor"^^xsd:string ;
    ns1:code 1 ;
    ns1:literal "minor"^^xsd:string ;
    ns1:order 1 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/shacl/datatype> .

qudt:ModalCue-duration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:duration .

qudt:ModalEnumeration-defaultValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:ModalCue ;
    sh:path qudt:defaultValue .

qudt:MultiDimensionalDataFormat-descriptor a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:descriptor .

qudt:MultiModalEnumeration-auralCueEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:auralCueEnumeration .

qudt:MultiModalEnumeration-iconicCueEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:iconicCueEnumeration .

qudt:MultiModalEnumeration-kinestheticCueEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:kinestheticCueEnumeration .

qudt:MultiModalEnumeration-modalCueEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:ModalEnumeration ;
    sh:path qudt:modalCueEnumeration .

qudt:MultiModalEnumeration-visualCueEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:visualCueEnumeration .

qudt:MultiModalType-auralCue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:auralCue .

qudt:MultiModalType-iconicCue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:iconicCue .

qudt:MultiModalType-kinestheticCue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:kinestheticCue .

qudt:MultiModalType-modalCue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:ModalCue ;
    sh:path qudt:modalCue .

qudt:MultiModalType-visualCue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:visualCue .

qudt:NRIF_ETEPMBF a qudt:NonRotatingInertialFrame ;
    rdfs:label "Earth True Equator and Prime Meridian Body Fixed"^^xsd:string ;
    qudt:exactMatch qudt:RRF_ITRF ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-01"^^xsd:string ;
    qudt:realization "The International Terrestrial Reference Frame (ITRF) is realized by the locations of a set of points or stations on a tide-free Earth. As measurements and models have improved or changed, these locations have been changed also and the ITRF has moved slightly with respect to the physical Earth every few years."^^xsd:string ;
    qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "The rotation pole of the Earth."^^xsd:string ;
    ns1:literal "ETEPMBF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NRIF_ETEPME a qudt:NonRotatingInertialFrame ;
    rdfs:label "Earth True Equator and Prime Meridian of Epoch"^^xsd:string ;
    dcterms:description """
  The "Earth's True Equator and Prime Meridian of Epoch" refers to a coordinate system defined by Earth’s equator and prime meridian at a specific moment in time, called the “epoch.”
  This system is used as a reference in astronomy, geodesy, and celestial mechanics.
  The NASA Deep Space Network uses the Lieske precession model (1976).
  """^^xsd:string ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-02"^^xsd:string ;
    qudt:informativeReference qudt:IERS-TN-32-2004 ;
    qudt:realization "The International Terrestrial Reference Frame as defined for 1993 (ITRF93), as located in the ICRF at the epoch given using a consistent set of precession, nutation, and timing and polar motion models."^^xsd:string ;
    qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth, in the ICRF and at the epoch given."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "The rotation pole of the Earth, in the ICRF and at the epoch given."^^xsd:string ;
    ns1:literal "ETEPME"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:prefLabel "Earth True Equator and Prime Meridian of Epoch"^^xsd:string .

qudt:NRIF_LPAE a qudt:NonRotatingInertialFrame ;
    rdfs:label "Lunar Principal Axis of Epoch"^^xsd:string ;
    qudt:abbreviation "LPAE"^^xsd:string ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-04"^^xsd:string ;
    qudt:xAxisDefinition "Points in the direction of the Moon’s prime meridian principal axis of Epoch (minimum moment of inertia)."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Points in the direction of the Moon’s North pole principal axis of Epoch (maximum moment of inertia)."^^xsd:string ;
    ns1:code 44 ;
    ns1:literal "LPAE"^^xsd:string ;
    rdfs:comment "Finding the principal axes depends on solving for the dynamics of the Moon’s orientation, which must be done in conjunction with solving for its motion in space, though the Moon’s motion in space can also be solved for independently. The terms “north pole” and “prime meridian” are loosely used for the Z and X axes respectively of both this and the Lunar Mean Earth frames."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Lunar Principal Axis Of Epoch Coordinate System"^^xsd:string ;
    skos:prefLabel "Lunar Principal Axis of Epoch"^^xsd:string .

qudt:NRIF_MMEIAUE a qudt:NonRotatingInertialFrame ;
    rdfs:label "Mars Mean Equator and IAU-Node of Epoch"^^xsd:string ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-05"^^xsd:string ;
    qudt:realization "This frame is realized from the ICRF, precessed and rotated Relationships: according to the formulae in IAU2000, [Seidelmann2000]"^^xsd:string ;
    qudt:xAxisDefinition "Defined as the cross product of the ICRF Z-axis with the Z-axis (as defined above)."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Defined as the pole vector of the Mars Mean Equator of Epoch."^^xsd:string ;
    ns1:code 50 ;
    ns1:literal "MMEIAUE"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Mars Mean Equator And IAU-Node Of Epoch Coordinate System"^^xsd:string ;
    skos:prefLabel "Mars Mean Equator and IAU-Node of Epoch"^^xsd:string .

qudt:NegativeX a qudt:AxialOrientationType ;
    rdfs:label "Negative X"^^xsd:string ;
    dcterms:description "The axis that is in the negative X direction."^^rdf:HTML ;
    ns1:code 1 ;
    ns1:literal "negativeX"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NegativeY a qudt:AxialOrientationType ;
    rdfs:label "Negative Y"^^xsd:string ;
    dcterms:description "The axis that is in the negative Y direction."^^rdf:HTML ;
    ns1:code 2 ;
    ns1:literal "negativeY"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NegativeZ a qudt:AxialOrientationType ;
    rdfs:label "Negative Z"^^xsd:string ;
    dcterms:description "The axis that is in the negative Z direction."^^rdf:HTML ;
    ns1:code 3 ;
    ns1:literal "negativeZ"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:NonRotatingInertialFrame-frameType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue qudt:FT_NON-ROTATING ;
    sh:path qudt:frameType .

qudt:NumericType-accuracy a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:accuracy .

qudt:NumericType-signedness a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:SignednessType ;
    sh:maxCount 1 ;
    sh:path qudt:signedness .

qudt:OrderedCollection-orderingRelation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class ns1:ComparisonOperator ;
    sh:maxCount 1 ;
    sh:path qudt:orderingRelation .

qudt:OrderedType-literal a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path ns1:literal .

qudt:OrdinalScale-order a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:nonNegativeInteger ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:order .

qudt:Organization-url a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:minCount 0 ;
    sh:path qudt:url .

qudt:PadWithAny a qudt:PaddingType ;
    rdfs:label "Pad with any"^^xsd:string ;
    dcterms:description """
  <p>Pad with either a one or a zero. 
  In other words, this is the "don't care" option.
  </p>
  """^^rdf:HTML ;
    ns1:literal "none"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:PadWithOnes a qudt:PaddingType ;
    rdfs:label "Pad with ones"^^xsd:string ;
    dcterms:description "Pad unused bits of a field with a one."^^rdf:HTML ;
    ns1:literal "ones"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:PadWithZeros a qudt:PaddingType ;
    rdfs:label "Pad with zeros"^^xsd:string ;
    dcterms:description "Pad unused bits of a field with a zero."^^rdf:HTML ;
    ns1:literal "zeros"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:PartiallyOrdered a qudt:OrderedType ;
    rdfs:label "Partially Ordered"^^xsd:string ;
    qudt:plainTextDescription "Partial ordered structure."^^xsd:string ;
    ns1:literal "partial"^^xsd:string ;
    rdfs:isDefinedBy <file:///Users/ralphtq/git-qudt/qudt-public-repo/qudt> .

qudt:PhysicalConstant-altSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:altSymbol .

qudt:PhysicalConstant-applicableSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:applicableSystem .

qudt:PhysicalConstant-applicableUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:applicableUnit .

qudt:PhysicalConstant-dbpediaMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:minCount 0 ;
    sh:path qudt:dbpediaMatch .

qudt:PhysicalConstant-exactConstant a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:boolean ;
    sh:path qudt:exactConstant .

qudt:PhysicalConstant-hasDimensionVector a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:path qudt:hasDimensionVector .

qudt:PhysicalConstant-iec61360Code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:minCount 0 ;
    sh:path qudt:iec61360Code .

qudt:PhysicalConstant-isoNormativeReference a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:path qudt:isoNormativeReference .

qudt:PhysicalConstant-latexDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:maxCount 1 ;
    sh:path qudt:latexDefinition .

qudt:PhysicalConstant-latexSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexSymbol .

qudt:PhysicalConstant-mathMLdefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:mathMLdefinition .

qudt:PhysicalConstant-normativeReference a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:path qudt:normativeReference .

qudt:PhysicalConstant-siExactMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:siExactMatch .

qudt:PhysicalConstant-symbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:symbol .

qudt:PhysicalConstant-ucumCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:UCUMcs ;
    sh:path qudt:ucumCode .

qudt:PositiveX a qudt:AxialOrientationType ;
    rdfs:label "Positive X"^^xsd:string ;
    dcterms:description "The axis that is in the positive X direction."^^rdf:HTML ;
    ns1:code 4 ;
    ns1:literal "positiveX"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:PositiveY a qudt:AxialOrientationType ;
    rdfs:label "Positive Y"^^xsd:string ;
    dcterms:description "The axis that is in the positive Y direction."^^rdf:HTML ;
    ns1:code 5 ;
    ns1:literal "positiveY"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:PositiveZ a qudt:AxialOrientationType ;
    rdfs:label "Positive Z"^^xsd:string ;
    dcterms:description "The axis that is in the positive Z direction."^^rdf:HTML ;
    ns1:code 6 ;
    ns1:literal "positiveZ"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Prefix-altSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:altSymbol .

qudt:Prefix-latexSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexSymbol .

qudt:Prefix-prefixMultiplier a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:decimal ;
    sh:maxCount 1 ;
    sh:path qudt:prefixMultiplier .

qudt:Prefix-prefixMultiplierSN a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:path qudt:prefixMultiplierSN .

qudt:Prefix-siExactMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:siExactMatch .

qudt:Prefix-symbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:symbol .

qudt:Prefix-ucumCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:ucumCode ;
    sh:pattern "[\\x21,\\x23-\\x27,\\x2a,\\x2c,\\x30-\\x3c,\\x3e-\\x5a,\\x5c,\\x5e-\\x7a,\\x7c,\\x7e]+"^^xsd:string .

qudt:Quantifiable-dataEncoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:DataEncoding ;
    sh:maxCount 1 ;
    sh:path qudt:dataEncoding .

qudt:Quantifiable-datatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or ( [ sh:class qudt:Datatype ] [ sh:class qudt:EnumeratedValue ] ) ;
    sh:path qudt:datatype .

qudt:Quantifiable-hasUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:maxCount 1 ;
    sh:path qudt:hasUnit .

qudt:Quantifiable-relativeStandardUncertainty a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:path qudt:relativeStandardUncertainty .

qudt:Quantifiable-standardUncertainty a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:decimal ;
    sh:maxCount 1 ;
    sh:path qudt:standardUncertainty .

qudt:Quantifiable-standardUncertaintySN a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:path qudt:standardUncertaintySN .

qudt:Quantifiable-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:node ( [ sh:or qudt:NumericTypeUnion ] [ sh:property [ sh:class qudt:DataItem ;
                        sh:path qudt:value ] ] [ sh:property [ sh:class qudt:EnumeratedValue ;
                        sh:path qudt:value ] ] ) ;
    sh:path qudt:value .

qudt:Quantifiable-valueSN a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:valueSN .

qudt:Quantity-hasQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:minCount 0 ;
    sh:path qudt:hasQuantityKind .

qudt:Quantity-isDeltaQuantity a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:boolean ;
    sh:path qudt:isDeltaQuantity .

qudt:Quantity-quantityValue a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityValue ;
    sh:path qudt:quantityValue .

qudt:QuantityKind-applicableCGSUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableCGSUnit .

qudt:QuantityKind-applicableISOUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableISOUnit .

qudt:QuantityKind-applicableImperialUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableImperialUnit .

qudt:QuantityKind-applicableSIUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableSIUnit .

qudt:QuantityKind-applicableUSCustomaryUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableUSCustomaryUnit .

qudt:QuantityKind-applicableUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:minCount 0 ;
    sh:path qudt:applicableUnit .

qudt:QuantityKind-baseCGSUnitDimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path qudt:baseCGSUnitDimensions .

qudt:QuantityKind-baseISOUnitDimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path qudt:baseISOUnitDimensions .

qudt:QuantityKind-baseImperialUnitDimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path qudt:baseImperialUnitDimensions .

qudt:QuantityKind-baseSIUnitDimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path qudt:baseSIUnitDimensions .

qudt:QuantityKind-baseUSCustomaryUnitDimensions a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or qudt:TextTypeUnion ;
    sh:path qudt:baseUSCustomaryUnitDimensions .

qudt:QuantityKind-belongsToSystemOfQuantities a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfQuantityKinds ;
    sh:path qudt:belongsToSystemOfQuantities .

qudt:QuantityKind-dimensionVectorForSI a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector_SI ;
    sh:maxCount 1 ;
    sh:path qudt:dimensionVectorForSI .

qudt:QuantityKind-expression a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:minCount 0 ;
    sh:path qudt:expression .

qudt:QuantityKind-hasDimensionVector a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasDimensionVector ;
    sh:severity sh:Info .

qudt:QuantityKind-iec61360Code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:iec61360Code .

qudt:QuantityKind-latexDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:maxCount 1 ;
    sh:path qudt:latexDefinition .

qudt:QuantityKind-mathMLdefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:mathMLdefinition .

qudt:QuantityKind-qkdvDenominator a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:path qudt:qkdvDenominator .

qudt:QuantityKind-qkdvNumerator a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:path qudt:qkdvNumerator .

qudt:QuantityKind-siExactMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:siExactMatch .

qudt:QuantityKindDimensionVector-dimensionExponentForAmountOfSubstance a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForAmountOfSubstance .

qudt:QuantityKindDimensionVector-dimensionExponentForElectricCurrent a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForElectricCurrent .

qudt:QuantityKindDimensionVector-dimensionExponentForLength a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForLength .

qudt:QuantityKindDimensionVector-dimensionExponentForLuminousIntensity a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForLuminousIntensity .

qudt:QuantityKindDimensionVector-dimensionExponentForMass a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForMass .

qudt:QuantityKindDimensionVector-dimensionExponentForThermodynamicTemperature a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForThermodynamicTemperature .

qudt:QuantityKindDimensionVector-dimensionExponentForTime a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionExponentForTime .

qudt:QuantityKindDimensionVector-dimensionlessExponent a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:dimensionlessExponent .

qudt:QuantityKindDimensionVector-hasReferenceQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:path qudt:hasReferenceQuantityKind .

qudt:QuantityKindDimensionVector-latexDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:maxCount 1 ;
    sh:path qudt:latexDefinition .

qudt:QuantityKindDimensionVector-latexSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexSymbol .

qudt:QuantityType-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:path ns1:value .

qudt:QuantityValueType-basis a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:QuantityType ;
    sh:path qudt:basis .

qudt:QuantityValueType-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:NumericType ;
    sh:path qudt:elementDatatype .

qudt:QuantityValueType-elementUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Unit ;
    sh:maxCount 1 ;
    sh:path qudt:elementUnit .

qudt:RRF_EMEPM a qudt:RotatingReferenceFrame ;
    rdfs:label "Earth Mean Equator and Prime Meridian"^^xsd:string ;
    dcterms:description """
  A rotating reference frame is a coordinate system that rotates relative to an inertial (non-accelerating) reference frame. 
  It is often used in physics, engineering, and mechanics to analyze motion from the perspective of an observer within the rotating frame.
  A rotating reference frame is non-inertial because it experiences angular acceleration or constant angular velocity relative to an inertial frame. 
  This requires the inclusion of fictitious forces (e.g., centrifugal and Coriolis forces) when applying Newton's laws of motion.
	Earth can be treated as a rotating reference frame to account for the Coriolis effect, which affects weather patterns and ocean currents.
	Analysis of systems like rotating machinery, merry-go-rounds, or gyroscopes often involves rotating reference frames.
	In astronomy it is used to simplify calculations in celestial mechanics by considering rotating planetary orbits.
	To relate observations in the rotating frame to an inertial frame, one must account for the angular velocity vector and apply transformations like:
  
  $$\\vec{F}{\\text{inertial}} = \\vec{F}{\\text{rotating}} - 2m (\\vec{\\omega} \\times \\vec{v}) - m \\vec{\\omega} \\times (\\vec{\\omega} \\times \\vec{r})$$
  
  
  where  $\\vec{\\omega}$ is the angular velocity,  $\\vec{v}$  is velocity in the rotating frame, and $\\vec{r}$ is the position vector.
  """^^qudt:LatexString ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-07"^^xsd:string ;
    qudt:realization "This frame is realized from the ICRF, precessed and rotated according to the formulae in IAU2000."^^xsd:string ;
    qudt:xAxisDefinition "The intersection of the prime meridian and the rotation equator of the Earth, in the ICRF and as a function of time."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "The mean rotation pole of the Earth, in the ICRF and as a function of time."^^xsd:string ;
    ns1:literal "EMEPM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:prefLabel "Earth Mean Equator and Prime Meridian"^^xsd:string .

qudt:RRF_LMEBF a qudt:RotatingReferenceFrame ;
    rdfs:label "Lunar Mean Earth Body-Fixed"^^xsd:string ;
    dcterms:description """
  <p>Lunar body-fixed coordinate frame aligned with the rotation axis of the Moon.
  The location of the LMEBF is a fixed rotation from the LPABF given in [Williams96] as:
   “The three rotations (in arcseconds) from Principal (P) to Mean (M) axes are:
    M = R_1(-0.15') R_2(-79.12') R_3(-66.48') P."
  Historical data and surface maps are given in this frame. 
  </p>
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-10"^^xsd:string ;
    qudt:realization "This is realized by the locations of the three Apollo and one Lunar laser ranging retroreflectors"^^xsd:string ;
    qudt:xAxisDefinition "Points in the direction of the Moon’s historical prime meridian (mean direction toward Earth)."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Points in the direction of the Moon’s North rotation pole (mean rotation axis)."^^xsd:string ;
    ns1:code 40 ;
    ns1:literal "LMEBF"^^xsd:string ;
    rdfs:comment """
  Reference: “Lunar moments, tides, orientation, and coordinate frames,” J. G. Williams, X. X. Newhall, and J. O. Dickey, Planet. Space Sci. 44:1077-1080, 1996.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Lunar Mean Earth Body Fixed Coordinate System"^^xsd:string ;
    skos:prefLabel "Lunar Mean Earth Body-Fixed"^^xsd:string .

qudt:RRF_LPABF a qudt:RotatingReferenceFrame ;
    rdfs:label "Lunar Principal Axis Body-Fixed"^^xsd:string ;
    dcterms:description """
  <p>
  Lunar body-fixed coordinate frame aligned with the principal axes of the Moon. 
  The location of the LPABF in the ICRF should be solved for in conjunction with solving for the Moon’s motion in space.
  </p>
  <p>
  Lunar gravity fields are defined in this frame. 
  Finding the principal axes depends on solving for the dynamics of the Moon's orientation,
   which must be done in conjunction with solving for its motion in space, though the Moon's motion in space can also be solved for independently. 
  The terms “north pole” and “prime meridian” are loosely used for the Z and X axes respectively of both this and the Lunar Mean Earth frames.
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-11"^^xsd:string ;
    qudt:realization "This is a fixed rotation from LMEBF"^^xsd:string ;
    qudt:xAxisDefinition "Points in the direction of the Moon's prime meridian principal axis (minimum moment of inertia)."^^xsd:string ;
    qudt:yAxisDefinition "Completes a standard, right-handed coordinate frame."^^xsd:string ;
    qudt:zAxisDefinition "Points in the direction of the Moon's North pole principal axis (maximum moment of inertia)."^^xsd:string ;
    ns1:code 42 ;
    ns1:literal "LPABF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:prefLabel "Lunar Principal Axis Body-Fixed"^^xsd:string .

qudt:RRF_LVC a qudt:RotatingReferenceFrame ;
    rdfs:label "Local Vertical Curvilinear"^^xsd:string ;
    dcterms:description """
  <p>
  Since this coordinate system is non-Euclidean, the axes are not defined by vectors but are lines and circles in space through an origin at a vehicle in orbit around a central body.
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_NON-ROTATING ;
    qudt:id "T110-12"^^xsd:string ;
    qudt:realization "Defined by the position and velocity vectors associated with a vehicle and thus directly related to the coordinate system in which those vectors are expressed."^^xsd:string ;
    qudt:xAxisDefinition "Defined as the circle that intersects the vehicle center-of-mass, is centered on the central body center, and lies in the vehicle orbit plane, positive in the direction of motion."^^xsd:string ;
    qudt:xCoordinateDefinition "Defined as the distance on C between the radial projection of P onto C and the Y-axis; this is taken to be positive if P is on the same side from the Y-Z plane as the vehicle velocity vector points and negative otherwise. Equivalently, if we let θ be the centralbody-centered angle from the vehicle to the projection of P onto the orbit plane (measured positively in a right-handed sense with respect to the vehicle orbit angular momentum), then the xcoordinate of the point is θ (in radians) times the radius of the vehicle. Note that the LVC x-coordinate is arbitrary for P located on N."^^xsd:string ;
    qudt:yAxisDefinition "Defined as the line that intersects the vehicle center-of-mass and is normal to the vehicle orbit plane, positive opposite the direction of the orbit angular momentum vector (thus completing a right-handed coordinate system)."^^xsd:string ;
    qudt:yCoordinateDefinition "Defined as the distance from the orbit plane, positive on the side opposite the angular momentum direction."^^xsd:string ;
    qudt:zAxisDefinition "Defined as the line through the vehicle center-of-mass and the central body center, positive toward the central body center."^^xsd:string ;
    qudt:zCoordinateDefinition "Defined as the distance from the central body center to the vehicle center-of-mass minus the distance between P and N; equivalently, the radius of C minus the radius of the projection of P onto the vehicle orbit plane."^^xsd:string ;
    ns1:literal "LVC"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:prefLabel "Local Vertical Curvilinear"^^xsd:string .

qudt:RRF_MMEPMBF a qudt:RotatingReferenceFrame ;
    rdfs:label "Mars Mean Equator and Prime Meridian Body-Fixed"^^xsd:string ;
    dcterms:description """
  <p>Mars body-fixed coordinate frame with the Mars North pole and prime meridian directions defined by the IAU/IAG [@Seidelmann:2000].</p>
  """^^rdf:HTML ;
    qudt:frameType qudt:FT_ROTATING ;
    qudt:id "T110-14"^^xsd:string ;
    ns1:code 52 ;
    ns1:literal "MMEPMBF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:definition "Mars Mean Equator And Prime Meridian Body-Fixed Coordinate System"^^xsd:string ;
    skos:prefLabel "Mars Mean Equator and Prime Meridian Body-Fixed"^^xsd:string .

qudt:RealDatatype-base a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:base .

qudt:RealDatatype-maxExponent a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:maxExponent .

qudt:RealDatatype-maxMantissa a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxMantissa .

qudt:RealDatatype-minMantissa a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:minMantissa .

qudt:RealDatatype-precision a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:precision .

qudt:ReferenceFrame-comment a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path ns2:comment .

qudt:ReferenceFrame-description a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path dcterms:description .

qudt:ReferenceFrame-frameType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:FrameType ;
    sh:path qudt:frameType .

qudt:ReferenceFrame-informativeReference a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:path qudt:informativeReference .

qudt:ReferenceFrame-realization a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:realization .

qudt:ReferenceFrame-xAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:xAxisDefinition .

qudt:ReferenceFrame-xCoordinateDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:xCoordinateDefinition .

qudt:ReferenceFrame-yAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:yAxisDefinition .

qudt:ReferenceFrame-yCoordinateDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:yCoordinateDefinition .

qudt:ReferenceFrame-zAxisDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:zAxisDefinition .

qudt:ReferenceFrame-zCoordinateDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:zCoordinateDefinition .

qudt:Roncoli2005 a qudt:Citation ;
    rdfs:label "Roncoli2005"^^xsd:string ;
    dcterms:description "\"Lunar Constants and Models Document”, R. Roncoli, JPL D-32296, September 23, 2005, http://ssd.jpl.nasa.gov/?lunar_doc."^^rdf:HTML ;
    qudt:url "http://ssd.jpl.nasa.gov/?lunar_doc"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    skos:prefLabel "Roncoli2005"^^xsd:string .

qudt:Rule-example a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:minCount 0 ;
    sh:path qudt:example .

qudt:Rule-rationale a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype rdf:HTML ;
    sh:minCount 0 ;
    sh:path qudt:rationale .

qudt:Rule-ruleType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:RuleType ;
    sh:path qudt:ruleType .

qudt:ScalarDataItem-datatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:ScalarDatatype ;
    sh:maxCount 1 ;
    sh:path qudt:datatype .

qudt:ScalarDataItem-value a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:or ( [ sh:class qudt:QuantityValue ] [ sh:or qudt:NumericTypeUnion ] ) ;
    sh:path qudt:value .

qudt:ScalarDatatype-bitOrder a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EndianType ;
    sh:maxCount 1 ;
    sh:path qudt:bitOrder .

qudt:ScalarDatatype-bits a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:or qudt:IntegerUnionList ;
    sh:path qudt:bits .

qudt:ScalarDatatype-byteOrder a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:EndianType ;
    sh:maxCount 1 ;
    sh:path qudt:byteOrder .

qudt:ScalarDatatype-bytes a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:or qudt:IntegerUnionList ;
    sh:path qudt:bytes .

qudt:ScalarDatatype-encoding a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Encoding ;
    sh:maxCount 1 ;
    sh:path qudt:encoding .

qudt:ScalarDatatype-length a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:length .

qudt:ScalarDatatype-maxExclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxExclusive .

qudt:ScalarDatatype-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxInclusive .

qudt:ScalarDatatype-minExclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:minExclusive .

qudt:ScalarDatatype-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:minInclusive .

qudt:ScalarDatatype-rdfsDatatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class rdfs:Datatype ;
    sh:maxCount 1 ;
    sh:path qudt:rdfsDatatype .

qudt:Scale-dataStructure a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:dataStructure .

qudt:Scale-permissibleMaths a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:MathsFunctionType ;
    sh:path qudt:permissibleMaths .

qudt:Scale-permissibleTransformation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:TransformType ;
    sh:path qudt:permissibleTransformation .

qudt:Scale-scaleType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:ScaleType ;
    sh:maxCount 1 ;
    sh:path qudt:scaleType .

qudt:ScaleType-dataStructure a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:dataStructure .

qudt:ScaleType-permissibleMaths a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:MathsFunctionType ;
    sh:path qudt:permissibleMaths .

qudt:ScaleType-permissibleTransformation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:TransformType ;
    sh:path qudt:permissibleTransformation .

qudt:SignedBigIntegerType-literal a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:path ns1:literal .

qudt:SignedBigIntegerType-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxInclusive .

qudt:SignedBigIntegerType-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:or ( [ sh:datatype xsd:string ] [ sh:datatype xsd:integer ] [ sh:datatype xsd:float ] [ sh:datatype xsd:decimal ] ) ;
    sh:path qudt:minInclusive .

qudt:SignedIntegerEncoding a qudt:IntegerEncodingType ;
    rdfs:label "Signed Integer Encoding"^^xsd:string ;
    qudt:bytes 4 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:SignedLongIntegerType-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:hasValue "SI32"^^xsd:string ;
    sh:path qudt:abbreviation .

qudt:SignedLongIntegerType-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxInclusive .

qudt:SignedLongIntegerType-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:or ( [ sh:datatype xsd:string ] [ sh:datatype xsd:integer ] [ sh:datatype xsd:float ] [ sh:datatype xsd:decimal ] ) ;
    sh:path qudt:minInclusive .

qudt:SignedShortIntegerType-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:path qudt:abbreviation .

qudt:SignedType-signedness a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:path qudt:signedness .

qudt:SinglePrecisionRealEncoding a qudt:FloatingPointEncodingType ;
    rdfs:label "Single Precision Real Encoding"^^xsd:string ;
    qudt:bytes 32 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:StateSpaceVector-coordinateSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CoordinateSystem ;
    sh:maxCount 1 ;
    sh:path qudt:coordinateSystem .

qudt:StringType-dimensionality a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:or ( [ sh:datatype xsd:integer ] [ sh:datatype xsd:int ] ) ;
    sh:path qudt:dimensionality .

qudt:StringType-isByteString a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:isByteString .

qudt:StringType-maxLength a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:maxLength .

qudt:StringType-memberDatatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CharacterType ;
    sh:path qudt:memberDatatype .

qudt:StringType-typeMatrix a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 0 ;
    sh:minCount 0 ;
    sh:path qudt:typeMatrix .

qudt:StringUTF16-memberDatatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CharacterType ;
    sh:hasValue qudt:UTF16-CHAR ;
    sh:path qudt:memberDatatype .

qudt:StringUTF8-memberDatatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:CharacterType ;
    sh:hasValue qudt:UTF8-CHAR ;
    sh:path qudt:memberDatatype .

qudt:StructuredDatatype-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Datatype ;
    sh:maxCount 1 ;
    sh:path qudt:elementDatatype .

qudt:SystemOfQuantityKinds-baseDimensionEnumeration a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Enumeration ;
    sh:maxCount 1 ;
    sh:path qudt:baseDimensionEnumeration .

qudt:SystemOfQuantityKinds-hasBaseQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:minCount 0 ;
    sh:path qudt:hasBaseQuantityKind .

qudt:SystemOfQuantityKinds-hasQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:minCount 0 ;
    sh:path qudt:hasQuantityKind .

qudt:SystemOfQuantityKinds-hasUnitSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:maxCount 1 ;
    sh:path qudt:hasUnitSystem .

qudt:SystemOfQuantityKinds-systemDerivedQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:minCount 0 ;
    sh:path qudt:systemDerivedQuantityKind .

qudt:SystemOfUnits-applicablePhysicalConstant a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:PhysicalConstant ;
    sh:path qudt:applicablePhysicalConstant .

qudt:SystemOfUnits-hasAllowedUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasAllowedUnit .

qudt:SystemOfUnits-hasBaseUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasBaseUnit .

qudt:SystemOfUnits-hasCoherentUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasCoherentUnit .

qudt:SystemOfUnits-hasDefinedUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasDefinedUnit .

qudt:SystemOfUnits-hasDerivedCoherentUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasDerivedCoherentUnit .

qudt:SystemOfUnits-hasDerivedUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasDerivedUnit .

qudt:SystemOfUnits-hasUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasUnit .

qudt:SystemOfUnits-prefix a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Prefix ;
    sh:path qudt:prefix .

qudt:TIME a qudt:TimeStringType ;
    rdfs:label "TIME"^^xsd:string ;
    dcterms:description "Time in hh:mm:ss[Z|(+|-)hh:mm]format."^^xsd:string ;
    qudt:dimensionality 1 ;
    qudt:id "T004-12"^^xsd:string ;
    qudt:rdfsDatatype xsd:time ;
    ns1:code 68 ;
    ns1:literal "time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Table-byRow a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:boolean ;
    sh:maxCount 1 ;
    sh:path qudt:byRow .

qudt:Table-columns a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:columns .

qudt:Table-dimensionality a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:dimensionality .

qudt:Table-rows a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:maxCount 1 ;
    sh:path qudt:rows .

qudt:TaggedEnumeration-code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path ns1:code .

qudt:ThreeTuple-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:TupleMember ;
    sh:minCount 0 ;
    sh:path qudt:elementDatatype .

qudt:ThreeTuple-elementTypeCount a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:hasValue 3 ;
    sh:path qudt:elementTypeCount .

qudt:Time-type a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:TimeStringType ;
    sh:path qudt:type .

qudt:TimeInterval-type a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:TimeStringType ;
    sh:path qudt:type .

qudt:TimeSeriesArray-incrementDatatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:TimeStringType ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:incrementDatatype .

qudt:TimeSeriesArray-vector a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:Vector ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:vector .

qudt:TotallyOrdered a qudt:OrderedType ;
    rdfs:label "Totally Ordered"^^xsd:string ;
    qudt:plainTextDescription "Totally ordered structure."^^xsd:string ;
    ns1:literal "total"^^xsd:string ;
    rdfs:isDefinedBy <file:///Users/ralphtq/git-qudt/qudt-public-repo/qudt> .

qudt:TupleMember-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:ScalarDatatype ;
    sh:path qudt:elementDatatype .

qudt:TupleMember-orderInStructure a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:orderInStructure .

qudt:Two-Tuple-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:minCount 0 ;
    sh:path qudt:elementDatatype .

qudt:Two-Tuple-elementTypeCount a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:hasValue 2 ;
    sh:path qudt:elementTypeCount .

qudt:TwoTuple-elementType a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:minCount 0 ;
    sh:path qudt:elementDatatype .

qudt:TwoTuple-elementTypeCount a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:hasValue 2 ;
    sh:path qudt:elementTypeCount .

qudt:TypeVector-datatype a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:DataType ;
    sh:path qudt:datatype .

qudt:UTC-DATETIME a qudt:DateStringType ;
    rdfs:label "UTC Date Time"^^xsd:string ;
    dcterms:description """
  <p>UTC is the time-scale maintained by the BIPM, with assistance from the IERS, which forms the basis of a coordinated dissemination of standard frequencies and time signals. 
  It corresponds exactly in rate with  the international reference scale of atomic time (TAI) but differs from it by an integer number of seconds.  
  TAI, based on the second (SI), as realized on the rotating geoid, is formed by the BIPM on the basis of clock data supplied by cooperating establishments. 
  It is in the form of a continuous scale, e.g. in days, hours, minutes and seconds from the origin 1 January, 1958 (adopted by the CGPM 1971).
  </p>
  <p>UTC date times are expressed as "YYYY-MM-DDThh:mm:ss[.dd]" or "YYYY-DDDThh:mm:ss[.dd]",
   where 'YYYY' is the year, 'MM' is the two-digit month, 'DD' is the two-digit day, 'DDD' is the three digit day of year, 'T' is constant,
    'hh:mm:ss[.dd]' is the UTC time in hours, minutes, seconds, and optional fractional seconds. 
  As many 'd' characters to the right of the period as required may be used to obtain the required precision. All fields require leading zeros.
  """^^rdf:HTML ;
    qudt:dimensionality 1 ;
    qudt:exactMatch qudt:DATETIME ;
    qudt:id "T004-13"^^xsd:string ;
    qudt:rdfsDatatype xsd:dateTime ;
    ns1:code 78 ;
    ns1:literal "utc-date"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UTC-DayTime a rdfs:Datatype ;
    rdfs:label "UTC Day time"^^xsd:string ;
    dcterms:description "YYYY-DDDThh:mm:ss.ddZ, where each character is an ASCII character using one octet with the following meanings: YYYY = Year in four-character subfield with values 0001-9999, DDD = Day of year in three-character subfield with values 001-365 or -366, T =  Calendar-Time separator, hh = Hour in two-character subfield with values 00-23,  mm = Minute in two-character subfield with values 00-59, ss = Second in two-character subfield with values 00-59 (-58 or -60 during leap seconds), dd = Decimal fraction of second in one- to n-character subfield, each d has values 0-9, and Z = time code terminator (optional)"^^xsd:string ;
    rdfs:comment "[0-9]{4}\\\\-[0-9]{3}T[0-9]{2}:[0-9]{2}:[0-9]{2}\\\\.[0-9]{2}Z?"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> ;
    rdfs:subClassOf xsd:string .

qudt:UTF16-StringEncoding a qudt:StringEncodingType ;
    rdfs:label "UTF-16 String"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:UTF8-StringEncoding a qudt:StringEncodingType ;
    rdfs:label "UTF-8 Encoding"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/datatype> .

qudt:Unit-altSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:altSymbol .

qudt:Unit-applicableSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:applicableSystem .

qudt:Unit-conversionMultiplier a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:decimal ;
    sh:maxCount 1 ;
    sh:path qudt:conversionMultiplier .

qudt:Unit-conversionMultiplierSN a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:path qudt:conversionMultiplierSN .

qudt:Unit-conversionOffset a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:decimal ;
    sh:maxCount 1 ;
    sh:path qudt:conversionOffset .

qudt:Unit-conversionOffsetSN a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:double ;
    sh:maxCount 1 ;
    sh:path qudt:conversionOffsetSN .

qudt:Unit-definedUnitOfSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:definedUnitOfSystem .

qudt:Unit-derivedCoherentUnitOfSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:derivedCoherentUnitOfSystem .

qudt:Unit-derivedUnitOfSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:derivedUnitOfSystem .

qudt:Unit-expression a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:minCount 0 ;
    sh:path qudt:expression .

qudt:Unit-factorUnitScalar a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:decimal ;
    sh:maxCount 1 ;
    sh:path qudt:factorUnitScalar .

qudt:Unit-hasDimensionVector a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasDimensionVector .

qudt:Unit-hasFactorUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:nodeKind sh:BlankNodeOrIRI ;
    sh:path qudt:hasFactorUnit .

qudt:Unit-hasQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:minCount 1 ;
    sh:path qudt:hasQuantityKind ;
    sh:severity sh:Info .

qudt:Unit-hasReciprocalUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:path qudt:hasReciprocalUnit .

qudt:Unit-iec61360Code a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:iec61360Code .

qudt:Unit-latexDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexDefinition .

qudt:Unit-latexSymbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:LatexString ;
    sh:minCount 0 ;
    sh:path qudt:latexSymbol .

qudt:Unit-mathMLdefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:maxCount 1 ;
    sh:path qudt:mathMLdefinition .

qudt:Unit-omUnit a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:path qudt:omUnit .

qudt:Unit-prefix a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Prefix ;
    sh:maxCount 1 ;
    sh:path qudt:prefix .

qudt:Unit-qkdvDenominator a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:path qudt:qkdvDenominator .

qudt:Unit-qkdvNumerator a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKindDimensionVector ;
    sh:maxCount 1 ;
    sh:path qudt:qkdvNumerator .

qudt:Unit-scalingOf a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:Unit ;
    sh:maxCount 1 ;
    sh:nodeKind sh:BlankNodeOrIRI ;
    sh:path qudt:scalingOf .

qudt:Unit-siExactMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:siExactMatch .

qudt:Unit-siUnitsExpression a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:minCount 0 ;
    sh:path qudt:siUnitsExpression .

qudt:Unit-symbol a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:symbol .

qudt:Unit-ucumCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype qudt:UCUMcs ;
    sh:maxCount 1 ;
    sh:path qudt:ucumCode ;
    sh:pattern "[\\x21-\\x7e]+"^^xsd:string .

qudt:Unit-udunitsCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:udunitsCode .

qudt:Unit-uneceCommonCode a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:string ;
    sh:path qudt:uneceCommonCode .

qudt:Unit-unitOfSystem a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:SystemOfUnits ;
    sh:path qudt:isUnitOfSystem .

qudt:Unordered a qudt:OrderedType ;
    rdfs:label "Unordered"^^xsd:string ;
    qudt:plainTextDescription "Unordered structure."^^xsd:string ;
    ns1:literal "unordered"^^xsd:string ;
    rdfs:isDefinedBy <file:///Users/ralphtq/git-qudt/qudt-public-repo/qudt> .

qudt:UnsignedBigIntegerType-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <file:///Users/ralphtq/git-qudt/qudt-public-repo/qudt> ;
    sh:hasValue "UI64"^^xsd:string ;
    sh:path qudt:abbreviation .

qudt:UnsignedBigIntegerType-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "2^{64}-1"^^xsd:string ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxInclusive .

qudt:UnsignedBigIntegerType-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "0"^^xsd:string ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:minInclusive .

qudt:UnsignedLongIntegerType-literal a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:string ;
    sh:path ns1:literal .

qudt:UnsignedLongIntegerType-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "2^{32}-1"^^xsd:string ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:maxInclusive .

qudt:UnsignedLongIntegerType-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "0"^^xsd:string ;
    sh:or qudt:NumericTypeUnion ;
    sh:path qudt:minInclusive .

qudt:UnsignedShortIntegerType-abbreviation a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "UI16"^^xsd:string ;
    sh:path qudt:abbreviation .

qudt:UnsignedShortIntegerType-maxInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "2^{16}-1"^^xsd:string ;
    sh:path qudt:maxInclusive .

qudt:UnsignedShortIntegerType-minInclusive a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:hasValue "0"^^xsd:string ;
    sh:path qudt:minInclusive .

qudt:UnsignedType-signedness a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:SignednessType ;
    sh:hasValue qudt:Unsigned ;
    sh:path qudt:signedness .

qudt:UserQuantityKind-hasQuantityKind a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:class qudt:QuantityKind ;
    sh:maxCount 1 ;
    sh:minCount 1 ;
    sh:path qudt:hasQuantityKind .

qudt:VariableLengthIntegerType-maxBits a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:hasValue 64 ;
    sh:path qudt:maxBits .

qudt:VariableLengthIntegerType-minBits a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:datatype xsd:integer ;
    sh:hasValue 1 ;
    sh:path qudt:minBits .

qudt:VehicleCoordinateSystem-pitchRotationDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:AxialOrientationType ;
    sh:maxCount 1 ;
    sh:path qudt:pitchRotationDefinition .

qudt:VehicleCoordinateSystem-rollRotationDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:AxialOrientationType ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:rollRotationDefinition .

qudt:VehicleCoordinateSystem-yawRotationDefinition a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    sh:class qudt:AxialOrientationType ;
    sh:maxCount 1 ;
    sh:minCount 0 ;
    sh:path qudt:yawRotationDefinition .

qudt:Verifiable-dbpediaMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:minCount 0 ;
    sh:path qudt:dbpediaMatch .

qudt:Verifiable-isoNormativeReference a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:minCount 0 ;
    sh:path qudt:isoNormativeReference .

qudt:Verifiable-normativeReference a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:datatype xsd:anyURI ;
    sh:minCount 0 ;
    sh:path qudt:normativeReference .

qudt:Verifiable-wikidataMatch a sh:PropertyShape ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    sh:maxCount 1 ;
    sh:path qudt:wikidataMatch .

qudt:WordAligned a qudt:AlignmentType ;
    rdfs:label "Word Aligned"^^xsd:string,
        "Word aligned"^^xsd:string ;
    dcterms:description "Alignment of a field at a word boundary, that is 2 bytes."^^rdf:HTML ;
    ns1:literal "word"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/vocab/datatype> .

qudt:accuracy a rdf:Property ;
    rdfs:label "accuracy"^^xsd:string ;
    dcterms:description """
  <p><em>Accuracy</em> is the degree to which a given quantity is correct and free from error. 
  For example, a quantity specified as 100+/-1 has an (absolute) accuracy of +/-1 (meaning its true value can fall in the range 99-101),
   while a quantity specified as 100+/-2% has a (relative) accuracy of +/-2% (meaning its true value can fall in the range 98-102).
  </p>
  <p>The concepts of accuracy and precision are both closely related and often confused. 
  While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x,
   the precision of x is the total number of significant decimal (or other) digits.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:alignment a rdf:Property ;
    rdfs:label "alignment"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:ansiSQLName a rdf:Property ;
    rdfs:label "ANSI SQL name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:applicableCGSUnit a rdf:Property ;
    rdfs:label "applicable CGS unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:applicableISOUnit a rdf:Property ;
    rdfs:label "applicable ISO unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:applicableImperialUnit a rdf:Property ;
    rdfs:label "applicable Imperial unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:applicablePhysicalConstant a rdf:Property ;
    rdfs:label "applicable physical constant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:applicableSIUnit a rdf:Property ;
    rdfs:label "applicable SI unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:applicableUSCustomaryUnit a rdf:Property ;
    rdfs:label "applicable US Customary unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:applicableUnit .

qudt:auralCue a rdf:Property ;
    rdfs:label "aural cue"^^xsd:string ;
    rdfs:subPropertyOf qudt:modalCue .

qudt:auralCueEnumeration a rdf:Property ;
    rdfs:label "aural cue enumeration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:modalCueEnumeration .

qudt:base a rdf:Property ;
    rdfs:label "base"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:baseDimensionEnumeration a rdf:Property ;
    rdfs:label "base dimension enumeration"^^xsd:string ;
    dcterms:description "This property associates a system of quantities with an enumeration that enumerates the base dimensions of the system in canonical order."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:belongsToSystemOfQuantities a rdf:Property ;
    rdfs:label "belongs to system of quantities"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:blockchainNetwork a rdf:Property ;
    rdfs:label "blockchain network"@en ;
    rdfs:comment "Primary network name (e.g., 'Bitcoin Mainnet', 'Ethereum Mainnet')."@en ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:bounded a rdf:Property ;
    rdfs:label "bounded"^^xsd:string ;
    dcterms:description "A datatype is bounded if its value space has either a finite upper and lower bound. Either bound may be inclusive or exclusive. "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:cName a rdf:Property ;
    rdfs:label "C Language name"^^xsd:string,
        "C name"^^xsd:string ;
    rdfs:comment "Datatype name in the C programming language"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:cardinality a rdf:Property ;
    rdfs:label "cardinality"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:columns a rdf:Property ;
    rdfs:label "columns"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:conversionMultiplier a rdf:Property ;
    rdfs:label "conversion multiplier"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:conversionMultiplierSN a rdf:Property ;
    rdfs:label "conversion multiplier scientific"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:conversionOffset a rdf:Property ;
    rdfs:label "conversion offset"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:conversionOffsetSN a rdf:Property ;
    rdfs:label "conversion offset scientific"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:coordinateSystem a rdf:Property ;
    rdfs:label "coordinate system"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:coordinateSystemFrame a rdf:Property ;
    rdfs:label "coordinate system frame"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:currencyNumber a rdf:Property ;
    rdfs:label "currency number"^^xsd:string ;
    dcterms:description "Three-digit Currency Code as defined by ISO 4217. For example, the currency number for the US dollar is \"840\"."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dataEncoding a rdf:Property ;
    rdfs:label "data encoding"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:dataOrder a rdf:Property ;
    rdfs:label "data order"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:default a rdf:Property ;
    rdfs:label "default"^^xsd:string ;
    dcterms:description "The default element in an enumeration"^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:deprecated a rdf:Property ;
    rdfs:label "deprecated"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:derivedCoherentUnitOfSystem a rdf:Property ;
    rdfs:label "is coherent derived unit of system"^^xsd:string ;
    dcterms:description "This property relates a unit of measure to the unit system in which the unit is derived from the system's base units with a proportionality constant of one."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:definedUnitOfSystem,
        qudt:derivedUnitOfSystem .

qudt:dimensionExponentForAmountOfSubstance a rdf:Property ;
    rdfs:label "dimension exponent for amount of substance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForElectricCurrent a rdf:Property ;
    rdfs:label "dimension exponent for electric current"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForLength a rdf:Property ;
    rdfs:label "dimension exponent for length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForLuminousIntensity a rdf:Property ;
    rdfs:label "dimension exponent for luminous intensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForMass a rdf:Property ;
    rdfs:label "dimension exponent for mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForThermodynamicTemperature a rdf:Property ;
    rdfs:label "dimension exponent for thermodynamic temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionExponentForTime a rdf:Property ;
    rdfs:label "dimension exponent for time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionVectorForSI a rdf:Property ;
    rdfs:label "dimension vector for SI"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:dimensionlessExponent a rdf:Property ;
    rdfs:label "dimensionless exponent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:element a rdf:Property ;
    rdfs:label "element"^^xsd:string ;
    dcterms:description "An element of an enumeration"^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:elementKind a rdf:Property ;
    rdfs:label "element kind"^^xsd:string ;
    dcterms:description "This property is used to describe the quantity kind for a dimensional data type."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:elementKind .

qudt:elementLabel a rdf:Property ;
    rdfs:label "element label"^^xsd:string ;
    dcterms:description "This property is used to label the field of a composite data structure."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:elementName a rdf:Property ;
    rdfs:label "element name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:elementUnit a rdf:Property ;
    rdfs:label "element unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:exactMatch a qudt:SymmetricRelation,
        rdf:Property ;
    rdfs:label "exact match"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:example a rdf:Property ;
    rdfs:label "example"^^xsd:string ;
    dcterms:description """
  The 'qudt:example' property is used to annotate an instance of a class with a reference to a concept that is an example. 
  The type of this property is 'rdf:Property'. 
  This allows both scalar and object ranges.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:exponent a rdf:Property ;
    rdfs:label "exponent"^^xsd:string ;
    qudt:plainTextDescription "Defines the exponent of a factor unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype>,
        <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:factorUnitScalar a rdf:Property ;
    rdfs:label "factorUnitScalar"^^xsd:string ;
    dcterms:description "For a derived unit that is not exactly the product of its factor units, this property defines the scalar with which that product has to be multiplied with."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/qudt> .

qudt:field a rdf:Property ;
    rdfs:label "field"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:figureCaption a rdf:Property ;
    rdfs:label "figure caption"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:figureLabel a rdf:Property ;
    rdfs:label "figure label"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:float_Z a rdf:Property ;
    rdfs:label "float Z"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:functionArity a rdf:Property ;
    rdfs:label "function arity"^^xsd:string ;
    dcterms:description "This property is used to state the number of arguments for a function type."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:guidance a rdf:Property ;
    rdfs:label "guidance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasAllowedUnit a rdf:Property ;
    rdfs:label "allowed unit"^^xsd:string ;
    dcterms:description """
  This property relates a unit system with a unit of measure that is not defined by or part of the system,
   but is allowed for use within the system.
   An allowed unit must be convertible to some dimensionally eqiuvalent unit that is defined by the system.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasUnit .

qudt:hasBaseUnit a rdf:Property ;
    rdfs:label "base unit"^^xsd:string ;
    dcterms:description """
  This property relates a system of units to a base unit defined within the system.
  The base units of a system are used to define the derived units of the system by expressing
   the derived units as products of the base units raised to a rational power.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasCoherentUnit .

qudt:hasDTICode a rdf:Property ;
    rdfs:label "has DTI code"@en ;
    rdfs:comment "ISO 24165 Digital Token Identifier (12-character alphanumeric)."@en ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasDerivedCoherentUnit a rdf:Property ;
    rdfs:label "derived coherent unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasCoherentUnit,
        qudt:hasDerivedUnit .

qudt:hasFactorUnit a rdf:Property ;
    rdfs:label "hasFactorUnit"^^xsd:string ;
    dcterms:description "This property relates a derived unit to one of its constituent factor units"^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/qudt> .

qudt:hasQuantityKindsList a rdf:Property ;
    rdfs:label "quantity kinds"^^xsd:string ;
    dcterms:description "This property is used to specify a list of quantity kinds."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:hasReciprocalUnit a rdf:Property ;
    rdfs:label "has reciprocal unit"^^xsd:string ;
    dcterms:description "Used to relate a unit to its reciprocal unit."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/qudt> .

qudt:hasReferenceQuantityKind a rdf:Property ;
    rdfs:label "has reference quantity kind"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hasRule a rdf:Property ;
    rdfs:label "has rule"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:height a rdf:Property ;
    rdfs:label "height"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:hexbinary a rdfs:Datatype,
        sh:NodeShape ;
    rdfs:label "hexbinary"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subClassOf xsd:string ;
    sh:datatype xsd:string ;
    sh:pattern "[0-9A-F]*"^^xsd:string .

qudt:iconicCue a rdf:Property ;
    rdfs:label "iconic cue"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:modalCue .

qudt:iconicCueEnumeration a rdf:Property ;
    rdfs:label "iconic cue enumeration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:modalCueEnumeration .

qudt:imageLocation a rdf:Property ;
    rdfs:label "image location"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:inverted a rdf:Property ;
    rdfs:label "inverted"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:isByteString a rdf:Property ;
    rdfs:label "is byte string"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:isHeterogeneous a rdf:Property ;
    rdfs:label "is heterogeneous"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:javaName a rdf:Property ;
    rdfs:label "java name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:jsName a rdf:Property ;
    rdfs:label "Javascript name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:kinestheticCue a rdf:Property ;
    rdfs:label "kinesthetic cue"^^xsd:string ;
    rdfs:subPropertyOf qudt:modalCue .

qudt:kinestheticCueEnumeration a rdf:Property ;
    rdfs:label "kinesthetic cue enumeration"^^xsd:string ;
    rdfs:subPropertyOf qudt:modalCueEnumeration .

qudt:landscape a rdf:Property ;
    rdfs:label "landscape"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:mathDefinition a rdf:Property ;
    rdfs:label "math definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:matlabName a rdf:Property ;
    rdfs:label "matlab name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:maxBits a rdf:Property ;
    rdfs:label "maximum bits"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:maxDepth a rdf:Property ;
    rdfs:label "max depth"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:maxExclusive a rdf:Property ;
    rdfs:label "max exclusive"^^xsd:string ;
    dcterms:description "maxExclusive is the exclusive upper bound of the value space for a datatype with the ordered property. The value of maxExclusive must be in the value space of the base type or be equal to {value} in {base type definition}."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:upperBound .

qudt:maxExponent a rdf:Property ;
    rdfs:label "max exponent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:maxMantissa a rdf:Property ;
    rdfs:label "max mantissa"^^xsd:string ;
    dcterms:description """
  <p>The maximium mantissa is the largest integer that may appear as a coefficient in a finite precision representation of a real number.
  For a given numeric data type, the value of <em>maxMantissa}</em> (<em>M</em>) and the values of <em>base</em> (<em>b</em>) and  <em>precision</em> (<em>p</em>) are related by the formula:
  </p>
  <p><em>M = b<sup></sup> - 1</em> .</p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:microsoftSQLServerName a rdf:Property ;
    rdfs:label "Microsoft SQL Server name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:minBits a rdf:Property ;
    rdfs:label "minimum bits"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:minExclusive a rdf:Property ;
    rdfs:label "min exclusive"^^xsd:string ;
    dcterms:description "minExclusive is the exclusive lower bound of the value space for a datatype with the ordered property. The value of minExclusive must be in the value space of the base type or be equal to {value} in {base type definition}."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:lowerBound .

qudt:minLength a rdf:Property ;
    rdfs:label "min length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:minMantissa a rdf:Property ;
    rdfs:label "min mantissa"^^xsd:string ;
    dcterms:description """
  <p>The minimium mantissa is the negative integer with the greatest magnitude that may appear as a coefficient in a finite precision representation of a real number.  
  For a given numeric data type, the value of <em>minMantissa</em> (<em>M</em>) and the values of <em>base</em> (<em>b</em>) and <em>precision</em> (<em>p</em>) are related by the formula:
  </p>
  <p><em>M = -(b<sup>p</sup> - 1)</em>.
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:mySQLName a rdf:Property ;
    rdfs:label "MySQL name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:odbcName a rdf:Property ;
    rdfs:label "ODBC name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:oleDBName a rdf:Property ;
    rdfs:label "OLE DB name"^^xsd:string ;
    dcterms:description """
  <p>OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. 
  The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE.
  """^^rdf:HTML,
        "OLE DB (Object Linking and Embedding, Database, sometimes written as OLEDB or OLE-DB), an API designed by Microsoft, allows accessing data from a variety of sources in a uniform manner. The API provides a set of interfaces implemented using the Component Object Model (COM); it is otherwise unrelated to OLE. "^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/OLE_DB"^^xsd:anyURI,
        "http://msdn.microsoft.com/en-us/library/windows/desktop/ms714931(v=vs.85).aspx"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id ;
    prov:wasInfluencedBy <http://en.wikipedia.org/wiki/OLE_DB>,
        <http://msdn.microsoft.com/en-us/library/windows/desktop/ms714931(v=vs.85).aspx> .

qudt:omUnit a rdf:Property ;
    rdfs:label "om unit"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:oracleSQLName a rdf:Property ;
    rdfs:label "ORACLE SQL name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:order a rdf:Property ;
    rdfs:label "order"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:orderInStructure a rdf:Property ;
    rdfs:label "order in structure"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:orderedType a rdf:Property ;
    rdfs:label "ordered type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:orderingRelation a rdf:Property ;
    rdfs:label "Ordering Relation"^^xsd:string ;
    dcterms:description """
  This property identifies the mathematical comparison operator (such as "<" or ">") that is used to order the elements of a collection.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:originDefinition a rdf:Property ;
    rdfs:label "origin definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:padding a rdf:Property ;
    rdfs:label "padding"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:pattern a rdf:Property ;
    rdfs:label "pattern"^^xsd:string ;
    dcterms:description "A pattern is a constraint on the value space of a datatype which is achieved by constraining the lexical space to literals which match a specific pattern. The value of pattern must be a regular expression."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:pitchRotationDefinition a rdf:Property ;
    rdfs:label "pitch rotation definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:rotationDefinition .

qudt:plainTextDescription a rdf:Property ;
    rdfs:label "description (plain text)"^^xsd:string ;
    dcterms:description "A plain text description is used to provide a description with only simple ASCII characters for cases where LaTeX , HTML or other markup would not be appropriate."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:precision a rdf:Property ;
    rdfs:label "precision"^^xsd:string ;
    dcterms:description """
  <p>Precision is the number of digits used to perform a given computation. 
  The concepts of accuracy and precision are both closely related and often confused. 
  While the accuracy of a number x is given by the number of significant decimal (or other) digits to the right of the decimal point in x,
   the precision of x is the total number of significant decimal (or other) digits.
  </p>
  <p>For a given numeric data type, the value of type:precision (?p) is related to the values of type:maxMantissa (?M) and type:base (?b) by the formula:
  </p>
  <p>?p := log(?b, ?M)
  </p>
  <p>where log(a,y) = x iff y=a^x.
  </p>
  """^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:prefixMultiplier a rdf:Property ;
    rdfs:label "prefix multiplier"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:prefixMultiplierSN a rdf:Property ;
    rdfs:label "prefix multiplier scientific"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:protocolBuffersName a rdf:Property ;
    rdfs:label "protocol buffers name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:pythonName a rdf:Property ;
    rdfs:label "python name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:quantity a rdf:Property ;
    rdfs:label "quantity"^^xsd:string ;
    dcterms:description "a property to relate an observable thing with a quantity (qud:Quantity)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:rdfsDatatype a rdf:Property ;
    rdfs:label "rdfs datatype"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:referenceFrame a rdf:Property ;
    rdfs:label "reference frame"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:coordinateSystemFrame .

qudt:relativeStandardUncertainty a rdf:Property ;
    rdfs:label "relative standard uncertainty"^^xsd:string ;
    dcterms:description "The relative standard uncertainty of a measurement is the (absolute) standard uncertainty divided by the magnitude of the exact value."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:returnType a rdf:Property ;
    rdfs:label "return type"^^xsd:string ;
    dcterms:description "This property is used to state the return type of a function type."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:elementDatatype .

qudt:rgbCode a rdf:Property ;
    rdfs:label "rgb code"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:rollRotationDefinition a rdf:Property ;
    rdfs:label "roll rotation definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:rotationDefinition .

qudt:rows a rdf:Property ;
    rdfs:label "rows"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:ruleType a rdf:Property ;
    rdfs:label "rule type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:scaleType a rdf:Property ;
    rdfs:label "scale type"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:scalingOf a rdf:Property ;
    rdfs:label "scalingOf"^^xsd:string ;
    dcterms:description "This property relates a unit that is scaled to the base unit that its qudt:conversionMultiplier converts it to"^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/qudt> .

qudt:siUnitsExpression a rdf:Property ;
    rdfs:label "si units expression"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:sound a rdf:Property ;
    rdfs:label "sound"^^xsd:string ;
    rdfs:comment "The intended use of the sound property is to be associated with modal enumerations"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:standardUncertainty a rdf:Property ;
    rdfs:label "standard uncertainty"^^xsd:string ;
    dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:standardUncertaintySN a rdf:Property ;
    rdfs:label "standard uncertainty scientific"^^xsd:string ;
    dcterms:description "The standard uncertainty of a quantity is the estimated standard deviation of the mean taken from a series of measurements."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:systemDerivedQuantityKind a rdf:Property ;
    rdfs:label "system derived quantity kind"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> ;
    rdfs:subPropertyOf qudt:hasQuantityKind .

qudt:typeMatrix a rdf:Property ;
    rdfs:label "type matrix"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:udunitsCode a rdf:Property ;
    rdfs:label "udunits code"^^xsd:string ;
    dcterms:description "The UDUNITS package supports units of physical quantities. Its C library provides for arithmetic manipulation of units and for conversion of numeric values between compatible units. The package contains an extensive unit database, which is in XML format and user-extendable. The package also contains a command-line utility for investigating units and converting values."^^rdf:HTML ;
    dcterms:source "https://www.unidata.ucar.edu/software/udunits/"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:uneceCommonCode a rdf:Property ;
    rdfs:label "unece common code"^^xsd:string ;
    dcterms:description "The UN/CEFACT Recommendation 20 provides three character alphabetic and alphanumeric codes for representing units of measurement for length, area, volume/capacity, mass (weight), time, and other quantities used in international trade. The codes are intended for use in manual and/or automated systems for the exchange of information between participants in international trade."^^rdf:HTML ;
    dcterms:source "https://service.unece.org/trade/uncefact/vocabulary/rec20/"^^xsd:anyURI,
        "https://unece.org/trade/documents/2021/06/uncefact-rec20-0"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:valueSN a rdf:Property ;
    rdfs:label "value scientific"^^xsd:string ;
    dcterms:description "A property to relate an observable thing with a value expressed in scientific notation"^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:vbName a rdf:Property ;
    rdfs:label "Visual Basic name"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:id .

qudt:vector a rdf:Property ;
    rdfs:label "vector"^^xsd:string .

qudt:vectorMagnitude a rdf:Property ;
    rdfs:label "vector magnitude"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:visualCue a rdf:Property ;
    rdfs:label "visual cue"^^xsd:string ;
    rdfs:subPropertyOf qudt:modalCue .

qudt:visualCueEnumeration a rdf:Property ;
    rdfs:label "visual cue enumeration"^^xsd:string ;
    rdfs:subPropertyOf qudt:modalCueEnumeration .

qudt:width a rdf:Property ;
    rdfs:label "width"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:wikidataMatch a rdf:Property ;
    rdfs:label "Wikidata match"^^xsd:string ;
    dcterms:description "This property relates a QUDT concept to a Wikidata item. The Wikidata item is identified by the Wikidata URI, which is of the form `https://www.wikidata.org/wiki/Q{number}`."^^rdf:HTML ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/qudt> .

qudt:xCoordinateDefinition a rdf:Property ;
    rdfs:label "X-Coordinate definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:yCoordinateDefinition a rdf:Property ;
    rdfs:label "Y-Coordinate definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

qudt:yawRotationDefinition a rdf:Property ;
    rdfs:label "Yaw rotation definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> ;
    rdfs:subPropertyOf qudt:rotationDefinition .

qudt:zCoordinateDefinition a rdf:Property ;
    rdfs:label "Z-Coordinate definition"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/schema/shacl/datatype> .

<http://qudt.org/vocab/constant/AtomicUnitOfCharge> a qudt:PhysicalConstant ;
    rdfs:label "atomic unit of charge"@en ;
    qudt:exactMatch <http://qudt.org/vocab/constant/ElementaryCharge> ;
    qudt:hasQuantityKind qudtqk:ElectricCharge ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_AtomicUnitOfCharge> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    skos:closeMatch <http://dbpedia.org/resource/Atomic_units> .

<http://qudt.org/vocab/constant/BohrMagneton> a qudt:PhysicalConstant ;
    rdfs:label "Bohr Magneton"@en ;
    dcterms:description """
  The $\\textit{Bohr Magneton}$ is a physical constant and the natural unit for expressing an
   electron magnetic dipole moment.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-T ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Bohr_magneton"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:MagneticDipoleMoment ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bohr_magneton"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_B = \\frac{e\\hbar}{2m_e}$, where $e$ is the elementary charge, $\\hbar$ is the Planck constant, and $m_e$ is the rest mass of electron."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu_B$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_BohrMagneton> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/ElementaryCharge> a qudt:PhysicalConstant ;
    rdfs:label "Elementary Charge"@en ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Elementary_charge"^^xsd:anyURI ;
    qudt:exactMatch <http://qudt.org/vocab/constant/AtomicUnitOfCharge> ;
    qudt:hasQuantityKind qudtqk:ElectricCharge ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Elementary_charge"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Elementary Charge\" is the electric charge carried by a single proton, or equivalently, the negation (opposite) of the electric charge carried by a single electron."^^xsd:string ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_ElementaryCharge> ;
    qudt:siExactMatch <https://si-digital-framework.org/constants/ElementaryCharge> ;
    qudt:symbol "e"^^xsd:string ;
    qudt:ucumCode "[e]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MagneticFluxQuantum> a qudt:PhysicalConstant ;
    rdfs:label "magnetic flux quantum"@en ;
    dcterms:description """
  The constant $\\textit{Magnetic Flux Quantum}$ is the quantum of magnetic flux passing through a superconductor.
  """^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Magnetic_flux_quantum"^^xsd:anyURI ;
    qudt:hasQuantityKind qudtqk:MagneticFlux ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Magnetic_flux_quantum"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Phi_0 = \\frac{h}{2e}$, where $h$ is the Planck constant and $e$ is the elementary charge."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Phi_0$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MagneticFluxQuantum> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarGasConstant> a qudt:PhysicalConstant ;
    rdfs:label "molar gas constant"@en ;
    dcterms:description """
  The constant $\\textit{Molar Gas Constant}$, also known as the gas constant, universal, or ideal gas constant, denoted by the symbol $R$,
   is a physical constant which is featured in many fundamental equations in the physical sciences,
   such as the ideal gas law and the Nernst equation. 
  It is equivalent to the Boltzmann constant, but expressed in units of energy (i.e. the pressure-volume
   product) per temperature increment per mole (rather than energy per temperature increment per particle).
  """^^qudt:LatexString ;
    qudt:abbreviation "j-mol^{-1}-k^{-1}"^^xsd:string ;
    qudt:applicableUnit unit:J-PER-MOL-K ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gas_constant"^^xsd:anyURI ;
    qudt:exactMatch <http://qudt.org/vocab/constant/UniversalGasConstant> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:hasQuantityKind qudtqk:MolarHeatCapacity ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gas_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$pV_m = RT$, where $p$ is pressure, $V_m$ is molar volume, and $T$ is thermodynamic temperature."^^qudt:LatexString ;
    qudt:latexSymbol "$R$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarGasConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K100KiloPA> a qudt:PhysicalConstant ;
    rdfs:label "molar volume of ideal gas 273.15 K 100 kPa"@en ;
    qudt:hasQuantityKind qudtqk:MolarVolume ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas273dot15K100KiloPA> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/MolarVolumeOfIdealGas273dot15K101dot325KiloPA> a qudt:PhysicalConstant ;
    rdfs:label "molar volume of ideal gas 273.15 K 101.325 kPa"@en ;
    qudt:hasQuantityKind qudtqk:MolarVolume ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarVolumeOfIdealGas273dot15K101dot325KiloPA> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/PlanckConstant> a qudt:PhysicalConstant ;
    rdfs:label "Planck Constant"@en ;
    dcterms:description """
  The constant $\\textit{Planck Constant}$ is a physical constant that is the quantum of action in quantum mechanics. 
  The Planck constant was first described as the proportionality constant between the energy ($E$) of a photon
   and the frequency ($\\nu$) of its associated electromagnetic wave.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:J-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Planck_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_constant"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$E = h\\nu = \\frac{hc}{\\lambda}$, where $E$ is energy, $\\nu$ is frequency, $\\lambda$ is wavelength, and $c$ is the speed of light."^^qudt:LatexString ;
    qudt:latexSymbol "$h$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_PlanckConstant> ;
    qudt:siExactMatch <https://si-digital-framework.org/constants/PlanckConstant> ;
    qudt:ucumCode "[h]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/SpeedOfLight_Vacuum> a qudt:PhysicalConstant ;
    rdfs:label "Speed of Light (vacuum)"@en ;
    dcterms:description """
  The $\\textit{Speed of Light in Vacuum}$, is a universal physical constant important in many areas of physics. 
  Its value is 299,792,458 metres per second, a figure that is exact because the length of the metre is
   defined from this constant and the international standard for time.
  """^^qudt:LatexString ;
    qudt:hasQuantityKind qudtqk:Speed ;
    qudt:informativeReference "http://dbpedia.org/resource/Speed_of_light"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Speed_of_light"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI,
        "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=113-01-34"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$c_0 = 1 / \\sqrt{\\epsilon_0 \\mu_0}$, where {\\epsilon_0} is the permittivity of vacuum, and $\\mu_0$ is the magnetic constant."^^qudt:LatexString ;
    qudt:latexSymbol "$C_0$"^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum>,
        <http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum_Imperial> ;
    qudt:siExactMatch <https://si-digital-framework.org/constants/SpeedOfLight> ;
    qudt:ucumCode "[c]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> ;
    rdfs:seeAlso <http://qudt.org/vocab/constant/MagneticConstant>,
        <http://qudt.org/vocab/constant/PermittivityOfVacuum> .

<http://qudt.org/vocab/constant/UniversalGasConstant> a qudt:PhysicalConstant ;
    rdfs:label "Universal Gas Constant"@en ;
    qudt:exactMatch <http://qudt.org/vocab/constant/MolarGasConstant> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:latexSymbol "$R$"^^qudt:LatexString ;
    qudt:plainTextDescription """
  The gas constant (also known as the molar, universal, or ideal gas constant) is a physical constant which is featured in many fundamental equations in the physical sciences, such as the ideal gas law and the Nernst equation.
  Physically, the gas constant is the constant of proportionality that happens to relate the energy scale in physics to the temperature scale, when a mole of particles at the stated temperature is being considered.
  """^^qudt:LatexString ;
    qudt:quantityValue <http://qudt.org/vocab/constant/Value_MolarGasConstant> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000031 ;
    qudt:standardUncertaintySN 3.1e-06 ;
    qudt:value 7294.299537 ;
    qudt:valueSN 7.2943e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?malsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleMass> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:relativeStandardUncertainty 5e-08 ;
    qudt:standardUncertainty 0.00000000000000000000000000000000033 ;
    qudt:standardUncertaintySN 3.3e-34 ;
    qudt:value 0.0000000000000000000000000066446562 ;
    qudt:valueSN 6.644656e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mal#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000003 ;
    qudt:standardUncertaintySN 3e-17 ;
    qudt:value 0.000000000597191917 ;
    qudt:valueSN 5.971919e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?malc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000093 ;
    qudt:standardUncertaintySN 9.3e-05 ;
    qudt:value 3727.379109 ;
    qudt:valueSN 3.727379e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?malc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle mass in atomic mass unit"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000062 ;
    qudt:standardUncertaintySN 6.2e-11 ;
    qudt:value 4.001506179127 ;
    qudt:valueSN 4.001506e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?malu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000062 ;
    qudt:standardUncertaintySN 6.2e-14 ;
    qudt:value 0.004001506179127 ;
    qudt:valueSN 4.001506e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmal#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AlphaParticleProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for alpha particle-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000041 ;
    qudt:standardUncertaintySN 4.1e-10 ;
    qudt:value 3.97259968951 ;
    qudt:valueSN 3.9726e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?malsmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AngstromStar> a qudt:ConstantValue ;
    rdfs:label "Value for Angstrom star"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000009 ;
    qudt:standardUncertaintySN 9e-17 ;
    qudt:value 0.000000000100001498 ;
    qudt:valueSN 1.000015e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?angstar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassConstant> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass constant"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000083 ;
    qudt:standardUncertaintySN 8.3e-35 ;
    qudt:value 0.000000000000000000000000001660538782 ;
    qudt:valueSN 1.660539e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?u#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass constant energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000074 ;
    qudt:standardUncertaintySN 7.4e-18 ;
    qudt:value 0.000000000149241783 ;
    qudt:valueSN 1.492418e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tuj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassConstantEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass constant energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000023 ;
    qudt:standardUncertaintySN 2.3e-05 ;
    qudt:value 931.494028 ;
    qudt:valueSN 9.31494e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 23.0 ;
    qudt:standardUncertaintySN 2.3e+01 ;
    qudt:value 931494028.0 ;
    qudt:valueSN 9.31494e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.049 ;
    qudt:standardUncertaintySN 4.9e-02 ;
    qudt:value 34231777.149 ;
    qudt:valueSN 3.423178e+07 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uhr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 320000000000000.0 ;
    qudt:standardUncertaintySN 3.2e+14 ;
    qudt:value 225234273690000000000000.0 ;
    qudt:valueSN 2.252343e+23 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 1100000.0 ;
    qudt:standardUncertaintySN 1.1e+06 ;
    qudt:value 751300667100000.0 ;
    qudt:valueSN 7.513007e+14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000074 ;
    qudt:standardUncertaintySN 7.4e-18 ;
    qudt:value 0.000000000149241783 ;
    qudt:valueSN 1.492418e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 19000000.0 ;
    qudt:standardUncertaintySN 1.9e+07 ;
    qudt:value 10809527000000.0 ;
    qudt:valueSN 1.080953e+13 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?uk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicMassUnitKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for atomic mass unit-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000083 ;
    qudt:standardUncertaintySN 8.3e-35 ;
    qudt:value 0.000000000000000000000000001660538782 ;
    qudt:valueSN 1.660539e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ukg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOf1stHyperpolarizability> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of 1st hyperpolarizability"^^xsd:string ;
    qudt:hasUnit unit:C3-M-PER-J2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000000000000000081 ;
    qudt:standardUncertaintySN 8.1e-61 ;
    qudt:value 0.00000000000000000000000000000000000000000000000000003206361533 ;
    qudt:valueSN 3.206362e-53 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auhypol#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOf2ndHyperpolarizability> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of 2nd hyperpolarizability"^^xsd:string ;
    qudt:hasUnit unit:C4-M4-PER-J3 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000000000000000000000000000000000000000000031 ;
    qudt:standardUncertaintySN 3.1e-72 ;
    qudt:value 0.0000000000000000000000000000000000000000000000000000000000000000623538095 ;
    qudt:valueSN 6.235381e-65 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?au2hypol#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfAction> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of action"^^xsd:string ;
    qudt:hasUnit unit:J-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000000000000053 ;
    qudt:standardUncertaintySN 5.3e-42 ;
    qudt:value 0.0000000000000000000000000000000001054571628 ;
    qudt:valueSN 1.054572e-34 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tthbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfCharge> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of charge"^^xsd:string ;
    qudt:hasUnit unit:C ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000004 ;
    qudt:standardUncertaintySN 4e-27 ;
    qudt:value 0.0000000000000000001602176487 ;
    qudt:valueSN 1.602176e-19 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?te#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfChargeDensity> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of charge density"^^xsd:string ;
    qudt:hasUnit unit:C-PER-M3 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 27000.0 ;
    qudt:standardUncertaintySN 2.7e+04 ;
    qudt:value 1081202300000.0 ;
    qudt:valueSN 1.081202e+12 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aucd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfCurrent> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of current"^^xsd:string ;
    qudt:hasUnit unit:A ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000017 ;
    qudt:standardUncertaintySN 1.7e-10 ;
    qudt:value 0.00662361763 ;
    qudt:valueSN 6.623618e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aucur#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricDipoleMoment> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric dipole mom."^^xsd:string ;
    qudt:hasUnit unit:C-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000021 ;
    qudt:standardUncertaintySN 2.1e-37 ;
    qudt:value 0.00000000000000000000000000000847835281 ;
    qudt:valueSN 8.478353e-30 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auedm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricField> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric field"^^xsd:string ;
    qudt:hasUnit unit:V-PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 13000.0 ;
    qudt:standardUncertaintySN 1.3e+04 ;
    qudt:value 514220632000.0 ;
    qudt:valueSN 5.142206e+11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auefld#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricFieldGradient> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric field gradient"^^xsd:string ;
    qudt:hasUnit unit:V-PER-M2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 240000000000000.0 ;
    qudt:standardUncertaintySN 2.4e+14 ;
    qudt:value 9717361660000000000000.0 ;
    qudt:valueSN 9.717362e+21 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auefg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPolarizability> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric polarizability"^^xsd:string ;
    qudt:hasUnit unit:C2-M2-PER-J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000000000000000034 ;
    qudt:standardUncertaintySN 3.4e-50 ;
    qudt:value 0.000000000000000000000000000000000000000016487772536 ;
    qudt:valueSN 1.648777e-41 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auepol#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricPotential> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric potential"^^xsd:string ;
    qudt:hasUnit unit:V ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000068 ;
    qudt:standardUncertaintySN 6.8e-07 ;
    qudt:value 27.21138386 ;
    qudt:valueSN 2.721138e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auep#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfElectricQuadrupoleMoment> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of electric quadrupole moment"^^xsd:string ;
    qudt:hasUnit unit:C-M2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-47 ;
    qudt:value 0.000000000000000000000000000000000000000448655107 ;
    qudt:valueSN 4.486551e-40 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aueqm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfEnergy> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of energy"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000022 ;
    qudt:standardUncertaintySN 2.2e-25 ;
    qudt:value 0.00000000000000000435974394 ;
    qudt:valueSN 4.359744e-18 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?thr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfForce> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of force"^^xsd:string ;
    qudt:hasUnit unit:N ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000041 ;
    qudt:standardUncertaintySN 4.1e-15 ;
    qudt:value 0.0000000823872206 ;
    qudt:valueSN 8.238722e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auforce#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfLength> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of length"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000036 ;
    qudt:standardUncertaintySN 3.6e-20 ;
    qudt:value 0.000000000052917720859 ;
    qudt:valueSN 5.291772e-11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tbohrrada0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticDipoleMoment> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of magnetic dipole moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000046 ;
    qudt:standardUncertaintySN 4.6e-31 ;
    qudt:value 0.0000000000000000000000185480183 ;
    qudt:valueSN 1.854802e-23 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumdm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfMagneticFluxDensity> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of magnetic flux density"^^xsd:string ;
    qudt:hasUnit unit:T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0059 ;
    qudt:standardUncertaintySN 5.9e-03 ;
    qudt:value 235051.7382 ;
    qudt:valueSN 2.350517e+05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumfd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfMagnetizability> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of magnetizability"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000027 ;
    qudt:standardUncertaintySN 2.7e-37 ;
    qudt:value 0.00000000000000000000000000007891036433 ;
    qudt:valueSN 7.891036e-29 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumag#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfMass> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000045 ;
    qudt:standardUncertaintySN 4.5e-38 ;
    qudt:value 0.000000000000000000000000000000910938215 ;
    qudt:valueSN 9.109382e-31 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ttme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfMomentum> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of momentum"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000099 ;
    qudt:standardUncertaintySN 9.9e-32 ;
    qudt:value 0.000000000000000000000001992851565 ;
    qudt:valueSN 1.992852e-24 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aumom#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfPermittivity> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of permittivity"^^xsd:string ;
    qudt:hasUnit unit:FARAD-PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.0000000001112650056 ;
    qudt:valueSN 1.11265e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auperm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfTime> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of time"^^xsd:string ;
    qudt:hasUnit unit:SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000016 ;
    qudt:standardUncertaintySN 1.6e-12 ;
    qudt:value 0.00000000000000002418884326505 ;
    qudt:valueSN 2.418884e-17 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?aut#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AtomicUnitOfVelocity> a qudt:ConstantValue ;
    rdfs:label "Value for atomic unit of velocity"^^xsd:string ;
    qudt:hasUnit unit:M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0015 ;
    qudt:standardUncertaintySN 1.5e-03 ;
    qudt:value 2187691.2541 ;
    qudt:valueSN 2.187691e+06 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?auvel#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_AvogadroConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Avogadro constant"^^xsd:string ;
    qudt:hasUnit unit:PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 30000000000000000.0 ;
    qudt:standardUncertaintySN 3e+16 ;
    qudt:value 602214179000000000000000.0 ;
    qudt:valueSN 6.022142e+23 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?na#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrMagneton> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr magneton"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000023 ;
    qudt:standardUncertaintySN 2.3e-31 ;
    qudt:value 0.00000000000000000000000927400915 ;
    qudt:valueSN 9.274009e-24 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrMagnetonInEVPerT> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr magneton in eV per T"^^xsd:string ;
    qudt:hasUnit unit:EV-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000079 ;
    qudt:standardUncertaintySN 7.9e-14 ;
    qudt:value 0.000057883817555 ;
    qudt:valueSN 5.788382e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrMagnetonInHzPerT> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr magneton in Hz perT"^^xsd:string ;
    qudt:hasUnit unit:HZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 350.0 ;
    qudt:standardUncertaintySN 3.5e+02 ;
    qudt:value 13996246040.0 ;
    qudt:valueSN 1.399625e+10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubshhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrMagnetonInInverseMetersPerTesla> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr magneton in inverse meters per tesla"^^xsd:string ;
    qudt:hasUnit unit:PER-T-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000012 ;
    qudt:standardUncertaintySN 1.2e-06 ;
    qudt:value 46.6864515 ;
    qudt:valueSN 4.668645e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubshcminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrMagnetonInKPerT> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr magneton in K per T"^^xsd:string ;
    qudt:hasUnit unit:K-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000012 ;
    qudt:standardUncertaintySN 1.2e-06 ;
    qudt:value 0.6717131 ;
    qudt:valueSN 6.717131e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mubskk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BohrRadius> a qudt:ConstantValue ;
    rdfs:label "Value for Bohr radius"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000036 ;
    qudt:standardUncertaintySN 3.6e-20 ;
    qudt:value 0.000000000052917720859 ;
    qudt:valueSN 5.291772e-11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?bohrrada0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BoltzmannConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Boltzmann constant"^^xsd:string ;
    qudt:hasUnit unit:J-PER-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000024 ;
    qudt:standardUncertaintySN 2.4e-29 ;
    qudt:value 0.000000000000000000000013806504 ;
    qudt:valueSN 1.38065e-23 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?k#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BoltzmannConstantInEVPerK> a qudt:ConstantValue ;
    rdfs:label "Value for Boltzmann constant in eV per K"^^xsd:string ;
    qudt:hasUnit unit:EV-PER-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000015 ;
    qudt:standardUncertaintySN 1.5e-10 ;
    qudt:value 0.00008617343 ;
    qudt:valueSN 8.617343e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tkev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BoltzmannConstantInHzPerK> a qudt:ConstantValue ;
    rdfs:label "Value for Boltzmann constant in Hz per K"^^xsd:string ;
    qudt:hasUnit unit:HZ-PER-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 36000.0 ;
    qudt:standardUncertaintySN 3.6e+04 ;
    qudt:value 20836644000.0 ;
    qudt:valueSN 2.083664e+10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kshhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_BoltzmannConstantInInverseMetersPerKelvin> a qudt:ConstantValue ;
    rdfs:label "Value for Boltzmann constant in inverse meters per kelvin"^^xsd:string ;
    qudt:hasUnit unit:PER-M-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00012 ;
    qudt:standardUncertaintySN 1.2e-04 ;
    qudt:value 69.50356 ;
    qudt:valueSN 6.950356e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kshcminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_CharacteristicImpedanceOfVacuum> a qudt:ConstantValue ;
    rdfs:label "Value for characteristic impedance of vacuum"^^xsd:string ;
    qudt:hasUnit unit:OHM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 376.730313461 ;
    qudt:valueSN 3.767303e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?z0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ClassicalElectronRadius> a qudt:ConstantValue ;
    rdfs:label "Value for classical electron radius"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000058 ;
    qudt:standardUncertaintySN 5.8e-24 ;
    qudt:value 0.0000000000000028179402894 ;
    qudt:valueSN 2.81794e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?re#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ComptonWavelength> a qudt:ConstantValue ;
    rdfs:label "Value for Compton wavelength"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000033 ;
    qudt:standardUncertaintySN 3.3e-21 ;
    qudt:value 0.0000000000024263102175 ;
    qudt:valueSN 2.42631e-12 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ecomwl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ComptonWavelengthOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for Compton wavelength over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000053 ;
    qudt:standardUncertaintySN 5.3e-22 ;
    qudt:value 0.00000000000038615926459 ;
    qudt:valueSN 3.861593e-13 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ecomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ConductanceQuantum> a qudt:ConstantValue ;
    rdfs:label "Value for conductance quantum"^^xsd:string ;
    qudt:hasUnit unit:S ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000053 ;
    qudt:standardUncertaintySN 5.3e-14 ;
    qudt:value 0.000077480917004 ;
    qudt:valueSN 7.748092e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?conqu2e2sh#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ConventionalValueOfJosephsonConstant> a qudt:ConstantValue ;
    rdfs:label "Value for conventional value of Josephson constant"^^xsd:string ;
    qudt:hasUnit unit:HZ-PER-V ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 483597900000000.0 ;
    qudt:valueSN 4.835979e+14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kj90#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ConventionalValueOfVonKlitzingConstant> a qudt:ConstantValue ;
    rdfs:label "Value for conventional value of von Klitzing constant"^^xsd:string ;
    qudt:hasUnit unit:OHM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 25812.807 ;
    qudt:valueSN 2.581281e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rk90#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_CuXUnit> a qudt:ConstantValue ;
    rdfs:label "Value for Cu x unit"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000028 ;
    qudt:standardUncertaintySN 2.8e-20 ;
    qudt:value 0.000000000000100207699 ;
    qudt:valueSN 1.002077e-13 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?xucukalph1#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronElectronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron-electron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000039 ;
    qudt:standardUncertaintySN 3.9e-12 ;
    qudt:value -0.0004664345537 ;
    qudt:valueSN -4.664346e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmuem#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000016 ;
    qudt:standardUncertaintySN 1.6e-06 ;
    qudt:value 3670.4829654 ;
    qudt:valueSN 3.670483e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000072 ;
    qudt:standardUncertaintySN 7.2e-09 ;
    qudt:value 0.8574382308 ;
    qudt:valueSN 8.574382e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gdn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-34 ;
    qudt:value 0.00000000000000000000000000433073465 ;
    qudt:valueSN 4.330735e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mud#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000039 ;
    qudt:standardUncertaintySN 3.9e-12 ;
    qudt:value 0.0004669754556 ;
    qudt:valueSN 4.669755e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000072 ;
    qudt:standardUncertaintySN 7.2e-09 ;
    qudt:value 0.8574382308 ;
    qudt:valueSN 8.574382e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMass> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000017 ;
    qudt:standardUncertaintySN 1.7e-34 ;
    qudt:value 0.0000000000000000000000000033435832 ;
    qudt:valueSN 3.343583e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?md#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000015 ;
    qudt:standardUncertaintySN 1.5e-17 ;
    qudt:value 0.000000000300506272 ;
    qudt:valueSN 3.005063e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000047 ;
    qudt:standardUncertaintySN 4.7e-05 ;
    qudt:value 1875.612793 ;
    qudt:valueSN 1.875613e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Deuteron Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000078 ;
    qudt:standardUncertaintySN 7.8e-11 ;
    qudt:value 2.013553212724 ;
    qudt:valueSN 2.013553e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000078 ;
    qudt:standardUncertaintySN 7.8e-14 ;
    qudt:value 0.002013553212724 ;
    qudt:valueSN 2.013553e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronNeutronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron-neutron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000011 ;
    qudt:standardUncertaintySN 1.1e-07 ;
    qudt:value -0.44820652 ;
    qudt:valueSN -4.482065e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmunn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron-proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000024 ;
    qudt:standardUncertaintySN 2.4e-09 ;
    qudt:value 0.307012207 ;
    qudt:valueSN 3.070122e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mudsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000022 ;
    qudt:standardUncertaintySN 2.2e-10 ;
    qudt:value 1.99900750108 ;
    qudt:valueSN 1.999008e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mdsmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_DeuteronRmsChargeRadius> a qudt:ConstantValue ;
    rdfs:label "Value for deuteron rms charge radius"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000028 ;
    qudt:standardUncertaintySN 2.8e-18 ;
    qudt:value 0.0000000000000021402 ;
    qudt:valueSN 2.1402e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectricConstant> a qudt:ConstantValue ;
    rdfs:label "Value for electric constant"^^xsd:string ;
    qudt:hasUnit unit:FARAD-PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.000000000008854187817 ;
    qudt:valueSN 8.854188e-12 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ep0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronChargeToMassQuotient> a qudt:ConstantValue ;
    rdfs:label "Value for electron charge to mass quotient"^^xsd:string ;
    qudt:hasUnit unit:C-PER-KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 4400.0 ;
    qudt:standardUncertaintySN 4.4e+03 ;
    qudt:value -175882015000.0 ;
    qudt:valueSN -1.75882e+11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?esme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronDeuteronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-deuteron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000018 ;
    qudt:standardUncertaintySN 1.8e-05 ;
    qudt:value -2143.923498 ;
    qudt:valueSN -2.143923e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmud#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronDeuteronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-deuteron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000012 ;
    qudt:standardUncertaintySN 1.2e-13 ;
    qudt:value 0.00027244371093 ;
    qudt:valueSN 2.724437e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for electron g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000035 ;
    qudt:standardUncertaintySN 3.5e-13 ;
    qudt:value -2.00231930436256 ;
    qudt:valueSN -2.002319e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gem#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron gyromagnetic ratio"^^xsd:string ;
    qudt:hasUnit unit:PER-T-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 4400.0 ;
    qudt:standardUncertaintySN 4.4e+03 ;
    qudt:value 176085977000.0 ;
    qudt:valueSN 1.76086e+11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammae#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronGyromagneticRatioOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for electron gyromagnetic ratio over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0007 ;
    qudt:standardUncertaintySN 7e-04 ;
    qudt:value 28024.95364 ;
    qudt:valueSN 2.802495e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammaebar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for electron magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000023 ;
    qudt:standardUncertaintySN 2.3e-31 ;
    qudt:value -0.00000000000000000000000928476377 ;
    qudt:valueSN -9.284764e-24 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muem#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMagneticMomentAnomaly> a qudt:ConstantValue ;
    rdfs:label "Value for electron magnetic moment anomaly"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000074 ;
    qudt:standardUncertaintySN 7.4e-13 ;
    qudt:value 0.00115965218111 ;
    qudt:valueSN 1.159652e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ae#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000074 ;
    qudt:standardUncertaintySN 7.4e-13 ;
    qudt:value -1.00115965218111 ;
    qudt:valueSN -1.00116e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000008 ;
    qudt:standardUncertaintySN 8e-07 ;
    qudt:value -1838.28197092 ;
    qudt:valueSN -1.838282e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMass> a qudt:ConstantValue ;
    rdfs:label "Value for electron mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000045 ;
    qudt:standardUncertaintySN 4.5e-38 ;
    qudt:value 0.000000000000000000000000000000910938215 ;
    qudt:valueSN 9.109382e-31 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?me#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for electron mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000041 ;
    qudt:standardUncertaintySN 4.1e-21 ;
    qudt:value 0.0000000000000818710438 ;
    qudt:valueSN 8.187104e-14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for electron mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000013 ;
    qudt:standardUncertaintySN 1.3e-08 ;
    qudt:value 0.51099891 ;
    qudt:valueSN 5.109989e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Electron Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000023 ;
    qudt:standardUncertaintySN 2.3e-13 ;
    qudt:value 0.00054857990943 ;
    qudt:valueSN 5.485799e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?meu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for electron molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000023 ;
    qudt:standardUncertaintySN 2.3e-16 ;
    qudt:value 0.00000054857990943 ;
    qudt:valueSN 5.485799e-07 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMuonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-muon magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000052 ;
    qudt:standardUncertaintySN 5.2e-06 ;
    qudt:value 206.7669877 ;
    qudt:valueSN 2.06767e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmumum#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronMuonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-muon mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000012 ;
    qudt:standardUncertaintySN 1.2e-10 ;
    qudt:value 0.00483633171 ;
    qudt:valueSN 4.836332e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronNeutronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-neutron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00023 ;
    qudt:standardUncertaintySN 2.3e-04 ;
    qudt:value 960.9205 ;
    qudt:valueSN 9.609205e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmunn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronNeutronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-neutron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000033 ;
    qudt:standardUncertaintySN 3.3e-13 ;
    qudt:value 0.00054386734459 ;
    qudt:valueSN 5.438673e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000054 ;
    qudt:standardUncertaintySN 5.4e-06 ;
    qudt:value -658.2106848 ;
    qudt:valueSN -6.582107e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000024 ;
    qudt:standardUncertaintySN 2.4e-13 ;
    qudt:value 0.00054461702177 ;
    qudt:valueSN 5.44617e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronTauMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron-tau mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000047 ;
    qudt:standardUncertaintySN 4.7e-08 ;
    qudt:value 0.000287564 ;
    qudt:valueSN 2.87564e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronToAlphaParticleMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron to alpha particle mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000058 ;
    qudt:standardUncertaintySN 5.8e-14 ;
    qudt:value 0.00013709335557 ;
    qudt:valueSN 1.370934e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mesmalpha#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronToShieldedHelionMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron to shielded helion magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00001 ;
    qudt:standardUncertaintySN 1e-05 ;
    qudt:value 864.058257 ;
    qudt:valueSN 8.640583e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmuhp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronToShieldedProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for electron to shielded proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000072 ;
    qudt:standardUncertaintySN 7.2e-06 ;
    qudt:value -658.2275971 ;
    qudt:valueSN -6.582276e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muemsmupp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000027 ;
    qudt:standardUncertaintySN 2.7e-17 ;
    qudt:value 0.000000001073544188 ;
    qudt:valueSN 1.073544e-09 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000092 ;
    qudt:standardUncertaintySN 9.2e-10 ;
    qudt:value 0.0367493254 ;
    qudt:valueSN 3.674933e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evhr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 6000000.0 ;
    qudt:standardUncertaintySN 6e+06 ;
    qudt:value 241798945400000.0 ;
    qudt:valueSN 2.417989e+14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.02 ;
    qudt:standardUncertaintySN 2e-02 ;
    qudt:value 806554.465 ;
    qudt:valueSN 8.065545e+05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000004 ;
    qudt:standardUncertaintySN 4e-27 ;
    qudt:value 0.0000000000000000001602176487 ;
    qudt:valueSN 1.602176e-19 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.02 ;
    qudt:standardUncertaintySN 2e-02 ;
    qudt:value 11604.505 ;
    qudt:valueSN 1.16045e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElectronVoltKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for electron volt-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000000000044 ;
    qudt:standardUncertaintySN 4.4e-44 ;
    qudt:value 0.000000000000000000000000000000000001782661758 ;
    qudt:valueSN 1.782662e-36 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?evkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElementaryCharge> a qudt:ConstantValue ;
    rdfs:label "Value for elementary charge"^^xsd:string ;
    qudt:hasUnit unit:C ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000004 ;
    qudt:standardUncertaintySN 4e-27 ;
    qudt:value 0.0000000000000000001602176487 ;
    qudt:valueSN 1.602176e-19 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?e#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ElementaryChargeOverH> a qudt:ConstantValue ;
    rdfs:label "Value for elementary charge over h"^^xsd:string ;
    qudt:hasUnit unit:A-PER-J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 6000000.0 ;
    qudt:standardUncertaintySN 6e+06 ;
    qudt:value 241798945400000.0 ;
    qudt:valueSN 2.417989e+14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?esh#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FaradayConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Faraday constant"^^xsd:string ;
    qudt:hasUnit unit:C-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0024 ;
    qudt:standardUncertaintySN 2.4e-03 ;
    qudt:value 96485.3399 ;
    qudt:valueSN 9.648534e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?f#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FermiCouplingConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Fermi coupling constant"^^xsd:string ;
    qudt:hasUnit unit:PER-GigaEV2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000001 ;
    qudt:standardUncertaintySN 1e-10 ;
    qudt:value 0.0000116637 ;
    qudt:valueSN 1.16637e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gf#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FineStructureConstant> a qudt:ConstantValue ;
    rdfs:label "Value for fine-structure constant"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000005 ;
    qudt:standardUncertaintySN 5e-12 ;
    qudt:value 0.0072973525376 ;
    qudt:valueSN 7.297353e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?alph#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FirstRadiationConstant> a qudt:ConstantValue ;
    rdfs:label "Value for first radiation constant"^^xsd:string ;
    qudt:hasUnit unit:W-M2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000019 ;
    qudt:standardUncertaintySN 1.9e-23 ;
    qudt:value 0.000000000000000374177118 ;
    qudt:valueSN 3.741771e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?c11strc#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_FirstRadiationConstantForSpectralRadiance> a qudt:ConstantValue ;
    rdfs:label "Value for first radiation constant for spectral radiance"^^xsd:string ;
    qudt:hasUnit unit:W-M2-PER-SR ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000059 ;
    qudt:standardUncertaintySN 5.9e-24 ;
    qudt:value 0.0000000000000001191042759 ;
    qudt:valueSN 1.191043e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?c1l#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_GravitationalConstant> a qudt:ConstantValue ;
    rdfs:label "Value for gravitational constant"^^xsd:string ;
    qudt:hasUnit unit:N-M2-PER-KiloGM2 ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Gravitational_constant"^^xsd:anyURI ;
    qudt:value 0.00000000006674 ;
    qudt:valueSN 6.674e-11 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000042 ;
    qudt:standardUncertaintySN 4.2e-17 ;
    qudt:value 0.000000029212622986 ;
    qudt:valueSN 2.921262e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hru#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000068 ;
    qudt:standardUncertaintySN 6.8e-07 ;
    qudt:value 27.21138386 ;
    qudt:valueSN 2.721138e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeEnergy> a qudt:ConstantValue ;
    rdfs:label "Value for Hartree energy"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000022 ;
    qudt:standardUncertaintySN 2.2e-25 ;
    qudt:value 0.00000000000000000435974394 ;
    qudt:valueSN 4.359744e-18 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeEnergyInEV> a qudt:ConstantValue ;
    rdfs:label "Value for Hartree energy in eV"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000068 ;
    qudt:standardUncertaintySN 6.8e-07 ;
    qudt:value 27.21138386 ;
    qudt:valueSN 2.721138e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?threv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 44000.0 ;
    qudt:standardUncertaintySN 4.4e+04 ;
    qudt:value 6579683920722000.0 ;
    qudt:valueSN 6.579684e+15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00015 ;
    qudt:standardUncertaintySN 1.5e-04 ;
    qudt:value 21947463.13705 ;
    qudt:valueSN 2.194746e+07 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000022 ;
    qudt:standardUncertaintySN 2.2e-25 ;
    qudt:value 0.00000000000000000435974394 ;
    qudt:valueSN 4.359744e-18 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.55 ;
    qudt:standardUncertaintySN 5.5e-01 ;
    qudt:value 315774.65 ;
    qudt:valueSN 3.157747e+05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HartreeKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hartree-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000000000000024 ;
    qudt:standardUncertaintySN 2.4e-42 ;
    qudt:value 0.0000000000000000000000000000000000485086934 ;
    qudt:valueSN 4.850869e-35 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hrkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for helion-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000052 ;
    qudt:standardUncertaintySN 5.2e-06 ;
    qudt:value 5495.8852765 ;
    qudt:valueSN 5.495885e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionMass> a qudt:ConstantValue ;
    rdfs:label "Value for helion mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000025 ;
    qudt:standardUncertaintySN 2.5e-34 ;
    qudt:value 0.00000000000000000000000000500641192 ;
    qudt:valueSN 5.006412e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mh#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for helion mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000022 ;
    qudt:standardUncertaintySN 2.2e-17 ;
    qudt:value 0.000000000449953864 ;
    qudt:valueSN 4.499539e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for helion mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00007 ;
    qudt:standardUncertaintySN 7e-05 ;
    qudt:value 2808.391383 ;
    qudt:valueSN 2.808391e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Helion Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000026 ;
    qudt:standardUncertaintySN 2.6e-09 ;
    qudt:value 3.0149322473 ;
    qudt:valueSN 3.014932e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for helion molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000026 ;
    qudt:standardUncertaintySN 2.6e-12 ;
    qudt:value 0.0030149322473 ;
    qudt:valueSN 3.014932e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmh#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HelionProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for helion-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000026 ;
    qudt:standardUncertaintySN 2.6e-09 ;
    qudt:value 2.9931526713 ;
    qudt:valueSN 2.993153e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mhsmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000064 ;
    qudt:standardUncertaintySN 6.4e-33 ;
    qudt:value 0.0000000000000000000000044398216294 ;
    qudt:valueSN 4.439822e-24 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000001 ;
    qudt:standardUncertaintySN 1e-22 ;
    qudt:value 0.00000000000000413566733 ;
    qudt:valueSN 4.135667e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000001 ;
    qudt:standardUncertaintySN 1e-12 ;
    qudt:value 0.0000000000000001519829846006 ;
    qudt:valueSN 1.51983e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzhr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.000000003335640951 ;
    qudt:valueSN 3.335641e-09 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000000033 ;
    qudt:standardUncertaintySN 3.3e-41 ;
    qudt:value 0.000000000000000000000000000000000662606896 ;
    qudt:valueSN 6.626069e-34 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000084 ;
    qudt:standardUncertaintySN 8.4e-17 ;
    qudt:value 0.000000000047992374 ;
    qudt:valueSN 4.799237e-11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_HertzKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for hertz-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000000000000037 ;
    qudt:standardUncertaintySN 3.7e-58 ;
    qudt:value 0.000000000000000000000000000000000000000000000000007372496 ;
    qudt:valueSN 7.372496e-51 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hzkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseFineStructureConstant> a qudt:ConstantValue ;
    rdfs:label "Value for inverse fine-structure constant"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000094 ;
    qudt:standardUncertaintySN 9.4e-08 ;
    qudt:value 137.035999679 ;
    qudt:valueSN 1.37036e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?alphinv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000019 ;
    qudt:standardUncertaintySN 1.9e-24 ;
    qudt:value 0.0000000000000013310250394 ;
    qudt:valueSN 1.331025e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000031 ;
    qudt:standardUncertaintySN 3.1e-14 ;
    qudt:value 0.000001239841875 ;
    qudt:valueSN 1.239842e-06 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000003 ;
    qudt:standardUncertaintySN 3e-19 ;
    qudt:value 0.0000000455633525276 ;
    qudt:valueSN 4.556335e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvhr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 299792458.0 ;
    qudt:valueSN 2.997925e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000099 ;
    qudt:standardUncertaintySN 9.9e-33 ;
    qudt:value 0.0000000000000000000000001986445501 ;
    qudt:valueSN 1.986446e-25 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000025 ;
    qudt:standardUncertaintySN 2.5e-08 ;
    qudt:value 0.014387752 ;
    qudt:valueSN 1.438775e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseMeterKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for inverse meter-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-49 ;
    qudt:value 0.0000000000000000000000000000000000000000022102187 ;
    qudt:valueSN 2.210219e-42 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?minvkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_InverseOfConductanceQuantum> a qudt:ConstantValue ;
    rdfs:label "Value for inverse of conductance quantum"^^xsd:string ;
    qudt:hasUnit unit:OHM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000088 ;
    qudt:standardUncertaintySN 8.8e-06 ;
    qudt:value 12906.4037787 ;
    qudt:valueSN 1.29064e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?invconqu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JosephsonConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Josephson constant"^^xsd:string ;
    qudt:hasUnit unit:HZ-PER-V ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 12000000.0 ;
    qudt:standardUncertaintySN 1.2e+07 ;
    qudt:value 483597891000000.0 ;
    qudt:valueSN 4.835979e+14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kjos#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 330.0 ;
    qudt:standardUncertaintySN 3.3e+02 ;
    qudt:value 6700536410.0 ;
    qudt:valueSN 6.700536e+09 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ju#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 160000000000.0 ;
    qudt:standardUncertaintySN 1.6e+11 ;
    qudt:value 6241509650000000000.0 ;
    qudt:valueSN 6.24151e+18 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 11000000000.0 ;
    qudt:standardUncertaintySN 1.1e+10 ;
    qudt:value 229371269000000000.0 ;
    qudt:valueSN 2.293713e+17 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jhr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 75000000000000000000000000.0 ;
    qudt:standardUncertaintySN 7.5e+25 ;
    qudt:value 1509190450000000000000000000000000.0 ;
    qudt:valueSN 1.50919e+33 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 250000000000000000.0 ;
    qudt:standardUncertaintySN 2.5e+17 ;
    qudt:value 5034117470000000000000000.0 ;
    qudt:valueSN 5.034117e+24 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 130000000000000000.0 ;
    qudt:standardUncertaintySN 1.3e+17 ;
    qudt:value 72429630000000000000000.0 ;
    qudt:valueSN 7.242963e+22 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_JouleKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for joule-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.00000000000000001112650056 ;
    qudt:valueSN 1.11265e-17 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?jkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000016 ;
    qudt:standardUncertaintySN 1.6e-19 ;
    qudt:value 0.00000000000009251098 ;
    qudt:valueSN 9.251098e-14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ku#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000015 ;
    qudt:standardUncertaintySN 1.5e-10 ;
    qudt:value 0.00008617343 ;
    qudt:valueSN 8.617343e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000055 ;
    qudt:standardUncertaintySN 5.5e-12 ;
    qudt:value 0.0000031668153 ;
    qudt:valueSN 3.166815e-06 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?khr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 36000.0 ;
    qudt:standardUncertaintySN 3.6e+04 ;
    qudt:value 20836644000.0 ;
    qudt:valueSN 2.083664e+10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?khz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00012 ;
    qudt:standardUncertaintySN 1.2e-04 ;
    qudt:value 69.50356 ;
    qudt:valueSN 6.950356e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000024 ;
    qudt:standardUncertaintySN 2.4e-29 ;
    qudt:value 0.000000000000000000000013806504 ;
    qudt:valueSN 1.38065e-23 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KelvinKilogramRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kelvin-kilogram relationship"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000000000027 ;
    qudt:standardUncertaintySN 2.7e-46 ;
    qudt:value 0.00000000000000000000000000000000000000015361807 ;
    qudt:valueSN 1.536181e-40 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kkg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramAtomicMassUnitRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-atomic mass unit relationship"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 30000000000000000000.0 ;
    qudt:standardUncertaintySN 3e+19 ;
    qudt:value 602214179000000000000000000.0 ;
    qudt:valueSN 6.022142e+26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramElectronVoltRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-electron volt relationship"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 14000000000000000000000000000.0 ;
    qudt:standardUncertaintySN 1.4e+28 ;
    qudt:value 560958912000000000000000000000000000.0 ;
    qudt:valueSN 5.609589e+35 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramHartreeRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-hartree relationship"^^xsd:string ;
    qudt:hasUnit unit:E_h ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 1000000000000000000000000000.0 ;
    qudt:standardUncertaintySN 1e+27 ;
    qudt:value 20614861600000000000000000000000000.0 ;
    qudt:valueSN 2.061486e+34 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kghr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramHertzRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-hertz relationship"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 6800000000000000000000000000000000000000000.0 ;
    qudt:standardUncertaintySN 6.8e+42 ;
    qudt:value 135639273300000000000000000000000000000000000000000.0 ;
    qudt:valueSN 1.356393e+50 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kghz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramInverseMeterRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-inverse meter relationship"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 23000000000000000000000000000000000.0 ;
    qudt:standardUncertaintySN 2.3e+34 ;
    qudt:value 452443915000000000000000000000000000000000.0 ;
    qudt:valueSN 4.524439e+41 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramJouleRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-joule relationship"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 89875517870000000.0 ;
    qudt:valueSN 8.987552e+16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_KilogramKelvinRelationship> a qudt:ConstantValue ;
    rdfs:label "Value for kilogram-kelvin relationship"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 11000000000000000000000000000000000.0 ;
    qudt:standardUncertaintySN 1.1e+34 ;
    qudt:value 6509651000000000000000000000000000000000.0 ;
    qudt:valueSN 6.509651e+39 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?kgk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_LatticeParameterOfSilicon> a qudt:ConstantValue ;
    rdfs:label "Value for lattice parameter of silicon"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000014 ;
    qudt:standardUncertaintySN 1.4e-17 ;
    qudt:value 0.000000000543102064 ;
    qudt:valueSN 5.431021e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?asil#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_LatticeSpacingOfSilicon> a qudt:ConstantValue ;
    rdfs:label "Value for lattice spacing of silicon"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000005 ;
    qudt:standardUncertaintySN 5e-18 ;
    qudt:value 0.0000000001920155762 ;
    qudt:valueSN 1.920156e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?d220sil#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_LoschmidtConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Loschmidt constant 273.15 K 101.325 kPa"^^xsd:string ;
    qudt:hasUnit unit:PER-M3 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 47000000000000000000.0 ;
    qudt:standardUncertaintySN 4.7e+19 ;
    qudt:value 26867774000000000000000000.0 ;
    qudt:valueSN 2.686777e+25 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?n0#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MagneticFluxQuantum> a qudt:ConstantValue ;
    rdfs:label "Value for magnetic flux quantum"^^xsd:string ;
    qudt:hasUnit unit:WB ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000052 ;
    qudt:standardUncertaintySN 5.2e-23 ;
    qudt:value 0.000000000000002067833667 ;
    qudt:valueSN 2.067834e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?flxquhs2e#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MoXUnit> a qudt:ConstantValue ;
    rdfs:label "Value for Mo x unit"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000053 ;
    qudt:standardUncertaintySN 5.3e-20 ;
    qudt:value 0.000000000000100209955 ;
    qudt:valueSN 1.0021e-13 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?xumokalph1#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarMassConstant> a qudt:ConstantValue ;
    rdfs:label "Value for molar mass constant"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.001 ;
    qudt:valueSN 1e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarMassOfCarbon12> a qudt:ConstantValue ;
    rdfs:label "Value for molar mass of carbon-12"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 0.012 ;
    qudt:valueSN 1.2e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mm12c#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarPlanckConstant> a qudt:ConstantValue ;
    rdfs:label "Value for molar Planck constant"^^xsd:string ;
    qudt:hasUnit unit:J-SEC-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000057 ;
    qudt:standardUncertaintySN 5.7e-19 ;
    qudt:value 0.00000000039903126821 ;
    qudt:valueSN 3.990313e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?nah#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarPlanckConstantTimesC> a qudt:ConstantValue ;
    rdfs:label "Value for molar Planck constant times c"^^xsd:string ;
    qudt:hasUnit unit:J-M-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000017 ;
    qudt:standardUncertaintySN 1.7e-10 ;
    qudt:value 0.11962656472 ;
    qudt:valueSN 1.196266e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?nahc#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MolarVolumeOfSilicon> a qudt:ConstantValue ;
    rdfs:label "Value for molar volume of silicon"^^xsd:string ;
    qudt:hasUnit unit:M3-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000011 ;
    qudt:standardUncertaintySN 1.1e-12 ;
    qudt:value 0.0000120588349 ;
    qudt:valueSN 1.205883e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mvolsil#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonComptonWavelength> a qudt:ConstantValue ;
    rdfs:label "Value for muon Compton wavelength"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000003 ;
    qudt:standardUncertaintySN 3e-22 ;
    qudt:value 0.00000000000001173444104 ;
    qudt:valueSN 1.173444e-14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mcomwl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonComptonWavelengthOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for muon Compton wavelength over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000047 ;
    qudt:standardUncertaintySN 4.7e-23 ;
    qudt:value 0.000000000000001867594295 ;
    qudt:valueSN 1.867594e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mcomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000052 ;
    qudt:standardUncertaintySN 5.2e-06 ;
    qudt:value 206.7682823 ;
    qudt:valueSN 2.067683e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for muon g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000012 ;
    qudt:standardUncertaintySN 1.2e-09 ;
    qudt:value -2.0023318414 ;
    qudt:valueSN -2.002332e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gmum#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for muon magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000016 ;
    qudt:standardUncertaintySN 1.6e-33 ;
    qudt:value -0.0000000000000000000000000449044786 ;
    qudt:valueSN -4.490448e-26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumum#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMagneticMomentAnomaly> a qudt:ConstantValue ;
    rdfs:label "Value for muon magnetic moment anomaly"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000006 ;
    qudt:standardUncertaintySN 6e-10 ;
    qudt:value 0.00116592069 ;
    qudt:valueSN 1.165921e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?amu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000012 ;
    qudt:standardUncertaintySN 1.2e-10 ;
    qudt:value -0.00484197049 ;
    qudt:valueSN -4.84197e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000023 ;
    qudt:standardUncertaintySN 2.3e-07 ;
    qudt:value -8.89059705 ;
    qudt:valueSN -8.890597e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMass> a qudt:ConstantValue ;
    rdfs:label "Value for muon mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-35 ;
    qudt:value 0.00000000000000000000000000018835313 ;
    qudt:valueSN 1.883531e-28 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for muon mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000095 ;
    qudt:standardUncertaintySN 9.5e-19 ;
    qudt:value 0.0000000000169283351 ;
    qudt:valueSN 1.692834e-11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for muon mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000038 ;
    qudt:standardUncertaintySN 3.8e-06 ;
    qudt:value 105.6583668 ;
    qudt:valueSN 1.056584e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Muon Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000029 ;
    qudt:standardUncertaintySN 2.9e-09 ;
    qudt:value 0.1134289256 ;
    qudt:valueSN 1.134289e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmuu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for muon molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000029 ;
    qudt:standardUncertaintySN 2.9e-12 ;
    qudt:value 0.0001134289256 ;
    qudt:valueSN 1.134289e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonNeutronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon-neutron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000029 ;
    qudt:standardUncertaintySN 2.9e-09 ;
    qudt:value 0.1124545167 ;
    qudt:valueSN 1.124545e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon-proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000085 ;
    qudt:standardUncertaintySN 8.5e-08 ;
    qudt:value -3.183345137 ;
    qudt:valueSN -3.183345e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mumumsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000029 ;
    qudt:standardUncertaintySN 2.9e-09 ;
    qudt:value 0.1126095261 ;
    qudt:valueSN 1.126095e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_MuonTauMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for muon-tau mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000097 ;
    qudt:standardUncertaintySN 9.7e-06 ;
    qudt:value 0.0594592 ;
    qudt:valueSN 5.94592e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmusmtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfAction> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of action"^^xsd:string ;
    qudt:hasUnit unit:J-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000000000000053 ;
    qudt:standardUncertaintySN 5.3e-42 ;
    qudt:value 0.0000000000000000000000000000000001054571628 ;
    qudt:valueSN 1.054572e-34 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?thbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfActionInEVS> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of action in eV s"^^xsd:string ;
    qudt:hasUnit unit:EV-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000016 ;
    qudt:standardUncertaintySN 1.6e-23 ;
    qudt:value 0.000000000000000658211899 ;
    qudt:valueSN 6.582119e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?thbarev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergy> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of energy"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000041 ;
    qudt:standardUncertaintySN 4.1e-21 ;
    qudt:value 0.0000000000000818710438 ;
    qudt:valueSN 8.187104e-14 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tmec2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfEnergyInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of energy in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000013 ;
    qudt:standardUncertaintySN 1.3e-08 ;
    qudt:value 0.51099891 ;
    qudt:valueSN 5.109989e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tmec2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfLength> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of length"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000053 ;
    qudt:standardUncertaintySN 5.3e-22 ;
    qudt:value 0.00000000000038615926459 ;
    qudt:valueSN 3.861593e-13 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tecomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfMass> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000045 ;
    qudt:standardUncertaintySN 4.5e-38 ;
    qudt:value 0.000000000000000000000000000000910938215 ;
    qudt:valueSN 9.109382e-31 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentum> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of momentum"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000014 ;
    qudt:standardUncertaintySN 1.4e-29 ;
    qudt:value 0.000000000000000000000273092406 ;
    qudt:valueSN 2.730924e-22 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mec#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfMomentumInMeVPerC> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of momentum in MeV c^-1"^^xsd:string ;
    qudt:hasUnit unit:MegaEV-PER-SpeedOfLight ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000013 ;
    qudt:standardUncertaintySN 1.3e-08 ;
    qudt:value 0.51099891 ;
    qudt:valueSN 5.109989e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mecmevsc#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfTime> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of time"^^xsd:string ;
    qudt:hasUnit unit:SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000018 ;
    qudt:standardUncertaintySN 1.8e-30 ;
    qudt:value 0.000000000000000000001288088657 ;
    qudt:valueSN 1.288089e-21 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?nut#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NaturalUnitOfVelocity> a qudt:ConstantValue ;
    rdfs:label "Value for natural unit of velocity"^^xsd:string ;
    qudt:hasUnit unit:M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 299792458.0 ;
    qudt:valueSN 2.997925e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tc#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronComptonWavelength> a qudt:ConstantValue ;
    rdfs:label "Value for neutron Compton wavelength"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000002 ;
    qudt:standardUncertaintySN 2e-24 ;
    qudt:value 0.0000000000000013195908951 ;
    qudt:valueSN 1.319591e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ncomwl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronComptonWavelengthOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for neutron Compton wavelength over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000031 ;
    qudt:standardUncertaintySN 3.1e-25 ;
    qudt:value 0.00000000000000021001941382 ;
    qudt:valueSN 2.100194e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ncomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronElectronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-electron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000025 ;
    qudt:standardUncertaintySN 2.5e-10 ;
    qudt:value 0.00104066882 ;
    qudt:valueSN 1.040669e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmue#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000011 ;
    qudt:standardUncertaintySN 1.1e-06 ;
    qudt:value 1838.6836605 ;
    qudt:valueSN 1.838684e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for neutron g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000009 ;
    qudt:standardUncertaintySN 9e-07 ;
    qudt:value -3.82608545 ;
    qudt:valueSN -3.826085e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gnn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron gyromagnetic ratio"^^xsd:string ;
    qudt:hasUnit unit:PER-T-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 43.0 ;
    qudt:standardUncertaintySN 4.3e+01 ;
    qudt:value 183247185.0 ;
    qudt:valueSN 1.832472e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gamman#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronGyromagneticRatioOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for neutron gyromagnetic ratio over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000069 ;
    qudt:standardUncertaintySN 6.9e-06 ;
    qudt:value 29.1646954 ;
    qudt:valueSN 2.91647e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammanbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for neutron magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000023 ;
    qudt:standardUncertaintySN 2.3e-33 ;
    qudt:value -0.0000000000000000000000000096623641 ;
    qudt:valueSN -9.662364e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000025 ;
    qudt:standardUncertaintySN 2.5e-10 ;
    qudt:value -0.00104187563 ;
    qudt:valueSN -1.041876e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000045 ;
    qudt:standardUncertaintySN 4.5e-07 ;
    qudt:value -1.91304273 ;
    qudt:valueSN -1.913043e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMass> a qudt:ConstantValue ;
    rdfs:label "Value for neutron mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000084 ;
    qudt:standardUncertaintySN 8.4e-35 ;
    qudt:value 0.000000000000000000000000001674927211 ;
    qudt:valueSN 1.674927e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for neutron mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000075 ;
    qudt:standardUncertaintySN 7.5e-18 ;
    qudt:value 0.0000000001505349505 ;
    qudt:valueSN 1.50535e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for neutron mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000023 ;
    qudt:standardUncertaintySN 2.3e-05 ;
    qudt:value 939.565346 ;
    qudt:valueSN 9.395653e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Neutron Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000043 ;
    qudt:standardUncertaintySN 4.3e-10 ;
    qudt:value 1.00866491597 ;
    qudt:valueSN 1.008665e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for neutron molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000043 ;
    qudt:standardUncertaintySN 4.3e-13 ;
    qudt:value 0.00100866491597 ;
    qudt:valueSN 1.008665e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronMuonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-muon mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000023 ;
    qudt:standardUncertaintySN 2.3e-07 ;
    qudt:value 8.89248409 ;
    qudt:valueSN 8.892484e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000016 ;
    qudt:standardUncertaintySN 1.6e-07 ;
    qudt:value -0.68497934 ;
    qudt:valueSN -6.849793e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000046 ;
    qudt:standardUncertaintySN 4.6e-10 ;
    qudt:value 1.00137841918 ;
    qudt:valueSN 1.001378e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronTauMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron-tau mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000086 ;
    qudt:standardUncertaintySN 8.6e-05 ;
    qudt:value 0.52874 ;
    qudt:valueSN 5.2874e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mnsmtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NeutronToShieldedProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for neutron to shielded proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000016 ;
    qudt:standardUncertaintySN 1.6e-07 ;
    qudt:value -0.68499694 ;
    qudt:valueSN -6.849969e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munsmupp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NewtonianConstantOfGravitation> a qudt:ConstantValue ;
    rdfs:label "Value for Newtonian constant of gravitation"^^xsd:string ;
    qudt:hasUnit unit:M3-PER-KiloGM-SEC2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:relativeStandardUncertainty 2.2e-05 ;
    qudt:standardUncertainty 0.0000000000000015 ;
    qudt:standardUncertaintySN 1.5e-15 ;
    qudt:value 0.000000000066743 ;
    qudt:valueSN 6.6743e-11 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?bg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NuclearMagneton> a qudt:ConstantValue ;
    rdfs:label "Value for nuclear magneton"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000013 ;
    qudt:standardUncertaintySN 1.3e-34 ;
    qudt:value 0.00000000000000000000000000505078324 ;
    qudt:valueSN 5.050783e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NuclearMagnetonInEVPerT> a qudt:ConstantValue ;
    rdfs:label "Value for nuclear magneton in eV per T"^^xsd:string ;
    qudt:hasUnit unit:EV-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000045 ;
    qudt:standardUncertaintySN 4.5e-17 ;
    qudt:value 0.000000031524512326 ;
    qudt:valueSN 3.152451e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NuclearMagnetonInInverseMetersPerTesla> a qudt:ConstantValue ;
    rdfs:label "Value for nuclear magneton in inverse meters per tesla"^^xsd:string ;
    qudt:hasUnit unit:PER-T-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000064 ;
    qudt:standardUncertaintySN 6.4e-10 ;
    qudt:value 0.02542623616 ;
    qudt:valueSN 2.542624e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munshcminv#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NuclearMagnetonInKPerT> a qudt:ConstantValue ;
    rdfs:label "Value for nuclear magneton in K per T"^^xsd:string ;
    qudt:hasUnit unit:K-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000064 ;
    qudt:standardUncertaintySN 6.4e-10 ;
    qudt:value 0.00036582637 ;
    qudt:valueSN 3.658264e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munskk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_NuclearMagnetonInMHzPerT> a qudt:ConstantValue ;
    rdfs:label "Value for nuclear magneton in MHz per T"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000019 ;
    qudt:standardUncertaintySN 1.9e-07 ;
    qudt:value 7.62259384 ;
    qudt:valueSN 7.622594e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?munshhz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PermittivityOfVacuum> a qudt:ConstantValue ;
    rdfs:label "Value for permittivity of vacuum"^^xsd:string ;
    qudt:hasUnit unit:FARAD-PER-M ;
    qudt:relativeStandardUncertainty 1.5e-10 ;
    qudt:value 0.0000000000068541878128 ;
    qudt:valueSN 6.854188e-12 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_Pi> a qudt:ConstantValue ;
    rdfs:label "Value for Pi"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Pi"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0 ;
    qudt:standardUncertaintySN 0e+00 ;
    qudt:value 3.141592653589793238462643383279503 ;
    qudt:valueSN 3.141593e+00 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Planck constant"^^xsd:string ;
    qudt:hasUnit unit:J-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000000000033 ;
    qudt:standardUncertaintySN 3.3e-41 ;
    qudt:value 0.000000000000000000000000000000000662606896 ;
    qudt:valueSN 6.626069e-34 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?h#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckConstantInEVS> a qudt:ConstantValue ;
    rdfs:label "Value for Planck constant in eV s"^^xsd:string ;
    qudt:hasUnit unit:EV-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000001 ;
    qudt:standardUncertaintySN 1e-22 ;
    qudt:value 0.00000000000000413566733 ;
    qudt:valueSN 4.135667e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiInEVS> a qudt:ConstantValue ;
    rdfs:label "Value for Planck constant over 2 pi in eV s"^^xsd:string ;
    qudt:hasUnit unit:EV-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000016 ;
    qudt:standardUncertaintySN 1.6e-23 ;
    qudt:value 0.000000000000000658211899 ;
    qudt:valueSN 6.582119e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbarev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckConstantOver2PiTimesCInMeVFm> a qudt:ConstantValue ;
    rdfs:label "Value for Planck constant over 2 pi times c in MeV fm"^^xsd:string ;
    qudt:hasUnit unit:MegaEV-FemtoM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000049 ;
    qudt:standardUncertaintySN 4.9e-06 ;
    qudt:value 197.3269631 ;
    qudt:valueSN 1.97327e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hbcmevf#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckLength> a qudt:ConstantValue ;
    rdfs:label "Value for Planck length"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000000081 ;
    qudt:standardUncertaintySN 8.1e-40 ;
    qudt:value 0.00000000000000000000000000000000001616252 ;
    qudt:valueSN 1.616252e-35 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckMass> a qudt:ConstantValue ;
    rdfs:label "Value for Planck mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000011 ;
    qudt:standardUncertaintySN 1.1e-12 ;
    qudt:value 0.0000000217644 ;
    qudt:valueSN 2.17644e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckMassEnergyEquivalentInGeV> a qudt:ConstantValue ;
    rdfs:label "Value for Planck mass energy equivalent in GeV"^^xsd:string ;
    qudt:hasUnit unit:GigaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 610000000000000.0 ;
    qudt:standardUncertaintySN 6.1e+14 ;
    qudt:value 12208920000000000000.0 ;
    qudt:valueSN 1.220892e+19 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkmc2gev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckTemperature> a qudt:ConstantValue ;
    rdfs:label "Value for Planck temperature"^^xsd:string ;
    qudt:hasUnit unit:K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 7100000000000000000000000000.0 ;
    qudt:standardUncertaintySN 7.1e+27 ;
    qudt:value 141678500000000000000000000000000.0 ;
    qudt:valueSN 1.416785e+32 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?plktmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_PlanckTime> a qudt:ConstantValue ;
    rdfs:label "Value for Planck time"^^xsd:string ;
    qudt:hasUnit unit:SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000000000000000000027 ;
    qudt:standardUncertaintySN 2.7e-48 ;
    qudt:value 0.0000000000000000000000000000000000000000000539124 ;
    qudt:valueSN 5.39124e-44 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?plkt#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonChargeToMassQuotient> a qudt:ConstantValue ;
    rdfs:label "Value for proton charge to mass quotient"^^xsd:string ;
    qudt:hasUnit unit:C-PER-KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 2.4 ;
    qudt:standardUncertaintySN 2.4e+00 ;
    qudt:value 95788339.2 ;
    qudt:valueSN 9.578834e+07 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?esmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonComptonWavelength> a qudt:ConstantValue ;
    rdfs:label "Value for proton Compton wavelength"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000019 ;
    qudt:standardUncertaintySN 1.9e-24 ;
    qudt:value 0.0000000000000013214098446 ;
    qudt:valueSN 1.32141e-15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?pcomwl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonComptonWavelengthOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for proton Compton wavelength over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000003 ;
    qudt:standardUncertaintySN 3e-25 ;
    qudt:value 0.00000000000000021030890861 ;
    qudt:valueSN 2.103089e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?pcomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000008 ;
    qudt:standardUncertaintySN 8e-07 ;
    qudt:value 1836.15267247 ;
    qudt:valueSN 1.836153e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for proton g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000046 ;
    qudt:standardUncertaintySN 4.6e-08 ;
    qudt:value 5.585694713 ;
    qudt:valueSN 5.585695e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton gyromagnetic ratio"^^xsd:string ;
    qudt:hasUnit unit:PER-T-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 7.0 ;
    qudt:standardUncertaintySN 7e+00 ;
    qudt:value 267522209.9 ;
    qudt:valueSN 2.675222e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammap#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonGyromagneticRatioOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for proton gyromagnetic ratio over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000011 ;
    qudt:standardUncertaintySN 1.1e-06 ;
    qudt:value 42.5774821 ;
    qudt:valueSN 4.257748e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammapbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for proton magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000037 ;
    qudt:standardUncertaintySN 3.7e-34 ;
    qudt:value 0.00000000000000000000000001410606662 ;
    qudt:valueSN 1.410607e-26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000012 ;
    qudt:standardUncertaintySN 1.2e-11 ;
    qudt:value 0.001521032209 ;
    qudt:valueSN 1.521032e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000023 ;
    qudt:standardUncertaintySN 2.3e-08 ;
    qudt:value 2.792847356 ;
    qudt:valueSN 2.792847e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMagneticShieldingCorrection> a qudt:ConstantValue ;
    rdfs:label "Value for proton magnetic shielding correction"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000014 ;
    qudt:standardUncertaintySN 1.4e-08 ;
    qudt:value 0.000025694 ;
    qudt:valueSN 2.5694e-05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigmapp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMass> a qudt:ConstantValue ;
    rdfs:label "Value for proton mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000083 ;
    qudt:standardUncertaintySN 8.3e-35 ;
    qudt:value 0.000000000000000000000000001672621637 ;
    qudt:valueSN 1.672622e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for proton mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000075 ;
    qudt:standardUncertaintySN 7.5e-18 ;
    qudt:value 0.0000000001503277359 ;
    qudt:valueSN 1.503277e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for proton mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000023 ;
    qudt:standardUncertaintySN 2.3e-05 ;
    qudt:value 938.272013 ;
    qudt:valueSN 9.38272e+02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Proton Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000001 ;
    qudt:standardUncertaintySN 1e-10 ;
    qudt:value 1.00727646677 ;
    qudt:valueSN 1.007276e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for proton molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000001 ;
    qudt:standardUncertaintySN 1e-13 ;
    qudt:value 0.00100727646677 ;
    qudt:valueSN 1.007276e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonMuonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton-muon mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000023 ;
    qudt:standardUncertaintySN 2.3e-07 ;
    qudt:value 8.88024339 ;
    qudt:valueSN 8.880243e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonNeutronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton-neutron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000034 ;
    qudt:standardUncertaintySN 3.4e-07 ;
    qudt:value -1.45989806 ;
    qudt:valueSN -1.459898e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupsmunn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonNeutronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton-neutron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000046 ;
    qudt:standardUncertaintySN 4.6e-10 ;
    qudt:value 0.99862347824 ;
    qudt:valueSN 9.986235e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonRmsChargeRadius> a qudt:ConstantValue ;
    rdfs:label "Value for proton rms charge radius"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000069 ;
    qudt:standardUncertaintySN 6.9e-18 ;
    qudt:value 0.0000000000000008768 ;
    qudt:valueSN 8.768e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ProtonTauMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for proton-tau mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000086 ;
    qudt:standardUncertaintySN 8.6e-05 ;
    qudt:value 0.528012 ;
    qudt:valueSN 5.28012e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mpsmtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_QuantumOfCirculation> a qudt:ConstantValue ;
    rdfs:label "Value for quantum of circulation"^^xsd:string ;
    qudt:hasUnit unit:M2-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000005 ;
    qudt:standardUncertaintySN 5e-13 ;
    qudt:value 0.00036369475199 ;
    qudt:valueSN 3.636948e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?qucirchs2me#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_QuantumOfCirculationTimes2> a qudt:ConstantValue ;
    rdfs:label "Value for quantum of circulation times 2"^^xsd:string ;
    qudt:hasUnit unit:M2-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000001 ;
    qudt:standardUncertaintySN 1e-12 ;
    qudt:value 0.000727389504 ;
    qudt:valueSN 7.273895e-04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?hsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_RydbergConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Rydberg constant"^^xsd:string ;
    qudt:hasUnit unit:PER-M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000073 ;
    qudt:standardUncertaintySN 7.3e-05 ;
    qudt:value 10973731.568527 ;
    qudt:valueSN 1.097373e+07 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?ryd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_RydbergConstantTimesCInHz> a qudt:ConstantValue ;
    rdfs:label "Value for Rydberg constant times c in Hz"^^xsd:string ;
    qudt:hasUnit unit:HZ ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 22000.0 ;
    qudt:standardUncertaintySN 2.2e+04 ;
    qudt:value 3289841960361000.0 ;
    qudt:valueSN 3.289842e+15 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydchz#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInEV> a qudt:ConstantValue ;
    rdfs:label "Value for Rydberg constant times hc in eV"^^xsd:string ;
    qudt:hasUnit unit:EV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000034 ;
    qudt:standardUncertaintySN 3.4e-07 ;
    qudt:value 13.60569193 ;
    qudt:valueSN 1.360569e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydhcev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_RydbergConstantTimesHcInJ> a qudt:ConstantValue ;
    rdfs:label "Value for Rydberg constant times hc in J"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-25 ;
    qudt:value 0.00000000000000000217987197 ;
    qudt:valueSN 2.179872e-18 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rydhcj#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K100KPa> a qudt:ConstantValue ;
    rdfs:label "Value for Sackur-Tetrode constant 1 K 100 kPa"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000044 ;
    qudt:standardUncertaintySN 4.4e-06 ;
    qudt:value -1.1517047 ;
    qudt:valueSN -1.151705e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?s0sr#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SackurTetrodeConstant1K101dot325KPa> a qudt:ConstantValue ;
    rdfs:label "Value for Sackur-Tetrode constant 1 K 101.325 kPa"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000044 ;
    qudt:standardUncertaintySN 4.4e-06 ;
    qudt:value -1.1648677 ;
    qudt:valueSN -1.164868e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?s0srstd#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SecondRadiationConstant> a qudt:ConstantValue ;
    rdfs:label "Value for second radiation constant"^^xsd:string ;
    qudt:hasUnit unit:M-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000025 ;
    qudt:standardUncertaintySN 2.5e-08 ;
    qudt:value 0.014387752 ;
    qudt:valueSN 1.438775e-02 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?c22ndrc#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion gyromagnetic ratio"^^xsd:string ;
    qudt:hasUnit unit:PER-T-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 5.6 ;
    qudt:standardUncertaintySN 5.6e+00 ;
    qudt:value 203789473.0 ;
    qudt:valueSN 2.037895e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammahp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionGyromagneticRatioOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion gyromagnetic ratio over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000009 ;
    qudt:standardUncertaintySN 9e-07 ;
    qudt:value 32.43410198 ;
    qudt:valueSN 3.24341e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammahpbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000000000000000000000000003 ;
    qudt:standardUncertaintySN 3e-34 ;
    qudt:value -0.00000000000000000000000001074552982 ;
    qudt:valueSN -1.074553e-26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000014 ;
    qudt:standardUncertaintySN 1.4e-11 ;
    qudt:value -0.001158671471 ;
    qudt:valueSN -1.158671e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000025 ;
    qudt:standardUncertaintySN 2.5e-08 ;
    qudt:value -2.127497718 ;
    qudt:valueSN -2.127498e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionToProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion to proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000011 ;
    qudt:standardUncertaintySN 1.1e-08 ;
    qudt:value -0.761766558 ;
    qudt:valueSN -7.617666e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedHelionToShieldedProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded helion to shielded proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000033 ;
    qudt:standardUncertaintySN 3.3e-09 ;
    qudt:value -0.7617861313 ;
    qudt:valueSN -7.617861e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muhpsmupp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded proton gyromagnetic ratio"^^xsd:string ;
    qudt:hasUnit unit:PER-T-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 7.3 ;
    qudt:standardUncertaintySN 7.3e+00 ;
    qudt:value 267515336.2 ;
    qudt:valueSN 2.675153e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammapp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedProtonGyromagneticRatioOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for shielded proton gyromagnetic ratio over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:MegaHZ-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000012 ;
    qudt:standardUncertaintySN 1.2e-06 ;
    qudt:value 42.5763881 ;
    qudt:valueSN 4.257639e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gammappbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for shielded proton magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000038 ;
    qudt:standardUncertaintySN 3.8e-34 ;
    qudt:value 0.00000000000000000000000001410570419 ;
    qudt:valueSN 1.41057e-26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mupp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded proton magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000017 ;
    qudt:standardUncertaintySN 1.7e-11 ;
    qudt:value 0.001520993128 ;
    qudt:valueSN 1.520993e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muppsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ShieldedProtonMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for shielded proton magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000003 ;
    qudt:standardUncertaintySN 3e-08 ;
    qudt:value 2.792775598 ;
    qudt:valueSN 2.792776e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?muppsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum> a qudt:ConstantValue ;
    rdfs:label "Value for speed of light in a vacuum"^^xsd:string ;
    qudt:hasUnit unit:M-PER-SEC ;
    qudt:informativeReference "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI,
        "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0 ;
    qudt:standardUncertaintySN 0e+00 ;
    qudt:value 299792458.0 ;
    qudt:valueSN 2.997925e+08 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_SpeedOfLight_Vacuum_Imperial> a qudt:ConstantValue ;
    rdfs:label "Value for speed of light in vacuum (Imperial units)"^^xsd:string ;
    qudt:hasUnit unit:MI-PER-HR ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 670616629.0 ;
    qudt:valueSN 6.706166e+08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?c#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_StandardAccelerationOfGravity> a qudt:ConstantValue ;
    rdfs:label "Value for standard acceleration of gravity"^^xsd:string ;
    qudt:hasUnit unit:M-PER-SEC2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 9.80665 ;
    qudt:valueSN 9.80665e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_StandardAtmosphere> a qudt:ConstantValue ;
    rdfs:label "Value for standard atmosphere"^^xsd:string ;
    qudt:hasUnit unit:PA ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:value 101325.0 ;
    qudt:valueSN 1.01325e+05 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?stdatm#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_StefanBoltzmannConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Stefan-Boltzmann Constant"^^xsd:string ;
    qudt:hasUnit unit:W-PER-M2-K4 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000004 ;
    qudt:standardUncertaintySN 4e-13 ;
    qudt:value 0.000000056704 ;
    qudt:valueSN 5.6704e-08 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigma#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauComptonWavelength> a qudt:ConstantValue ;
    rdfs:label "Value for tau Compton wavelength"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000011 ;
    qudt:standardUncertaintySN 1.1e-19 ;
    qudt:value 0.00000000000000069772 ;
    qudt:valueSN 6.9772e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tcomwl#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauComptonWavelengthOver2Pi> a qudt:ConstantValue ;
    rdfs:label "Value for tau Compton wavelength over 2 pi"^^xsd:string ;
    qudt:hasUnit unit:M ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000018 ;
    qudt:standardUncertaintySN 1.8e-20 ;
    qudt:value 0.000000000000000111046 ;
    qudt:valueSN 1.11046e-16 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tcomwlbar#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for tau-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.57 ;
    qudt:standardUncertaintySN 5.7e-01 ;
    qudt:value 3477.48 ;
    qudt:valueSN 3.47748e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMass> a qudt:ConstantValue ;
    rdfs:label "Value for tau mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000052 ;
    qudt:standardUncertaintySN 5.2e-31 ;
    qudt:value 0.00000000000000000000000000316777 ;
    qudt:valueSN 3.16777e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for tau mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000046 ;
    qudt:standardUncertaintySN 4.6e-14 ;
    qudt:value 0.000000000284705 ;
    qudt:valueSN 2.84705e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for tau mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.29 ;
    qudt:standardUncertaintySN 2.9e-01 ;
    qudt:value 1776.99 ;
    qudt:valueSN 1.77699e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Tau Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00031 ;
    qudt:standardUncertaintySN 3.1e-04 ;
    qudt:value 1.90768 ;
    qudt:valueSN 1.90768e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtauu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for tau molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000031 ;
    qudt:standardUncertaintySN 3.1e-07 ;
    qudt:value 0.00190768 ;
    qudt:valueSN 1.90768e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmtau#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauMuonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for tau-muon mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0027 ;
    qudt:standardUncertaintySN 2.7e-03 ;
    qudt:value 16.8183 ;
    qudt:valueSN 1.68183e+01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmmu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauNeutronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for tau-neutron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00031 ;
    qudt:standardUncertaintySN 3.1e-04 ;
    qudt:value 1.89129 ;
    qudt:valueSN 1.89129e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TauProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for tau-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00031 ;
    qudt:standardUncertaintySN 3.1e-04 ;
    qudt:value 1.8939 ;
    qudt:valueSN 1.8939e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtausmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_ThomsonCrossSection> a qudt:ConstantValue ;
    rdfs:label "Value for Thomson cross section"^^xsd:string ;
    qudt:hasUnit unit:M2 ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000000027 ;
    qudt:standardUncertaintySN 2.7e-37 ;
    qudt:value 0.00000000000000000000000000006652458558 ;
    qudt:valueSN 6.652459e-29 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?sigmae#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonElectronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton-electron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000021 ;
    qudt:standardUncertaintySN 2.1e-11 ;
    qudt:value -0.001620514423 ;
    qudt:valueSN -1.620514e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmuem#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonElectronMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton-electron mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000051 ;
    qudt:standardUncertaintySN 5.1e-06 ;
    qudt:value 5496.9215269 ;
    qudt:valueSN 5.496922e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtsme#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonGFactor> a qudt:ConstantValue ;
    rdfs:label "Value for triton g factor"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000076 ;
    qudt:standardUncertaintySN 7.6e-08 ;
    qudt:value 5.957924896 ;
    qudt:valueSN 5.957925e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?gtn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMagneticMoment> a qudt:ConstantValue ;
    rdfs:label "Value for triton magnetic moment"^^xsd:string ;
    qudt:hasUnit unit:J-PER-T ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000042 ;
    qudt:standardUncertaintySN 4.2e-34 ;
    qudt:value 0.00000000000000000000000001504609361 ;
    qudt:valueSN 1.504609e-26 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mut#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMagneticMomentToBohrMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton magnetic moment to Bohr magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000021 ;
    qudt:standardUncertaintySN 2.1e-11 ;
    qudt:value 0.001622393657 ;
    qudt:valueSN 1.622394e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmub#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMagneticMomentToNuclearMagnetonRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton magnetic moment to nuclear magneton ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000038 ;
    qudt:standardUncertaintySN 3.8e-08 ;
    qudt:value 2.978962448 ;
    qudt:valueSN 2.978962e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmun#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMass> a qudt:ConstantValue ;
    rdfs:label "Value for triton mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000000000000000000000000000000025 ;
    qudt:standardUncertaintySN 2.5e-34 ;
    qudt:value 0.00000000000000000000000000500735588 ;
    qudt:valueSN 5.007356e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mt#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalent> a qudt:ConstantValue ;
    rdfs:label "Value for triton mass energy equivalent"^^xsd:string ;
    qudt:hasUnit unit:J ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000022 ;
    qudt:standardUncertaintySN 2.2e-17 ;
    qudt:value 0.000000000450038703 ;
    qudt:valueSN 4.500387e-10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtc2#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMassEnergyEquivalentInMeV> a qudt:ConstantValue ;
    rdfs:label "Value for triton mass energy equivalent in MeV"^^xsd:string ;
    qudt:hasUnit unit:MegaEV ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00007 ;
    qudt:standardUncertaintySN 7e-05 ;
    qudt:value 2808.920906 ;
    qudt:valueSN 2.808921e+03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtc2mev#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMassInAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Triton Mass (amu)"^^xsd:string ;
    qudt:hasUnit unit:U ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000025 ;
    qudt:standardUncertaintySN 2.5e-09 ;
    qudt:value 3.0155007134 ;
    qudt:valueSN 3.015501e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtu#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonMolarMass> a qudt:ConstantValue ;
    rdfs:label "Value for triton molar mass"^^xsd:string ;
    qudt:hasUnit unit:KiloGM-PER-MOL ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000000025 ;
    qudt:standardUncertaintySN 2.5e-12 ;
    qudt:value 0.0030155007134 ;
    qudt:valueSN 3.015501e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mmt#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonNeutronMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton-neutron magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000037 ;
    qudt:standardUncertaintySN 3.7e-07 ;
    qudt:value -1.55718553 ;
    qudt:valueSN -1.557186e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmunn#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonProtonMagneticMomentRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton-proton magnetic moment ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00000001 ;
    qudt:standardUncertaintySN 1e-08 ;
    qudt:value 1.066639908 ;
    qudt:valueSN 1.06664e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mutsmup#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_TritonProtonMassRatio> a qudt:ConstantValue ;
    rdfs:label "Value for triton-proton mass ratio"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000025 ;
    qudt:standardUncertaintySN 2.5e-09 ;
    qudt:value 2.9937170309 ;
    qudt:valueSN 2.993717e+00 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?mtsmp#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_UnifiedAtomicMassUnit> a qudt:ConstantValue ;
    rdfs:label "Value for unified atomic mass unit"^^xsd:string ;
    qudt:hasUnit unit:KiloGM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000000000000000000000000000000000083 ;
    qudt:standardUncertaintySN 8.3e-35 ;
    qudt:value 0.000000000000000000000000001660538782 ;
    qudt:valueSN 1.660539e-27 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?tukg#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_VonKlitzingConstant> a qudt:ConstantValue ;
    rdfs:label "Value for von Klitzing constant"^^xsd:string ;
    qudt:hasUnit unit:OHM ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.000018 ;
    qudt:standardUncertaintySN 1.8e-05 ;
    qudt:value 25812.807557 ;
    qudt:valueSN 2.581281e+04 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?rk#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_WeakMixingAngle> a qudt:ConstantValue ;
    rdfs:label "Value for weak mixing angle"^^xsd:string ;
    qudt:hasUnit unit:UNITLESS ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.00056 ;
    qudt:standardUncertaintySN 5.6e-04 ;
    qudt:value 0.22255 ;
    qudt:valueSN 2.2255e-01 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?sin2th#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_WienFrequencyDisplacementLawConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Wien frequency displacement law constant"^^xsd:string ;
    qudt:hasUnit unit:HZ-PER-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 100000.0 ;
    qudt:standardUncertaintySN 1e+05 ;
    qudt:value 58789330000.0 ;
    qudt:valueSN 5.878933e+10 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?bpwien#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/constant/Value_WienWavelengthDisplacementLawConstant> a qudt:ConstantValue ;
    rdfs:label "Value for Wien wavelength displacement law constant"^^xsd:string ;
    qudt:hasUnit unit:M-K ;
    qudt:informativeReference "http://physics.nist.gov/cuu/Constants/bibliography.html"^^xsd:anyURI ;
    qudt:standardUncertainty 0.0000000051 ;
    qudt:standardUncertaintySN 5.1e-09 ;
    qudt:value 0.0028977685 ;
    qudt:valueSN 2.897768e-03 ;
    ns2:website "http://physics.nist.gov/cgi-bin/cuu/Value?bwien#mid"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/constant> .

<http://qudt.org/vocab/currency/MegaUSD> a qudt:CurrencyUnit,
        qudt:DerivedUnit ;
    rdfs:label "Million US Dollars"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/currency> .

<http://qudt.org/vocab/dimensionvector/A-1E0L-3I0M0H0T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A-1E0L-3I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance -1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{-1}$ $L^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A-1E1L-3I0M0H0T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A-1E1L-3I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance -1 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{-1}$ $E^{1}$ $L^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L-1I0M1H0T-4D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E-1L-1I0M1H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E^-1 L^-1 M^1 T^-4 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E-1L1I0M0H0T0D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E-1L1I0M0H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent -1 ;
    qudt:dimensionExponentForLength 1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind qudtqk:LengthPerElectricCurrent ;
    qudt:latexDefinition "$L I^-1$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-1}$ $M^{-1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H1T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M1H1T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-1}$ $M^{1}$ $H^{1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-1I0M2H0T-2D0> a qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-1I0M2H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M0H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H1T0D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M1H1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $M^{1}$ $H^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-6D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-2I0M2H0T-6D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -6 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-2}$ $M^{2}$ $T^{-6}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-3D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L-3I0M1H0T-3D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -3 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{-3}$ $M^{1}$ $T^{-3}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H2T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M0H2T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 2 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $H^{2}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-4D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M1H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $M^{1}$ $T^{-4}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $M^{1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L0I0M2H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L0I0M2H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 2 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $M^{2}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L1I0M0H1T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 1 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{1}$ $H^{1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H1T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M-1H1T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{2}$ $M^{-1}$ $H^{1}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-4D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H0T-4D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -4 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{2}$ $T^{-4}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L2I0M0H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{2}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H1T0D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L3I0M0H1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E0L3I0M1H0T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$L^3 M T $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E0L4I0M0H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 4 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $L^{4}$ $T^{-1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L-3I0M-1H0T2D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E1L-3I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E L^-3 M^-1 T^2 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T-1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E1L-3I0M0H0T-1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E L^-3 T^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E1L0I0M0H-1T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E Θ^-1 T $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E1L0I0M0H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E1L2I0M-1H0T1D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A0E1L2I0M-1H0T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 1 ;
    qudt:dimensionExponentForLength 2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$E L^2 M^-1 T $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A0E2L0I0M0H0T1D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A0E2L0I0M0H0T1D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 0 ;
    qudt:dimensionExponentForElectricCurrent 2 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 1 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $E^{2}$ $T^{1}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A1E0L-2I0M0H0T-2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -2 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 0 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime -2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{1}$ $L^{-2}$ $T^{-2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L-3I0M-1H0T2D0> a qudt:QuantityKindDimensionVector,
        qudt:QuantityKindDimensionVector_CGS,
        qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A1E0L-3I0M-1H0T2D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength -3 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 2 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition " $A^{1}$ $L^{-3}$ $M^{-1}$ $T^{2}$"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H-1T0D0> a qudt:QuantityKindDimensionVector ;
    rdfs:label "A1E0L0I0M-1H-1T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass -1 ;
    qudt:dimensionExponentForThermodynamicTemperature -1 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:latexDefinition "$N M^-1 Θ^-1 $"^^qudt:LatexString ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0> a qudt:QuantityKindDimensionVector_ISO,
        qudt:QuantityKindDimensionVector_Imperial,
        qudt:QuantityKindDimensionVector_SI ;
    rdfs:label "A1E0L0I0M1H0T0D0"^^xsd:string ;
    qudt:dimensionExponentForAmountOfSubstance 1 ;
    qudt:dimensionExponentForElectricCurrent 0 ;
    qudt:dimensionExponentForLength 0 ;
    qudt:dimensionExponentForLuminousIntensity 0 ;
    qudt:dimensionExponentForMass 1 ;
    qudt:dimensionExponentForThermodynamicTemperature 0 ;
    qudt:dimensionExponentForTime 0 ;
    qudt:dimensionlessExponent 0 ;
    qudt:hasReferenceQuantityKind qudtqk:MassAmountOfSubstance ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/dimensionvector> .

<http://qudt.org/vocab/prefix/Quecto> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Quecto"^^xsd:string,
        "Quecto"@en ;
    dcterms:description "'quecto' is a decimal prefix for expressing a value with a scaling of \\(10^{-30}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Quecto"^^xsd:anyURI ;
    qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ;
    qudt:prefixMultiplier 0.000000000000000000000000000001 ;
    qudt:prefixMultiplierSN 1e-30 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/quecto> ;
    qudt:symbol "q"^^xsd:string ;
    qudt:ucumCode "q"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Quetta> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Quetta"^^xsd:string,
        "Quetta"@en ;
    dcterms:description "'quetta' is a decimal prefix for expressing a value with a scaling of \\(10^{30}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Quetta"^^xsd:anyURI ;
    qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ;
    qudt:prefixMultiplier 1000000000000000000000000000000.0 ;
    qudt:prefixMultiplierSN 1e+30 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/quetta> ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:ucumCode "Q"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Ronna> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Ronna"^^xsd:string,
        "Ronna"@en ;
    dcterms:description "'ronna' is a decimal prefix for expressing a value with a scaling of \\(10^{27}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ronna"^^xsd:anyURI ;
    qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ;
    qudt:prefixMultiplier 1000000000000000000000000000.0 ;
    qudt:prefixMultiplierSN 1e+27 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/ronna> ;
    qudt:symbol "R"^^xsd:string ;
    qudt:ucumCode "R"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

<http://qudt.org/vocab/prefix/Ronto> a qudt:DecimalPrefix,
        qudt:Prefix ;
    rdfs:label "Ronto"^^xsd:string,
        "Ronto"@en ;
    dcterms:description "'ronto' is a decimal prefix for expressing a value with a scaling of \\(10^{-27}\\)."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Ronto"^^xsd:anyURI ;
    qudt:informativeReference "https://www.nist.gov/pml/owm/metric-si-prefixes"^^xsd:anyURI ;
    qudt:prefixMultiplier 0.000000000000000000000000001 ;
    qudt:prefixMultiplierSN 1e-27 ;
    qudt:siExactMatch <https://si-digital-framework.org/SI/prefixes/ronto> ;
    qudt:symbol "r"^^xsd:string ;
    qudt:ucumCode "r"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/prefix> .

qudtqk:AbsoluteActivity a qudt:QuantityKind ;
    rdfs:label "Absolute Activity"@en ;
    dcterms:description "The \"Absolute Activity\" is the exponential of the ratio of the chemical potential to $RT$ where $R$ is the gas constant and $T$ the thermodynamic temperature."^^qudt:LatexString ;
    qudt:applicableUnit unit:BQ-SEC-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://goldbook.iupac.org/A00019.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\lambda_B = e^{\\frac{\\mu_B}{RT}}$, where $\\mu_B$ is the chemical potential of substance $B$, $R$ is the molar gas constant, and $T$ is thermodynamic temperature."^^qudt:LatexString ;
    qudt:latexSymbol "$\\lambda_B$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:AbsoluteActivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InverseVolume .

qudtqk:AcceptorIonizationEnergy a qudt:QuantityKind ;
    rdfs:label "Acceptor Ionization Energy"@en ;
    dcterms:description "\"Acceptor Ionization Energy\" is the ionization energy of an acceptor."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Acceptor Ionization Energy\" is the ionization energy of an acceptor."^^xsd:string ;
    qudt:symbol "E_a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q112958122> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:IonizationEnergy ;
    skos:closeMatch qudtqk:DonorIonizationEnergy .

qudtqk:ActivityCoefficient a qudt:QuantityKind ;
    rdfs:label "Activity Coefficient"@en ;
    dcterms:description "An \"Activity Coefficient\" is a factor used in thermodynamics to account for deviations from ideal behaviour in a mixture of chemical substances. In an ideal mixture, the interactions between each pair of chemical species are the same (or more formally, the enthalpy change of solution is zero) and, as a result, properties of the mixtures can be expressed directly in terms of simple concentrations or partial pressures of the substances present e.g. Raoult's law. Deviations from ideality are accommodated by modifying the concentration by an activity coefficient. "^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Activity_coefficient"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$f_B = \\frac{\\lambda_B}{(\\lambda_B^*x_B)}$, where $\\lambda_B$ the absolute activity of substance $B$, $\\lambda_B^*$ is the absolute activity of the pure substance $B$ at the same temperature and pressure, and $x_B$ is the amount-of-substance fraction of substance $B$."^^qudt:LatexString ;
    qudt:plainTextDescription "An \"Activity Coefficient\" is a factor used in thermodynamics to account for deviations from ideal behaviour in a mixture of chemical substances. In an ideal mixture, the interactions between each pair of chemical species are the same (or more formally, the enthalpy change of solution is zero) and, as a result, properties of the mixtures can be expressed directly in terms of simple concentrations or partial pressures of the substances present e.g. Raoult's law. Deviations from ideality are accommodated by modifying the concentration by an activity coefficient. "^^xsd:string ;
    qudt:symbol "f_B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q745224> ;
    rdfs:comment "Applicable units are those of quantitykind:ActivityCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ActivityThresholds a qudt:QuantityKind ;
    rdfs:label "Activity Thresholds"@en ;
    dcterms:description "\"Activity Thresholds\" are thresholds of sensitivity for radioactivity."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_t}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Activity Thresholds\" are thresholds of sensitivity for radioactivity."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Adaptation a qudt:QuantityKind ;
    rdfs:label "Adaptation"@en ;
    dcterms:description "\"Adaptation\" is the recovery of visual ability following exposure to light (dark adaptation), usually measured in units of time."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Neural_adaptation#Visual"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Adaptation\" is the recovery of visual ability following exposure to light (dark adaptation)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:Altitude a qudt:QuantityKind ;
    rdfs:label "Altitude"@en ;
    dcterms:description "Altitude or height is defined based on the context in which it is used (aviation, geometry, geographical survey, sport, and more). As a general definition, altitude is a distance measurement, usually in the vertical or \"up\" direction, between a reference datum and a point or object. The reference datum also often varies according to the context. [Wikipedia]"^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Altitude"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Altitude or height is defined based on the context in which it is used (aviation, geometry, geographical survey, sport, and more). As a general definition, altitude is a distance measurement, usually in the vertical or \"up\" direction, between a reference datum and a point or object. The reference datum also often varies according to the context. [Wikipedia]"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q190200> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:AmountOfCloudCover a qudt:QuantityKind ;
    rdfs:label "Amount of cloud cover"@en ;
    qudt:applicableUnit unit:OKTA ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://windy.app/blog/okta-cloud-cover.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "https://library.wmo.int/viewer/68695/?offset=3#page=514&viewer=picture&o=bookmark&n=0&q="^^xsd:anyURI ;
    qudt:plainTextDescription "The amount of the celestial dome covered by all clouds visible."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AmountOfCloudCover"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AmountOfSubstanceConcentration a qudt:QuantityKind ;
    rdfs:label "Amount of Substance of Concentration"@en ;
    dcterms:description "\"Amount of Substance of Concentration\" is defined as the amount of a constituent divided by the volume of the mixture."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:exactMatch qudtqk:AmountOfSubstancePerVolume ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Amount_of_substance_concentration"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$C_B = \\frac{n_B}{V}$, where $n_B$ is the amount of substance $B$ and $V$ is the volume."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Amount of Substance of Concentration of B\" is defined as the amount of a constituent divided by the volume of the mixture."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/AMSC> ;
    qudt:symbol "C_B"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Concentration .

qudtqk:AngularMomentumPerAngle a qudt:QuantityKind ;
    rdfs:label "Angular Momentum per Angle"@en ;
    qudt:applicableUnit unit:N-M-SEC-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:AngularMomentumPerAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AreaPerLength a qudt:QuantityKind ;
    rdfs:label "Fläche pro Längeneinheit"@de,
        "area per length"@en ;
    qudt:applicableUnit unit:M2-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www.easysteel.co.nz/web/assets/EasysteelSurfaceAreaofSections-Feb14.pdf"^^xsd:anyURI ;
    qudt:plainTextDescription "Measure used to indicate the surface area of structural steel per unit length of the steel part."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:AreaPerLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Asset a qudt:QuantityKind ;
    rdfs:label "Asset"@en ;
    dcterms:description "An Asset is an economic resource owned by a business or company. Simply stated, assets are things of value that can be readily converted into cash (although cash itself is also considered an asset)."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "An Asset is an economic resource owned by a business or company. Simply stated, assets are things of value that can be readily converted into cash (although cash itself is also considered an asset)."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AtmosphericPressure a qudt:QuantityKind ;
    rdfs:label "Atmospheric Pressure"@en ;
    dcterms:description "The pressure exerted by the weight of the air above it at any point on the earth's surface. At sea level the atmosphere will support a column of mercury about $760 mm$ high. This decreases with increasing altitude. The standard value for the atmospheric pressure at sea level in SI units is $101,325 pascals$."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Atmospheric_pressure"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "https://www.oxfordreference.com/display/10.1093/acref/9780199233991.001.0001/acref-9780199233991"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q81809> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:AtomScatteringFactor a qudt:QuantityKind ;
    rdfs:label "Atom Scattering Factor"@en ;
    dcterms:description "\"Atom Scattering Factor\" is measure of the scattering power of an isolated atom."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://reference.iucr.org/dictionary/Atomic_scattering_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$f = \\frac{E_a}{E_e}$, where $E_a$ is the radiation amplitude scattered by the atom and $E_e$ is the radiation ampliture scattered by a single electron."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Atom Scattering Factor\" is measure of the scattering power of an isolated atom."^^xsd:string ;
    qudt:symbol "f"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q837866> ;
    rdfs:comment "Applicable units are those of quantitykind:AtomScatteringFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:AtomicNumber a qudt:QuantityKind ;
    rdfs:label "Atomic Number"@en ;
    dcterms:description "The \"Atomic Number\", also known as the proton number, is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. A nuclide is a species of atom with specified numbers of protons and neutrons. Nuclides with the same value of Z but different values of N are called isotopes of an element. The ordinal number of an element in the periodic table is equal to the atomic number. The atomic number equals the charge of the nucleus in units of the elementary charge."^^qudt:LatexString ;
    qudt:applicableUnit unit:Z ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_number"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Atomic Number\", also known as the proton number, is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. A nuclide is a species of atom with specified numbers of protons and neutrons. Nuclides with the same value of Z but different values of N are called isotopes of an element. The ordinal number of an element in the periodic table is equal to the atomic number. The atomic number equals the charge of the nucleus in units of the elementary charge."^^xsd:string ;
    qudt:symbol "Z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q23809> ;
    rdfs:comment "Applicable units are those of quantitykind:AtomicNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Count .

qudtqk:AuditoryThresholds a qudt:QuantityKind ;
    rdfs:label "Auditory Thresholds"@en ;
    dcterms:description "\"Auditory Thresholds\" is the thresholds of sensitivity to auditory signals and other input to the ear or the sense of hearing."^^qudt:LatexString ;
    qudt:applicableUnit unit:B,
        unit:DeciB,
        unit:DeciB_A,
        unit:DeciB_ISO,
        unit:DeciB_M,
        unit:DeciB_Z ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_a}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Auditory Thresholds\" is the thresholds of sensitivity to auditory signals and other input to the ear or the sense of hearing."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SoundPowerLevel"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SoundPowerLevel .

qudtqk:AverageLogarithmicEnergyDecrement a qudt:QuantityKind ;
    rdfs:label "Average Logarithmic Energy Decrement"@en ;
    dcterms:description "\"Average Logarithmic Energy Decrement\" is a measure of the amount of energy a neutron loses upon colliding with various nuclei. It is the average value of the increase in lethargy in elastic collisions between neutrons and nuclei whose kinetic energy is negligible compared with that of the neutrons."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://everything2.com/title/Average+logarithmic+energy+decrement+per+collision"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\xi$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Average Logarithmic Energy Decrement\" is a measure of the amount of energy a neutron loses upon colliding with various nuclei. It is the average value of the increase in lethargy in elastic collisions between neutrons and nuclei whose kinetic energy is negligible compared with that of the neutrons."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1940739> ;
    rdfs:comment "Applicable units are those of quantitykind:AverageLogarithmicEnergyDecrement"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BendingMomentOfForce a qudt:QuantityKind ;
    rdfs:label "Bending Moment of Force"@en ;
    dcterms:description "A bending moment exists in a structural element when a moment is applied to the element so that the element bends. It is the component of moment of force perpendicular to the longitudinal axis of a beam or a shaft."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN-M,
        unit:DYN-CentiM,
        unit:DYN-M,
        unit:DeciN-M,
        unit:FT-LB_F,
        unit:IN-PDL,
        unit:KiloGM_F-M,
        unit:KiloN-M,
        unit:LB_F-FT,
        unit:LB_F-IN,
        unit:MegaN-M,
        unit:MicroN-M,
        unit:MilliN-M,
        unit:N-CentiM,
        unit:N-M,
        unit:OZ_F-IN,
        unit:PDL-FT,
        unit:PDL-IN ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Torque"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Bending_moment"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$M_b = M \\cdot e_Q$, where $M$ is the momentof force and $e_Q$ is a unit vector directed along a $Q-axis$ with respect to which the torque is considered."^^qudt:LatexString ;
    qudt:plainTextDescription "A bending moment exists in a structural element when a moment is applied to the element so that the element bends. It is the component of moment of force perpendicular to the longitudinal axis of a beam or a shaft."^^xsd:string ;
    qudt:symbol "M_b"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q857244> ;
    rdfs:comment "Applicable units are those of quantitykind:Torque"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Torque .

qudtqk:BinaryLogarithmicMedianInformationFlow a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a binary logarithm"@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 2"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 2"@de ;
    qudt:symbol "0173-1#Z4-BAJ464#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BindingFraction a qudt:QuantityKind ;
    rdfs:label "Binding Fraction"@en ;
    dcterms:description "The \"Binding Fraction\" is the ratio of the binding energy of a nucleus to the atomic mass number."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/binding+fraction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$b = \\frac{B_r}{A}$, where $B_r$ is the relative mass defect and $A$ is the nucleon number."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Binding Fraction\" is the ratio of the binding energy of a nucleus to the atomic mass number."^^xsd:string ;
    qudt:symbol "b"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98058362> ;
    rdfs:comment "Applicable units are those of quantitykind:BindingFraction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:BioconcentrationFactor a qudt:QuantityKind ;
    rdfs:label "Bioconcentration Factor"@en ;
    dcterms:description "The bioconcentration factor is the ratio of the concentration of a chemical substance in biota over the concentration of the same chemical substance in water. It is related to the octanol-water partition coefficient."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "The bioconcentration factor is the ratio of the concentration of a chemical substance in biota over the concentration of the same chemical substance in water. It is related to the octanol-water partition coefficient."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:BioconcentrationFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:BiodegredationHalfLife a qudt:QuantityKind ;
    rdfs:label "Biodegredation Half Life"@en ;
    dcterms:description "A time that quantifies how long it takes to reduce a substance's concentration by 50% from any concentration point in time in a water or soil environment by either bacteria or another living organism."^^qudt:LatexString ;
    qudt:applicableUnit unit:DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:plainTextDescription "A time that quantifies how long it takes to reduce a substance's concentration by 50% from any concentration point in time in a water or soil environment by either bacteria or another living organism."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:BiodegredationHalfLife"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:Breadth a qudt:QuantityKind ;
    rdfs:label "العرض"@ar,
        "šířka"@cs,
        "Breite"@de,
        "breadth"@en,
        "ancho"@es,
        "عرض"@fa,
        "largeur"@fr,
        "larghezza"@it,
        "幅"@ja,
        "lebar"@ms,
        "szerokość"@pl,
        "largura"@pt,
        "ширина"@ru,
        "širina"@sl,
        "genişliği"@tr,
        "寬度"@zh ;
    dcterms:description "\"Breadth\" is the extent or measure of how broad or wide something is."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Length"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wiktionary.org/wiki/breadth"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Breadth\" is the extent or measure of how broad or wide something is."^^xsd:string ;
    qudt:symbol "b"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77835705> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:BurnRate a qudt:QuantityKind ;
    rdfs:label "Burn Rate"@en ;
    qudt:applicableUnit unit:CentiM-PER-HR,
        unit:CentiM-PER-KiloYR,
        unit:CentiM-PER-SEC,
        unit:CentiM-PER-YR,
        unit:FT-PER-DAY,
        unit:FT-PER-HR,
        unit:FT-PER-MIN,
        unit:FT-PER-SEC,
        unit:GigaHZ-M,
        unit:IN-PER-MIN,
        unit:IN-PER-SEC,
        unit:IN-PER-YR,
        unit:KN,
        unit:KiloM-PER-DAY,
        unit:KiloM-PER-HR,
        unit:KiloM-PER-SEC,
        unit:M-PER-DAY,
        unit:M-PER-HR,
        unit:M-PER-MIN,
        unit:M-PER-SEC,
        unit:M-PER-YR,
        unit:MI-PER-HR,
        unit:MI-PER-MIN,
        unit:MI-PER-SEC,
        unit:MI_N-PER-HR,
        unit:MI_N-PER-MIN,
        unit:MicroM-PER-MIN,
        unit:MicroM-PER-SEC,
        unit:MilliM-PER-DAY,
        unit:MilliM-PER-HR,
        unit:MilliM-PER-MIN,
        unit:MilliM-PER-SEC,
        unit:MilliM-PER-YR,
        unit:YD-PER-HR,
        unit:YD-PER-MIN,
        unit:YD-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Velocity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Velocity .

qudtqk:BurstFactor a qudt:QuantityKind ;
    rdfs:label "burst factor"^^xsd:string,
        "burst factor"@en-us ;
    dcterms:description "bursting pressure divided by areic mass"@en ;
    qudt:applicableUnit unit:PA-M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD019"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD019"^^xsd:anyURI ;
    qudt:plainTextDescription "Quotient Berstdruck dividiert durch die flächenbezogene Masse"@de ;
    qudt:symbol "0173-1#Z4-BAJ434#001"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:BurstFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Capacity a qudt:QuantityKind ;
    rdfs:label "Capacity"@en ;
    dcterms:description "In computer operations, (a) the largest quantity which can be stored, processed, or transferred; (b) the largest number of digits or characters which may regularly be processed; (c) the upper and lower limits of the quantities which may be processed. In other contexts, the amount of material that  can be stored, such as fuel or food."^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Capacity"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "In computer operations, (a) the largest quantity which can be stored, processed, or transferred; (b) the largest number of digits or characters which may regularly be processed; (c) the upper and lower limits of the quantities which may be processed. In other contexts, the amount of material that  can be stored, such as fuel or food."^^xsd:string ;
    qudt:symbol "TBD"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:CartesianCoordinates a qudt:QuantityKind ;
    rdfs:label "Kartézská soustava souřadnic"@cs,
        "kartesische Koordinaten"@de,
        "Cartesian coordinates"@en,
        "مختصات دکارتی"@fa,
        "coordonnées cartésiennes"@fr,
        "coordinate cartesiane"@it,
        "Koordiant Kartesius"@ms,
        "coordenadas cartesianas"@pt,
        "kartezyen koordinatları"@tr,
        "直角坐标系"@zh ;
    dcterms:description "\"Cartesian Coordinates\" specify each point uniquely in a plane by a pair of numerical coordinates, which are the signed distances from the point to two fixed perpendicular directed lines, measured in the same unit of length. "^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cartesian_coordinate_system"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Cartesian Coordinates\" specify each point uniquely in a plane by a pair of numerical coordinates, which are the signed distances from the point to two fixed perpendicular directed lines, measured in the same unit of length. "^^xsd:string ;
    qudt:symbol "x, y, z"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Kartézské souřadnice"@cs ;
    skos:broader qudtqk:Length .

qudtqk:CartesianVolume a qudt:QuantityKind ;
    rdfs:label "حجم"@ar,
        "Обем"@bg,
        "Objem"@cs,
        "Volumen"@de,
        "Επιτάχυνση"@el,
        "volume"@en,
        "volumen"@es,
        "حجم"@fa,
        "volume"@fr,
        "נפח"@he,
        "आयतन"@hi,
        "volume"@it,
        "体積"@ja,
        "Isipadu"@ms,
        "objętość"@pl,
        "volume"@pt,
        "volum"@ro,
        "Объём"@ru,
        "prostornina"@sl,
        "hacim"@tr,
        "体积"@zh ;
    dcterms:description "\"Volume\" is the quantity of three-dimensional space enclosed by some closed boundary, for example, the space that a substance (solid, liquid, gas, or plasma) or shape occupies or contains."^^qudt:LatexString ;
    qudt:applicableUnit unit:AC-FT,
        unit:AC-FT_US,
        unit:ANGSTROM3,
        unit:BBL,
        unit:BBL_UK_PET,
        unit:BU_US_DRY,
        unit:CentiM3,
        unit:DecaL,
        unit:DecaM3,
        unit:DeciL,
        unit:DeciM3,
        unit:FBM,
        unit:FT3,
        unit:FemtoL,
        unit:GI_UK,
        unit:GI_US,
        unit:GT,
        unit:HectoL,
        unit:IN3,
        unit:KiloCubicFT,
        unit:KiloL,
        unit:L,
        unit:M3,
        unit:MI3,
        unit:MI_UK3,
        unit:MegaL,
        unit:MicroL,
        unit:MicroM3,
        unit:MilliL,
        unit:MilliM3,
        unit:NT,
        unit:NanoL,
        unit:OZ_VOL_UK,
        unit:PINT,
        unit:PINT_UK,
        unit:PK_UK,
        unit:PicoL,
        unit:PlanckVolume,
        unit:QT_UK,
        unit:QT_US,
        unit:RT,
        unit:STANDARD,
        unit:STR,
        unit:TBSP,
        unit:TON_Register,
        unit:TON_SHIPPING_UK,
        unit:TON_SHIPPING_US,
        unit:TSP,
        unit:YD3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Volume"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$V = \\int\\int\\int dxdydz$, where $x$, $y$, and $z$ are cartesian coordinates."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Volume\" is the quantity of three-dimensional space enclosed by some closed boundary, for example, the space that a substance (solid, liquid, gas, or plasma) or shape occupies or contains."^^xsd:string ;
    qudt:symbol "V"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Volume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Volume .

qudtqk:CelsiusTemperature a qudt:QuantityKind ;
    rdfs:label "درجة الحرارة المئوية أو السيلسيوس"@ar,
        "teplota"@cs,
        "Celsius-Temperatur"@de,
        "Celsius temperature"@en,
        "temperatura Celsius"@es,
        "دمای سلسیوس/سانتیگراد"@fa,
        "température Celsius"@fr,
        "צלזיוס"@he,
        "सेल्सियस तापमान"@hi,
        "temperatura Celsius"@it,
        "温度"@ja,
        "Suhu Celsius"@ms,
        "temperatura"@pl,
        "temperatura celsius"@pt,
        "temperatură Celsius"@ro,
        "Температура Цельсия"@ru,
        "temperatura"@sl,
        "Celsius sıcaklık"@tr,
        "温度"@zh ;
    dcterms:description "\"Celsius Temperature\", the thermodynamic temperature T_0, is exactly 0.01 kelvin below the thermodynamic temperature of the triple point of water."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD023"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD023"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition """"Celsius Temperature", the thermodynamic temperature $T_0$, is exactly $0.01$kelvin below the thermodynamic temperature of the triple point of water.
$t = T - T_0$, where $T$ is Thermodynamic Temperature and $T_0 = 273.15 K$."""^^qudt:LatexString ;
    qudt:plainTextDescription "\"Celsius Temperature\", the thermodynamic temperature T_0, is exactly 0.01 kelvin below the thermodynamic temperature of the triple point of water."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/TEMC> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q74758530> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature ;
    prov:wasDerivedFrom qudtqk:ThermodynamicTemperature .

qudtqk:CenterOfGravity_X a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the X axis"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CenterOfGravity_Y a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Y axis"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:CenterOfGravity_Z a qudt:QuantityKind ;
    rdfs:label "Center of Gravity in the Z axis"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "https://www1.grc.nasa.gov/beginners-guide-to-aeronautics/center-of-gravity/"^^xsd:anyURI ;
    qudt:symbol "cg"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:ChargeNumber a qudt:QuantityKind ;
    rdfs:label "Charge Number"@en ;
    dcterms:description "The \"Charge Number\", or just valance of an ion is the coefficient that, when multiplied by the elementary charge, gives the ion's charge."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Charge_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Charge Number\", or just valance of an ion is the coefficient that, when multiplied by the elementary charge, gives the ion's charge."^^xsd:string ;
    qudt:symbol "z"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1800063> ;
    rdfs:comment "Applicable units are those of quantitykind:ChargeNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:ChemicalAffinity a qudt:QuantityKind ;
    rdfs:label "Chemical Affinity"@en ;
    dcterms:description "In chemical physics and physical chemistry, \"Chemical Affinity\" is the electronic property by which dissimilar chemical species are capable of forming chemical compounds. Chemical affinity can also refer to the tendency of an atom or compound to combine by chemical reaction with atoms or compounds of unlike composition."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_affinity"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$A = -\\sum \\nu_b\\mu_B$, where $\\nu_b$ is the stoichiometric number of substance $B$ and $\\mu_B$ is the chemical potential of substance $B$."^^qudt:LatexString ;
    qudt:plainTextDescription "In chemical physics and physical chemistry, \"Chemical Affinity\" is the electronic property by which dissimilar chemical species are capable of forming chemical compounds. Chemical affinity can also refer to the tendency of an atom or compound to combine by chemical reaction with atoms or compounds of unlike composition."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q382783> ;
    rdfs:comment "Applicable units are those of quantitykind:ChemicalAffinity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ChemicalPotential a qudt:QuantityKind ;
    rdfs:label "جهد كيميائي"@ar,
        "Chemický potenciál"@cs,
        "chemisches Potential des Stoffs B"@de,
        "chemical potential"@en,
        "potencial químico"@es,
        "پتانسیل شیمیایی"@fa,
        "potential chimique"@fr,
        "potenziale chimico"@it,
        "化学ポテンシャル"@ja,
        "Keupayaan kimia"@ms,
        "Potencjał chemiczny"@pl,
        "potencial químico"@pt,
        "Potențial chimic"@ro,
        "Химический потенциал"@ru,
        "kimyasal potansiyel"@tr,
        "化学势"@zh ;
    dcterms:description "\"Chemical Potential\", also known as partial molar free energy, is a form of potential energy that can be absorbed or released during a chemical reaction."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-MOL,
        unit:KiloCAL-PER-MOL,
        unit:KiloJ-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Chemical_potential"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\mu_B = (\\frac{\\partial G}{\\partial n_B})_{T,p,n_i}$, where $G$ is Gibbs energy, and $n_B$ is the amount of substance $B$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\mu_B$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Chemical Potential\", also known as partial molar free energy, is a form of potential energy that can be absorbed or released during a chemical reaction."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q737004> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarEnergy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MolarEnergy .

qudtqk:Chromaticity a qudt:QuantityKind ;
    rdfs:label "Chromaticity"@en ;
    dcterms:description "Chromaticity is an objective specification of the quality of a color regardless of its luminance"^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Chromaticity"^^xsd:anyURI ;
    qudt:plainTextDescription "Chromaticity is an objective specification of the quality of a color regardless of its luminance"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Chromaticity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:CoefficientOfPerformance a qudt:QuantityKind ;
    rdfs:label "CoefficientOfPerformance"@en ;
    dcterms:description "\"Coefficient of Performance\",is a measure of the efficiency of a heating or cooling system, defined as the ratio of useful heating or cooling output to the energy input required to achieve it."^^qudt:LatexString ;
    qudt:applicableSIUnit unit:NUM ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Coefficient_of_performance#:~:text=The%20coefficient%20of%20performance%20or,and%20thus%20lower%20operating%20costs."^^xsd:anyURI ;
    qudt:plainTextDescription "\"\"Coefficient of Performance\",is a measure of the efficiency of a heating or cooling system, defined as the ratio of useful heating or cooling output to the energy input required to achieve it."^^xsd:string ;
    qudt:symbol "COP"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CoefficientOfPerformance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ColdReceptorThreshold a qudt:QuantityKind ;
    rdfs:label "Cold Receptor Threshold"@en ;
    dcterms:description "\"Cold Receptor Threshold\" is the threshold of cold-sensitive free nerve-ending."^^qudt:LatexString ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_c}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Cold Receptor Threshold\" is the threshold of cold-sensitive free nerve-ending."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:CommonLogarithmicMedianInformationFlow a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a common logarithm "@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base 10"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis 10"@de ;
    qudt:symbol "0173-1#Z4-BAJ470#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ComplexPower a qudt:QuantityKind ;
    rdfs:label "Complex Power"@en ;
    dcterms:description """
  $\\textit{Complex Power}$, under sinusoidal conditions,
   is the product of the phasor $\\mathbf{U}$ representing the voltage between the terminals of a linear two-terminal element,
   or two-terminal circuit and the complex conjugate of the phasor $I$ representing the electric current in the element or circuit.
  """^^qudt:LatexString ;
    dcterms:isReplacedBy qudtqk:ElectricPower ;
    qudt:applicableUnit unit:ExaW,
        unit:GigaW,
        unit:KiloW,
        unit:MegaW,
        unit:MicroW,
        unit:MilliW,
        unit:NanoW,
        unit:PetaW,
        unit:PicoW,
        unit:TeraJ-PER-SEC,
        unit:TeraW,
        unit:W ;
    qudt:deprecated true ;
    qudt:expression "$complex-power$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-39"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$\\underline{S} = \\underline{U}\\underline{I^*}$, where $\\underline{U}$ is voltage phasor and $\\underline{I^*}$ is the complex conjugate of the current phasor."^^qudt:LatexString ;
    qudt:latexSymbol "$\\underline{S}$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q65239736> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:ElectricCurrentPhasor,
        qudtqk:VoltagePhasor ;
    skos:broader qudtqk:ElectricPower .

qudtqk:CompressibilityFactor a qudt:QuantityKind ;
    rdfs:label "Compressibility Factor"@en ;
    dcterms:description "The compressibility factor ($Z$) is a useful thermodynamic property for modifying the ideal gas law to account for the real gas behaviour. The closer a gas is to a phase change, the larger the deviations from ideal behavior. It is simply defined as the ratio of the molar volume of a gas to the molar volume of an ideal gas at the same temperature and pressure. Values for compressibility are calculated using equations of state (EOS), such as the virial equation and van der Waals equation. The compressibility factor for specific gases can be obtained, with out calculation, from compressibility charts. These charts are created by plotting Z as a function of pressure at constant temperature."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:symbol "Z"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ConductiveHeatTransferRate a qudt:QuantityKind ;
    rdfs:label "Conductive Heat Transfer Rate"@en ;
    dcterms:description "\"Conductive Heat Transfer Rate\" is proportional to temperature gradient and area of contact."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-MIN,
        unit:BTU_IT-PER-SEC,
        unit:BTU_TH-PER-HR,
        unit:BTU_TH-PER-MIN,
        unit:BTU_TH-PER-SEC,
        unit:CAL_TH-PER-MIN,
        unit:CAL_TH-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloBTU_TH-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloCAL_TH-PER-HR,
        unit:KiloCAL_TH-PER-MIN,
        unit:KiloCAL_TH-PER-SEC,
        unit:MegaBTU_IT-PER-HR,
        unit:THM_US-PER-HR,
        unit:TON_FG ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Phi_k$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Conductive Heat Transfer Rate\" is proportional to temperature gradient and area of contact."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:HeatFlowRate .

qudtqk:Constringence a qudt:QuantityKind ;
    rdfs:label "Constringence"@en ;
    dcterms:description "In optics and lens design, constringence of a transparent material, also known as the Abbe number or the V-number, is an approximate measure of the material's dispersion (change of refractive index versus wavelength), with high values of V indicating low dispersion."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Abbe_number"^^xsd:anyURI ;
    qudt:symbol "V"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Constringence"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Abbe Number"@en,
        "V-number"@en ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ConvectiveHeatTransfer a qudt:QuantityKind ;
    rdfs:label "Convective Heat Transfer"@en ;
    dcterms:description "\"Convective Heat Transfer\" is convective heat transfer coefficient multiplied by temperature difference and exchange area. "^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-MIN,
        unit:BTU_IT-PER-SEC,
        unit:BTU_TH-PER-HR,
        unit:BTU_TH-PER-MIN,
        unit:BTU_TH-PER-SEC,
        unit:CAL_TH-PER-MIN,
        unit:CAL_TH-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloBTU_TH-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloCAL_TH-PER-HR,
        unit:KiloCAL_TH-PER-MIN,
        unit:KiloCAL_TH-PER-SEC,
        unit:MegaBTU_IT-PER-HR,
        unit:THM_US-PER-HR,
        unit:TON_FG ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_transfer#Convection"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Phi_c$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Convective Heat Transfer\" is convective heat transfer coefficient multiplied by temperature difference and exchange area. "^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:HeatFlowRate .

qudtqk:CoolingPerformanceRatio a qudt:QuantityKind ;
    rdfs:label "Cooling Performance Ratio"@en ;
    qudt:applicableUnit unit:KiloW-PER-TON_FG ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "Ratio of input power to delivered cooling capacity, used to assess the efficiency of cooling systems such as chillers. Commonly expressed in kW per ton of refrigeration, where lower values indicate better performance."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:CoolingPerformanceRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:CubicExpansionCoefficient a qudt:QuantityKind ;
    rdfs:label "معامل التمدد الحجمى"@ar,
        "Вълново число"@bg,
        "Volumenausdehnungskoeffizient"@de,
        "Κυματαριθμός"@el,
        "cubic expansion coefficient"@en,
        "coeficiente de dilatación cúbica"@es,
        "ضریب انبساط گرمایی"@fa,
        "coefficient de dilatation volumique"@fr,
        "מספר גל"@he,
        "Hullámszám"@hu,
        "coefficiente di dilatazione volumica"@it,
        "線膨張係数"@ja,
        "współczynnik rozszerzalności objętościowej"@pl,
        "coeficiente de dilatação volúmica"@pt,
        "Температурный коэффициент"@ru,
        "kübik genleşme katsayısı"@tr,
        "体膨胀系数"@zh ;
    qudt:applicableUnit unit:M-PER-DEG_C-M,
        unit:MilliM-PER-DEG_C-M,
        unit:PER-DEG_F,
        unit:PER-K,
        unit:PER-MegaK,
        unit:PPM-PER-K,
        unit:PPTM-PER-K ;
    qudt:expression "$cubic-exp-coef$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha_V = \\frac{1}{V} \\; \\frac{dV}{dT}$, where $V$ is $volume$ and $T$ is thermodynamic temperature."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha_v$"^^qudt:LatexString ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H1T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q74761076> ;
    rdfs:comment "Applicable units are those of quantitykind:ExpansionRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ExpansionRatio .

qudtqk:Debye-WallerFactor a qudt:QuantityKind ;
    rdfs:label "Debye-Waller Factor"@en ;
    dcterms:description "\"Debye-Waller Factor\" (DWF), named after Peter Debye and Ivar Waller, is used in condensed matter physics to describe the attenuation of x-ray scattering or coherent neutron scattering caused by thermal motion. Also, a factor by which the intensity of a diffraction line is reduced because of the lattice vibrations."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Debye–Waller_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$u = R - R_0$, where $R$ is the particle position vector and $R_0$ is the equilibrium position vector of a particle."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Debye-Waller Factor\" (DWF), named after Peter Debye and Ivar Waller, is used in condensed matter physics to describe the attenuation of x-ray scattering or coherent neutron scattering caused by thermal motion. Also, a factor by which the intensity of a diffraction line is reduced because of the lattice vibrations."^^xsd:string ;
    qudt:symbol "D, B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q902587> ;
    rdfs:comment "Applicable units are those of quantitykind:Debye-WallerFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DegreeOfDissociation a qudt:QuantityKind ;
    rdfs:label "Degree of Dissociation"@en ;
    dcterms:description "The \"Degree of Dissociation\" is the fraction of original solute molecules that have dissociated."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Faraday_constant"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dissociation_(chemistry)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Degree of Dissociation\" is the fraction of original solute molecules that have dissociated."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q907334> ;
    rdfs:comment "Applicable units are those of quantitykind:DegreeOfDissociation"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Diameter a qudt:QuantityKind ;
    rdfs:label "قطر"@ar,
        "průměr"@cs,
        "Durchmesser"@de,
        "diameter"@en,
        "diámetro"@es,
        "قطر"@fa,
        "diamètre"@fr,
        "diametro"@it,
        "直径"@ja,
        "średnica"@pl,
        "diâmetro"@pt,
        "диаметр"@ru,
        "premer"@sl,
        "çap"@tr,
        "直径"@zh ;
    dcterms:description "In classical geometry, the \"Diameter\" of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circle. "^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Diameter"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Diameter"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$d = 2r$, where $r$ is the radius of the circle."^^qudt:LatexString ;
    qudt:plainTextDescription "In classical geometry, the \"Diameter\" of a circle is any straight line segment that passes through the center of the circle and whose endpoints lie on the circle. "^^xsd:string ;
    qudt:symbol "d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q37221> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:DiastolicBloodPressure a qudt:QuantityKind ;
    rdfs:label "Diastolic Blood Pressure"@en ;
    dcterms:description "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780199549351.001.0001/acref-9780199549351-e-1162"^^xsd:anyURI ;
    qudt:plainTextDescription "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q42015777> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:SystolicBloodPressure ;
    skos:broader qudtqk:Pressure .

qudtqk:DiffusionCoefficient a qudt:QuantityKind ;
    rdfs:label "Diffusionskoeffizient"@de,
        "diffusion coefficient"@en,
        "coeficiente de difusión"@es,
        "coefficient de diffusion"@fr,
        "coefficiente di diffusione"@it,
        "coeficiente de difusão"@pt,
        "difuzijski koeficient"@sl ;
    dcterms:description "The \"Diffusion Coefficient\" is a proportionality constant between the molar flux due to molecular diffusion and the gradient in the concentration of the species (or the driving force for diffusion). Diffusivity is encountered in Fick's law and numerous other equations of physical chemistry."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD031"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_diffusivity"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD031"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$C_B \\left \\langle \\nu_B \\right \\rangle = -D grad C_B$, where $C_B$ the local molecular concentration of substance $B$ in the mixture and $\\left \\langle \\nu_B \\right \\rangle$ is the local average velocity of the molecules of $B$."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Diffusion Coefficient\" is a proportionality constant between the molar flux due to molecular diffusion and the gradient in the concentration of the species (or the driving force for diffusion). Diffusivity is encountered in Fick's law and numerous other equations of physical chemistry."^^xsd:string ;
    qudt:symbol "D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q604008> ;
    rdfs:comment "Applicable units are those of quantitykind:DiffusionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Displacement a qudt:QuantityKind ;
    rdfs:label "Displacement"@en ;
    dcterms:description "\"Displacement\" is the shortest distance from the initial to the final position of a point P."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Displacement_(vector)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Delta r =  R_f - R_i$, where $R_f$ is the final position and $R_i$ is the initial position."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Delta r$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Displacement\" is the shortest distance from the initial to the final position of a point P."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q190291> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:Dissipance a qudt:QuantityKind ;
    rdfs:label "Dissipance"@en ;
    dcterms:description "Dissipance, or dissipation factor for sound power, is the ratio of dissipated sound power to incident sound power. The dissipation factor (DF) is a measure of loss-rate of energy of a mode of oscillation (mechanical, electrical, or electromechanical) in a dissipative system. It is the reciprocal of quality factor, which represents the quality of oscillation."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dissipation_factor"^^xsd:anyURI ;
    qudt:latexDefinition "$\\delta = \\frac{P_d}{P_i}$, where $P_d$ is the dissipated sound power, and $P_i$ is the incident sound power."^^qudt:LatexString ;
    qudt:latexSymbol "$\\delta$"^^qudt:LatexString ;
    qudt:plainTextDescription "Dissipance, or dissipation factor for sound power, is the ratio of dissipated sound power to incident sound power. The dissipation factor (DF) is a measure of loss-rate of energy of a mode of oscillation (mechanical, electrical, or electromechanical) in a dissipative system. It is the reciprocal of quality factor, which represents the quality of oscillation."^^xsd:string ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Dissipance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DonorIonizationEnergy a qudt:QuantityKind ;
    rdfs:label "Donor Ionization Energy"@en ;
    dcterms:description "\"Donor Ionization Energy\" is the ionization energy of a donor."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization_energy"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Donor Ionization Energy\" is the ionization energy of a donor."^^xsd:string ;
    qudt:symbol "E_d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q112958103> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:IonizationEnergy ;
    skos:closeMatch qudtqk:AcceptorIonizationEnergy .

qudtqk:DoseEquivalentQualityFactor a qudt:QuantityKind ;
    rdfs:label "Dose Equivalent Quality Factor"@en ;
    dcterms:description "\"Dose Equivalent Quality Factor\" is a factor in the caculation and measurement of dose equivalent, by which the absorbed dose is to be weighted in order to account for different biological effectiveness of radiations, for radiation protection purposes."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Equivalent_dose"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Dose Equivalent Quality Factor\" is a factor in the caculation and measurement of dose equivalent, by which the absorbed dose is to be weighted in order to account for different biological effectiveness of radiations, for radiation protection purposes."^^xsd:string ;
    qudt:symbol "Q"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2122099> ;
    rdfs:comment "Applicable units are those of quantitykind:DoseEquivalentQualityFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:DotsPerInch a qudt:QuantityKind ;
    rdfs:label "dots per inch"^^xsd:string ;
    qudt:applicableUnit unit:DPI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD255"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD255"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:DotsPerInch"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InverseLength .

qudtqk:DynamicFriction a qudt:QuantityKind ;
    rdfs:label "Dynamic Friction"@en ;
    dcterms:description "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:plainTextDescription "Kinetic (or dynamic) friction occurs when two objects are moving relative to each other and rub together (like a sled on the ground)."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99492067> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Friction .

qudtqk:EarthquakeMagnitude a qudt:QuantityKind ;
    rdfs:label "earthquake magnitude"^^xsd:string ;
    qudt:applicableUnit unit:RichterMagnitude ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD365"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD365"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:EarthquakeMagnitude"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EffectiveMultiplicationFactor a qudt:QuantityKind ;
    rdfs:label "Effective Multiplication Factor"@en ;
    dcterms:description "The \"Effective Multiplication Factor\" is the multiplication factor for a finite medium."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_chain_reaction#Effective_neutron_multiplication_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Effective Multiplication Factor\" is the multiplication factor for a finite medium."^^xsd:string ;
    qudt:symbol "k_{eff}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MultiplicationFactor ;
    skos:closeMatch qudtqk:InfiniteMultiplicationFactor .

qudtqk:Efficiency a qudt:QuantityKind ;
    rdfs:label "كفاءة"@ar,
        "Wirkungsgrad"@de,
        "efficiency"@en,
        "rendimiento"@es,
        "rendement"@fr,
        "efficienza"@it,
        "効率"@ja,
        "sprawność"@pl,
        "eficiência"@pt,
        "коэффициент полезного действия"@ru,
        "效率"@zh ;
    dcterms:description "Efficiency is the ratio of output power to input power."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\eta = \\frac{P_{out}}{P_{in}}$, where $P_{out}$ is the output power and $P_{in}$ is the input power."^^qudt:LatexString ;
    qudt:latexSymbol "$\\eta$"^^qudt:LatexString ;
    qudt:plainTextDescription "Efficiency is the ratio of output power to input power."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q11945244> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "rendimento"@it ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:EinsteinCoefficients a qudt:QuantityKind ;
    rdfs:label "Einstein coefficients"^^xsd:string ;
    qudt:applicableUnit unit:SEC-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD036"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD036"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:EinsteinCoefficients"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricPolarizability a qudt:QuantityKind ;
    rdfs:label "قابلية استقطاب"@ar,
        "Polarizovatelnost"@cs,
        "elektrische Polarisierbarkeit"@de,
        "electric polarizability"@en,
        "Polarizabilidad"@es,
        "قطبیت پذیری الکتریکی"@fa,
        "Polarisabilité"@fr,
        "polarizzabilità elettrica"@it,
        "分極率"@ja,
        "Kepengkutuban elektrik"@ms,
        "Polaryzowalność"@pl,
        "polarizabilidade"@pt,
        "Поляризуемость"@ru,
        "Kutuplanabilirlik"@tr,
        "極化性"@zh ;
    dcterms:description "\"Electric Polarizability\" is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which is applied typically by inserting the molecule in a charged parallel-plate capacitor, but may also be caused by the presence of a nearby ion or dipole."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Polarizability"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha_{i,j} = \\frac{\\partial p_i}{\\partial E_j}$, where $p_i$ is the cartesian component along the $i-axis$ of the electric dipole moment induced by the applied electric field strength acting on the molecule, and $E_j$ is the component along the $j-axis$ of this electric field strength."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Electric Polarizability\" is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which is applied typically by inserting the molecule in a charged parallel-plate capacitor, but may also be caused by the presence of a nearby ion or dipole."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricPolarizability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricalConductance a qudt:QuantityKind ;
    rdfs:label "electrical conductance"^^xsd:string,
        "electrical conductance"@en-us ;
    dcterms:description "measure of the capability of a material to conduct electric current, the value of which is defined as the reciprocal of the electrical resistance"@en ;
    qudt:applicableUnit unit:PicoS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD038"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD038"^^xsd:anyURI ;
    qudt:plainTextDescription "Maß für die Fähigkeit eines Stoffes, den elektrischen Strom zu leiten, das wertmäßig definiert ist als Kehrwert des elektrischen Widerstandes"@de ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/ELCO> ;
    qudt:symbol "0173-1#Z4-BAJ223#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricalConductance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectricalResistance a qudt:QuantityKind ;
    rdfs:label "electrical resistance"@en-us ;
    dcterms:description "unterschiedlich ausgeprägte Eigenschaft von Stoffen, den elektrischen Strom in seiner Bewegung zu hemmen, wenn die freien Ladungsträger in diesen Stoffen durch elektrische Felder und/oder elektrische Potentiale in Bewegung gesetzt werden"@de,
        "different properties of materials which impede the electrical current in its movement when the free charged particles in these materials are set in motion by electrical fields and/or electrical potentials "@en ;
    qudt:applicableUnit unit:NanoOHM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD045"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD045"^^xsd:anyURI ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/ELRE> ;
    qudt:symbol "0173-1#Z4-BAJ215#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricalResistance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElectromagneticPermeabilityRatio a qudt:QuantityKind ;
    rdfs:label "Electromagnetic Permeability Ratio"@en ;
    dcterms:description """
  $\\textit{Electromagnetic Permeability Ratio}$ is the ratio of the electromagnetic permeability of a specific medium to the electromagnetic permeability of free space.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:PERMEABILITY_EM_REL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:plainTextDescription "The ratio of the electromagnetic permeability of a specific medium to the electromagnetic permeability of free space."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-2D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77785645> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectromagneticPermeabilityRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ElevationRelativeToNAP a qudt:QuantityKind ;
    rdfs:label "Elevation relative to NAP"@en,
        "Hoogte ten opzichte van NAP"@nl ;
    qudt:applicableUnit unit:M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "Height measurement relative to the Normaal Amsterdams Peil (NAP) (en: Amsterdam Ordnance System). Being a form of gravity related height"^^xsd:string ;
    qudt:symbol "mNAP"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElevationRelativeToNAP"^^xsd:string,
        "Height measurement relative to the Normaal Amsterdams Peil (NAP) (en: Amsterdam Ordnance System). Being a form of gravity related height"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Altitude ;
    skos:prefLabel "Elevation relative to NAP"@en,
        "Hoogte ten opzichte van NAP"@nl ;
    prov:wasDerivedFrom <https://www.opengis.net/def/crs/EPSG/0/5709> ;
    prov:wasInfluencedBy <https://epsg.io/5709> .

qudtqk:EnergyPerMassAmountOfSubstance a qudt:QuantityKind ;
    rdfs:label "Energy and work per mass amount of substance"@en ;
    qudt:applicableUnit unit:BTU_IT-PER-MOL_LB ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyPerMassAmountOfSubstance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:EquilibriumConstantOnConcentrationBasis a qudt:QuantityKind ;
    rdfs:label "Equilibrium Constant on Concentration Basis"@en ;
    dcterms:description "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD048"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD048"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$K_c = \\Pi_B(c_B)^{-\\nu_B}$, for solutions"^^qudt:LatexString ;
    qudt:latexSymbol "$K_c$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96096049> ;
    rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant"^^xsd:string,
        "The unit is unit:MOL-PER-M3 raised to the N where N is the summation of stoichiometric numbers. I don't know what to do with this."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EquilibriumConstant .

qudtqk:EquilibriumConstantOnPressureBasis a qudt:QuantityKind ;
    rdfs:label "Equilibrium Constant on Pressure Basis"@en ;
    dcterms:description "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD049"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Equilibrium_constant"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD049"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$K_p = \\Pi_B(p_B)^{-\\nu_B}$, for gases"^^qudt:LatexString ;
    qudt:latexSymbol "$K_p$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Equlilbrium Constant\", also known as the thermodynamic equilibrium constant, is an expression that gives us a ratio of the products and reactants of a reaction at equilibrium with respect to a specific unit."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T0D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96096019> ;
    rdfs:comment "Applicable units are those of quantitykind:EquilibriumConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EquilibriumConstant .

qudtqk:EvaporativeHeatTransfer a qudt:QuantityKind ;
    rdfs:label "Evaporative Heat Transfer"@en ;
    dcterms:description "\"Evaporative Heat Transfer\" is "^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-3D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Phi_e$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Evaporative Heat Transfer\" is "^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Exposure a qudt:QuantityKind ;
    rdfs:label "Exposure"@en ;
    dcterms:description "\"Exposure\" reflects the extent of ionization events taking place when air is irradiated by ionizing photons (gamma radiation and/or x rays). In photography, exposure is the amount of light allowed to fall on each area unit of a photographic medium (photographic film or image sensor) during the process of taking a photograph. Exposure is measured in lux seconds, and can be computed from exposure value (EV) and scene luminance in a specified region."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-HR-PER-KiloGM,
        unit:A-M2-PER-J-SEC,
        unit:C-PER-KiloGM,
        unit:HZ-PER-T,
        unit:KiloR,
        unit:MegaHZ-PER-T,
        unit:MilliC-PER-KiloGM,
        unit:MilliR,
        unit:PER-T-SEC,
        unit:R ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Exposure"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Exposure_%28photography%29"^^xsd:anyURI,
        "http://hps.org/publicinformation/ate/faqs/gammaandexposure.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "For X-or gamma radiation, $X = \\frac{dQ}{dm}$, where $dQ$ is the absolute value of the mean total electric charge of the ions of the same sign produced in dry air when all the electrons and positrons liberated or created by photons in an element of air are completely stopped in air, and $dm$ is the mass of that element."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Exposure\" reflects the extent of ionization events taking place when air is irradiated by ionizing photons (gamma radiation and/or x rays). In photography, exposure is the amount of light allowed to fall on each area unit of a photographic medium (photographic film or image sensor) during the process of taking a photograph. Exposure is measured in lux seconds, and can be computed from exposure value (EV) and scene luminance in a specified region."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/XPOS> ;
    qudt:symbol "X"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q336938> ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerMass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricChargePerMass .

qudtqk:FastFissionFactor a qudt:QuantityKind ;
    rdfs:label "Fast Fission Factor"@en ;
    dcterms:description "\"Fast Fission Factor\" in an infinite medium, is the ratio of the mean number of neutrons produced by fission due to neutrons of all energies to the mean number of neutrons produced by fissions due to thermal neutrons only."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Fast Fission Factor\" in an infinite medium, is the ratio of the mean number of neutrons produced by fission due to neutrons of all energies to the mean number of neutrons produced by fissions due to thermal neutrons only."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99197493> ;
    rdfs:comment "Applicable units are those of quantitykind:FastFissionFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:FishBiotransformationHalfLife a qudt:QuantityKind ;
    rdfs:label "Fish Biotransformation Half Life"@en ;
    dcterms:description "A time that quantifies how long its takes to transform 50% of a substance's total concentration from any concentration point in time in fish via whole body metabolic reactions."^^qudt:LatexString ;
    qudt:applicableUnit unit:DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:plainTextDescription "A time that quantifies how long its takes to transform 50% of a substance's total concentration from any concentration point in time in fish via whole body metabolic reactions."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:FishBiotransformationHalfLife"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Time .

qudtqk:ForceMagnitude a qudt:QuantityKind ;
    rdfs:label "Force Magnitude"@en ;
    dcterms:description "The 'magnitude' of a force is its 'size' or 'strength', regardless of the direction in which it acts."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "http://wiki.answers.com/Q/What_is_magnitude_of_force"^^xsd:anyURI ;
    qudt:plainTextDescription "The 'magnitude' of a force is its 'size' or 'strength', regardless of the direction in which it acts."^^xsd:string ;
    qudt:symbol "U"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

qudtqk:GFactorOfNucleus a qudt:QuantityKind ;
    rdfs:label "g-Factor of Nucleus"@en ;
    dcterms:description "The \"g-Factor of Nucleus\" is associated with the spin and magnetic moments of protons, neutrons, and many nuclei."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Landé_g-factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$g = \\frac{\\mu}{I\\mu_B}$, where $\\mu$ is the magnitude of magnetic dipole moment, $I$ is the nuclear angular momentum quantum number, and $\\mu_B$ is the Bohr magneton."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"g-Factor of Nucleus\" is associated with the spin and magnetic moments of protons, neutrons, and many nuclei."^^xsd:string ;
    qudt:symbol "g"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97591250> ;
    rdfs:comment "Applicable units are those of quantitykind:GFactorOfNucleus"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:GapEnergy a qudt:QuantityKind ;
    rdfs:label "Gap Energy"@en ;
    dcterms:description "\"Gap Energy\" is the difference in energy between the lowest level of conduction band and the highest level of valence band. It is an energy range in a solid where no electron states can exist."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Band_gap"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Gap Energy\" is the difference in energy between the lowest level of conduction band and the highest level of valence band. It is an energy range in a solid where no electron states can exist."^^xsd:string ;
    qudt:symbol "E_g"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:GaugePressure a qudt:QuantityKind ;
    rdfs:label "Gauge Pressure"@en ;
    dcterms:description """Gauge Pressure is the pressure of a system relative to the pressure of the surrounding atmosphere. 
It is the difference between the absolute pressure and the atmospheric pressure. Gauge pressure is positive for pressures 
above atmospheric pressure and negative for pressures below it. A Quantity in QUDT having a QuantityKind of GaugePressure
would typically also assert the value of qudt:isDeltaQuantity to be true, indicating that the value is a difference between
two pressures."""^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:GeneFamilyAbundance a qudt:QuantityKind ;
    rdfs:label "Gene Family Abundance"@en ;
    dcterms:description "The abundance of each gene family in the community. Gene families are groups of evolutionarily-related protein-coding sequences that often perform similar functions. Gene family abundance is reported in RPK (reads per kilobase) units to normalize for gene length."^^qudt:LatexString ;
    qudt:applicableUnit unit:RPK ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://learn.gencore.bio.nyu.edu/"^^xsd:anyURI ;
    qudt:plainTextDescription "The abundance of each gene family in the community. Gene families are groups of evolutionarily-related protein-coding sequences that often perform similar functions. Gene family abundance is reported in RPK (reads per kilobase) units to normalize for gene length."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:GeneFamilyAbundance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:GruneisenParameter a qudt:QuantityKind ;
    rdfs:label "Gruneisen Parameter"@en ;
    dcterms:description "\"Gruneisen Parameter\" named after Eduard Grüneisen, describes the effect that changing the volume of a crystal lattice has on its vibrational properties, and, as a consequence, the effect that changing temperature has on the size or dynamics of the lattice."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Grüneisen_parameter"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$\\gamma = \\frac{\\alpha_V}{x_T c_V\\rho}$, where $\\alpha_V$ is the cubic expansion coefficient, $x_T$ is isothermal compressibility, $c_V$ is specific heat capacity at constant volume, and $\\rho$ is mass density."^^qudt:LatexString ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Gruneisen Parameter\" named after Eduard Grüneisen, describes the effect that changing the volume of a crystal lattice has on its vibrational properties, and, as a consequence, the effect that changing temperature has on the size or dynamics of the lattice."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105658620> ;
    rdfs:comment "Applicable units are those of quantitykind:GruneisenParameter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:GustatoryThreshold a qudt:QuantityKind ;
    rdfs:label "Gustatory Threshold"@en ;
    dcterms:description "\"Gustatory Threshold\" are thresholds for classes of taste that can be detected by the human mouth and thresholds of sensitivity to foods, drinks and other substances."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_g}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Gustatory Threshold\" are thresholds for classes of taste that can be detected by the human mouth and thresholds of sensitivity to foods, drinks and other substances."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:HeadEndPressure a qudt:QuantityKind ;
    rdfs:label "Head End Pressure"@en ;
    qudt:abbreviation "HEP"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:HeartRate a qudt:QuantityKind ;
    rdfs:label "Heart Rate"@en ;
    dcterms:description "The number of heartbeats per unit of time, usually per minute. The heart rate is based on the number of contractions of the ventricles (the lower chambers of the heart). The heart rate may be too fast (tachycardia) or too slow (bradycardia). The average adult pulse rate at rest is 60–80 per minute, but exercise, injury, illness, and emotion may produce much faster rates."^^qudt:LatexString ;
    qudt:applicableUnit unit:BEAT-PER-MIN ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Heart_rate"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/oi/authority.20110803100354463"^^xsd:anyURI ;
    qudt:plainTextDescription "The number of heartbeats per unit of time, usually per minute. The heart rate is based on the number of contractions of the ventricles (the lower chambers of the heart). The heart rate may be too fast (tachycardia) or too slow (bradycardia). The average adult pulse rate at rest is 60–80 per minute, but exercise, injury, illness, and emotion may produce much faster rates."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1073121> ;
    rdfs:comment "Applicable units are those of quantitykind:HeartRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:HeatCapacityRatio a qudt:QuantityKind ;
    rdfs:label "Heat Capacity Ratio"@en ;
    dcterms:description "The heat capacity ratio, or ratio of specific heats, is the ratio of the heat capacity at constant pressure ($C_P$) to heat capacity at constant volume ($C_V$). For an ideal gas, the heat capacity is constant with temperature ($\\theta$). Accordingly we can express the enthalpy as $H = C_P*\\theta$ and the internal energy as $U = C_V \\cdot \\theta$. Thus, it can also be said that the heat capacity ratio is the ratio between enthalpy and internal energy."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Heat_capacity_ratio"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_capacity_ratio"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31890"^^xsd:anyURI ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q503869> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:HenrysLawVolatilityConstant a qudt:QuantityKind ;
    rdfs:label "Henry's Law Volatility Constant"@en ;
    dcterms:description "A quantity kind that is a proportionality constant that relates the partial pressure of a gas above a liquid and the concentration of the gas dissolved in the liquid.  The numerator contains the gaseous concentration and the denominator contains the liquid concentration."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM-M3-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:plainTextDescription "A quantity kind that is a proportionality constant that relates the partial pressure of a gas above a liquid and the concentration of the gas dissolved in the liquid.  The numerator contains the gaseous concentration and the denominator contains the liquid concentration."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:HenrysLawVolatilityConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:HyperfineStructureQuantumNumber a qudt:QuantityKind ;
    rdfs:label "Hyperfine Structure Quantum Number"@en ;
    dcterms:description "The \"Hyperfine Structure Quantum Number\" is a quantum number of an atom describing inclination of the nuclear spin with respect to a quantization axis given by the magnetic field produced by the orbital electrons."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Hyperfine_structure"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Hyperfine Structure Quantum Number\" is a quantum number of an atom describing inclination of the nuclear spin with respect to a quantization axis given by the magnetic field produced by the orbital electrons."^^xsd:string ;
    qudt:symbol "F"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97577449> ;
    rdfs:comment "Applicable units are those of quantitykind:HyperfineStructureQuantumNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:QuantumNumber .

qudtqk:IncidenceProportion a qudt:QuantityKind ;
    rdfs:label "Incidence Proportion"@en ;
    dcterms:description "Incidence proportion (also known as cumulative incidence) is the number of new cases within a specified time period divided by the size of the population initially at risk. For example, if a population initially contains 1,000 non-diseased persons and 28 develop a condition over two years of observation, the incidence proportion is 28 cases per 1,000 persons per two years, i.e. 2.8% per two years."^^qudt:LatexString ;
    qudt:applicableUnit unit:SAMPLE-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Cumulative_incidence"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ;
    qudt:plainTextDescription "Incidence proportion (also known as cumulative incidence) is the number of new cases within a specified time period divided by the size of the population initially at risk. For example, if a population initially contains 1,000 non-diseased persons and 28 develop a condition over two years of observation, the incidence proportion is 28 cases per 1,000 persons per two years, i.e. 2.8% per two years."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q217690> ;
    rdfs:comment "Applicable units are those of quantitykind:Incidence"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:IncidenceRate ;
    skos:broader qudtqk:Incidence .

qudtqk:IncidenceRate a qudt:QuantityKind ;
    rdfs:label "Incidence Rate"@en ;
    dcterms:description "The incidence rate is a measure of the frequency with which a disease or other incident occurs over a specified time period. It is also known as the incidence density rate or person-time incidence rate, when the denominator is the combined person-time of the population at risk (the sum of the time duration of exposure across all persons exposed)"^^qudt:LatexString ;
    qudt:applicableUnit unit:SAMPLE-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ;
    qudt:plainTextDescription "The incidence rate is a measure of the frequency with which a disease or other incident occurs over a specified time period. It is also known as the incidence density rate or person-time incidence rate, when the denominator is the combined person-time of the population at risk (the sum of the time duration of exposure across all persons exposed)"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:Incidence"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:IncidenceProportion ;
    skos:broader qudtqk:Incidence .

qudtqk:InductanceBasedTimeConstant a qudt:QuantityKind ;
    rdfs:label "Inductance based time constant"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD198"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD198"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:InfiniteMultiplicationFactor a qudt:QuantityKind ;
    rdfs:label "Infinite Multiplication Factor"@en ;
    dcterms:description "The \"Infinite Multiplication Factor\" is the multiplication factor for an infinite medium or for an infinite repeating lattice."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$k_\\infty$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Infinite Multiplication Factor\" is the multiplication factor for an infinite medium or for an infinite repeating lattice."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99440487> ;
    rdfs:comment "Applicable units are those of quantitykind:MultiplicationFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MultiplicationFactor ;
    skos:closeMatch qudtqk:EffectiveMultiplicationFactor .

qudtqk:InternalConversionFactor a qudt:QuantityKind ;
    rdfs:label "InternalConversionFactor"@en ;
    dcterms:description "The \"InternalConversionFactor\" describes the rate of internal conversion. It is the ratio of the number of internal conversion electrons to the number of gamma quanta emitted by the radioactive atom in a given transition."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Internal_conversion_coefficient"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"InternalConversionFactor\" describes the rate of internal conversion. It is the ratio of the number of internal conversion electrons to the number of gamma quanta emitted by the radioactive atom in a given transition."^^xsd:string ;
    qudt:symbol "a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q6047819> ;
    rdfs:comment "Applicable units are those of quantitykind:InternalConversionFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:IonConcentration a qudt:QuantityKind ;
    rdfs:label "Ion Concentration"@en ;
    dcterms:description "\"Ion Concentration\" is the number of ions per unit volume. Also known as ion density."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-CentiM3,
        unit:PER-FT3,
        unit:PER-IN3,
        unit:PER-L,
        unit:PER-M3,
        unit:PER-MilliL,
        unit:PER-MilliM3,
        unit:PER-YD3 ;
    qudt:exactMatch qudtqk:IonDensity ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:plainTextDescription "\"Ion Concentration\" is the number of ions per unit volume. Also known as ion density."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:InverseVolume"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InverseVolume .

qudtqk:IonDensity a qudt:QuantityKind ;
    rdfs:label "Ion Density"@en ;
    dcterms:description "\"Ion Density\" is the number of ions per unit volume. Also known as ion concentration."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM-PER-L,
        unit:NUM-PER-M3,
        unit:NUM-PER-MicroL,
        unit:NUM-PER-MilliL,
        unit:NUM-PER-MilliM3,
        unit:NUM-PER-NanoL,
        unit:NUM-PER-PicoL ;
    qudt:exactMatch qudtqk:IonConcentration ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://www.answers.com/topic/ion-density"^^xsd:anyURI ;
    qudt:latexDefinition """$n^+ = \\frac{N^+}{V}$, $n^- = \\frac{N^-}{V}$

where $N^+$ and $N^-$ are the number of positive and negative ions, respectively, in a 3D domain with volume $V$."""^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Ion Density\" is the number of ions per unit volume. Also known as ion concentration."^^xsd:string ;
    qudt:symbol "N, n^+, n^-"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:NumberDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:NumberDensity .

qudtqk:IonTransportNumber a qudt:QuantityKind ;
    rdfs:label "Ion Transport Number"@en ;
    dcterms:description "The \"Ion Transport Number\" is a quantity which indicates the different contribution of ions to the electric current in electrolytes due to different electrical mobility."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ion_transport_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$t_B = \\frac{i_B}{i}$, where $i_B$ is the electric current carried by the ion $B$ and $i$ is the total electric current."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Ion Transport Number\" is a quantity which indicates the different contribution of ions to the electric current in electrolytes due to different electrical mobility."^^xsd:string ;
    qudt:symbol "t_B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q331854> ;
    rdfs:comment "Applicable units are those of quantitykind:IonTransportNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:Irradiance a qudt:QuantityKind ;
    rdfs:label "الطاقة الهلامية"@ar,
        "Intenzita záření"@cs,
        "Bestrahlungsstärke"@de,
        "irradiance"@en,
        "irradiancia"@es,
        "پرتو افکنی/چگالی تابش"@fa,
        "éclairement énergétique"@fr,
        "irradianza"@it,
        "熱流束"@ja,
        "Kepenyinaran"@ms,
        "irradiância"@pt,
        "Поверхностная плотность потока энергии"@ru,
        "yoğunluk"@tr,
        "辐照度"@zh ;
    dcterms:description "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^qudt:LatexString ;
    qudt:abbreviation "W-PER-M2"^^xsd:string ;
    qudt:applicableUnit unit:MegaJ-PER-M2-DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD068"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Irradiance"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD068"^^xsd:anyURI ;
    qudt:latexDefinition "$E = \\frac{d\\Phi}{dA}$, where $d\\Phi$ is the radiant flux incident on an element of the surface with area $dA$."^^qudt:LatexString ;
    qudt:plainTextDescription "Irradiance and Radiant Emittance are radiometry terms for the power per unit area of electromagnetic radiation at a surface. \"Irradiance\" is used when the electromagnetic radiation is incident on the surface. \"Radiant emmitance\" (or \"radiant exitance\") is used when the radiation is emerging from the surface."^^xsd:string ;
    qudt:symbol "E"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q830654> ;
    rdfs:comment "Applicable units are those of quantitykind:Irradiance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "koyuluk"@tr ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:Landau-GinzburgNumber a qudt:QuantityKind ;
    rdfs:label "Landau-Ginzburg Number"@en ;
    dcterms:description "\"Landau-Ginzburg Number\", also known as the Ginzburg-Landau parameter, describes the relationship between London penetration depth and coherence length."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ginzburg–Landau_theory"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "At zero thermodynamic temperature $\\kappa = \\frac{\\lambda_L}{(\\varepsilon\\sqrt{2})}$, where $\\lambda_L$ is London penetration depth and $\\varepsilon$ is coherence length."^^qudt:LatexString ;
    qudt:latexSymbol "$\\kappa$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Landau-Ginzburg Number\", also known as the Ginzburg-Landau parameter, describes the relationship between London penetration depth and coherence length."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Landau-GinzburgNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:LandeGFactor a qudt:QuantityKind ;
    rdfs:label "Lande g-Factor"@en ;
    dcterms:description "The \"Lande g-Factor\" is a particular example of a g-factor, namely for an electron with both spin and orbital angular momenta. It is named after Alfred Landé, who first described it in 1921."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/G-factor_(physics)"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Landé_g-factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$g = \\frac{\\mu}{J\\mu_B}$, where $\\mu$ is the magnitude of magnetic dipole moment, $J$ is the total angular momentum quantum number, and $\\mu_B$ is the Bohr magneton."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Lande g-Factor\" is a particular example of a g-factor, namely for an electron with both spin and orbital angular momenta. It is named after Alfred Landé, who first described it in 1921."^^xsd:string ;
    qudt:symbol "g"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1191684> ;
    rdfs:comment "Applicable units are those of quantitykind:LandeGFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LatticeVector a qudt:QuantityKind ;
    rdfs:label "Lattice Vector"@en ;
    dcterms:description "\"Lattice Vector\" is a translation vector that maps the crystal lattice on itself."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Lattice Vector\" is a translation vector that maps the crystal lattice on itself."^^xsd:string ;
    qudt:symbol "R"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105435234> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:LengthByForce a qudt:QuantityKind ;
    rdfs:label "Length Force"@en ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Work .

qudtqk:LengthTemperatureTime a qudt:QuantityKind ;
    rdfs:label "Length Temperature Time"@en ;
    qudt:applicableUnit unit:CentiM-SEC-DEG_C ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:LengthTemperatureTime"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Lethargy a qudt:QuantityKind ;
    rdfs:label "Lethargy"@en ;
    dcterms:description "The \"Lethargy\" is a dimensionless logarithm of the ratio of the energy of source neutrons to the energy of neutrons after a collision."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.scribd.com/doc/51548050/149/Lethargy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$u = \\ln(\\frac{E_0}{E})$, where $E_0$ is a reference energy."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Lethargy\" is a dimensionless logarithm of the ratio of the energy of source neutrons to the energy of neutrons after a collision."^^xsd:string ;
    qudt:symbol "u"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25508781> ;
    rdfs:comment "Applicable units are those of quantitykind:Lethargy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LinearCompressibility a qudt:QuantityKind ;
    rdfs:label "Linear Compressibility"@en ;
    dcterms:description "Linear Compressibility is a measure of the relative length change of a solid as a response to a normal force change."^^qudt:LatexString ;
    qudt:applicableUnit unit:MicroM-PER-N ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:plainTextDescription "Linear Compressibility is a measure of the relative length change of a solid as a response to a normal force change."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LinearCompressibility"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicPower a qudt:QuantityKind ;
    rdfs:label "lineic power"@en-us ;
    dcterms:description "power divided by the associated length"@en ;
    qudt:applicableUnit unit:W-PER-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-3D0> ;
    qudt:plainTextDescription "Leistung dividiert durch die zugehörige Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ418#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LineicPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LineicResolution a qudt:QuantityKind ;
    rdfs:label "lineic resolution"@en-us ;
    dcterms:description "graphic resolution capacity of output devices such as printers or of data acquisition such as scanners, as a number of pixels per length"@en ;
    qudt:applicableUnit unit:DPI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:plainTextDescription "grafisches Auflösungsvermögen von Ausgabegeräten wie Druckern oder von Datenerfassungsgeräten wie Scannern als Anzahl der Bildpunkte je Länge"@de ;
    qudt:symbol "0173-1#Z4-BAJ438#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LineicResolution"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InverseLength .

qudtqk:LogOctanolAirPartitionCoefficient a qudt:QuantityKind ;
    rdfs:label "Octanol Air Partition Coefficient"@en ;
    dcterms:description "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of liquid octanol and gaseous air at equilibrium.  More simply, it is a comparison of the solubilities of the compound solute in these two immiscible substances."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of liquid octanol and gaseous air at equilibrium.  More simply, it is a comparison of the solubilities of the compound solute in these two immiscible substances."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LogOctanolAirPartitionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:LogOctanolWaterPartitionCoefficient a qudt:QuantityKind ;
    rdfs:label "Logarithm of Octanol Water Partition Coefficient"@en ;
    dcterms:description "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of octanol and water at equilibrium.  More simply, it is a comparison of the solubilities of the compound solute in these two immiscible liquids.  This property is used to measure the lipophilicity and the hydrophilicity of a substance."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:plainTextDescription "A dimensionless ratio that is the logarithm of the ratio of a compound's concentration within a two phase mixture of octanol and water at equilibrium.  More simply, it is a comparison of the solubilities of the compound solute in these two immiscible liquids.  This property is used to measure the lipophilicity and the hydrophilicity of a substance."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LogOctanolWaterPartitionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:Long-RangeOrderParameter a qudt:QuantityKind ;
    rdfs:label "Long-Range Order Parameter"@en ;
    dcterms:description "\"Long-Range Order Parameter\" is the fraction of atoms in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Long-Range Order Parameter\" is the fraction of atoms in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^xsd:string ;
    qudt:symbol "R, s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105496124> ;
    rdfs:comment "Applicable units are those of quantitykind:Long-RangeOrderParameter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LorenzCoefficient a qudt:QuantityKind ;
    rdfs:label "Lorenz Coefficient"@en ;
    dcterms:description "\"Lorenz Coefficient\" is part mof the Lorenz curve."^^qudt:LatexString ;
    qudt:applicableUnit unit:V2-PER-K2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L4I0M2H-2T-6D0> ;
    qudt:iec61360Code "0112/2///62720#UAD087"^^xsd:string ;
    qudt:informativeReference "http://www.matter.org.uk/diffraction/geometry/lattice_vectors.htm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD087"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$L = \\frac{\\lambda}{\\sigma T}$, where $\\lambda$ is thermal conductivity, $\\sigma$ is electric conductivity, and $T$ is thermodynamic temperature."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Lorenz Coefficient\" is part mof the Lorenz curve."^^xsd:string ;
    qudt:symbol "L"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105728754> ;
    rdfs:comment "Applicable units are those of quantitykind:LorenzCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:LowerCriticalMagneticFluxDensity a qudt:QuantityKind ;
    rdfs:label "Lower Critical Magnetic Flux Density"@en ;
    dcterms:description "\"Lower Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for magnetic flux entering the superconductor."^^qudt:LatexString ;
    qudt:applicableUnit unit:GAMMA,
        unit:GAUSS,
        unit:KiloGAUSS,
        unit:KiloT,
        unit:MicroT,
        unit:MilliT,
        unit:NanoT,
        unit:T,
        unit:T_Ab ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Lower Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for magnetic flux entering the superconductor."^^xsd:string ;
    qudt:symbol "B_{c1}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106127355> ;
    rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MagneticFluxDensity ;
    skos:closeMatch qudtqk:UpperCriticalMagneticFluxDensity .

qudtqk:LuminousEmittance a qudt:QuantityKind ;
    rdfs:label "Luminous Emmitance"@en ;
    dcterms:description "\"Luminous Emittance\" is the luminous flux per unit area emitted from a surface."^^qudt:LatexString ;
    qudt:applicableUnit unit:FC,
        unit:LUX,
        unit:PHOT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD092"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD092"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Luminous Emittance\" is the luminous flux per unit area emitted from a surface."^^xsd:string ;
    qudt:symbol "M_v"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:LuminousFluxPerArea .

qudtqk:LuminousFluxRatio a qudt:QuantityKind ;
    rdfs:label "Luminous Flux Ratio"@en ;
    dcterms:description "Luminous Flux Ratio (or Relative Luminous Flux or Relative Luminous Power) is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light. It is expressed as a percentage or fraction of full power."^^qudt:LatexString ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_flux"^^xsd:anyURI ;
    qudt:plainTextDescription "Luminous Flux Ratio (or Relative Luminous Flux or Relative Luminous Power) is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light. It is expressed as a percentage or fraction of full power."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFluxRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:MachNumber a qudt:QuantityKind ;
    rdfs:label "عدد ماخ"@ar,
        "Machovo číslo"@cs,
        "Mach-Zahl"@de,
        "Mach number"@en,
        "número de Mach"@es,
        "عدد ماخ"@fa,
        "nombre de Mach"@fr,
        "मैक संख्या"@hi,
        "numero di Mach"@it,
        "マッハ数n"@ja,
        "Nombor Mach"@ms,
        "liczba Macha"@pl,
        "número de Mach"@pt,
        "număr Mach"@ro,
        "число Маха"@ru,
        "Machovo število"@sl,
        "Mach sayısı"@tr,
        "马赫"@zh ;
    dcterms:description "\"Mach Number\" is a dimensionless quantity representing the speed of an object moving through air or other fluid divided by the local speed of sound. It is commonly used to represent the speed of an object when it is traveling close to or above the speed of sound. The Mach number is commonly used both with objects traveling at high speed in a fluid, and with high-speed fluid flows inside channels such as nozzles, diffusers or wind tunnels. As it is defined as a ratio of two speeds, it is a dimensionless number."^^qudt:LatexString ;
    qudt:applicableUnit unit:MACH ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mach_number"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD364"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mach_number"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD364"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ;
    qudt:latexDefinition "$Ma = \\frac{v_o}{c_o}$, where $v_0$ is speed, and $c_o$ is speed of sound."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Mach Number\" is a dimensionless quantity representing the speed of an object moving through air or other fluid divided by the local speed of sound. It is commonly used to represent the speed of an object when it is traveling close to or above the speed of sound. The Mach number is commonly used both with objects traveling at high speed in a fluid, and with high-speed fluid flows inside channels such as nozzles, diffusers or wind tunnels. As it is defined as a ratio of two speeds, it is a dimensionless number."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:symbol "Ma"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q160669> ;
    rdfs:comment "Applicable units are those of quantitykind:MachNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio ;
    skos:closeMatch <http://dbpedia.org/resource/Mach_number> .

qudtqk:MadelungConstant a qudt:QuantityKind ;
    rdfs:label "ثابت مادلونك"@ar,
        "Madelung-Konstante"@de,
        "Madelung constant"@en,
        "Constante de Madelung"@es,
        "ثابت مادلونگ"@fa,
        "Constante de Madelung"@fr,
        "Costante di Madelung"@it,
        "マーデルングエネルギー"@ja,
        "Stała Madelunga"@pl,
        "constante de Madelung"@pt,
        "постоянная Маделунга"@ru,
        "馬德隆常數"@zh ;
    dcterms:description "\"Madelung Constant\" is used in determining the electrostatic potential of a single ion in a crystal by approximating the ions by point charges. It is named after Erwin Madelung, a German physicist."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Madelung_constant"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "For a uni-univalent ionic crystal of specified structure, the binding energy $V_b$ per pair of ions is $V_b = \\alpha\\frac{e^2}{4\\pi \\varepsilon_0 a}$, where $e$ is the elementary charge, $\\varepsilon_0$ is the electric constant, and $a$ is the lattice constant which should be specified."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Madelung Constant\" is used in determining the electrostatic potential of a single ion in a crystal by approximating the ions by point charges. It is named after Erwin Madelung, a German physicist."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q898781> ;
    rdfs:comment "Applicable units are those of quantitykind:MadelungConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MagneticPolarization a qudt:QuantityKind ;
    rdfs:label "Magnetic Polarization"@en ;
    dcterms:description """
$\\text{Magnetic Polarization}$ is a vector quantity equal to the product of the magnetization $M$ and the magnetic constant $\\mu_0$.
  """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-1I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD102"^^xsd:string ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=121-11-54"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD102"^^xsd:anyURI ;
    qudt:latexDefinition "$J_m = \\mu_0 M$,  where $\\mu_0$ is the magentic constant and $M$ is magnetization."^^qudt:LatexString ;
    qudt:latexSymbol "$J_m$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1884336> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso <http://qudt.org/vocab/constant/MagneticConstant>,
        qudtqk:MagneticFieldStrength,
        qudtqk:Magnetization .

qudtqk:MassAmountOfSubstance a qudt:QuantityKind ;
    rdfs:label "Mass Amount of Substance"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M1H0T0D0> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassAmountOfSubstanceTemperature a qudt:QuantityKind ;
    rdfs:label "Mass Amount of Substance Temperature"@en ;
    qudt:applicableUnit unit:MOL_LB-DEG_F ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:MassAmountOfSubstanceTemperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassConcentrationRateOfChange a qudt:QuantityKind ;
    rdfs:label "Mass Concentration Rate Of Change"@en ;
    dcterms:description "the rate at which a specific chemical element or compound changes concentration over time, where with concentration expressed as mass per volume. SI unit is kg * m-3 * s-1"^^xsd:string ;
    qudt:applicableUnit unit:MicroGM-PER-L-DAY ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:informativeReference "https://pubs.usgs.gov/wri/wri034271"^^xsd:anyURI ;
    qudt:plainTextDescription "the rate at which a specific chemical element or compound changes concentration over time, where with concentration expressed as mass per volume. SI unit is kg * m-3 * s-1"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:MassConcentrationRateOfChange"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassDefect a qudt:QuantityKind ;
    rdfs:label "Mass Defect"@en ;
    dcterms:description "The \"Mass Defect\", also termed mass deficit, or mass packing fraction, describes mass change (decrease) in bound systems, particularly atomic nuclei."^^qudt:LatexString ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Binding_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$B = Zm(^{1}\\textrm{H}) + Nm_n - m_a$, where $Z$ is the proton number of the atom, $m(^{1}\\textrm{H})$ is atomic mass of $^{1}\\textrm{H}$, $N$ is the neutron number, $m_n$ is the rest mass of the neutron, and $m_a$ is the rest mass of the atom."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Mass Defect\", also termed mass deficit, or mass packing fraction, describes mass change (decrease) in bound systems, particularly atomic nuclei."^^xsd:string ;
    qudt:symbol "B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26897126> ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:MassEnergyTransferCoefficient a qudt:QuantityKind ;
    rdfs:label "Mass Energy Transfer Coefficient"@en ;
    dcterms:description "\"Mass Energy Transfer Coefficient\" is that fraction of the mass attenuation coefficient which contributes to the production of kinetic energy in charged particles."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:informativeReference "http://physics.nist.gov/PhysRefData/XrayMassCoef/chap3.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\frac{\\mu_{tr}}{\\rho} = -\\frac{1}{\\rho}\\frac{1}{R}\\frac{dR_{tr}}{dl}$, where $dR_{tr}$ is the mean energy that is transferred to kinetic energy of charged particles by interactions of the incident radiation $R$ in traversing a distance $dl$ in the material of density $\\rho$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\frac{\\mu_{tr}}{\\rho}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Mass Energy Transfer Coefficient\" is that fraction of the mass attenuation coefficient which contributes to the production of kinetic energy in charged particles."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99714619> ;
    rdfs:comment "Applicable units are those of quantitykind:MassEnergyTransferCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassFraction a qudt:QuantityKind ;
    rdfs:label "Mass Fraction"@en ;
    dcterms:description "The \"Mass Fraction\" is the fraction of one substance with mass to the mass of the total mixture ."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_fraction_(chemistry)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$w_B = \\frac{m_B}{m}$, where $m_B$ is the mass of substance $B$ and $m$ is the total."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Mass Fraction\" is the fraction of one substance with mass to the mass of the total mixture ."^^xsd:string ;
    qudt:symbol "w_B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q899138> ;
    rdfs:comment "Applicable units are those of quantitykind:MassFraction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassNumber a qudt:QuantityKind ;
    rdfs:label "Mass Number"@en ;
    dcterms:description "The \"Mass Number\" (A), also called atomic mass number or nucleon number, is the total number of protons and neutrons (together known as nucleons) in an atomic nucleus. Nuclides with the same value of $A$ are called isobars."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$A = Z + N$, where $Z$ is the atomic number and $N$ is the neutron number."^^qudt:LatexString ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q101395> ;
    rdfs:comment "Applicable units are those of quantitykind:MassNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Count .

qudtqk:MassStoppingPower a qudt:QuantityKind ;
    rdfs:label "mass stopping power"^^xsd:string ;
    qudt:applicableUnit unit:ERG-CentiM2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:iec61360Code "0112/2///62720#UAD130"^^xsd:string,
        "0112/2///62720#UAD290"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD130"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD290"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:MassStoppingPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MassicElectricCurrent a qudt:QuantityKind ;
    rdfs:label "massic electric current"^^xsd:string ;
    qudt:applicableUnit unit:A-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD111"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD111"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:MassicElectricCurrent"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MaxOperatingThrust a qudt:QuantityKind ;
    rdfs:label "Max Operating Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MOT"^^xsd:string ;
    skos:broader qudtqk:Thrust .

qudtqk:MechanicalEnergy a qudt:QuantityKind ;
    rdfs:label "Mechanical Energy"@en ;
    dcterms:description "Mechanical Energy is the sum of potential energy and kinetic energy. It is the energy associated with the motion and position of an object."^^qudt:LatexString ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mechanical_energy"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mechanical_energy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$E = T + V$, where $T$ is kinetic energy and $V$ is potential energy."^^qudt:LatexString ;
    qudt:plainTextDescription "Mechanical Energy is the sum of potential energy and kinetic energy. It is the energy associated with the motion and position of an object."^^xsd:string ;
    qudt:symbol "E"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q184550> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy .

qudtqk:MechanicalMobility a qudt:QuantityKind ;
    rdfs:label "Mechanical Mobility"@en ;
    qudt:applicableUnit unit:MOHM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:MechanicalMobility"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MechanicalSurfaceImpedance a qudt:QuantityKind ;
    rdfs:label "Mechanical surface impedance"@en ;
    dcterms:description "Mechanical surface impedance at a surface, is the complex quotient of the total force on the surface by the component of the average sound particle velocity at the surface in the direction of the force"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:latexDefinition "$Z_m = Z_a A^2$, where $A$ is the area of the surface considered and $Z_a$ is the acoustic impedance."^^qudt:LatexString ;
    qudt:plainTextDescription "Mechanical surface impedance at a surface, is the complex quotient of the total force on the surface by the component of the average sound particle velocity at the surface in the direction of the force"^^xsd:string ;
    qudt:symbol "Z"^^xsd:string ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "There are various interpretations of MechanicalSurfaceImpedance: Pressure/Velocity - https://apps.dtic.mil/sti/pdfs/ADA315595.pdf, Force / Speed - https://www.wikidata.org/wiki/Q6421317, and (Pressure / Velocity)**0.5 - https://www.sciencedirect.com/topics/engineering/mechanical-impedance. We are seeking a resolution to these differences."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MobilityRatio a qudt:QuantityKind ;
    rdfs:label "Mobility Ratio"@en ;
    dcterms:description "\"MobilityRatio\" describes permeability of a porous material to a given phase divided by the viscosity of that phase."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$b = \\frac{\\mu_n}{\\mu_p}$, where $\\mu_n$ and $\\mu_p$ are mobilities for electrons and holes, respectively."^^qudt:LatexString ;
    qudt:plainTextDescription "\"MobilityRatio\" describes permeability of a porous material to a given phase divided by the viscosity of that phase."^^xsd:string ;
    qudt:symbol "b"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106010255> ;
    rdfs:comment "Applicable units are those of quantitykind:MobilityRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ModulusOfAdmittance a qudt:QuantityKind ;
    rdfs:label "Modulus Of Admittance"@en ;
    dcterms:description "\"Modulus Of Admittance\" is the absolute value of the quantity \"admittance\"."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_value"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Admittance"^^xsd:anyURI,
        "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-51"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$Y = \\left | \\underline{Y} \\right |$, where $\\underline{Y}$ is admittance."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Modulus Of Admittance\" is the absolute value of the quantity \"admittance\"."^^xsd:string ;
    qudt:symbol "Y"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79466359> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:Admittance .

qudtqk:MolarConductivity a qudt:QuantityKind ;
    rdfs:label "Molar Conductivity"@en ;
    dcterms:description "\"Molar Conductivity\" is the conductivity of an electrolyte solution divided by the molar concentration of the electrolyte, and so measures the efficiency with which a given electrolyte conducts electricity in solution."^^qudt:LatexString ;
    qudt:applicableUnit unit:S-M2-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E2L0I0M-1H0T3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD121"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Molar_conductivity"^^xsd:anyURI,
        "http://encyclopedia2.thefreedictionary.com/molar+conductivity"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD121"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Gamma_m = \\frac{x}{c_B}$, where $x$ is the electrolytic conductivity and $c_B$ is the amount-of-substance concentration."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Gamma_m$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Molar Conductivity\" is the conductivity of an electrolyte solution divided by the molar concentration of the electrolyte, and so measures the efficiency with which a given electrolyte conducts electricity in solution."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1943278> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarConductivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarEntropy a qudt:QuantityKind ;
    rdfs:label "Molar Entropy"@en ;
    dcterms:description "The \"Standard Molar Entropy\" is the entropy content of one mole of substance, under standard conditions (not standard temperature and pressure STP)."^^qudt:LatexString ;
    qudt:applicableUnit unit:J-PER-MOL-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Standard_molar_entropy"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$S_m = \\frac{S}{n}$, where $S$ is entropy and $n$ is amount of substance."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Standard Molar Entropy\" is the entropy content of one mole of substance, under standard conditions (not standard temperature and pressure STP)."^^xsd:string ;
    qudt:siExactMatch <https://si-digital-framework.org/quantities/MOEN> ;
    qudt:symbol "S_m"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q68972876> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarEntropy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolarEquivalent a qudt:QuantityKind ;
    rdfs:label "Molar Equivalent"@en ;
    dcterms:description """"Molar Equivalent" is the amount of a substance that reacts with (or is equivalent to) an arbitrary amount (typically one mole) of 
another substance in a given chemical reaction."""^^rdf:HTML ;
    qudt:applicableUnit unit:CentiMOL,
        unit:FemtoMOL,
        unit:IU,
        unit:KiloMOL,
        unit:MOL,
        unit:MOL_LB,
        unit:MicroMOL,
        unit:MilliMOL,
        unit:MilliOSM,
        unit:NCM,
        unit:NCM_1ATM_0DEG_C_NL,
        unit:NanoMOL,
        unit:OSM,
        unit:PicoMOL,
        unit:SCF,
        unit:SCM,
        unit:SCM_1ATM_0DEG_C,
        unit:SCM_1ATM_15DEG_C_ISO,
        unit:SCM_1ATM_15DEG_C_NL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Equivalent_(chemistry)"^^xsd:anyURI ;
    qudt:symbol "equiv"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:AmountOfSubstance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:AmountOfSubstance .

qudtqk:MolarOpticalRotatoryPower a qudt:QuantityKind ;
    rdfs:label "Molar Optical Rotatory Power"@en ;
    dcterms:description "The \"Molar Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the amount concentration giving the molar optical rotatory power."^^qudt:LatexString ;
    qudt:applicableUnit unit:RAD-M2-PER-MOL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD126"^^xsd:string ;
    qudt:informativeReference "http://goldbook.iupac.org/O04313.html"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD126"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha_n = \\alpha \\frac{A}{n}$, where $\\alpha$ is the angle of optical rotation, and $n$ is the amount of substance of the optically active component in the path of a linearly polarized light beam of cross sectional area $A$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha_n$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Molar Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the amount concentration giving the molar optical rotatory power."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96346994> ;
    rdfs:comment "Applicable units are those of quantitykind:MolarOpticalRotatoryPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MolecularViscosity a qudt:QuantityKind ;
    rdfs:label "Molecular Viscosity"@en ;
    dcterms:description "Molecules in a fluid close to a solid boundary sometime strike the boundary and transfer momentum to it. Molecules further from the boundary collide with molecules that have struck the boundary, further transferring the change in momentum into the interior of the fluid. This transfer of momentum is molecular viscosity. Molecules, however, travel only micrometers between collisions, and the process is very inefficient for transferring momentum even a few centimeters. Molecular viscosity is important only within a few millimeters of a boundary. The coefficient of molecular viscosity has the same value as the dynamic viscosity."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-1D0> ;
    qudt:informativeReference "http://oceanworld.tamu.edu/resources/ocng_textbook/chapter08/chapter08_01.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "Molecules in a fluid close to a solid boundary sometime strike the boundary and transfer momentum to it. Molecules further from the boundary collide with molecules that have struck the boundary, further transferring the change in momentum into the interior of the fluid. This transfer of momentum is molecular viscosity. Molecules, however, travel only micrometers between collisions, and the process is very inefficient for transferring momentum even a few centimeters. Molecular viscosity is important only within a few millimeters of a boundary. The coefficient of molecular viscosity has the same value as the dynamic viscosity."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:DynamicViscosity,
        qudtqk:KinematicViscosity .

qudtqk:MomentOfInertia_Y a qudt:QuantityKind ;
    rdfs:label "Moment of Inertia in the Y axis"@en ;
    dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-CentiM2,
        unit:KiloGM-M2,
        unit:KiloGM-MilliM2,
        unit:LB-FT2,
        unit:LB-IN2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^xsd:string ;
    qudt:symbol "I_{y}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MOI"^^xsd:string ;
    skos:broader qudtqk:MomentOfInertia .

qudtqk:MomentOfInertia_Z a qudt:QuantityKind ;
    rdfs:label "Moment of Inertia in the Z axis"@en ;
    dcterms:description "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-CentiM2,
        unit:KiloGM-M2,
        unit:KiloGM-MilliM2,
        unit:LB-FT2,
        unit:LB-IN2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "The rotational inertia or resistance to change in direction or speed of rotation about a defined axis."^^xsd:string ;
    qudt:symbol "I_{z}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "MOI"^^xsd:string ;
    skos:broader qudtqk:MomentOfInertia .

qudtqk:MomentumPerAngle a qudt:QuantityKind ;
    rdfs:label "Momentum per Angle"@en ;
    qudt:applicableUnit unit:N-SEC-PER-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:MomentumPerAngle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:MorbidityRate a qudt:QuantityKind ;
    rdfs:label "Morbidity Rate"@en ;
    dcterms:description "Morbidity rate is a measure of the incidence of a disease in a particular population, scaled to the size of that population, per unit of time."^^qudt:LatexString ;
    qudt:applicableUnit unit:CASES-PER-KiloINDIV-YR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Morbidity rate is a measure of the incidence of a disease in a particular population, scaled to the size of that population, per unit of time."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:MorbidityRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Incidence .

qudtqk:NaturalLogarithmicMedianInformationFlow a qudt:QuantityKind ;
    rdfs:label "median information flow (from a source of information), expressed as a natural logarithm "@en-us ;
    dcterms:description "ratio of the median information content divided by the expected value for the duration of a character, expressed as a logarithm to base e"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient mittlerer Informationsgehalt durch den Erwartungswert für die Dauer eines Zeichens, ausgedrückt als Logarithmus zur Basis e"@de ;
    qudt:symbol "0173-1#Z4-BAJ471#001"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:NeutronDiffusionCoefficient a qudt:QuantityKind ;
    rdfs:label "Diffusionskoeffizient"@de,
        "diffusion coefficient"@en,
        "coeficiente de difusión"@es,
        "coefficient de diffusion"@fr,
        "coefficiente di diffusione"@it,
        "coeficiente de difusão"@pt,
        "difuzijski koeficient"@sl ;
    dcterms:description "The \"Diffusion Coefficient\" is "^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/Diffusion+of+Neutrons"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$D_n = -\\frac{J_x}{\\frac{\\partial dn}{\\partial dx}}$, where $J_x$ is the $x-component$ of the particle current and $n$ is the particle number density."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Diffusion Coefficient\" is "^^xsd:string ;
    qudt:symbol "D"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105623303> ;
    rdfs:comment "Applicable units are those of quantitykind:NeutronDiffusionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:NeutronNumber a qudt:QuantityKind ;
    rdfs:label "عدد النيوترونات"@ar,
        "Neutronové číslo"@cs,
        "Neutronenzahl"@de,
        "neutron number"@en,
        "número neutrónico"@es,
        "عدد نوترون"@fa,
        "Nombre de neutrons"@fr,
        "numero neutronico"@it,
        "Nombor neutron"@ms,
        "liczba neutronowa"@pl,
        "número de neutrons"@pt,
        "число нейтронов"@ru,
        "nötron snumarası"@tr,
        "中子數"@zh ;
    dcterms:description "\"Neutron Number\", symbol $N$, is the number of neutrons in a nuclide. Nuclides with the same value of $N$ but different values of $Z$ are called isotones. $N - Z$ is called the neutron excess number."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Neutron_number"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "N"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q970319> ;
    rdfs:comment "Applicable units are those of quantitykind:NeutronNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Count .

qudtqk:NeutronYieldPerAbsorption a qudt:QuantityKind ;
    rdfs:label "Neutron Yield per Absorption"@en ;
    dcterms:description "The \"Neutron Yield per Absorption\" is the average number of fission neutrons, both prompt and delayed, emitted per neutron absorbed in a fissionable nuclide or in a nuclear fuel, as specified."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fission_product_yield"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\eta$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Neutron Yield per Absorption\" is the average number of fission neutrons, both prompt and delayed, emitted per neutron absorbed in a fissionable nuclide or in a nuclear fuel, as specified."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99159075> ;
    rdfs:comment "Applicable units are those of quantitykind:NeutronYieldPerAbsorption"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:NeutronYieldPerFission a qudt:QuantityKind ;
    rdfs:label "Neutron Yield per Fission"@en ;
    dcterms:description "The \"Neutron Yield per Fission\" is the average number of fission neutrons, both prompt and delayed, emitted per fission event."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Fission_product_yield"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\nu$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Neutron Yield per Fission\" is the average number of fission neutrons, both prompt and delayed, emitted per fission event."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99157909> ;
    rdfs:comment "Applicable units are those of quantitykind:NeutronYieldPerFission"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Non-LeakageProbability a qudt:QuantityKind ;
    rdfs:label "Non-Leakage Probability"@en ;
    dcterms:description "The \"Non-Leakage Probability\" is the probability that a neutron will not escape from the reactor during the slowing-down process or while it diffuses as a thermal neutron"^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Six_factor_formula"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Lambda$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Non-Leakage Probability\" is the probability that a neutron will not escape from the reactor during the slowing-down process or while it diffuses as a thermal neutron"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99415566> ;
    rdfs:comment "Applicable units are those of quantitykind:Non-LeakageProbability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:NonActivePower a qudt:QuantityKind ;
    rdfs:label "Non-active Power"@en ;
    dcterms:description "\"Non-active Power\", for a two-terminal element or a two-terminal circuit under periodic conditions, is the quantity equal to the square root of the difference of the squares of the apparent power and the active power."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-11-43"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$Q^{'} = \\sqrt{{\\left | \\underline{S} \\right |}^2 - P^2}$, where $\\underline{S}$ is apparent power and $P$ is active power."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Non-active Power\", for a two-terminal element or a two-terminal circuit under periodic conditions, is the quantity equal to the square root of the difference of the squares of the apparent power and the active power."^^xsd:string ;
    qudt:symbol "Q'"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q79813060> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:ActivePower,
        qudtqk:ApparentPower .

qudtqk:NonNegativeLength a qudt:QuantityKind ;
    rdfs:label "Positive Length"@en ;
    dcterms:description "\"NonNegativeLength\" is a measure of length greater than or equal to zero."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:plainTextDescription "\"NonNegativeLength\" is a measure of length greater than or equal to zero."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:NormalStress a qudt:QuantityKind ;
    rdfs:label "Normal Stress"@en ;
    dcterms:description "Normal stress is defined as the stress resulting from a force acting normal to a body surface. Normal stress can be caused by several loading methods, the most common being axial tension and compression, bending, and hoop stress."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stress_(mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\sigma = \\frac{dF_n}{dA}$, where $dF_n$ is the normal component of force and $dA$ is the area of the surface element."^^qudt:LatexString ;
    qudt:latexSymbol "$\\sigma$"^^qudt:LatexString ;
    qudt:plainTextDescription "Normal stress is defined as the stress resulting from a force acting normal to a body surface. Normal stress can be caused by several loading methods, the most common being axial tension and compression, bending, and hoop stress."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q11425837> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Stress .

qudtqk:NozzleThroatDiameter a qudt:QuantityKind ;
    rdfs:label "Nozzle Throat Diameter"@en ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:NuclearSpinQuantumNumber a qudt:QuantityKind ;
    rdfs:label "Spin Quantum Number"@en ;
    dcterms:description "The \"Spin Quantum Number\"  describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis"^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$I^2 = \\hbar^2 I(I + 1)$, where $\\hbar$ is the Planck constant."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Spin Quantum Number\"  describes the spin (intrinsic angular momentum) of the electron within that orbital, and gives the projection of the spin angular momentum S along the specified axis"^^xsd:string ;
    qudt:symbol "I"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q97577403> ;
    rdfs:comment "Applicable units are those of quantitykind:NuclearSpinQuantumNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpinQuantumNumber .

qudtqk:NucleonNumber a qudt:QuantityKind ;
    rdfs:label "عدد كتلي"@ar,
        "Nukleové číslo"@cs,
        "Nukleonenzahl"@de,
        "nucleon number"@en,
        "número másico"@es,
        "عدد جرمی"@fa,
        "nombre de masse"@fr,
        "numero di massa"@it,
        "質量数"@ja,
        "Nombor nukleon"@ms,
        "liczba masowa"@pl,
        "número de massa"@pt,
        "nükleon numarası"@tr,
        "质量数"@zh ;
    dcterms:description "Number of nucleons in an atomic nucleus.A = Z+N. Nuclides with the same value of A are called isobars."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "Number of nucleons in an atomic nucleus.A = Z+N. Nuclides with the same value of A are called isobars."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:NucleonNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "Massenzahl"@de,
        "mass number"@en,
        "numero di nucleoni"@it,
        "nombor jisim"@ms,
        "kütle numarası"@tr ;
    skos:broader qudtqk:Count .

qudtqk:NumberOfParticles a qudt:QuantityKind ;
    rdfs:label "Number of Particles"@en ;
    dcterms:description "\"Number of Particles\", also known as the particle number, of a thermodynamic system, conventionally indicated with the letter N, is the number of constituent particles in that system."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Number of Particles\", also known as the particle number, of a thermodynamic system, conventionally indicated with the letter N, is the number of constituent particles in that system."^^xsd:string ;
    qudt:symbol "N_B"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:NumberOfParticles"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:OlfactoryThreshold a qudt:QuantityKind ;
    rdfs:label "Olfactory Threshold"@en ;
    dcterms:description "\"Olfactory Threshold\" are thresholds for the concentrations of various classes of smell that can be detected."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiMOL-PER-L,
        unit:FemtoMOL-PER-L,
        unit:KiloMOL-PER-M3,
        unit:MOL-PER-DeciM3,
        unit:MOL-PER-L,
        unit:MOL-PER-M3,
        unit:MicroMOL-PER-L,
        unit:MilliMOL-PER-L,
        unit:MilliMOL-PER-M3,
        unit:NanoMOL-PER-L,
        unit:PicoMOL-PER-L,
        unit:PicoMOL-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Odor_detection_threshold"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_o}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Olfactory Threshold\" are thresholds for the concentrations of various classes of smell that can be detected."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Concentration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Concentration .

qudtqk:OrderOfReflection a qudt:QuantityKind ;
    rdfs:label "Order of Reflection"@en ;
    dcterms:description "\"Order of Reflection\" is $n$ in the Bragg's Law equation."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.answers.com/topic/order-of-reflection"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:symbol "n"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105488155> ;
    rdfs:comment "Applicable units are those of quantitykind:OrderOfReflection"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:OsmoticCoefficient a qudt:QuantityKind ;
    rdfs:label "Osmotic Coefficient"@en ;
    dcterms:description "The \"Osmotic Coefficient\" is a quantity which characterises the deviation of a solvent from ideal behavior."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Osmotic_coefficient"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varphi = -(M_A\\sum b_B)^{-1} \\ln a_A$, where $M_A$ is the molar mass of the solvent $A$, $\\sum$ denotes summation over all the solutes, $b_B$ is the molality of solute $B$, and $a_A$ is the activity of solvent $A$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Osmotic Coefficient\" is a quantity which characterises the deviation of a solvent from ideal behavior."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5776102> ;
    rdfs:comment "Applicable units are those of quantitykind:OsmoticCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PackingFraction a qudt:QuantityKind ;
    rdfs:label "Packing Fraction"@en ;
    dcterms:description "The \"Packing Fraction\" is the fraction of volume in a crystal structure that is occupied by atoms."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_packing_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$f = \\frac{\\Delta_r}{A}$, where $\\Delta_r$ is the relative mass excess and $A$ is the nucleon number."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Packing Fraction\" is the fraction of volume in a crystal structure that is occupied by atoms."^^xsd:string ;
    qudt:symbol "f"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98058276> ;
    rdfs:comment "Applicable units are those of quantitykind:PackingFraction"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ParticleSourceDensity a qudt:QuantityKind ;
    rdfs:label "Particle Source Density"@en ;
    dcterms:description "\"Particle Source Density\" is the rate of production of particles in a 3D domain divided by the volume of that element."^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-M3-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Particle Source Density\" is the rate of production of particles in a 3D domain divided by the volume of that element."^^xsd:string ;
    qudt:symbol "S"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98915762> ;
    rdfs:comment "Applicable units are those of quantitykind:ParticleSourceDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PathLength a qudt:QuantityKind ;
    rdfs:label "Path Length"@en ;
    dcterms:description "\"PathLength\" is "^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Path_length"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"PathLength\" is "^^xsd:string ;
    qudt:symbol "s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q670036> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:PermeabilityRatio a qudt:QuantityKind ;
    rdfs:label "Permeability Ratio"@en ;
    dcterms:description "The ratio of the effective permeability of a porous phase to the absolute permeability."^^qudt:LatexString ;
    qudt:applicableUnit unit:PERMEABILITY_REL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ;
    qudt:plainTextDescription "The ratio of the effective permeability of a porous phase to the absolute permeability."^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:PermeabilityRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PhaseDifference a qudt:QuantityKind ;
    rdfs:label "اختلاف طور"@ar,
        "Phasenverschiebungswinkel"@de,
        "phase difference"@en,
        "diferencia de fase"@es,
        "différence de phase"@fr,
        "sfasamento angolare"@it,
        "位相差"@ja,
        "przesunięcie fazowe"@pl,
        "diferença de fase"@pt ;
    dcterms:description "\"Phase Difference\" is the difference, expressed in electrical degrees or time, between two waves having the same frequency and referenced to the same point in time. Two oscillators that have the same frequency and different phases have a phase difference, and the oscillators are said to be out of phase with each other. The amount by which such oscillators are out of step with each other can be expressed in degrees from $0^\\circ$ to $360^\\circ$, or in radians from 0 to ${2\\pi}$. If the phase difference is $180^\\circ$ ($\\pi$ radians), then the two oscillators are said to be in antiphase."^^qudt:LatexString ;
    qudt:applicableUnit unit:ARCMIN,
        unit:ARCSEC,
        unit:DEG,
        unit:GON,
        unit:GRAD,
        unit:MIL_Angle,
        unit:MIN_Angle,
        unit:MicroRAD,
        unit:MilliARCSEC,
        unit:MilliRAD,
        unit:RAD,
        unit:REV ;
    qudt:expression "$phase-difference$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Phase_(waves)#Phase_difference"^^xsd:anyURI,
        "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=103-07-06"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$\\varphi = \\varphi_u - \\varphi_i$, where $\\varphi_u$ is the initial phase of the voltage and $\\varphi_i$ is the initial phase of the electric current."^^qudt:LatexString ;
    qudt:latexSymbol "$\\varphi$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q78514588> ;
    rdfs:comment "Applicable units are those of quantitykind:Angle"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "déphasage"@fr,
        "desfasagem"@pt ;
    skos:broader qudtqk:Angle .

qudtqk:PhotoThresholdOfAwarenessFunction a qudt:QuantityKind ;
    rdfs:label "Photo Threshold of Awareness Function"@en ;
    dcterms:description "\"Photo Threshold of Awareness Function\" is the ability of the human eye to detect a light that results in a $1^o$ radial angle at the eye with a given duration (temporal summation)."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "https://www.britannica.com/science/human-eye/Colour-vision"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PhotonIntensity a qudt:QuantityKind ;
    rdfs:label "Photon Intensity"@en ;
    dcterms:description "A measure of flux of photons per solid angle"^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-SEC-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD137"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD137"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Photon_counting"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83853335> ;
    rdfs:comment "Applicable units are those of quantitykind:PhotonIntensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PhotonRadiance a qudt:QuantityKind ;
    rdfs:label "Photon Radiance"@en ;
    dcterms:description "A measure of flux of photons per surface area per solid angle"^^qudt:LatexString ;
    qudt:applicableUnit unit:PER-SEC-M2-SR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Photon_counting"^^xsd:anyURI ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q10498337> ;
    rdfs:comment "Applicable units are those of quantitykind:PhotonRadiance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PhotosyntheticPhotonFlux a qudt:QuantityKind ;
    rdfs:label "Photosynthetic Photon Flux"@en ;
    dcterms:description "Photosynthetic Photon Flux (PPF) is a measurement of the total number of photons emitted by a light source each second within the PAR wavelength range and is measured in μmol/s. Lighting manufacturers may specify their grow light products in terms of PPF. It can be considered as analogous to measuring the luminous flux (lumens) of visible light which would typically require the use of an integrating sphere or a goniometer system with spectroradiometer sensor."^^qudt:LatexString ;
    qudt:applicableUnit unit:MicroMOL-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Photosynthetically_active_radiation#Units"^^xsd:anyURI ;
    qudt:plainTextDescription "Photosynthetic Photon Flux (PPF) is a measurement of the total number of photons emitted by a light source each second within the PAR wavelength range and is measured in μmol/s. Lighting manufacturers may specify their grow light products in terms of PPF. It can be considered as analogous to measuring the luminous flux (lumens) of visible light which would typically require the use of an integrating sphere or a goniometer system with spectroradiometer sensor."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PhotosyntheticPhotonFlux"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "PPF"^^xsd:string ;
    prov:wasDerivedFrom <https://www.gigahertz-optik.com/en-us/service-and-support/knowledge-base/measurement-of-par/#WasistPAR> .

qudtqk:PictureElement a qudt:QuantityKind ;
    rdfs:label "picture element"^^xsd:string,
        "picture element"@en-us ;
    dcterms:description "smallest element of a display space (cell size) of a digitized two-dimensional field representation of an image which has an address (x and y coordinates corresponding to its position in the field) and a specific brightness value"@en ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD299"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD299"^^xsd:anyURI ;
    qudt:plainTextDescription "kleinstes Element einer Darstellungsfläche (Zellgröße) einer digitalisierten zweidimensionalen Felddarstellung eines Bildes, die eine Adresse (x- und y-Koordinaten entsprechend seiner Position im Feld) und einen spezifischen Helligkeitswert besitzt"@de ;
    qudt:symbol "0173-1#Z4-BAJ437#002"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:PolarMomentOfInertia a qudt:QuantityKind ;
    rdfs:label "Polar moment of inertia"@en ;
    dcterms:description "The polar moment of inertia is a quantity used to predict an object's ability to resist torsion, in objects (or segments of objects) with an invariant circular cross-section and no significant warping or out-of-plane deformation. It is used to calculate the angular displacement of an object subjected to a torque. It is analogous to the area moment of inertia, which characterizes an object's ability to resist bending. "^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-CentiM2,
        unit:KiloGM-M2,
        unit:KiloGM-MilliM2,
        unit:LB-FT2,
        unit:LB-IN2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Second_moment_of_area"^^xsd:anyURI ;
    qudt:plainTextDescription "The polar moment of inertia is a quantity used to predict an object's ability to resist torsion, in objects (or segments of objects) with an invariant circular cross-section and no significant warping or out-of-plane deformation. It is used to calculate the angular displacement of an object subjected to a torque. It is analogous to the area moment of inertia, which characterizes an object's ability to resist bending. "^^xsd:string ;
    qudt:symbol "J_{zz}"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:MomentOfInertia"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MomentOfInertia .

qudtqk:PolarizationField a qudt:QuantityKind ;
    rdfs:label "Polarization Field"@en ;
    dcterms:description "The Polarization Field is the vector field that expresses the density of permanent or induced electric dipole moments in a dielectric material. The polarization vector P is defined as the ratio of electric dipole moment per unit volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-HR-PER-M2,
        unit:C-PER-CentiM2,
        unit:C-PER-M2,
        unit:C-PER-MilliM2,
        unit:C_Ab-PER-CentiM2,
        unit:C_Stat-PER-CentiM2,
        unit:KiloC-PER-M2,
        unit:MegaC-PER-M2,
        unit:MicroC-PER-M2,
        unit:MilliC-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T1D0> ;
    qudt:plainTextDescription "The Polarization Field is the vector field that expresses the density of permanent or induced electric dipole moments in a dielectric material. The polarization vector P is defined as the ratio of electric dipole moment per unit volume."^^xsd:string ;
    qudt:symbol "P"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricChargePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricChargePerArea .

qudtqk:PressureLossPerLength a qudt:QuantityKind ;
    rdfs:label "Pressure Loss per Length"@en ;
    dcterms:description "\"Pressure Loss per Length\" refers to the power lost in overcoming the friction between two moving surfaces. Also referred to as \"Friction Loss\"."^^qudt:LatexString ;
    qudt:applicableUnit unit:KiloGM-PER-M2-SEC2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Friction_loss"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Pressure Loss per Length\" refers to the power lost in overcoming the friction between two moving surfaces. Also referred to as \"Friction Loss\"."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PressureLossPerLength"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Prevalence a qudt:QuantityKind ;
    rdfs:label "Prevalence"@en ;
    dcterms:description "In epidemiology, prevalence is the proportion of a particular population found to be affected by a medical condition (typically a disease or a risk factor such as smoking or seatbelt use) at a specific time. (Wikipedia)"^^qudt:LatexString ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Prevalence"^^xsd:anyURI ;
    qudt:plainTextDescription "In epidemiology, prevalence is the proportion of a particular population found to be affected by a medical condition (typically a disease or a risk factor such as smoking or seatbelt use) at a specific time. (Wikipedia)"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q719602> ;
    rdfs:comment "Applicable units are those of quantitykind:Prevalence"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ProductOfInertia_X a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the X axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the X axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an
  axis other than the body's principal axis.
  """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:ProductOfInertia_Y a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the Y axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the Y axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
   other than the body's principal axis.
  """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription """
  The quantity kind 'Product of Inertia in the Y axis' is a measure of a body's 
  dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
  other than the body's principal axis.
  """^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:ProductOfInertia_Z a qudt:QuantityKind ;
    rdfs:label "Product of Inertia in the Z axis"@en ;
    dcterms:description """
  The quantity kind $\\textit{Product of Inertia in the Z axis}$ is a measure of a body's
   dynamic (or coupled) imbalance resulting in a precession when rotating about an axis
  other than the body's principal axis.
  """^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T0D0> ;
    qudt:plainTextDescription "A measure of a body's dynamic (or coupled) imbalance resulting in a precession when rotating about an axis other than the body's principal axis."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PRODUCT-OF-INERTIA .

qudtqk:PropellantBurnRate a qudt:QuantityKind ;
    rdfs:label "Propellant Burn Rate"@en ;
    qudt:applicableUnit unit:IN-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    rdfs:comment "Applicable units are those of quantitykind:PropellantBurnRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:BurnRate .

qudtqk:PropellantMass a qudt:QuantityKind ;
    rdfs:label "Propellant Mass"@en ;
    qudt:applicableUnit unit:AMU,
        unit:CARAT,
        unit:CWT_LONG,
        unit:CWT_SHORT,
        unit:CentiGM,
        unit:DRAM_UK,
        unit:DRAM_US,
        unit:DWT,
        unit:DecaGM,
        unit:DeciGM,
        unit:DeciTONNE,
        unit:DeciTON_Metric,
        unit:EarthMass,
        unit:FemtoGM,
        unit:GM,
        unit:GM_Carbon,
        unit:GM_DRY,
        unit:GM_Nitrogen,
        unit:GRAIN,
        unit:HectoGM,
        unit:Hundredweight_UK,
        unit:Hundredweight_US,
        unit:KiloGM,
        unit:KiloLB,
        unit:KiloTONNE,
        unit:KiloTON_Metric,
        unit:LB,
        unit:LB_M,
        unit:LB_T,
        unit:LunarMass,
        unit:MOMME_Pearl,
        unit:MOMME_Textile,
        unit:MegaGM,
        unit:MegaTON,
        unit:MegaTONNE,
        unit:MicroGM,
        unit:MilliGM,
        unit:NanoGM,
        unit:OZ,
        unit:OZ_M,
        unit:OZ_TROY,
        unit:PENNYWEIGHT,
        unit:PFUND,
        unit:PicoGM,
        unit:PlanckMass,
        unit:Quarter_UK,
        unit:SLUG,
        unit:SolarMass,
        unit:Stone_UK,
        unit:TON,
        unit:TONNE,
        unit:TON_Assay,
        unit:TON_LONG,
        unit:TON_Metric,
        unit:TON_SHORT,
        unit:TON_UK,
        unit:TON_US,
        unit:U ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "M_f"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Mass"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Mass .

qudtqk:PropellantTemperature a qudt:QuantityKind ;
    rdfs:label "Propellant Temperature"@en ;
    qudt:applicableUnit unit:DEG_C,
        unit:DEG_C_GROWING_CEREAL,
        unit:DEG_F,
        unit:DEG_R,
        unit:DecaK,
        unit:K,
        unit:MegaK,
        unit:MilliDEG_C,
        unit:MilliK,
        unit:PlanckTemperature ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T0D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Temperature"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Temperature .

qudtqk:RadialDistance a qudt:QuantityKind ;
    rdfs:label "Radial Distance"@en ;
    dcterms:description "In classical geometry, the \"Radial Distance\" is a coordinate in polar coordinate systems (r, $\\theta$). Basically the radial distance is the scalar Euclidean distance between a point and the origin of the system of coordinates."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radial_distance_(geometry)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexDefinition "$d = \\sqrt{r_1^2 + r_2^2 -2r_1r_2\\cos{(\\theta_1 - \\theta_2)}}$, where $P_1$ and $P_2$ are two points with polar coordinates $(r_1, \\theta_1)$ and $(r_2, \\theta_2)$, respectively, and $d$ is the distance."^^qudt:LatexString ;
    qudt:latexSymbol "$r_Q, \\rho$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1578234> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:RadiantEnergy a qudt:QuantityKind ;
    rdfs:label "طاقة إشعاعية"@ar,
        "energie záření"@cs,
        "Strahlungsenergie"@de,
        "radiant energy"@en,
        "energía radiante"@es,
        "انرژی تابشی"@fa,
        "énergie rayonnante"@fr,
        "विकिरण ऊर्जा"@hi,
        "energia radiante"@it,
        "放射エネルギー"@ja,
        "Tenaga sinaran"@ms,
        "energia promienista"@pl,
        "energia radiante"@pt,
        "энергия излучения"@ru,
        "Işınım erkesi"@tr,
        "辐射能"@zh ;
    dcterms:description """
  In radiometry, $\\textit{Radiant Energy}$ is the energy of electromagnetic waves. 
  The quantity of radiant energy may be calculated by integrating radiant flux (or power) with respect to time. 
  In nuclear physics, $\\textit{Radiant Energy}$ is energy, excluding rest energy, of the particles that are emitted, transferred, or received.
  """^^qudt:LatexString ;
    qudt:abbreviation "M-L2-PER-T2"^^xsd:string ;
    qudt:altSymbol "R"^^xsd:string ;
    qudt:applicableUnit unit:AttoJ,
        unit:BTU_IT,
        unit:BTU_TH,
        unit:CAL_IT,
        unit:CAL_TH,
        unit:ERG,
        unit:EV,
        unit:E_h,
        unit:ExaJ,
        unit:FT-LB_F,
        unit:FT-PDL,
        unit:FemtoJ,
        unit:GigaEV,
        unit:GigaJ,
        unit:GigaW-HR,
        unit:J,
        unit:KiloBTU_IT,
        unit:KiloBTU_TH,
        unit:KiloCAL,
        unit:KiloEV,
        unit:KiloJ,
        unit:KiloVA-HR,
        unit:KiloVAR-HR,
        unit:KiloW-HR,
        unit:MegaBTU_IT,
        unit:MegaEV,
        unit:MegaJ,
        unit:MegaTOE,
        unit:MegaVA-HR,
        unit:MegaVAR-HR,
        unit:MegaW-HR,
        unit:MicroJ,
        unit:MilliJ,
        unit:NanoJ,
        unit:PetaJ,
        unit:PicoJ,
        unit:PlanckEnergy,
        unit:QUAD,
        unit:THERM_EC,
        unit:THERM_US,
        unit:THM_EEC,
        unit:THM_US,
        unit:TOE,
        unit:TeraJ,
        unit:TeraW-HR,
        unit:TonEnergy,
        unit:VA-HR,
        unit:VAR-HR,
        unit:W-HR,
        unit:W-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radiant_energy"^^xsd:anyURI ;
    qudt:latexDefinition "$Q_e$"^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "In radiometry,\"Radiant Energy} is the energy of electromagnetic waves. The quantity of radiant energy may be calculated by integrating radiant flux (or power) with respect to time.  In nuclear physics, $\\textit{Radiant Energy\" is energy, excluding rest energy, of the particles that are emitted, transferred, or received."^^xsd:string ;
    qudt:symbol "Q_e"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q10932713> ;
    rdfs:comment "Applicable units are those of quantitykind:Energy"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Energy ;
    skos:closeMatch qudtqk:LuminousEnergy .

qudtqk:RadiativeHeatTransfer a qudt:QuantityKind ;
    rdfs:label "Radiative Heat Transfer"@en ;
    dcterms:description "\"Radiative Heat Transfer\" is proportional to $(T_1^4 - T_2^4)$ and area of the surface, where $T_1$ and $T_2$ are thermodynamic temperatures of two black surfaces, for non totally black surfaces an additional factor less than 1 is needed."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-MIN,
        unit:BTU_IT-PER-SEC,
        unit:BTU_TH-PER-HR,
        unit:BTU_TH-PER-MIN,
        unit:BTU_TH-PER-SEC,
        unit:CAL_TH-PER-MIN,
        unit:CAL_TH-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloBTU_TH-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloCAL_TH-PER-HR,
        unit:KiloCAL_TH-PER-MIN,
        unit:KiloCAL_TH-PER-SEC,
        unit:MegaBTU_IT-PER-HR,
        unit:THM_US-PER-HR,
        unit:TON_FG ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Heat_transfer#Radiation"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\Phi_r$"^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:HeatFlowRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:HeatFlowRate .

qudtqk:RadiusOfCurvature a qudt:QuantityKind ;
    rdfs:label "Radius of Curvature"@en ;
    dcterms:description "In geometry, the \"Radius of Curvature\", R, of a curve at a point is a measure of the radius of the circular arc which best approximates the curve at that point."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Radius_of_curvature_(mathematics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\rho$"^^qudt:LatexString ;
    qudt:plainTextDescription "In geometry, the \"Radius of Curvature\", R, of a curve at a point is a measure of the radius of the circular arc which best approximates the curve at that point."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1136069> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:Ratio a qudt:QuantityKind ;
    rdfs:label "ratio"^^xsd:string ;
    qudt:applicableUnit unit:ONE-PER-ONE ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD154"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD154"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:Ratio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Reactivity a qudt:QuantityKind ;
    rdfs:label "Reactivity"@en ;
    dcterms:description "\"Reactivity\" characterizes the deflection of reactor from the critical state."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nuclear_chain_reaction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\rho = \\frac{k_{eff} - 1}{k_{eff}}$, where $k_{eff}$ is the effective multiplication factor."^^qudt:LatexString ;
    qudt:latexSymbol "$\\rho$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Reactivity\" characterizes the deflection of reactor from the critical state."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Reactivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ReciprocalVoltage a qudt:QuantityKind ;
    rdfs:label "reciprocal voltage"@en-us ;
    dcterms:description "quantity whose value is inversely proportional to the voltage value"@en ;
    qudt:applicableUnit unit:PER-V ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0> ;
    qudt:plainTextDescription "Größe, deren Wert sich umgekehrt proportional zum Spannungswert verhält"@de ;
    qudt:symbol "0173-1#Z4-BAJ371#002"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ReciprocalVoltage"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RecombinationCoefficient a qudt:QuantityKind ;
    rdfs:label "Recombination Coefficient"@en ;
    dcterms:description "The \"Recombination Coefficient\" is the rate of recombination of positive ions with electrons or negative ions in a gas, per unit volume, divided by the product of the number of positive ions per unit volume and the number of electrons or negative ions per unit volume."^^qudt:LatexString ;
    qudt:applicableUnit unit:M3-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-1D0> ;
    qudt:informativeReference "http://encyclopedia2.thefreedictionary.com/recombination+coefficient"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$-\\frac{dn^+}{dt} = -\\frac{dn^-}{dt} = an^+n^-$, where $n^+$ and $n^-$ are the ion number densities of positive and negative ions, respectively, recombined during an infinitesimal time interval with duration $dt$."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Recombination Coefficient\" is the rate of recombination of positive ions with electrons or negative ions in a gas, per unit volume, divided by the product of the number of positive ions per unit volume and the number of electrons or negative ions per unit volume."^^xsd:string ;
    qudt:symbol "a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98842099> ;
    rdfs:comment "Applicable units are those of quantitykind:RecombinationCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RelativeMassDensity a qudt:QuantityKind ;
    rdfs:label "Relative Mass Density"@en ;
    dcterms:description "Relative density, or specific gravity, is the ratio of the density (mass of a unit volume) of a substance to the density of a given reference material."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_density"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$d = \\frac{\\rho}{\\rho_0}$, where $\\rho$ is mass density of a substance and $\\rho_0$ is the mass density of a reference substance under conditions that should be specified for both substances."^^qudt:LatexString ;
    qudt:plainTextDescription "Relative density, or specific gravity, is the ratio of the density (mass of a unit volume) of a substance to the density of a given reference material."^^xsd:string ;
    qudt:symbol "d"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:RelativeMassDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RelativeMassExcess a qudt:QuantityKind ;
    rdfs:label "Relative Mass Excess"@en ;
    dcterms:description "The \"Relative Mass Excess\" is the mass excess between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster (extrapolated from relative mass defect)."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mass_excess"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$\\Delta_r = \\frac{\\Delta}{m_u}$, where $\\Delta$ is the mass excess and $m_u$ is the unified atomic mass constant."^^qudt:LatexString ;
    qudt:latexSymbol "$\\Delta_r$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Relative Mass Excess\" is the mass excess between the monoisotopic mass of an element and the mass of its A + 1 or its A + 2 isotopic cluster (extrapolated from relative mass defect)."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98038610> ;
    rdfs:comment "Applicable units are those of quantitykind:RelativeMassExcess"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ResistanceRatio a qudt:QuantityKind ;
    rdfs:label "Resistance Ratio"@en ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    rdfs:comment "Applicable units are those of quantitykind:ResistanceRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:ResonanceEscapeProbability a qudt:QuantityKind ;
    rdfs:label "Resonance Escape Probability"@en ;
    dcterms:description "The \"Resonance Escape Probability\" is the fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed. In an infinite medium, the probability that a neutron slowing down will traverse all or some specified portion of the range of resonance energies without being absorbed."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Resonance Escape Probability\" is the fraction of fission neutrons that manage to slow down from fission to thermal energies without being absorbed. In an infinite medium, the probability that a neutron slowing down will traverse all or some specified portion of the range of resonance energies without being absorbed."^^xsd:string ;
    qudt:symbol "p"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4108072> ;
    rdfs:comment "Applicable units are those of quantitykind:ResonanceEscapeProbability"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:RespiratoryRate a qudt:QuantityKind ;
    rdfs:label "Respiratory Rate"@en ;
    dcterms:description "Respiratory rate (Vf, Rf or RR) is also known by respiration rate, pulmonary ventilation rate, ventilation rate, or breathing frequency is the number of breaths taken within a set amount of time, typically 60 seconds. A normal respiratory rate is termed eupnea, an increased respiratory rate is termed tachypnea and a lower than normal respiratory rate is termed bradypnea."^^qudt:LatexString ;
    qudt:applicableUnit unit:BREATH-PER-MIN ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Respiratory_rate"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Respiratory_rate"^^xsd:anyURI ;
    qudt:plainTextDescription "Respiratory rate (Vf, Rf or RR) is also known by respiration rate, pulmonary ventilation rate, ventilation rate, or breathing frequency is the number of breaths taken within a set amount of time, typically 60 seconds. A normal respiratory rate is termed eupnea, an increased respiratory rate is termed tachypnea and a lower than normal respiratory rate is termed bradypnea."^^xsd:string ;
    qudt:symbol "Vf, Rf or RR"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q754250> ;
    rdfs:comment "Applicable units are those of quantitykind:RespiratoryRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ReynoldsNumber a qudt:QuantityKind ;
    rdfs:label "Reynolds Number"@en ;
    dcterms:description "The \"Reynolds Number\" (Re) is a dimensionless number that gives a measure of the ratio of inertial forces to viscous forces and consequently quantifies the relative importance of these two types of forces for given flow conditions."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Reynolds_number"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Reynolds_number"^^xsd:anyURI ;
    qudt:latexDefinition "$Re = \\frac{\\rho uL}{\\mu} = \\frac{uL}{\\nu}$, where $\\rho$ is mass density, $u$ is speed, $L$ is length,  $\\mu$ is dynamic viscosity, and $\\nu$ is kinematic viscosity."^^qudt:LatexString ;
    qudt:normativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31896"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Reynolds Number\" (Re) is a dimensionless number that gives a measure of the ratio of inertial forces to viscous forces and consequently quantifies the relative importance of these two types of forces for given flow conditions."^^xsd:string ;
    qudt:symbol "Re"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q178932> ;
    rdfs:comment "Applicable units are those of quantitykind:ReynoldsNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio ;
    skos:closeMatch <http://dbpedia.org/resource/Reynolds_number> .

qudtqk:RichardsonConstant a qudt:QuantityKind ;
    rdfs:label "Richardson Constant"@en ;
    dcterms:description "\"Richardson Constant\" is a constant used in developing thermionic emission current density for a metal."^^qudt:LatexString ;
    qudt:applicableUnit unit:A-PER-M2-K2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H-2T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD162"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermionic_emission"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD162"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "The thermionic emission current, $J$, for a metal is $J = AT^2\\exp{(-\\frac{\\Phi}{kT})}$, where $T$ is thermodynamic temperature, $k$ is the Boltzmann constant, and $\\Phi$ is a work function."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Richardson Constant\" is a constant used in developing thermionic emission current density for a metal."^^xsd:string ;
    qudt:symbol "A"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105883079> ;
    rdfs:comment "Applicable units are those of quantitykind:RichardsonConstant"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SectionAreaIntegral a qudt:QuantityKind ;
    rdfs:label "Section Area Integral"@en ;
    dcterms:description "The sectional area integral measure is typically used in torsional analysis. It is usually measured in M⁵."^^qudt:LatexString ;
    qudt:applicableUnit unit:M5 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L5I0M0H0T0D0> ;
    qudt:informativeReference "https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD1/HTML/link/ifcsectionalareaintegralmeasure.htm"^^xsd:anyURI ;
    qudt:plainTextDescription "The sectional area integral measure is typically used in torsional analysis. It is usually measured in M⁵."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SectionAreaIntegral"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SeebeckCoefficient a qudt:QuantityKind ;
    rdfs:label "Seebeck Coefficient"@en ;
    dcterms:description "\"Seebeck Coefficient\", or thermopower, or thermoelectric power of a material is a measure of the magnitude of an induced thermoelectric voltage in response to a temperature difference across that material."^^qudt:LatexString ;
    qudt:applicableUnit unit:V-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H-1T-3D0> ;
    qudt:iec61360Code "0112/2///62720#UAD169"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermopower"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD169"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$S_{ab} = \\frac{dE_{ab}}{dT}$, where $E_{ab}$ is the thermosource voltage between substances a and b, $T$ is the thermodynamic temperature of the hot junction."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Seebeck Coefficient\", or thermopower, or thermoelectric power of a material is a measure of the magnitude of an induced thermoelectric voltage in response to a temperature difference across that material."^^xsd:string ;
    qudt:symbol "S_{ab}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1091448> ;
    rdfs:comment "Applicable units are those of quantitykind:SeebeckCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ShearStrain a qudt:QuantityKind ;
    rdfs:label "Shear Strain"@en ;
    dcterms:description "Shear Strain is the amount of deformation perpendicular to a given line rather than parallel to it. "^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\gamma = \\frac{\\Delta x}{d}$, where $\\Delta x$ is the parallel displacement between two surfaces of a layer of thickness $d$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\gamma$"^^qudt:LatexString ;
    qudt:plainTextDescription "Shear Strain is the amount of deformation perpendicular to a given line rather than parallel to it. "^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7561704> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Strain .

qudtqk:ShearStress a qudt:QuantityKind ;
    rdfs:label "Shear Stress"@en ;
    dcterms:description "Shear stress occurs when the force  occurs in shear, or perpendicular to the normal."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stress_(mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\tau = \\frac{dF_t}{dA}$, where $dF_t$ is the tangential component of force and $dA$ is the area of the surface element."^^qudt:LatexString ;
    qudt:latexSymbol "$\\tau$"^^qudt:LatexString ;
    qudt:plainTextDescription "Shear stress occurs when the force  occurs in shear, or perpendicular to the normal."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q657936> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Stress .

qudtqk:Short-RangeOrderParameter a qudt:QuantityKind ;
    rdfs:label "Short-Range Order Parameter"@en ;
    dcterms:description "\"Short-Range Order Parameter\" is the fraction of the nearest-neighbor atom pairs in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$r, \\sigma$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Short-Range Order Parameter\" is the fraction of the nearest-neighbor atom pairs in an Ising ferromagnet having magnetic moments in one direction, minus the fraction having magnetic moments in the opposite direction."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105495979> ;
    rdfs:comment "Applicable units are those of quantitykind:Short-RangeOrderParameter"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SignalDetectionThreshold a qudt:QuantityKind ;
    rdfs:label "Signal Detection Threshold"@en ;
    qudt:applicableUnit unit:DeciB_C ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    rdfs:comment "Applicable units are those of quantitykind:SignalDetectionThreshold"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SignalStrength a qudt:QuantityKind ;
    rdfs:label "Signal Strength"@en ;
    dcterms:description "In telecommunications, particularly in radio, signal strength refers to the magnitude of the electric field at a reference point that is a significant distance from the transmitting antenna. It may also be referred to as received signal level or field strength. Typically, it is expressed in voltage per length or signal power received by a reference antenna. High-powered transmissions, such as those used in broadcasting, are expressed in dB-millivolts per metre (dBmV/m)."^^qudt:LatexString ;
    qudt:applicableUnit unit:V-PER-M,
        unit:V_Ab-PER-CentiM,
        unit:V_Stat-PER-CentiM ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Signal_strength"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:plainTextDescription "In telecommunications, particularly in radio, signal strength refers to the magnitude of the electric field at a reference point that is a significant distance from the transmitting antenna. It may also be referred to as received signal level or field strength. Typically, it is expressed in voltage per length or signal power received by a reference antenna. High-powered transmissions, such as those used in broadcasting, are expressed in dB-millivolts per metre (dBmV/m)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ElectricField"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:ElectricField,
        qudtqk:ElectricFieldStrength .

qudtqk:SoundEnergyDensity a qudt:QuantityKind ;
    rdfs:label "Sound energy density"@en ;
    dcterms:description "Sound energy density is the time-averaged sound energy in a given volume divided by that volume. The sound energy density or sound density (symbol $E$ or $w$) is an adequate measure to describe the sound field at a given point as a sound energy value."^^qudt:LatexString ;
    qudt:applicableUnit unit:BTU_IT-PER-FT3,
        unit:BTU_TH-PER-FT3,
        unit:ERG-PER-CentiM3,
        unit:J-PER-M3,
        unit:MegaJ-PER-M3,
        unit:W-HR-PER-M3 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_energy_density"^^xsd:anyURI ;
    qudt:latexDefinition "$E = \\frac{I}{c}$, where $I$ is the sound intensity in $\\frac{W}{m^2}$ and $c$ is the sound speed in $\\frac{m}{s}$."^^qudt:LatexString ;
    qudt:symbol "E"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2230505> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:EnergyDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:EnergyDensity .

qudtqk:SoundIntensity a qudt:QuantityKind ;
    rdfs:label "Sound intensity"@en ;
    dcterms:description "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^qudt:LatexString ;
    qudt:abbreviation "w/m2"^^xsd:string ;
    qudt:applicableUnit unit:BTU_IT-PER-FT2-HR,
        unit:BTU_IT-PER-FT2-SEC,
        unit:BTU_IT-PER-HR-FT2,
        unit:BTU_IT-PER-IN2-SEC,
        unit:BTU_IT-PER-SEC-FT2,
        unit:BTU_TH-PER-FT2-HR,
        unit:BTU_TH-PER-FT2-MIN,
        unit:BTU_TH-PER-FT2-SEC,
        unit:CAL_TH-PER-CentiM2-MIN,
        unit:CAL_TH-PER-CentiM2-SEC,
        unit:ERG-PER-CentiM2-SEC,
        unit:FT-LB_F-PER-FT2-SEC,
        unit:J-PER-CentiM2-DAY,
        unit:KiloCAL-PER-CentiM2-MIN,
        unit:KiloCAL-PER-CentiM2-SEC,
        unit:KiloW-PER-M2,
        unit:M-PA-PER-SEC,
        unit:MicroW-PER-M2,
        unit:MilliW-PER-M2,
        unit:NanoW-PER-M2,
        unit:PicoW-PER-M2,
        unit:W-PER-CentiM2,
        unit:W-PER-FT2,
        unit:W-PER-IN2,
        unit:W-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_intensity"^^xsd:anyURI ;
    qudt:latexDefinition "$I = pv$, where $p$ is the sound pressure and $v$ is sound particle velocity."^^qudt:LatexString ;
    qudt:plainTextDescription "Sound intensity or acoustic intensity ($I$) is defined as the sound power $P_a$ per unit area $A$. The usual context is the noise measurement of sound intensity in the air at a listener's location as a sound energy quantity."^^xsd:string ;
    qudt:symbol "I"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1140289> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:PowerPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:PowerPerArea .

qudtqk:SoundParticleAcceleration a qudt:QuantityKind ;
    rdfs:label "Sound particle acceleration"@en ;
    dcterms:description "In a compressible sound transmission medium - mainly air - air particles get an accelerated motion: the particle acceleration or sound acceleration with the symbol a in $m/s2$. In acoustics or physics, acceleration (symbol: $a$) is defined as the rate of change (or time derivative) of velocity."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiM-PER-SEC2,
        unit:FT-PER-SEC2,
        unit:G,
        unit:GALILEO,
        unit:IN-PER-SEC2,
        unit:KN-PER-SEC,
        unit:KiloM-PER-SEC2,
        unit:KiloPA-M2-PER-GM,
        unit:M-PER-SEC2,
        unit:MI_US-PER-SEC2,
        unit:MicroG,
        unit:MicroGALILEO,
        unit:MicroM-PER-SEC2,
        unit:MilliG,
        unit:MilliGALILEO,
        unit:MilliM-PER-SEC2,
        unit:YD-PER-SEC2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Particle_acceleration"^^xsd:anyURI ;
    qudt:latexDefinition "$a = \\frac{\\partial v}{\\partial t}$, where $v$ is sound particle velocity and $t$ is time."^^qudt:LatexString ;
    qudt:symbol "a"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7140491> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Acceleration"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Acceleration .

qudtqk:SoundPower a qudt:QuantityKind ;
    rdfs:label "القدرة الصوتية"@ar,
        "Schallleistung"@de,
        "sound power"@en,
        "potencie acústica"@es,
        "puissance acoustique"@fr,
        "potenza sonora"@it,
        "音源の音響出力"@ja,
        "moc akustyczna"@pl,
        "potência acústica"@pt,
        "звуковая мощность"@ru ;
    dcterms:description "Sound power or acoustic power $P_a$ is a measure of sonic energy $E$ per time $t$ unit. It is measured in watts and can be computed as sound intensity ($I$) times area ($A$)."^^qudt:LatexString ;
    qudt:applicableUnit unit:BAR-L-PER-SEC,
        unit:BAR-M3-PER-SEC,
        unit:BTU_IT-PER-HR,
        unit:BTU_IT-PER-SEC,
        unit:ERG-PER-SEC,
        unit:ExaJ-PER-SEC,
        unit:ExaW,
        unit:FT-LB_F-PER-HR,
        unit:FT-LB_F-PER-MIN,
        unit:FT-LB_F-PER-SEC,
        unit:GigaJ-PER-HR,
        unit:GigaJ-PER-SEC,
        unit:GigaW,
        unit:HP,
        unit:HP_Boiler,
        unit:HP_Brake,
        unit:HP_Electric,
        unit:HP_H2O,
        unit:HP_Metric,
        unit:HectoPA-L-PER-SEC,
        unit:HectoPA-M3-PER-SEC,
        unit:J-PER-DAY,
        unit:J-PER-HR,
        unit:J-PER-MIN,
        unit:J-PER-SEC,
        unit:KiloBTU_IT-PER-HR,
        unit:KiloCAL-PER-MIN,
        unit:KiloCAL-PER-SEC,
        unit:KiloGM_F-M-PER-SEC,
        unit:KiloJ-PER-DAY,
        unit:KiloJ-PER-HR,
        unit:KiloJ-PER-MIN,
        unit:KiloJ-PER-SEC,
        unit:KiloW,
        unit:MegaBTU_IT-PER-HR,
        unit:MegaJ-PER-HR,
        unit:MegaJ-PER-SEC,
        unit:MegaPA-L-PER-SEC,
        unit:MegaPA-M3-PER-SEC,
        unit:MegaW,
        unit:MicroJ-PER-SEC,
        unit:MicroW,
        unit:MilliBAR-L-PER-SEC,
        unit:MilliBAR-M3-PER-SEC,
        unit:MilliJ-PER-SEC,
        unit:MilliW,
        unit:NanoJ-PER-SEC,
        unit:NanoW,
        unit:PA-L-PER-SEC,
        unit:PA-M3-PER-SEC,
        unit:PFERDESTAERKE,
        unit:PSI-IN3-PER-SEC,
        unit:PSI-L-PER-SEC,
        unit:PSI-M3-PER-SEC,
        unit:PSI-YD3-PER-SEC,
        unit:PetaJ-PER-SEC,
        unit:PetaW,
        unit:PicoJ-PER-SEC,
        unit:PicoW,
        unit:PlanckPower,
        unit:THM_US-PER-HR,
        unit:TON_FG,
        unit:TeraJ-PER-SEC,
        unit:TeraW,
        unit:TeraW-HR-PER-YR,
        unit:W ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sound_power"^^xsd:anyURI ;
    qudt:latexDefinition "$P_a = IA$, where $I$ is the sound intensity in $\\frac{W}{m^2}$ and $A$ is the area in $m^2$."^^qudt:LatexString ;
    qudt:symbol "P"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1588477> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Power"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:altLabel "potência sonora"@pt ;
    skos:broader qudtqk:Power .

qudtqk:SoundPressure a qudt:QuantityKind,
        rdfs:Resource ;
    rdfs:label "Sound pressure"@en ;
    dcterms:description "Sound Pressure is the difference between instantaneous total pressure and static pressure."^^qudt:LatexString ;
    qudt:abbreviation "p"^^xsd:string ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Static_pressure"^^xsd:anyURI ;
    qudt:plainTextDescription "Sound Pressure is the difference between instantaneous total pressure and static pressure."^^xsd:string ;
    qudt:symbol "p"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1068172> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Pressure .

qudtqk:SourceVoltage a qudt:QuantityKind ;
    rdfs:label "Source Voltage"@en ;
    dcterms:description """
  The quantity kind $\\textit{Source Voltage}$, also referred to as $\\textit{Source Tension}$
   is the voltage between the two terminals of a voltage source when there is no electric current through the source. 
  The name $\\text{electromotive force}$ with the abbreviation $\\textit{EMF}$ and the symbol $E$ is deprecated.
  """^^qudt:LatexString ;
    qudt:applicableUnit unit:ExaV,
        unit:FemtoV,
        unit:GigaV,
        unit:KiloV,
        unit:MegaV,
        unit:MicroV,
        unit:MilliV,
        unit:NanoV,
        unit:PetaV,
        unit:PicoV,
        unit:PlanckVolt,
        unit:TeraV,
        unit:V,
        unit:V_Ab,
        unit:V_Stat ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    qudt:informativeReference "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:symbol "U_s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q185329> ;
    rdfs:comment "Applicable units are those of quantitykind:Voltage"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Voltage .

qudtqk:SpecificImpulseByWeight a qudt:QuantityKind ;
    rdfs:label "Specific Impulse by Weight"@en ;
    qudt:applicableUnit unit:AttoSEC,
        unit:CentiPOISE-PER-BAR,
        unit:DAY,
        unit:DAY_Sidereal,
        unit:DeciSEC,
        unit:FemtoSEC,
        unit:H-PER-KiloOHM,
        unit:H-PER-OHM,
        unit:HR,
        unit:HR_Sidereal,
        unit:KiloSEC,
        unit:KiloYR,
        unit:MIN,
        unit:MIN_Sidereal,
        unit:MO,
        unit:MO_MeanGREGORIAN,
        unit:MO_MeanJulian,
        unit:MO_Synodic,
        unit:MegaSEC,
        unit:MegaYR,
        unit:MicroH-PER-KiloOHM,
        unit:MicroH-PER-OHM,
        unit:MicroSEC,
        unit:MilliH-PER-KiloOHM,
        unit:MilliH-PER-OHM,
        unit:MilliPA-SEC-PER-BAR,
        unit:MilliSEC,
        unit:NanoSEC,
        unit:PA-SEC-PER-BAR,
        unit:POISE-PER-BAR,
        unit:POISE-PER-PA,
        unit:PicoSEC,
        unit:PlanckTime,
        unit:SEC,
        unit:SH,
        unit:WK,
        unit:YR,
        unit:YR_Common,
        unit:YR_Metrology,
        unit:YR_Sidereal,
        unit:YR_TROPICAL ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q100828354> ;
    rdfs:comment "Applicable units are those of quantitykind:Time"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:SpecificImpulse,
        qudtqk:Time .

qudtqk:SpecificOpticalRotatoryPower a qudt:QuantityKind ;
    rdfs:label "Specific Optical Rotatory Power"@en ;
    dcterms:description "The \"Specific Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the mass concentration of the substance giving the specific optical rotatory power."^^qudt:LatexString ;
    qudt:applicableUnit unit:RAD-M2-PER-KiloGM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:informativeReference "http://goldbook.iupac.org/O04313.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha_m = \\alpha \\frac{A}{m}$, where $\\alpha$ is the angle of optical rotation, and $m$ is the mass of the optically active component in the path of a linearly polarized light beam of cross sectional area $A$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha_m$"^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Specific Optical Rotatory Power\" Angle of optical rotation divided by the optical path length through the medium and by the mass concentration of the substance giving the specific optical rotatory power."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SpecificOpticalRotatoryPower"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralDensityOfVibrationalModes a qudt:QuantityKind ;
    rdfs:label "spectral density of vibrational modes"^^xsd:string ;
    qudt:applicableUnit unit:SEC-PER-M3-RAD ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:iec61360Code "0112/2///62720#UAD178"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD178"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:SpectralDensityOfVibrationalModes"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralEmittance a qudt:QuantityKind ;
    rdfs:label "Measurement Unit of Spectral Emittance"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-3D0> ;
    qudt:plainTextDescription "Spectral Emittance is a radiometry term for the power per unit area of electromagnetic radiation unit wavelength emerging from a surface."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralIrradiance a qudt:QuantityKind ;
    rdfs:label "Measurement Unit of Spectral Irradiance"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-3D0> ;
    qudt:plainTextDescription "Spectral Irradiance is a radiometry term for the power per unit area of electromagnetic radiation per unit wavelength incident at a surface."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SpectralLuminousEfficiency a qudt:QuantityKind ;
    rdfs:label "Spectral Luminous Efficiency"@en ;
    dcterms:description "The Spectral Luminous Efficiency is a measure of how well a light source produces visible light. It is the ratio of luminous flux to power. A common choice is to choose units such that the maximum possible efficacy, 683 lm/W, corresponds to an efficiency of 100%."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Luminous_efficacy"^^xsd:anyURI ;
    qudt:latexDefinition "$V(\\lambda) = \\frac{\\Phi_\\lambda(\\lambda_m)}{\\Phi_\\lambda(\\lambda)}$, where $\\Phi_\\lambda(\\lambda_m)$ is the spectral radiant flux at wavelength $\\lambda_m$ and $\\Phi_\\lambda(\\lambda)$ is the spectral radiant flux at wavelength $\\lambda$, such that both radiations produce equal luminous sensations under specified photometric conditions and $\\lambda_m$ is chosen so that the maximum value of this ratio is equal to 1."^^qudt:LatexString ;
    qudt:plainTextDescription "The Spectral Luminous Efficiency is a measure of how well a light source produces visible light. It is the ratio of luminous flux to power. A common choice is to choose units such that the maximum possible efficacy, 683 lm/W, corresponds to an efficiency of 100%."^^xsd:string ;
    qudt:symbol "V"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SphericalIlluminance a qudt:QuantityKind ;
    rdfs:label "Illuminance"@en ;
    dcterms:description "Spherical illuminance is equal to quotient of the total luminous flux $\\Phi_v$ incident on a small sphere by the cross section area of that sphere."^^qudt:LatexString ;
    qudt:applicableUnit unit:FC,
        unit:LUX,
        unit:PHOT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Illuminance"^^xsd:anyURI ;
    qudt:latexDefinition "$E_v,0 = \\int_{4\\pi sr}{L_v}{d\\Omega}$, where $d\\Omega$ is the solid angle of each elementary beam passing through the given point and $L_v$ is its luminance at that point in the direction of the beam."^^qudt:LatexString ;
    rdfs:comment "Applicable units are those of quantitykind:LuminousFluxPerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Illuminance .

qudtqk:StandardAbsoluteActivity a qudt:QuantityKind ;
    rdfs:label "Standard Absolute Activity"@en ;
    dcterms:description "The \"Standard Absolute Activity\" is proportional to the absoulte activity of the pure substance $B$ at the same temperature and pressure multiplied by the standard pressure."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Activity_coefficient"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\lambda_B^\\Theta = \\lambda_B^*(p^\\Theta)$, where $\\lambda_B^\\Theta$ the absolute activity of the pure substance $B$ at the same temperature and pressure, and $p^\\Theta$ is standard pressure."^^qudt:LatexString ;
    qudt:latexSymbol "$\\lambda_B^\\Theta$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q89406159> ;
    rdfs:comment "Applicable units are those of quantitykind:StandardAbsoluteActivity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:StaticFriction a qudt:QuantityKind ;
    rdfs:label "Static Friction"@en ;
    dcterms:description "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Friction"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Friction"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:plainTextDescription "Static friction is friction between two or more solid objects that are not moving relative to each other. For example, static friction can prevent an object from sliding down a sloped surface. "^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q90862568> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Friction .

qudtqk:StatisticalWeight a qudt:QuantityKind ;
    rdfs:label "Statistical Weight"@en ;
    dcterms:description "A \"Statistical Weight\" is the relative probability (possibly unnormalized) of a particular feature of a state."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Statistical_weight"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:plainTextDescription "A \"Statistical Weight\" is the relative probability (possibly unnormalized) of a particular feature of a state."^^xsd:string ;
    qudt:symbol "g"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:StatisticalWeight"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:StochasticProcess a qudt:QuantityKind ;
    rdfs:label "Stochastic Process"@en ;
    dcterms:description "In probability theory, a stochastic process, or sometimes random process  is a collection of random variables; this is often used to represent the evolution of some random value, or system, over time. This is the probabilistic counterpart to a deterministic process (or deterministic system)."^^qudt:LatexString ;
    qudt:applicableUnit unit:GigaHZ,
        unit:HZ,
        unit:KiloHZ,
        unit:MegaHZ,
        unit:MilliHZ,
        unit:NUM-PER-HR,
        unit:NUM-PER-SEC,
        unit:NUM-PER-YR,
        unit:PER-DAY,
        unit:PER-HR,
        unit:PER-MIN,
        unit:PER-MO,
        unit:PER-MilliSEC,
        unit:PER-SEC,
        unit:PER-WK,
        unit:PER-YR,
        unit:PERCENT-PER-DAY,
        unit:PERCENT-PER-HR,
        unit:PERCENT-PER-MO,
        unit:PPTH-PER-HR,
        unit:PetaHZ,
        unit:PlanckFrequency,
        unit:SAMPLE-PER-SEC,
        unit:TeraHZ ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Stochastic_process"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stochastic_process"^^xsd:anyURI ;
    qudt:plainTextDescription "In probability theory, a stochastic process, or sometimes random process  is a collection of random variables; this is often used to represent the evolution of some random value, or system, over time. This is the probabilistic counterpart to a deterministic process (or deterministic system)."^^xsd:string ;
    qudt:symbol "X"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Frequency"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Frequency .

qudtqk:StoichiometricNumber a qudt:QuantityKind ;
    rdfs:label "Stoichiometric Number"@en ;
    dcterms:description "Chemical reactions, as macroscopic unit operations, consist of simply a very large number of elementary reactions, where a single molecule reacts with another molecule. As the reacting molecules (or moieties) consist of a definite set of atoms in an integer ratio, the ratio between reactants in a complete reaction is also in integer ratio. A reaction may consume more than one molecule, and the \"Stoichiometric Number\" counts this number, defined as positive for products (added) and negative for reactants (removed)."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Stoichiometry"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexSymbol "$\\nu_B$"^^qudt:LatexString ;
    qudt:plainTextDescription "Chemical reactions, as macroscopic unit operations, consist of simply a very large number of elementary reactions, where a single molecule reacts with another molecule. As the reacting molecules (or moieties) consist of a definite set of atoms in an integer ratio, the ratio between reactants in a complete reaction is also in integer ratio. A reaction may consume more than one molecule, and the \"Stoichiometric Number\" counts this number, defined as positive for products (added) and negative for reactants (removed)."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q17326453> ;
    rdfs:comment "Applicable units are those of quantitykind:StoichiometricNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Dimensionless .

qudtqk:StructureFactor a qudt:QuantityKind ;
    rdfs:label "Structure Factor"@en ;
    dcterms:description "\"Structure Factor\" is a mathematical description of how a material scatters incident radiation."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Structure_factor"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexDefinition "$F(h, k, l) = \\sum_{n=1}^N f_n\\exp{[2\\pi i(hx_n + ky_n +lz_n)]}$, where $f_n$ is the atomic scattering factor for atom $n$, and $x_n$, $y_n$, and $z_n$ are fractional coordinates in the unit cell; for $h$, $k$, and $l$."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Structure Factor\" is a mathematical description of how a material scatters incident radiation."^^xsd:string ;
    qudt:symbol "F(h, k, l)"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q900684> ;
    rdfs:comment "Applicable units are those of quantitykind:StructureFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SunProtectionFactorOfAProduct a qudt:QuantityKind ;
    rdfs:label "sun protection factor of a product"^^xsd:string ;
    qudt:applicableUnit unit:SPF ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:iec61360Code "0112/2///62720#UAD366"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD366"^^xsd:anyURI ;
    rdfs:comment "Applicable units are those of quantitykind:SunProtectionFactorOfAProduct"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SurfaceActivityDensity a qudt:QuantityKind ;
    rdfs:label "Surface Activity Density"@en ;
    dcterms:description "The \"Surface Activity Density\" is undefined."^^qudt:LatexString ;
    qudt:applicableUnit unit:BQ-PER-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$a_s = \\frac{A}{S}$, where $S$ is the total area of the surface of a sample and $A$ is its activity."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Surface Activity Density\" is undefined."^^xsd:string ;
    qudt:symbol "a_s"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98103005> ;
    rdfs:comment "Applicable units are those of quantitykind:SurfaceActivityDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:SurfaceRelatedVolumeFlow a qudt:QuantityKind ;
    rdfs:label "surface-related volume flow"@en-us ;
    dcterms:description "quotient of the volume of a material, which passes through a specified surface, and the therefor required time divided by this specified area"@en ;
    qudt:applicableUnit unit:M3-PER-HA-YR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:plainTextDescription "Quotient aus dem Volumen eines Stoffes, das durch eine vorgegebene Oberfläche hindurchgeht, und der dazu benötigten Zeit dividiert durch diese vorgegebene Fläche"@de ;
    qudt:symbol "0173-1#Z4-BAJ421#003"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:SurfaceRelatedVolumeFlow"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Susceptance a qudt:QuantityKind ;
    rdfs:label "Susceptance"@en ;
    dcterms:description "\"Susceptance\" is the imaginary part of admittance. The inverse of admittance is impedance and the real part of admittance is conductance. "^^qudt:LatexString ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Susceptance"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Susceptance?oldid=430151986"^^xsd:anyURI,
        "http://www.electropedia.org/iev/iev.nsf/display?openform&ievref=131-12-54"^^xsd:anyURI,
        "http://www.iso.org/iso/home/store/catalogue_tc/catalogue_detail.htm?csnumber=31891"^^xsd:anyURI ;
    qudt:latexDefinition "$B = \\lim{\\underline{Y}}$, where $\\underline{Y}$ is admittance."^^qudt:LatexString ;
    qudt:plainTextDescription "\"Susceptance\" is the imaginary part of admittance. The inverse of admittance is impedance and the real part of admittance is conductance. "^^xsd:string ;
    qudt:symbol "B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q509598> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:Conductance,
        qudtqk:Impedance .

qudtqk:SystolicBloodPressure a qudt:QuantityKind ;
    rdfs:label "Systolic Blood Pressure"@en ;
    dcterms:description "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^qudt:LatexString ;
    qudt:applicableUnit unit:ATM,
        unit:ATM_T,
        unit:BAR,
        unit:BARAD,
        unit:BARYE,
        unit:BAR_A,
        unit:CentiBAR,
        unit:CentiM_H2O,
        unit:CentiM_H2O_4DEG_C,
        unit:CentiM_HG,
        unit:CentiM_HG_0DEG_C,
        unit:DYN-PER-CentiM2,
        unit:DecaPA,
        unit:DeciBAR,
        unit:FT_H2O,
        unit:FT_H2O_39dot2DEG_F,
        unit:FT_HG,
        unit:GM_F-PER-CentiM2,
        unit:GigaPA,
        unit:HectoBAR,
        unit:HectoPA,
        unit:IN_H2O,
        unit:IN_H2O_39dot2DEG_F,
        unit:IN_H2O_60DEG_F,
        unit:IN_HG,
        unit:IN_HG_32DEG_F,
        unit:IN_HG_60DEG_F,
        unit:KIP_F-PER-IN2,
        unit:KiloBAR,
        unit:KiloGM-PER-M-SEC2,
        unit:KiloGM_F-PER-CentiM2,
        unit:KiloGM_F-PER-M2,
        unit:KiloGM_F-PER-MilliM2,
        unit:KiloLB_F-PER-IN2,
        unit:KiloN-PER-CentiM2,
        unit:KiloN-PER-M2,
        unit:KiloN-PER-MilliM2,
        unit:KiloPA,
        unit:KiloPA_A,
        unit:LB_F-PER-FT2,
        unit:LB_F-PER-IN2,
        unit:M_H2O,
        unit:MegaBAR,
        unit:MegaN-PER-M2,
        unit:MegaPA,
        unit:MegaPSI,
        unit:MicroATM,
        unit:MicroBAR,
        unit:MicroPA,
        unit:MicroTORR,
        unit:MilliBAR,
        unit:MilliBAR_A,
        unit:MilliM_H2O,
        unit:MilliM_HG,
        unit:MilliM_HGA,
        unit:MilliPA,
        unit:MilliTORR,
        unit:N-PER-CentiM2,
        unit:N-PER-M2,
        unit:N-PER-MilliM2,
        unit:PA,
        unit:PDL-PER-FT2,
        unit:PDL-PER-IN2,
        unit:PSI,
        unit:PicoPA,
        unit:PlanckPressure,
        unit:TORR ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:informativeReference "http://www.oxfordreference.com/display/10.1093/acref/9780199549351.001.0001/acref-9780199549351-e-1162"^^xsd:anyURI ;
    qudt:plainTextDescription "The pressure of blood in the arteries which rises to a maximum as blood is pumped out by the left ventricle (systole) and drops to a minimum in diastole. The systolic/diastolic pressure is normally ~120/80 mmHg in a young adult."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q42015775> ;
    rdfs:comment "Applicable units are those of quantitykind:ForcePerArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    rdfs:seeAlso qudtqk:DiastolicBloodPressure ;
    skos:broader qudtqk:Pressure .

qudtqk:ThermalDiffusionFactor a qudt:QuantityKind ;
    rdfs:label "Thermal Diffusion Factor"@en ;
    dcterms:description "Thermal diffusion is a phenomenon in which a temperature gradient in a mixture of fluids gives rise to a flow of one constituent relative to the mixture as a whole. in the context of the equation that describes thermal diffusion, the \"Thermal Diffusion Factor\" is ."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$\\alpha_T = \\frac{k_T}{(x_A x_B)}$, where $k_T$ is the thermal diffusion ratio, and $x_A$ and $x_B$ are the local amount-of-substance fractions of the two substances $A$ and $B$."^^qudt:LatexString ;
    qudt:latexSymbol "$\\alpha_T$"^^qudt:LatexString ;
    qudt:plainTextDescription "Thermal diffusion is a phenomenon in which a temperature gradient in a mixture of fluids gives rise to a flow of one constituent relative to the mixture as a whole. in the context of the equation that describes thermal diffusion, the \"Thermal Diffusion Factor\" is ."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96249629> ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThermalDiffusionRatio a qudt:QuantityKind ;
    rdfs:label "Thermal Diffusion Ratio"@en ;
    dcterms:description "The \"Thermal Diffusion Ratio\" is proportional to the product of the component concentrations."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "In a steady state of a binary mixture in which thermal diffusion occurs, $grad x_B  = -(\\frac{k_T}{T}) grad T$, where $x_B$ is the amount-of-substance fraction of the heavier substance $B$, and $T$ is the local thermodynamic temperature."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Thermal Diffusion Ratio\" is proportional to the product of the component concentrations."^^xsd:string ;
    qudt:symbol "k_T"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96249433> ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThermalDiffusionRatioCoefficient a qudt:QuantityKind ;
    rdfs:label "Thermal Diffusion Coefficient"@en ;
    dcterms:description "The \"Thermal Diffusion Coefficient\" is ."^^qudt:LatexString ;
    qudt:applicableUnit unit:M2-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:informativeReference "http://www.thermopedia.com/content/1189/"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:latexDefinition "$D_T  = kT \\cdot D$, where $k_T$ is the thermal diffusion ratio, and $D$ is the diffusion coefficient."^^qudt:LatexString ;
    qudt:plainTextDescription "The \"Thermal Diffusion Coefficient\" is ."^^xsd:string ;
    qudt:symbol "D_T"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96249751> ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalDiffusionRatioCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:ThermalUtilizationFactor a qudt:QuantityKind ;
    rdfs:label "Thermal Utilization Factor"@en ;
    dcterms:description "The \"Thermal Utilization Factor\" in an infinite medium, is the ratio of the number of thermal absorbed in a fissionable nuclide or in a nuclear fuel, as specified, to the total number of thermal neutrons absorbed."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Four_factor_formula"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:plainTextDescription "The \"Thermal Utilization Factor\" in an infinite medium, is the ratio of the number of thermal absorbed in a fissionable nuclide or in a nuclear fuel, as specified, to the total number of thermal neutrons absorbed."^^xsd:string ;
    qudt:symbol "f"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99197650> ;
    rdfs:comment "Applicable units are those of quantitykind:ThermalUtilizationFactor"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Thickness a qudt:QuantityKind ;
    rdfs:label "Thickness"@en ;
    dcterms:description "\"Thickness\" is the the smallest of three dimensions: length, width, thickness."^^qudt:LatexString ;
    qudt:applicableUnit unit:ANGSTROM,
        unit:AU,
        unit:BTU_IT-PER-LB_F,
        unit:CH,
        unit:CHAIN_US,
        unit:CentiM,
        unit:DecaM,
        unit:DeciM,
        unit:FATH,
        unit:FM,
        unit:FT,
        unit:FT_US,
        unit:FUR,
        unit:FemtoM,
        unit:GAUGE_FR,
        unit:GA_Charriere,
        unit:HectoM,
        unit:IN,
        unit:KiloM,
        unit:LY,
        unit:M,
        unit:MI,
        unit:MI_N,
        unit:MI_UK,
        unit:MI_US,
        unit:MicroIN,
        unit:MicroM,
        unit:MilLength,
        unit:MilliIN,
        unit:MilliM,
        unit:NanoM,
        unit:PARSEC,
        unit:PCA,
        unit:PT,
        unit:PicoM,
        unit:PlanckLength,
        unit:ROD,
        unit:YD,
        unit:ZOLL ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Thickness"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:informativeReference "http://www.merriam-webster.com/dictionary/thickness"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Thickness\" is the the smallest of three dimensions: length, width, thickness."^^xsd:string ;
    qudt:symbol "d"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3589038> ;
    rdfs:comment "Applicable units are those of quantitykind:Length"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Length .

qudtqk:ThomsonCoefficient a qudt:QuantityKind ;
    rdfs:label "Thomson Coefficient"@en ;
    dcterms:description "\"Thomson Coefficient\" represents Thomson heat power developed, divided by the electric current and the temperature difference."^^qudt:LatexString ;
    qudt:applicableUnit unit:V-PER-K ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H-1T-3D0> ;
    qudt:informativeReference "http://www.daviddarling.info/encyclopedia/T/Thomson_effect.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:latexSymbol "$\\mu$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Thomson Coefficient\" represents Thomson heat power developed, divided by the electric current and the temperature difference."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105801233> ;
    rdfs:comment "Applicable units are those of quantitykind:ThomsonCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TotalAngularMomentumQuantumNumber a qudt:QuantityKind ;
    rdfs:label "Total Angular Momentum Quantum Number"@en ;
    dcterms:description "The \"Total Angular Quantum Number\" describes the magnitude of total angular momentum $J$, where $j$ refers to a specific particle and $J$ is used for the whole system."^^qudt:LatexString ;
    qudt:applicableUnit unit:NUM ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Quantum_number"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31894"^^xsd:anyURI ;
    qudt:symbol "j"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1141095> ;
    rdfs:comment "Applicable units are those of quantitykind:TotalAngularMomentumQuantumNumber"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:QuantumNumber ;
    skos:closeMatch qudtqk:MagneticQuantumNumber,
        qudtqk:PrincipalQuantumNumber,
        qudtqk:SpinQuantumNumber .

qudtqk:TotalIonization a qudt:QuantityKind ;
    rdfs:label "Total Ionization"@en ;
    dcterms:description "\"Total Ionization\" by a particle, total mean charge, divided by the elementary charge, $e$, of all positive ions produced by an ionizing charged particle along its entire path and along the paths of any secondary charged particles."^^qudt:LatexString ;
    qudt:applicableUnit unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ionization#Classical_ionization"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:latexDefinition "$N = \\int N_i dl$."^^qudt:LatexString ;
    qudt:symbol "N_i"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98690787> ;
    rdfs:comment "Applicable units are those of quantitykind:TotalIonization"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:TouchThresholds a qudt:QuantityKind ;
    rdfs:label "Touch Thresholds"@en ;
    dcterms:description "\"Touch Thresholds\" are thresholds for touch, vibration and other stimuli to the skin."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_t}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Touch Thresholds\" are thresholds for touch, vibration and other stimuli to the skin."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Transmittance a qudt:QuantityKind ;
    rdfs:label "Transmittance"@en ;
    dcterms:description "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Transmittance"^^xsd:anyURI ;
    qudt:latexDefinition "$\\tau = \\frac{\\Phi_t}{\\Phi_m}$, where $\\Phi_t$ is the transmitted radiant flux or the transmitted luminous flux, and $\\Phi_m$ is the radiant flux or luminous flux of the incident radiation."^^qudt:LatexString ;
    qudt:latexSymbol "$\\tau, T$"^^qudt:LatexString ;
    qudt:plainTextDescription "Transmittance is the fraction of incident light (electromagnetic radiation) at a specified wavelength that passes through a sample."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1427863> ;
    ns2:todo "belongs to SOQ-ISO"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:Turbidity a qudt:QuantityKind ;
    rdfs:label "Turbidity"@en ;
    dcterms:description "Turbidity is the cloudiness or haziness of a fluid, or of air, caused by individual particles (suspended solids) that are generally invisible to the naked eye, similar to smoke in air. Turbidity in open water is often caused by phytoplankton and the measurement of turbidity is a key test of water quality. The higher the turbidity, the higher the risk of the drinkers developing gastrointestinal diseases, especially for immune-compromised people, because contaminants like virus or bacteria can become attached to the suspended solid. The suspended solids interfere with water disinfection with chlorine because the particles act as shields for the virus and bacteria. Similarly suspended solids can protect bacteria from UV sterilisation of water. Fluids can contain suspended solid matter consisting of particles of many different sizes. While some suspended material will be large enough and heavy enough to settle rapidly to the bottom container if a liquid sample is left to stand (the settleable solids), very small particles will settle only very slowly or not at all if the sample is regularly agitated or the particles are colloidal. These small solid particles cause the liquid to appear turbid."^^qudt:LatexString ;
    qudt:applicableUnit unit:NTU ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Turbidity"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Turbidity"^^xsd:anyURI ;
    qudt:plainTextDescription "Turbidity is the cloudiness or haziness of a fluid, or of air, caused by individual particles (suspended solids) that are generally invisible to the naked eye, similar to smoke in air. Turbidity in open water is often caused by phytoplankton and the measurement of turbidity is a key test of water quality. The higher the turbidity, the higher the risk of the drinkers developing gastrointestinal diseases, especially for immune-compromised people, because contaminants like virus or bacteria can become attached to the suspended solid. The suspended solids interfere with water disinfection with chlorine because the particles act as shields for the virus and bacteria. Similarly suspended solids can protect bacteria from UV sterilisation of water. Fluids can contain suspended solid matter consisting of particles of many different sizes. While some suspended material will be large enough and heavy enough to settle rapidly to the bottom container if a liquid sample is left to stand (the settleable solids), very small particles will settle only very slowly or not at all if the sample is regularly agitated or the particles are colloidal. These small solid particles cause the liquid to appear turbid."^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q898574> ;
    rdfs:comment "Applicable units are those of quantitykind:Turbidity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Unbalance a qudt:QuantityKind ;
    rdfs:label "unbalance"^^xsd:string,
        "unbalance"@en-us ;
    dcterms:description "unsteady rotation of a body resulting from an anxious distribution of mass, expressed as the product of radius and related mass"@en ;
    qudt:applicableUnit unit:KiloGM-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:iec61360Code "0112/2///62720#UAD206"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec61987/iec61987.nsf/ListsOfUnitsAllVersions/0112-2---62720%23UAD206"^^xsd:anyURI ;
    qudt:plainTextDescription "durch ungleichmäßige Masseverteilung bedingter, unruhiger Lauf rotierender Körper, ausgedrückt als Produkt aus dem Radius und einer zugehörigen Masse"@de ;
    qudt:symbol "0173-1#Z4-BAJ432#001"^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:Unbalance"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:UpperCriticalMagneticFluxDensity a qudt:QuantityKind ;
    rdfs:label "Upper Critical Magnetic Flux Density"@en ;
    dcterms:description "\"Upper Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for disappearance of bulk superconductivity."^^qudt:LatexString ;
    qudt:applicableUnit unit:GAMMA,
        unit:GAUSS,
        unit:KiloGAUSS,
        unit:KiloT,
        unit:MicroT,
        unit:MilliT,
        unit:NanoT,
        unit:T,
        unit:T_Ab ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L0I0M1H0T-2D0> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI ;
    qudt:plainTextDescription "\"Upper Critical Magnetic Flux Density\" for type II superconductors, is the threshold magnetic flux density for disappearance of bulk superconductivity."^^xsd:string ;
    qudt:symbol "B_{c2}"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106127634> ;
    rdfs:comment "Applicable units are those of quantitykind:MagneticFluxDensity"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:MagneticFluxDensity ;
    skos:closeMatch qudtqk:LowerCriticalMagneticFluxDensity .

qudtqk:VacuumThrust a qudt:QuantityKind ;
    rdfs:label "Vacuum Thrust"@en ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:expression "$VT$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Thrust .

qudtqk:VentilationRatePerFloorArea a qudt:QuantityKind ;
    rdfs:label "Ventilation Rate per Floor Area"@en ;
    dcterms:description "Ventilation Rate is often expressed by the volumetric flowrate of outdoor air introduced to a building. However, ASHRAE now recommends ventilation rates dependent upon floor area."^^qudt:LatexString ;
    qudt:applicableUnit unit:L-PER-SEC-M2 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Ventilation_(architecture)#Ventilation_rates_for_indoor_air_quality"^^xsd:anyURI ;
    qudt:plainTextDescription "Ventilation Rate is often expressed by the volumetric flowrate of outdoor air introduced to a building. However, ASHRAE now recommends ventilation rates dependent upon floor area."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:VentilationRatePerFloorArea"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VideoFrameRate a qudt:QuantityKind ;
    rdfs:label "Video Frame Rate"@en ;
    dcterms:description "Frame rate (also known as frame frequency) is the frequency (rate) at which an imaging device produces unique consecutive images called frames. The term applies equally well to computer graphics, video cameras, film cameras, and motion capture systems. Frame rate is most often expressed in frames per second (FPS) and is also expressed in progressive scan monitors as hertz (Hz)."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRAME-PER-SEC ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Frame_rate"^^xsd:anyURI ;
    qudt:plainTextDescription "Frame rate (also known as frame frequency) is the frequency (rate) at which an imaging device produces unique consecutive images called frames. The term applies equally well to computer graphics, video cameras, film cameras, and motion capture systems. Frame rate is most often expressed in frames per second (FPS) and is also expressed in progressive scan monitors as hertz (Hz)."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:VideoFrameRate"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:InformationFlowRate .

qudtqk:VisionThresholds a qudt:QuantityKind ;
    rdfs:label "Vision Thresholds"@en ;
    dcterms:description "\"Vision Thresholds\" is an abstract term to refer to a variety of measures for the thresholds of sensitivity of the eye."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Absolute_threshold#Vision"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_v}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Vision Thresholds\" is the thresholds of sensitivity of the eye."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:VoltageRatio a qudt:QuantityKind ;
    rdfs:label "Voltage Ratio"@en ;
    qudt:applicableUnit unit:PERCENT ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-3D0> ;
    rdfs:comment "Applicable units are those of quantitykind:VoltageRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:DimensionlessRatio .

qudtqk:VolumeStrain a qudt:QuantityKind ;
    rdfs:label "Volume Strain"@en ;
    dcterms:description "Volume, or volumetric, Strain, or dilatation (the relative variation of the volume) is the trace of the tensor $\\vartheta$."^^qudt:LatexString ;
    qudt:applicableUnit unit:FRACTION,
        unit:GR,
        unit:NUM,
        unit:ONE-PER-ONE,
        unit:PERCENT,
        unit:PERMILLE,
        unit:PERMITTIVITY_REL,
        unit:PPB,
        unit:PPM,
        unit:PPQ,
        unit:PPT,
        unit:PPTH,
        unit:PPTM,
        unit:PSU,
        unit:UNITLESS ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Deformation_(mechanics)"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31889"^^xsd:anyURI ;
    qudt:latexDefinition "$\\vartheta = \\frac{\\Delta V}{V_0}$, where $\\Delta V$ is the increase in volume and $V_0$ is the volume in a reference state to be specified."^^qudt:LatexString ;
    qudt:latexSymbol "$\\vartheta$"^^qudt:LatexString ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q73432507> ;
    rdfs:comment "Applicable units are those of quantitykind:DimensionlessRatio"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Strain .

qudtqk:WarmReceptorThreshold a qudt:QuantityKind ;
    rdfs:label "Warm Receptor Threshold"@en ;
    dcterms:description "\"Warm Receptor Threshold\" is the threshold of warm-sensitive free nerve-ending."^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/NotApplicable> ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:latexSymbol "$\\overline{T_w}$"^^qudt:LatexString ;
    qudt:plainTextDescription "\"Warm Receptor Threshold\" is the threshold of warm-sensitive free nerve-ending."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:WaterVaporDiffusionCoefficient a qudt:QuantityKind ;
    rdfs:label "Wasserdampfdiffusionsleitkoeffizient"@de,
        "Water vapour diffusion coefficient"@en ;
    qudt:applicableUnit unit:KiloGM-PER-PA-SEC-M ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:informativeReference "https://www.wufi-wiki.com/mediawiki/index.php/Details:WaterVaporDiffusion"^^xsd:anyURI ;
    qudt:plainTextDescription "The Water vapour diffusion coefficient describes how easy vapor diffusion happens in a given material."^^xsd:string ;
    rdfs:comment "Applicable units are those of quantitykind:WaterVaporDiffusionCoefficient"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> .

qudtqk:Weight a qudt:QuantityKind ;
    rdfs:label "وزن"@ar,
        "tíha"@cs,
        "Gewicht"@de,
        "weight"@en,
        "peso"@es,
        "وزن"@fa,
        "poids"@fr,
        "forza peso"@it,
        "重さ"@ja,
        "Berat"@ms,
        "Siła ciężkości"@pl,
        "peso"@pt,
        "greutate"@ro,
        "Вес"@ru,
        "Ağırlık"@tr,
        "重量"@zh ;
    dcterms:description "The force with which a body is attracted toward an astronomical body.  Or, the product of the mass of a body and the acceleration acting on a body.  In a dynamic situation, the weight can be a multiple of that under resting conditions. Weight also varies on other planets in accordance with their gravity."^^qudt:LatexString ;
    qudt:applicableUnit unit:CentiN,
        unit:DYN,
        unit:DeciN,
        unit:GM_F,
        unit:GigaN,
        unit:KIP_F,
        unit:KiloGM-M-PER-SEC2,
        unit:KiloGM_F,
        unit:KiloLB_F,
        unit:KiloN,
        unit:KiloPOND,
        unit:LB_F,
        unit:MegaLB_F,
        unit:MegaN,
        unit:MicroN,
        unit:MilliN,
        unit:N,
        unit:NanoN,
        unit:OZ_F,
        unit:PDL,
        unit:POND,
        unit:PlanckForce,
        unit:TON_F_US ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Weight"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Weight"^^xsd:anyURI ;
    qudt:plainTextDescription "The force with which a body is attracted toward an astronomical body.  Or, the product of the mass of a body and the acceleration acting on a body.  In a dynamic situation, the weight can be a multiple of that under resting conditions. Weight also varies on other planets in accordance with their gravity."^^xsd:string ;
    qudt:symbol "bold letter W"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25288> ;
    rdfs:comment "Applicable units are those of quantitykind:Force"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/quantitykind> ;
    skos:broader qudtqk:Force .

unit:A-HR-PER-DEG_C a qudt:Unit ;
    rdfs:label "Ampere Hour per Degree Celsius"^^xsd:string,
        "Ampere Hour per Degree Celsius"@en ;
    dcterms:description """$\\textit{Ampere Hour per Degree Celsius}$ is the product of the SI base unit ampere and the unit hour
 divided by the unit degree Celsius.
 """^^qudt:LatexString ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD886"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD886"^^xsd:anyURI ;
    qudt:symbol "A·h/°C"^^xsd:string ;
    qudt:ucumCode "A.h.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-MIN a qudt:Unit ;
    rdfs:label "Ampere Minute"^^xsd:string,
        "Ampere Minute"@en ;
    dcterms:description "product of the SI base unit ampere and the unit minute"^^xsd:string ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:BatteryCapacity ;
    qudt:iec61360Code "0112/2///62720#UAB383"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB383"^^xsd:anyURI ;
    qudt:symbol "A·min"^^xsd:string ;
    qudt:ucumCode "A.min"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N95"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-A-HR a qudt:Unit ;
    rdfs:label "Ampere per Ampere Hour"^^xsd:string,
        "Ampere per Ampere Hour"@en ;
    dcterms:description "SI base unit ampere divided by the SI base unit ampere and the unit hour"^^xsd:string ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD890"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD890"^^xsd:anyURI ;
    qudt:symbol "A/(A·h)"^^xsd:string ;
    qudt:ucumCode "A.A-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Ampere per Square Centimetre"^^xsd:string,
        "Ampér na Čtvereční Centimetr"@cs,
        "Ampere pro Quadratcentimeter"@de,
        "Ampere per Square Centimetre"@en,
        "Ampere per Square Centimeter"@en-us,
        "Amperio por Centimetro Cuadrado"@es,
        "Ampère par Centimètre Carré"@fr,
        "Ampere per Centimetro Quadrato"@it,
        "Ampere per Centimeter Persegi"@ms,
        "Amper na Centimetr Kwadratowy"@pl,
        "Amper pe Centimetru Pătrat"@ro,
        "Amper na Kvadratni Centimeter"@sl,
        "Amper per Centimetrekare"@tr ;
    dcterms:description "SI base unit ampere divided by the 0.0001-fold  of the power of the SI base unit metre by exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 10000.0 ;
    qudt:conversionMultiplierSN 1e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:iec61360Code "0112/2///62720#UAB052"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB052"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit ampere divided by the 0.0001-fold  of the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:symbol "A/cm²"^^xsd:string ;
    qudt:ucumCode "A.cm-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A4"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-DEG_C a qudt:Unit ;
    rdfs:label "Ampere per Degree Celsius"^^xsd:string,
        "Ампер на Градус Целзий"@bg,
        "Ampér na Stupně Celsia"@cs,
        "Ampere pro Grad Celsius"@de,
        "Αμπέρ ανά Βαθμός Κελσίου"@el,
        "Ampere per Degree Celsius"@en,
        "Amperio por Grado Celsius"@es,
        "Ampère par Degré Celsius"@fr,
        "Ampere per Grado Celsius"@it,
        "Amperium per Gradus Celsii"@la,
        "Ampere per Darjah Celsius"@ms,
        "Amper na Stopień Celsjusza"@pl,
        "Ampere por Grau Celsius"@pt,
        "Amper pe Grad Celsius"@ro,
        "Ампер на Градус Цельсия"@ru,
        "Amper na Stopinja Celzija"@sl,
        "Amper per Celsius"@tr ;
    dcterms:description "A measure used to express how a current is subject to temperature. Originally used in Wien's Law to describe phenomena related to filaments. One use today is to express how a current generator derates with temperature."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$A/degC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:informativeReference "http://books.google.com/books?id=zkErAAAAYAAJ&pg=PA60&lpg=PA60&dq=ampere+per+degree"^^xsd:anyURI,
        "http://web.mit.edu/course/21/21.guide/use-tab.htm"^^xsd:anyURI ;
    qudt:symbol "A/°C"^^xsd:string ;
    qudt:ucumCode "A.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-GM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere per Gram"^^xsd:string,
        "Ampér na Gram"@cs,
        "Ampere pro Gramm"@de,
        "Ampere per Gram"@en,
        "Amperio por Gramo"@es,
        "Ampère par Gramme"@fr,
        "Ampere per Grammo"@it,
        "Amperium per Gramma"@la,
        "Ampere per Gram"@ms,
        "Amper na Gram"@pl,
        "Ampere por Grama"@pt,
        "Amper pe Gram"@ro,
        "Amper na Gram"@sl,
        "Amper per Gram"@tr ;
    dcterms:description """$\\textit{Ampere per gram}$ is a practical unit to describe an (applied) current relative to the involved amount of material. 
  This unit is often found in electrochemistry to standardize test conditions and compare various scales of investigated materials.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:SpecificElectricCurrent ;
    qudt:symbol "A/g"^^xsd:string ;
    qudt:ucumCode "A.g-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-K a qudt:Unit ;
    rdfs:label "Ampere per Kelvin"^^xsd:string,
        "Ампер на Келвин"@bg,
        "Ampér na Kelvin"@cs,
        "Ampere pro Kelvin"@de,
        "Αμπέρ ανά Κέλβιν"@el,
        "Ampere per Kelvin"@en,
        "Amperio por Kelvin"@es,
        "Ampère par Kelvin"@fr,
        "Ampere per Kelvin"@it,
        "Amperium per Kelvin"@la,
        "Ampere per Kelvin"@ms,
        "Amper na Kelwin"@pl,
        "Ampere por Kelvin"@pt,
        "Amper pe Kelvin"@ro,
        "Ампер на Кельвин"@ru,
        "Amper na Kelvin"@sl,
        "Amper per Kelvin"@tr ;
    dcterms:description "SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAD896"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD896"^^xsd:anyURI ;
    qudt:symbol "A/K"^^xsd:string ;
    qudt:ucumCode "A.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-KiloGM a qudt:Unit ;
    rdfs:label "Ampere per Kilogram"^^xsd:string,
        "Ампер на Килограм"@bg,
        "Ampér na Kilogram"@cs,
        "Ampere pro Kilogramm"@de,
        "Αμπέρ ανά Χιλιόγραμμο"@el,
        "Ampere per Kilogram"@en,
        "Amperio por Kilogramo"@es,
        "Ampère par Kilogramme"@fr,
        "Ampere per Chilogrammo"@it,
        "Amperium per Chiliogramma"@la,
        "Ampere per Kilogram"@ms,
        "Amper na Kilogram"@pl,
        "Ampere por Quilograma"@pt,
        "Amper pe Kilogram"@ro,
        "Ампер на Килограмм"@ru,
        "Amper na Kilogram"@sl,
        "Amper per Kilogram"@tr ;
    dcterms:description "SI base unit ampere divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:MassicElectricCurrent ;
    qudt:iec61360Code "0112/2///62720#UAB485"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB485"^^xsd:anyURI ;
    qudt:symbol "A/kg"^^xsd:string ;
    qudt:ucumCode "A.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H31"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-M2-K2 a qudt:Unit ;
    rdfs:label "Ampere per Square Metre Square Kelvin"^^xsd:string,
        "Ампер на Квадратен Метър Квадратен Келвин"@bg,
        "Ampér na Čtvereční Metr Čtvereční Kelvin"@cs,
        "Ampere pro Quadratmeter Quadratkelvin"@de,
        "Αμπέρ ανά Τετραγωνικό Μέτρο Τετραγωνικό Κέλβιν"@el,
        "Ampere per Square Metre Square Kelvin"@en,
        "Ampere per Square Meter Square Kelvin"@en-us,
        "Amperio por Metro Cuadrado Kelvin Cuadrado"@es,
        "Ampère par Mètre Carré Kelvin Carré"@fr,
        "Ampere per Metro Quadrato Kelvin Quadrato"@it,
        "Amperium per Metrum Quadratum Kelvin Quadratum"@la,
        "Ampere per Meter Persegi Kelvin Persegi"@ms,
        "Amper na Metr Kwadratowy Kelwin Kwadratowy"@pl,
        "Ampere por Metro Quadrado Kelvin Quadrado"@pt,
        "Amper pe Metru Pătrat Kelvin Pătrat"@ro,
        "Ампер на Квадратный Метр Квадратный Кельвин"@ru,
        "Amper na Kvadratni Meter Kvadratni Kelvin"@sl,
        "Amper per Metrekare Kelvinkare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$a/m^2-k^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H-2T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:RichardsonConstant ;
    qudt:iec61360Code "0112/2///62720#UAB353"^^xsd:string ;
    qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB353"^^xsd:anyURI ;
    qudt:symbol "A/(m²·K²)"^^xsd:string ;
    qudt:ucumCode "A.m-2.K-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A6"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105883158> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-MilliM2 a qudt:Unit ;
    rdfs:label "Ampere per Square Millimetre"^^xsd:string,
        "Ampér na Čtvereční Millimetr"@cs,
        "Ampere pro Quadratmillimeter"@de,
        "Ampere per Square Millimetre"@en,
        "Ampere per Square Millimeter"@en-us,
        "Amperio por Millimetro Cuadrado"@es,
        "Ampère par Millimètre Carré"@fr,
        "Ampere per Millimetro Quadrato"@it,
        "Ampere per Millimeter Persegi"@ms,
        "Amper na Millimetr Kwadratowy"@pl,
        "Amper pe Millimetru Pătrat"@ro,
        "Amper na Kvadratni Millimeter"@sl,
        "Amper per Millimetrekare"@tr ;
    dcterms:description "SI base unit ampere divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:iec61360Code "0112/2///62720#UAB051"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB051"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit ampere divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:symbol "A/mm²"^^xsd:string ;
    qudt:ucumCode "A.mm-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A7"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-PA a qudt:Unit ;
    rdfs:label "Ampere per Pascal"^^xsd:string,
        "Ампер на Паскал"@bg,
        "Ampér na Pascal"@cs,
        "Ampere pro Pascal"@de,
        "Αμπέρ ανά Πασκάλ"@el,
        "Ampere per Pascal"@en,
        "Amperio por Pascal"@es,
        "Ampère par Pascal"@fr,
        "Ampere per Pascal"@it,
        "Amperium per Pascalium"@la,
        "Ampere per Pascal"@ms,
        "Amper na Paskal"@pl,
        "Ampere por Pascal"@pt,
        "Amper pe Pascal"@ro,
        "Ампер на Паскаль"@ru,
        "Amper na Pascal"@sl,
        "Amper per Pascal"@tr ;
    dcterms:description "SI base unit ampere divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB320"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB320"^^xsd:anyURI ;
    qudt:symbol "A/Pa"^^xsd:string ;
    qudt:ucumCode "A.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N93"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-PER-RAD a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Ampere per Radian"^^xsd:string,
        "Ампер на Радиан"@bg,
        "Ampér na Radián"@cs,
        "Ampere pro Radiant"@de,
        "Αμπέρ ανά Ακτίνιο"@el,
        "Ampere per Radian"@en,
        "Amperio por Radián"@es,
        "Ampère par Radian"@fr,
        "Ampere per Radiante"@it,
        "Amperium per Radian"@la,
        "Ampere per Radian"@ms,
        "Amper na Radian"@pl,
        "Ampere por Radiano"@pt,
        "Amper pe Radian"@ro,
        "Ампер на Радиан"@ru,
        "Amper na Radian"@sl,
        "Amper per Radyan"@tr ;
    dcterms:description "$\\textit{Ampere per Radian}$ is a derived unit for measuring the amount of current per unit measure of angle, expressed in ampere per radian."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$a-per-rad$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerAngle ;
    qudt:symbol "A/rad"^^xsd:string ;
    qudt:ucumCode "A.rad-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30064202> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A-SEC2 a qudt:Unit ;
    rdfs:label "Ampere Square Second"^^xsd:string,
        "Ампер Квадратен Секунда"@bg,
        "Ampér Čtvereční Sekunda"@cs,
        "Ampere Quadratsekunde"@de,
        "Αμπέρ Τετραγωνικό Δευτερόλεπτο"@el,
        "Ampere Square Second"@en,
        "Amperio Segundo Cuadrado"@es,
        "Ampère Seconde Carré"@fr,
        "Ampere Secondo Quadrato"@it,
        "Amperium Secundum Quadratum"@la,
        "Ampere Saat Persegi"@ms,
        "Amper Sekunda Kwadratowy"@pl,
        "Ampere Segundo Quadrado"@pt,
        "Amper Secundă Pătrat"@ro,
        "Ампер Квадратный Секунда"@ru,
        "Amper Kvadratni Sekunda"@sl,
        "Amper Saniyekare"@tr ;
    dcterms:description "product out of the power of the SI base unit ampere and the SI base unit second with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "A·s²"^^xsd:string ;
    qudt:ucumCode "A.s2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A2-SEC a qudt:Unit ;
    rdfs:label "Square Ampere Second"^^xsd:string,
        "Квадратен Ампер Секунда"@bg,
        "Čtvereční Ampér Sekunda"@cs,
        "Quadratampere Sekunde"@de,
        "Τετραγωνικό Αμπέρ Δευτερόλεπτο"@el,
        "Square Ampere Second"@en,
        "Amperio Cuadrado Segundo"@es,
        "Ampère Carré Seconde"@fr,
        "Ampere Quadrato Secondo"@it,
        "Amperium Quadratum Secundum"@la,
        "Ampere Persegi Saat"@ms,
        "Amper Kwadratowy Sekunda"@pl,
        "Ampere Quadrado Segundo"@pt,
        "Amper Pătrat Secundă"@ro,
        "Квадратный Ампер Секунда"@ru,
        "Kvadratni Amper Sekunda"@sl,
        "Amperkare Saniye"@tr ;
    dcterms:description "product out of the power of the SI base unit ampere with the exponent 2 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:A ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA108"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA108"^^xsd:anyURI ;
    qudt:symbol "A²·s"^^xsd:string ;
    qudt:ucumCode "A2.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ATM-M3-PER-MOL a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Standard Atmosphere Cubic Metre per Mole"^^xsd:string,
        "Standard Atmosphere Cubic Metre per Mole"@en,
        "Standard Atmosphere Cubic Meter per Mole"@en-us ;
    dcterms:description """
  The unit $\\textit{Atmosphere Cubic Metre per Mole}$ consists of the power of the SI base unit metre with the exponent 3 multiplied by the unit atmosphere divided by the SI base unit mol.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 101325.0 ;
    qudt:conversionMultiplierSN 1.01325e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ATM ] ;
    qudt:hasQuantityKind qudtqk:HenrysLawVolatilityConstant ;
    qudt:symbol "atm·m³/mol"^^xsd:string ;
    qudt:ucumCode "atm.m3.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ATM-PER-M a qudt:Unit ;
    rdfs:label "Standard Atmosphere per Metre"^^xsd:string,
        "Standard Atmosphere per Metre"@en,
        "Standard Atmosphere per Meter"@en-us ;
    dcterms:description """
  An [outdated] unit of the pressure divided by the SI base unit metre
  """^^xsd:string ;
    qudt:conversionMultiplier 101325.0 ;
    qudt:conversionMultiplierSN 1.01325e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ATM ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB423"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB423"^^xsd:anyURI ;
    qudt:symbol "atm/m"^^xsd:string ;
    qudt:ucumCode "atm.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ATM_T-PER-M a qudt:Unit ;
    rdfs:label "Technical Atmosphere per Metre"^^xsd:string,
        "Technical Atmosphere per Metre"@en,
        "Technical Atmosphere per Meter"@en-us ;
    dcterms:description """
  The unit $\\textit{technical atmosphere per metre}$ is the pressure which is generated by a 10 metre water
   column divided by the SI base unit metre.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 98066.5 ;
    qudt:conversionMultiplierSN 9.80665e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ATM_T ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB424"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB424"^^xsd:anyURI ;
    qudt:symbol "at/m"^^xsd:string ;
    qudt:ucumCode "att.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AWG a qudt:Unit ;
    rdfs:label "American Wire Gage"^^xsd:string,
        "American Wire Gage"@en ;
    dcterms:description """
  The unit for $\\textit{American Wire Gage}$, symbol $AWG$, is for the standard nominal diameters and cross-sectional areas of American Wire Gage sizes of solid round wires used as electrical conductors.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD909"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD909"^^xsd:anyURI ;
    qudt:symbol "AWG"^^xsd:string ;
    qudt:uneceCommonCode "AWG"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A_Ab-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Abampere per Square Centimetre"^^xsd:string,
        "Abampere per Square Centimetre"@en,
        "Abampere per Square Centimeter"@en-us ;
    dcterms:description """
  The unit $\\textit{Abampere Per Square Centimeter}$, symbol $aA/cm^2$, is a unit in the category of Electric current density. 
  It is also known as $\\textit{abamperes per square centimeter}$, $\\textit{abampere/square centimeter}$,
   and $\\textit{abampere per square centimetre}$. 
   This unit is commonly used in the cgs unit system.
  $\\textit{Abampere Per Square Centimeter}$ has a dimension of $L^{-2}I$ where $L$ is length, and $I$ is electric current. 
  It can be converted to the corresponding standard SI unit $A/m^{2}$ by multiplying its value by a factor of 100000.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 100000.0 ;
    qudt:conversionMultiplierSN 1e+05 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:expression "$aba-per-cm2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Ab ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:informativeReference "http://wordinfo.info/results/abampere"^^xsd:anyURI,
        "http://www.efunda.com/glossary/units/units--electric_current_density--abampere_per_square_centimeter.cfm"^^xsd:anyURI ;
    qudt:symbol "abA/cm²"^^xsd:string ;
    qudt:ucumCode "Bi.cm-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30063541> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:A_Stat-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Statampere per Square Centimetre"^^xsd:string,
        "Statampere per Square Centimetre"@en,
        "Statampere per Square Centimeter"@en-us ;
    dcterms:description """
  The $\\textit{Statampere per Square Centimeter}$ is a unit of electric current density in the c.g.s. system of units.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 0.000003335641 ;
    qudt:conversionMultiplierSN 3.335641e-06 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:expression "$statA / cm^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:A_Stat ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:symbol "statA/cm²"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AttoFARAD a qudt:Unit ;
    rdfs:label "Attofarad"^^xsd:string,
        "Attofarad"@cs,
        "Attofarad"@de,
        "Attofarad"@en,
        "Attofaradio"@es,
        "Attofarad"@fr,
        "Attofarad"@hu,
        "Attofarad"@it,
        "Attofarad"@ms,
        "Attofarad"@pl,
        "Attofarad"@ro,
        "Attofarad"@sl,
        "Attofarad"@tr ;
    dcterms:description """
  The $\\textit{AttoFarad}$ is 0,000 000 000 000 000 001-fold of the SI derived unit $farad$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000000000001 ;
    qudt:conversionMultiplierSN 1e-18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAA319"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA319"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000000000000001-fold of the SI derived unit farad"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Atto> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "aF"^^xsd:string ;
    qudt:ucumCode "aF"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H48"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95447276> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:AttoJ-SEC a qudt:Unit ;
    rdfs:label "Attojoule Second"^^xsd:string,
        "Attojoule Sekunda"@cs,
        "Attojoule Sekunde"@de,
        "Attojoule Second"@en,
        "Attojulio Segundo"@es,
        "Attojoule Seconde"@fr,
        "Attojoule Secondo"@it,
        "Attojoule Saat"@ms,
        "Attodżul Sekunda"@pl,
        "Attojoule Secundă"@ro,
        "Attojoule Sekunda"@sl,
        "Attojoule Saniye"@tr ;
    dcterms:description """
  The $\\textit{AttoJoule Second}$ is the unit for the Planck's constant as product of the SI derived unit joule and the SI base unit second.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000000000001 ;
    qudt:conversionMultiplierSN 1e-18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:AttoJ ] ;
    qudt:hasQuantityKind qudtqk:Action ;
    qudt:plainTextDescription "unit of the Planck's constant as product of the SI derived unit joule and the SI base unit second"^^xsd:string ;
    qudt:symbol "aJ·s"^^xsd:string ;
    qudt:ucumCode "aJ.s"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:B-PER-M a qudt:Unit ;
    rdfs:label "Bel per Metre"^^xsd:string,
        "Бел на Метър"@bg,
        "Bel na Metr"@cs,
        "Bel pro Meter"@de,
        "Μπέλ ανά Μέτρο"@el,
        "Bel per Metre"@en,
        "Bel per Meter"@en-us,
        "Belio por Metro"@es,
        "Bel par Mètre"@fr,
        "Bel per Metro"@it,
        "Bel per Meter"@ms,
        "Bel na Metr"@pl,
        "Bel por Metro"@pt,
        "Bel pe Metru"@ro,
        "Бел на Метр"@ru,
        "Bel na Meter"@sl,
        "Bel per Metre"@tr ;
    dcterms:description """
  The $\\textit{Bel}$ is the unit $\\textit{Bel}$ divided by the SI base unit metre/
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:B ] ;
    qudt:hasQuantityKind qudtqk:LinearLogarithmicRatio ;
    qudt:iec61360Code "0112/2///62720#UAB480"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB480"^^xsd:anyURI ;
    qudt:symbol "B/m"^^xsd:string ;
    qudt:ucumCode "B.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P43"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BAR-PER-BAR a qudt:Unit ;
    rdfs:label "Bar per Bar"^^xsd:string,
        "Bar per Bar"@en ;
    dcterms:description "pressure relation consisting of the unit bar divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA325"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA325"^^xsd:anyURI ;
    qudt:plainTextDescription "pressure relation consisting of the unit bar divided by the unit bar"^^xsd:string ;
    qudt:symbol "bar/bar"^^xsd:string ;
    qudt:ucumCode "bar.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J56"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BARN-PER-EV a qudt:Unit ;
    rdfs:label "Barn per Electron Volt"^^xsd:string,
        "Barn per Electron Volt"@en ;
    dcterms:description "unit for the representation of the cross section barn divided by the unit of the energy electronvolt which is used for the atomic physics, nuclear physics and particle physics"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000006241509074460762607776240980930446 ;
    qudt:conversionMultiplierSN 6.241509e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BARN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:EV ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB127"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB127"^^xsd:anyURI ;
    qudt:symbol "b/eV"^^xsd:string ;
    qudt:ucumCode "b.eV-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BARN-PER-SR a qudt:Unit ;
    rdfs:label "Barn per Steradian"^^xsd:string,
        "Barn per Steradian"@en ;
    dcterms:description "unit for the representation of the cross section barn divided by the unit of the solid angle steradian"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000000000000000001 ;
    qudt:conversionMultiplierSN 1e-28 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BARN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB128"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB128"^^xsd:anyURI ;
    qudt:symbol "b/sr"^^xsd:string ;
    qudt:ucumCode "b.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BARN-PER-SR-EV a qudt:Unit ;
    rdfs:label "Barn per Steradian Electron Volt"^^xsd:string,
        "Barn per Steradian Electron Volt"@en ;
    dcterms:description "unit for the representation of the cross section barn divided by the product of the unit of the solid angle steradian and the unit of the energy electronvolt which is used for the atomic physics, nuclear physics and particle physics"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000006241509074460762607776240980930446 ;
    qudt:conversionMultiplierSN 6.241509e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:EV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BARN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB140"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB140"^^xsd:anyURI ;
    qudt:symbol "b/(sr·eV)"^^xsd:string ;
    qudt:ucumCode "b.sr-1.eV-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BBL_US_DRY a qudt:Unit ;
    rdfs:label "Dry Barrel (US)"^^xsd:string,
        "Dry Barrel (US)"@en ;
    dcterms:description "non SI-conform unit of the volume in the USA which applies to a resolution from 1912: 1 dry barrel (US) equals approximately to 115.63 litre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.1156281989625 ;
    qudt:conversionMultiplierSN 1.156282e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAB117"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB117"^^xsd:anyURI ;
    qudt:plainTextDescription "non SI-conform unit of the volume in the USA which applies to a resolution from 1912: 1 dry barrel (US) equals approximately to 115.63 litre"^^xsd:string ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "bbl{US dry}"^^xsd:string ;
    qudt:uneceCommonCode "BLD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q32751296> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BEAT-PER-MIN a qudt:ContextualUnit,
        qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Beat per Minute"^^xsd:string,
        "Beat per Minute"@en ;
    dcterms:description "\"Heart Beat per Minute\" is a unit for  'Heart Rate' expressed as $BPM$."^^qudt:LatexString ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BEAT ] ;
    qudt:hasQuantityKind qudtqk:HeartRate ;
    qudt:symbol "BPM"^^xsd:string ;
    qudt:ucumCode "min-1{H.B.}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:NUM-PER-MIN .

unit:BIT-PER-M a qudt:Unit ;
    rdfs:label "Bit per Metre"^^xsd:string,
        "Bit per Metre"@en,
        "Bit per Meter"@en-us ;
    dcterms:description "unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA340"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA340"^^xsd:anyURI ;
    qudt:symbol "b/m"^^xsd:string ;
    qudt:ucumCode "bit.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BIT-PER-M2 a qudt:Unit ;
    rdfs:label "Bit per Square Metre"^^xsd:string,
        "Bit per Square Metre"@en,
        "Bit per Square Meter"@en-us ;
    dcterms:description "unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA341"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA341"^^xsd:anyURI ;
    qudt:symbol "b/m²"^^xsd:string ;
    qudt:ucumCode "bit.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BIT-PER-M3 a qudt:Unit ;
    rdfs:label "Bit per Cubic Metre"^^xsd:string,
        "Bit per Cubic Metre"@en,
        "Bit per Cubic Meter"@en-us ;
    dcterms:description "unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA342"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA342"^^xsd:anyURI ;
    qudt:symbol "b/m³"^^xsd:string ;
    qudt:ucumCode "bit.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BIT-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Bit per Second"^^xsd:string,
        "Bit per Second"@en ;
    dcterms:description "A bit per second (B/s) is a unit of data transfer rate equal to 1 bits per second."^^rdf:HTML ;
    qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA343"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA343"^^xsd:anyURI ;
    qudt:symbol "b/s"^^xsd:string ;
    qudt:ucumCode "bit.s-1"^^qudt:UCUMcs ;
    qudt:udunitsCode "Bd"^^xsd:string,
        "bps"^^xsd:string ;
    qudt:uneceCommonCode "B10"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q549389> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BQ-PER-L a qudt:Unit ;
    rdfs:label "Becquerel per Litre"^^xsd:string,
        "Becquerel per Litre"@en,
        "Becquerel per Liter"@en-us ;
    dcterms:description "One radioactive disintegration per second from a one part in 10**3 of the SI unit of volume (cubic metre)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BQ ] ;
    qudt:hasQuantityKind qudtqk:ActivityConcentration ;
    qudt:symbol "Bq/L"^^xsd:string ;
    qudt:ucumCode "Bq.L-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106651237> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BQ-PER-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Becquerel per Square Metre"^^xsd:string,
        "Бекерел на Квадратен Метър"@bg,
        "Becquerel na Čtvereční Metr"@cs,
        "Becquerel pro Quadratmeter"@de,
        "Μπεκερέλ ανά Τετραγωνικό Μέτρο"@el,
        "Becquerel per Square Metre"@en,
        "Becquerel per Square Meter"@en-us,
        "Becquerel por Metro Cuadrado"@es,
        "Becquerel par Mètre Carré"@fr,
        "Becquerel per Metro Quadrato"@it,
        "Becquerelium per Metrum Quadratum"@la,
        "Becquerel per Meter Persegi"@ms,
        "Bekerel na Metr Kwadratowy"@pl,
        "Becquerel por Metro Quadrado"@pt,
        "Becquerel pe Metru Pătrat"@ro,
        "Беккерель на Квадратный Метр"@ru,
        "Becquerel na Kvadratni Meter"@sl,
        "Bekerel per Metrekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$Bq/m^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BQ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SurfaceActivityDensity ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "Bq/m²"^^xsd:string ;
    qudt:ucumCode "Bq.m-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98103135> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BQ-SEC-PER-M3 a qudt:Unit ;
    rdfs:label "Becquerel Second per Cubic Metre"^^xsd:string,
        "Бекерел Секунда на Кубичен Метър"@bg,
        "Becquerel Sekunda na Metr Krychlový"@cs,
        "Becquerel Sekunde pro Kubikmeter"@de,
        "Μπεκερέλ Δευτερόλεπτο ανά Κυβικό Μέτρο"@el,
        "Becquerel Second per Cubic Metre"@en,
        "Becquerel Second per Cubic Meter"@en-us,
        "Becquerel Segundo por Metro Cúbico"@es,
        "Becquerel Seconde par Mètre Cube"@fr,
        "Becquerel Secondo per Metro Cubo"@it,
        "Becquerelium Secundum per Metrum Cubicum"@la,
        "Becquerel Saat per Meter Kubik"@ms,
        "Bekerel Sekunda na Metr Sześcienny"@pl,
        "Becquerel Segundo por Metro Cúbico"@pt,
        "Becquerel Secundă pe Metru Cub"@ro,
        "Беккерель Секунда на Кубический Метр"@ru,
        "Becquerel Sekunda na Kubični Meter"@sl,
        "Bekerel Saniye per Metreküp"@tr ;
    dcterms:description "TBD"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BQ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AbsoluteActivity ;
    qudt:symbol "Bq·s/m³"^^xsd:string ;
    qudt:ucumCode "Bq.s.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BREATH-PER-MIN a qudt:ContextualUnit,
        qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Breath per Minute"^^xsd:string,
        "Breath per Minute"@en ;
    dcterms:description "A unit of respiratory rate."^^rdf:HTML ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:expression "$breaths/min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BREATH ] ;
    qudt:hasQuantityKind qudtqk:RespiratoryRate ;
    qudt:symbol "breath/min"^^xsd:string ;
    qudt:ucumCode "min-1{breath}"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30064611> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:NUM-PER-MIN .

unit:BTU_IT-FT a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Foot"^^xsd:string,
        "British Thermal Unit (international Definition) Foot"@en ;
    dcterms:description "${\\bf BTU_{IT} \\, Foot}$ is an Imperial unit for $\\textit{Thermal Energy Length}$ expressed as $Btu-ft$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 321.581023878576 ;
    qudt:conversionMultiplierSN 3.21581e+02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu-ft$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:ThermalEnergyLength ;
    qudt:symbol "Btu{IT}·ft"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[ft_i]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-FT-PER-FT2-HR-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Foot per Square Foot Hour Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) Foot per Square Foot Hour Degree Fahrenheit"@en ;
    dcterms:description """
  A $BTU_{IT}$, $\\italic{Foot per Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity',
   expressed as $Btu_{it} \\cdot ft/(h \\cdot ft^2  \\cdot degF)$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.730734666371391076115485564304462 ;
    qudt:conversionMultiplierSN 1.730735e+00 ;
    qudt:expression "$Btu(IT) ft/(h ft^2 degF)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA115"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA115"^^xsd:anyURI ;
    qudt:plainTextDescription "British thermal unit (international table) foot per hour Square foot degree Fahrenheit is the unit of the thermal conductivity according to the Imperial system of units."^^xsd:string ;
    qudt:symbol "Btu{IT}·ft/(ft²·h·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[ft_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J40"^^xsd:string ;
    ns2:comment "qudt:exactMatch: unit:BTU_IT-FT-PER-HR-FT2-DEG_F"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-IN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) Inch"^^xsd:string,
        "British Thermal Unit (international Definition) Inch"@en ;
    dcterms:description """
  ${\\bf BTU \\, Inch}$ is an Imperial unit for 'Thermal Energy Length' expressed as $Btu-in$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 26.798418656548 ;
    qudt:conversionMultiplierSN 2.679842e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu-in$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:ThermalEnergyLength ;
    qudt:symbol "Btu{IT}·in"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[in_i]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) per Degree Fahrenheit"@en ;
    dcterms:description """$\\textit{British Thermal Unit (IT) Per Fahrenheit Degree}$ ($Btu (IT)/^\\circ F$) is a measure of heat capacity. 
  It can be converted to the corresponding standard SI unit $J/K$ by multiplying its value by a factor of $1899.10534$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1899.100534716 ;
    qudt:conversionMultiplierSN 1.899101e+03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu/degF$"^^qudt:LatexString,
        "$btu-per-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:HeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAB271"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB271"^^xsd:anyURI ;
    qudt:symbol "Btu{IT}/°F"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-DEG_R a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Degree Rankine"@en ;
    dcterms:description """$\\textit{BTU per Degree Rankine}$ is an Imperial unit for 'Heat Capacity' expressed as $Btu/degR$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1899.100534715999848071957222720013 ;
    qudt:conversionMultiplierSN 1.899101e+03 ;
    qudt:expression "$btu-per-degR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:HeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAB273"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB273"^^xsd:anyURI ;
    qudt:symbol "Btu{IT}/°R"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-LB_F-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Pound Force Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) per Pound Force Degree Fahrenheit"@en ;
    dcterms:description "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 426.9347648940977241562614523048097 ;
    qudt:conversionMultiplierSN 4.269348e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA119"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA119"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Fahrenheit"^^xsd:string ;
    qudt:symbol "Btu{IT}/(lbf·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J43"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-LB_F-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Pound Force Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Pound Force Degree Rankine"@en ;
    dcterms:description "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Rankine"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 426.9347648940976900014802607769946 ;
    qudt:conversionMultiplierSN 4.269348e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAB141"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB141"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit of heat energy according to the Imperial system of units divided by the product of a pound of force and a degree Rankine"^^xsd:string ;
    qudt:symbol "Btu{IT}/(lbf·°R)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[lbf_av]-1.[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A21"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-MOL_LB a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Pound Mole"^^xsd:string,
        "British Thermal Unit (international Definition) per Pound Mole"@en ;
    dcterms:description "${\\bf BTU \\, per \\, Pound \\,Mole}$ is an Imperial unit for 'Energy And Work Per Mass Amount Of Substance' expressed as $Btu/(lb-mol)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 2.326 ;
    qudt:conversionMultiplierSN 2.326e+00 ;
    qudt:expression "$Btu/(lb-mol)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL_LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:EnergyPerMassAmountOfSubstance ;
    qudt:symbol "Btu{IT}/lb-mol"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[mol_lb]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-MOL_LB-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Pound Mole Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (international Definition) per Pound Mole Degree Fahrenheit"@en ;
    dcterms:description "${\\bf BTU \\, per \\, Pound \\, Mole \\, Degree \\, Fahrenheit}$ is an Imperial unit for 'Molar Heat Capacity' expressed as $Btu/(lb-mol-degF)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4.186799999999999999999999999999999 ;
    qudt:conversionMultiplierSN 4.1868e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:expression "$Btu/(lb-mol-degF)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL_LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:MolarHeatCapacity ;
    qudt:symbol "Btu{IT}/(lb-mol·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].[mol_lb]-1.[degF]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_IT-PER-SEC-FT-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (international Definition) per Second Foot Degree Rankine"^^xsd:string,
        "British Thermal Unit (international Definition) per Second Foot Degree Rankine"@en ;
    dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 6230.644798937007375564164116535474 ;
    qudt:conversionMultiplierSN 6.230645e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB107"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB107"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{IT}/(s·ft·°R)"^^xsd:string ;
    qudt:ucumCode "[Btu_IT].s-1.[ft_i]-1.[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-FT-PER-FT2-HR-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) Foot per Square Foot Hour Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) Foot per Square Foot Hour Degree Fahrenheit"@en ;
    dcterms:description """
  The $\\textit{BTU (TH) Foot per Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity' defined as:
  $$Btu_{th} \\cdot ft/(h \\cdot ft^2 \\cdot degF)$$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.729577205544619422572178477690289 ;
    qudt:conversionMultiplierSN 1.729577e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu(IT) ft/(h ft^2 degF)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Thermal_conductivity"^^xsd:anyURI,
        "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI ;
    qudt:symbol "Btu{th}·ft/(ft²·h·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[ft_i].[ft_i]-2.h-1.[degF]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-FT-PER-HR-FT2-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) Foot per Hour Square Foot Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) Foot per Hour Square Foot Degree Fahrenheit"@en ;
    dcterms:description """
  The $\\textit{British Thermal Unit (thermochemical) Foot Per Hour Square Foot degree Fahrenheit}$ is a unit of thermal conductivity in the Imperial system of units.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.729577205544619422572178477690289 ;
    qudt:conversionMultiplierSN 1.729577e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA123"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA123"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{th}·ft/(h·ft²·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[ft_i].h-1.[ft_i]-2.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-IN-PER-FT2-SEC-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) Inch per Square Foot Second Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) Inch per Square Foot Second Degree Fahrenheit"@en ;
    dcterms:description """
  The $\\textit{BTU (TH) Inch per Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Thermal Conductivity' expressed as:
  $$Btu_{th} \\cdot in/(ft^{2} \\cdot s \\cdot degF)$$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 518.8731616633858267716535433070866 ;
    qudt:conversionMultiplierSN 5.188732e+02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$Btu(it)-in-per-s-ft2-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA126"^^xsd:string ;
    qudt:informativeReference "http://www.translatorscafe.com/cafe/EN/units-converter/thermal-conductivity/c/"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA126"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit of thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "Btu{th}·in/(ft²·s·°F)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[in_i].[ft_i]-2.s-1.[degF]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-DEG_F a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Degree Fahrenheit"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Degree Fahrenheit"@en ;
    dcterms:description "unit of the heat capacity according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 1897.8304761 ;
    qudt:conversionMultiplierSN 1.89783e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:ThermalCapacitance ;
    qudt:iec61360Code "0112/2///62720#UAB272"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB272"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/°F"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N61"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Degree Rankine"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Degree Rankine"@en ;
    dcterms:description "unit of the heat capacity according to the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 1897.830476099999848173561912000013 ;
    qudt:conversionMultiplierSN 1.89783e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ] ;
    qudt:hasQuantityKind qudtqk:ThermalCapacitance ;
    qudt:iec61360Code "0112/2///62720#UAB274"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB274"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/°R"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[degR]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N63"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:BTU_TH-PER-LB-DEG_R a qudt:Unit ;
    rdfs:label "British Thermal Unit (thermochemical Definition) per Pound Mass Degree Rankine"^^xsd:string,
        "British Thermal Unit (thermochemical Definition) per Pound Mass Degree Rankine"@en ;
    dcterms:description "unit of the heat capacity (British Thermal Unit - thermochemical - according to the international table according to the Rankine degree) according to the Imperial system of units divided by the unit avoirdupois pound according to the avoirdupois system of units"^^xsd:string ;
    qudt:conversionMultiplier 4184.000000044092117716975512617226 ;
    qudt:conversionMultiplierSN 4.184e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_R ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:MassicHeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAB275"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB275"^^xsd:anyURI ;
    qudt:symbol "Btu{th}/(lbm·°R)"^^xsd:string ;
    qudt:ucumCode "[Btu_th].[lb_av]-1.[degR]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-M2-PER-KiloGM a qudt:Unit ;
    rdfs:label "Coulomb Square Metre per Kilogram"^^xsd:string,
        "Кулон Квадратен Метър на Килограм"@bg,
        "Coulomb Čtvereční Metr na Kilogram"@cs,
        "Coulomb Quadratmeter pro Kilogramm"@de,
        "Κουλόμπ Τετραγωνικό Μέτρο ανά Χιλιόγραμμο"@el,
        "Coulomb Square Metre per Kilogram"@en,
        "Coulomb Square Meter per Kilogram"@en-us,
        "Culombio Metro Cuadrado por Kilogramo"@es,
        "Coulomb Mètre Carré par Kilogramme"@fr,
        "Coulomb Metro Quadrato per Chilogrammo"@it,
        "Coulombium Metrum Quadratum per Chiliogramma"@la,
        "Coulomb Meter Persegi per Kilogram"@ms,
        "Kulomb Metr Kwadratowy na Kilogram"@pl,
        "Coulomb Metro Quadrado por Quilograma"@pt,
        "Coulomb Metru Pătrat pe Kilogram"@ro,
        "Кулон Квадратный Метр на Килограмм"@ru,
        "Coulomb Kvadratni Meter na Kilogram"@sl,
        "Coulomb Metrekare per Kilogram"@tr ;
    dcterms:description "product of the SI derived unit coulomb and the power of the SI base unit metre with the exponent 2 divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD912"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD912"^^xsd:anyURI ;
    qudt:symbol "C·m²/kg"^^xsd:string ;
    qudt:ucumCode "C.m2.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J53"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-M2-PER-V a qudt:Unit ;
    rdfs:label "Coulomb Square Metre per Volt"^^xsd:string,
        "Кулон Квадратен Метър на Волт"@bg,
        "Coulomb Čtvereční Metr na Volt"@cs,
        "Coulomb Quadratmeter pro Volt"@de,
        "Κουλόμπ Τετραγωνικό Μέτρο ανά Βολτ"@el,
        "Coulomb Square Metre per Volt"@en,
        "Coulomb Square Meter per Volt"@en-us,
        "Culombio Metro Cuadrado por Voltio"@es,
        "کولن متر مربع بر ولت"@fa,
        "Coulomb Mètre Carré par Volt"@fr,
        "Coulomb Metro Quadrato per Volt"@it,
        "Coulombium Metrum Quadratum per Voltium"@la,
        "Coulomb Meter Persegi per Volt"@ms,
        "Kulomb Metr Kwadratowy na Wolt"@pl,
        "Coulomb Metro Quadrado por Volt"@pt,
        "Coulomb Metru Pătrat pe Volt"@ro,
        "Кулон Квадратный Метр на Вольт"@ru,
        "Coulomb Kvadratni Meter na Volt"@sl,
        "Coulomb Metrekare per Volt"@tr,
        "库伦平方米每伏特"@zh ;
    dcterms:description "Coulomb Square Meter (C-m2-per-volt) is a unit in the category of Electric polarizability."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$C m^{2} v^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L0I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:Polarizability ;
    qudt:iec61360Code "0112/2///62720#UAB486"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB486"^^xsd:anyURI ;
    qudt:symbol "C·m²/V"^^xsd:string ;
    qudt:ucumCode "C.m2.V-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Coulomb per Cubic Centimetre"^^xsd:string,
        "Coulomb na Centimetr Krychlový"@cs,
        "Coulomb pro Kubikcentimeter"@de,
        "Coulomb per Cubic Centimetre"@en,
        "Coulomb per Cubic Centimeter"@en-us,
        "Culombio por Centimetro Cúbico"@es,
        "Coulomb par Centimètre Cube"@fr,
        "Coulomb per Centimetro Cubo"@it,
        "Coulomb per Centimeter Kubik"@ms,
        "Kulomb na Centimetr Sześcienny"@pl,
        "Coulomb pe Centimetru Cub"@ro,
        "Coulomb na Kubični Centimeter"@sl,
        "Coulomb per Centimetreküp"@tr ;
    dcterms:description "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAB120"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB120"^^xsd:anyURI ;
    qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 001-fold of the power of the SI base unit metre by exponent 3"^^xsd:string ;
    qudt:symbol "C/cm³"^^xsd:string ;
    qudt:ucumCode "C.cm-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A28"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808138> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-PER-KiloGM-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Coulomb per Kilogram Second"^^xsd:string,
        "Кулон на Килограм Секунда"@bg,
        "Coulomb na Kilogram Sekunda"@cs,
        "Coulomb pro Kilogramm Sekunde"@de,
        "Κουλόμπ ανά Χιλιόγραμμο Δευτερόλεπτο"@el,
        "Coulomb per Kilogram Second"@en,
        "Culombio por Kilogramo Segundo"@es,
        "Coulomb par Kilogramme Seconde"@fr,
        "Coulomb per Chilogrammo Secondo"@it,
        "Coulombium per Chiliogramma Secundum"@la,
        "Coulomb per Kilogram Saat"@ms,
        "Kulomb na Kilogram Sekunda"@pl,
        "Coulomb por Quilograma Segundo"@pt,
        "Coulomb pe Kilogram Secundă"@ro,
        "Кулон на Килограмм Секунда"@ru,
        "Coulomb na Kilogram Sekunda"@sl,
        "Coulomb per Kilogram Saniye"@tr ;
    dcterms:description "The SI unit of exposure rate"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$C/kg-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:ExposureRate ;
    qudt:iec61360Code "0112/2///62720#UAA132"^^xsd:string ;
    qudt:informativeReference "http://en.wikibooks.org/wiki/Basic_Physics_of_Nuclear_Medicine/Units_of_Radiation_Measurement"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA132"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "C/(kg·s)"^^xsd:string ;
    qudt:ucumCode "C.kg-1.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A31"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q99721917> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C-PER-MilliM3 a qudt:Unit ;
    rdfs:label "Coulomb per Cubic Millimetre"^^xsd:string,
        "Coulomb na Millimetr Krychlový"@cs,
        "Coulomb pro Kubikmillimeter"@de,
        "Coulomb per Cubic Millimetre"@en,
        "Coulomb per Cubic Millimeter"@en-us,
        "Culombio por Millimetro Cúbico"@es,
        "Coulomb par Millimètre Cube"@fr,
        "Coulomb per Millimetro Cubo"@it,
        "Coulomb per Millimeter Kubik"@ms,
        "Kulomb na Millimetr Sześcienny"@pl,
        "Coulomb pe Millimetru Cub"@ro,
        "Coulomb na Kubični Millimeter"@sl,
        "Coulomb per Millimetreküp"@tr ;
    dcterms:description "derived SI unit coulomb divided by the 0.000 000 001-fold of the power of the SI base unit metre by exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:MilliM ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAB119"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB119"^^xsd:anyURI ;
    qudt:plainTextDescription "derived SI unit coulomb divided by the 0.000 000 001-fold of the power of the SI base unit metre by exponent 3"^^xsd:string ;
    qudt:symbol "C/mm³"^^xsd:string ;
    qudt:ucumCode "C.mm-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A30"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808120> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_IT-PER-SEC-CentiM-K a qudt:Unit ;
    rdfs:label "International Table Calorie per Second Centimetre Kelvin"^^xsd:string,
        "International Table Calorie per Second Centimetre Kelvin"@en,
        "International Table Calorie per Second Centimeter Kelvin"@en-us ;
    dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 418.68 ;
    qudt:conversionMultiplierSN 4.1868e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB108"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB108"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "cal{IT}/(s·cm·K)"^^xsd:string ;
    qudt:ucumCode "cal_IT.s-1.cm-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_TH-PER-CentiM-SEC-DEG_C a qudt:Unit ;
    rdfs:label "Thermochemical Calorie per Centimetre Second Degree Celsius"^^xsd:string,
        "Thermochemical Calorie per Centimetre Second Degree Celsius"@en,
        "Thermochemical Calorie per Centimeter Second Degree Celsius"@en-us ;
    dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 418.4 ;
    qudt:conversionMultiplierSN 4.184e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_TH ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA365"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA365"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "cal/(cm·s·°C)"^^xsd:string ;
    qudt:ucumCode "cal_th.cm-1.s-1.Cel-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_TH-PER-CentiM3-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Thermochemical Calorie per Cubic Centimetre Kelvin"^^xsd:string,
        "Thermochemical Calorie per Cubic Centimetre Kelvin"@en,
        "Thermochemical Calorie per Cubic Centimeter Kelvin"@en-us ;
    dcterms:description "$\\textit{Thermochemical Calorie per Cubic Centimeter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $cal_th/(cm^{3} K)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 4184000.0 ;
    qudt:conversionMultiplierSN 4.184e+06 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$cal_th/(cm^{3} K)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:VolumetricHeatCapacity ;
    qudt:plainTextDescription "Thermochemical Calorie per Cubic Centimeter Kelvin is a unit for Volumetric Heat Capacity expressed as cal{th}/(cm³·K)."^^xsd:string ;
    qudt:symbol "cal/(cm³·K)"^^xsd:string ;
    qudt:ucumCode "cal_th.cm-3.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CAL_TH-PER-SEC-CentiM-K a qudt:Unit ;
    rdfs:label "Thermochemical Calorie per Second Centimetre Kelvin"^^xsd:string,
        "Thermochemical Calorie per Second Centimetre Kelvin"@en,
        "Thermochemical Calorie per Second Centimeter Kelvin"@en-us ;
    dcterms:description "unit of the thermal conductivity according to the Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 418.4 ;
    qudt:conversionMultiplierSN 4.184e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CAL_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB109"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB109"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the thermal conductivity according to the Imperial system of units"^^xsd:string ;
    qudt:symbol "cal/(s·cm·K)"^^xsd:string ;
    qudt:ucumCode "cal_th.s-1.cm-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CASES-PER-KiloINDIV-YR a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Cases per Thousand Individuals Year"^^xsd:string,
        "Cases per Thousand Individuals Year"@en ;
    dcterms:description "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year."^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CASES ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloINDIV ] ;
    qudt:hasQuantityKind qudtqk:MorbidityRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Incidence_(epidemiology)"^^xsd:anyURI ;
    qudt:plainTextDescription "The typical expression of morbidity rate, expressed as cases per 1000 individuals, per year."^^xsd:string ;
    qudt:symbol "Cases/1000 individuals/year"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BGN-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Bulgarian Lev per Kilowatt Hour"^^xsd:string,
        "Bulgarian Lev per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_BGN ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "лв./(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_BTC a qudt:DigitalCurrencyUnit,
        qudt:Unit ;
    rdfs:label "Bitcoin"^^xsd:string,
        "Bitcoin"@en ;
    qudt:blockchainNetwork "Bitcoin Mainnet"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "BTC"^^xsd:string ;
    qudt:currencyExponent 8 ;
    qudt:hasDTICode "4H95A29H86ZN"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol "₿"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "BTC"@en .

unit:CCY_CHF-PER-HA a qudt:Unit ;
    rdfs:label "Swiss Franc per Hectare"^^xsd:string,
        "Schweizer Franken Pro Hektare"@de,
        "Swiss Franc per Hectare"@en,
        "Francs Suisses Par Hectare"@fr,
        "Franchi Svizzeri per Ettaro"@it ;
    dcterms:description "The Swiss Francs per hectare (CHF/ha) is a unit for measuring cost per area."^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_CHF ] ;
    qudt:hasQuantityKind qudtqk:CostPerArea ;
    qudt:plainTextDescription "Unit for measuring cost per area"^^xsd:string ;
    qudt:symbol "CHF/ha"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CHF-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Swiss Franc per Kilowatt Hour"^^xsd:string,
        "Swiss Franc per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_CHF ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "CHF/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_CZK-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Czech Koruna per Kilowatt Hour"^^xsd:string,
        "Czech Koruna per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_CZK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "Kč/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_DKK-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Danish Krone per Kilowatt Hour"^^xsd:string,
        "Danish Krone per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_DKK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "kr/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_ETH a qudt:DigitalCurrencyUnit,
        qudt:Unit ;
    rdfs:label "Ether"^^xsd:string,
        "Ether"@en ;
    qudt:blockchainNetwork "Ethereum Mainnet"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "ETH"^^xsd:string ;
    qudt:currencyExponent 18 ;
    qudt:hasDTICode "SV0Q5A20YQ57"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    qudt:symbol "Ξ"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "ETH"@en .

unit:CCY_EUR-PER-KiloW a qudt:Unit ;
    rdfs:label "Euro per Kilowatt"^^xsd:string,
        "Euro pro Kilowatt"@de,
        "Euro per Kilowatt"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind qudtqk:CostPerPower ;
    qudt:plainTextDescription "Unit for measuring the hardware cost of a power generation unit relative to the generated power"^^xsd:string ;
    qudt:symbol "€/kW"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EUR-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Euro per Kilowatt Hour"^^xsd:string,
        "Euro per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "€/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EUR-PER-M2 a qudt:Unit ;
    rdfs:label "Euro per Square Metre"^^xsd:string,
        "Euro pro Quadratmeter"@de,
        "Euro per Square Metre"@en,
        "Euro per Square Meter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:CostPerArea ;
    qudt:plainTextDescription "Unit for expressing cost per square metre"^^xsd:string ;
    qudt:symbol "€/m²"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EUR-PER-W a qudt:Unit ;
    rdfs:label "Euro per Watt"^^xsd:string,
        "Euro pro Watt"@de,
        "Euro per Watt"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind qudtqk:CostPerPower ;
    qudt:plainTextDescription "Unit for measuring the hardware cost of a power generation unit relative to the generated power"^^xsd:string ;
    qudt:symbol "€/W"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EUR-PER-W-HR a qudt:Unit ;
    rdfs:label "Euro per Watt Hour"^^xsd:string,
        "Euro per Watt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "€/(W·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_EUR-PER-W-SEC a qudt:Unit ;
    rdfs:label "Euro per Watt Second"^^xsd:string,
        "Euro pro Watt Sekunde"@de,
        "Euro per Watt Second"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_EUR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "€/(W·s)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_GBP-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Pound Sterling per Kilowatt Hour"^^xsd:string,
        "Pound Sterling per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_GBP ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "£/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_HUF-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Forint per Kilowatt Hour"^^xsd:string,
        "Forint per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_HUF ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "Ft/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_NOK-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Norwegian Krone per Kilowatt Hour"^^xsd:string,
        "Norwegian Krone per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_NOK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "kr/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_PLN-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Zloty per Kilowatt Hour"^^xsd:string,
        "Zloty per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_PLN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "zł/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_RON-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Romanian New Leu per Kilowatt Hour"^^xsd:string,
        "Romanian New Leu per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_RON ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "L/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_SEK-PER-KiloW-HR a qudt:Unit ;
    rdfs:label "Swedish Krona per Kilowatt Hour"^^xsd:string,
        "Swedish Krona per Kilowatt Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CCY_SEK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind qudtqk:CostPerEnergy ;
    qudt:plainTextDescription "Unit for measuring the cost of electricity."^^xsd:string ;
    qudt:symbol "kr/(kW·h)"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CCY_USDT a qudt:DigitalCurrencyUnit,
        qudt:Unit ;
    rdfs:label "Tether USD"^^xsd:string,
        "Tether USD"@en ;
    qudt:blockchainNetwork "Ethereum Mainnet"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:currencyCode "USDT"^^xsd:string ;
    qudt:currencyExponent 6 ;
    qudt:hasDTICode "3TVN6M8L2K63"^^xsd:string ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Currency ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "USDT"@en .

unit:CD-PER-FT2 a qudt:Unit ;
    rdfs:label "Candela per Square Foot"^^xsd:string,
        "Candela per Square Foot"@en ;
    dcterms:description "base unit SI candela divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 10.7639104167097223083335055559 ;
    qudt:conversionMultiplierSN 1.076391e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CD ] ;
    qudt:hasQuantityKind qudtqk:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAB441"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB441"^^xsd:anyURI ;
    qudt:symbol "cd/ft²"^^xsd:string ;
    qudt:ucumCode "cd.[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CD-PER-KiloLM a qudt:Unit ;
    rdfs:label "Candela per Kilolumen"^^xsd:string,
        "Kandela na Kilolumen"@cs,
        "Candela pro Kilolumen"@de,
        "Candela per Kilolumen"@en,
        "Candela por Kilolumen"@es,
        "Candela par Kilolumen"@fr,
        "Candela per Chilolumen"@it,
        "Kandela per Kilolumen"@ms,
        "Kandela na Kilolumen"@pl,
        "Candelă pe Kilolumen"@ro,
        "Kandela na Kilolumen"@sl,
        "Candela per Kilolümen"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloLM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CD ] ;
    qudt:hasQuantityKind qudtqk:LuminousIntensityDistribution ;
    qudt:symbol "cd/klm"^^xsd:string ;
    qudt:ucumCode "cd.klm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CD-PER-LM a qudt:Unit ;
    rdfs:label "Candela per Lumen"^^xsd:string,
        "Кандела на Лумен"@bg,
        "Kandela na Lumen"@cs,
        "Candela pro Lumen"@de,
        "Καντέλα ανά Λούμεν"@el,
        "Candela per Lumen"@en,
        "Candela por Lumen"@es,
        "Candela par Lumen"@fr,
        "Candela per Lumen"@it,
        "Candela per Lumen"@la,
        "Kandela per Lumen"@ms,
        "Kandela na Lumen"@pl,
        "Candela por Lumen"@pt,
        "Candelă pe Lumen"@ro,
        "Кандела на Лумен"@ru,
        "Kandela na Lumen"@sl,
        "Candela per Lümen"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LM ] ;
    qudt:hasQuantityKind qudtqk:LuminousIntensityDistribution ;
    qudt:symbol "cd/lm"^^xsd:string ;
    qudt:ucumCode "cd.lm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CLO a qudt:Unit ;
    rdfs:label "Clo"^^xsd:string,
        "Clo"@en ;
    dcterms:description "A C.G.S System unit for $\\textit{Thermal Insulance}$ expressed as \"clo\"."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.155 ;
    qudt:conversionMultiplierSN 1.55e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    qudt:hasQuantityKind qudtqk:ThermalInsulance ;
    qudt:iec61360Code "0112/2///62720#UAA374"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA374"^^xsd:anyURI ;
    qudt:scalingOf unit:M2-K-PER-W ;
    qudt:symbol "clo"^^xsd:string ;
    qudt:uneceCommonCode "J83"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q10748296> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CORD a qudt:Unit ;
    rdfs:label "Cord"^^xsd:string,
        "Cord"@en ;
    dcterms:description "The cord is a unit of measure of dry volume used in Canada and the United States to measure firewood and pulpwood. A cord is the amount of wood that, when 'ranked and well stowed' (arranged so pieces are aligned, parallel, touching and compact), occupies a volume of 128 cubic feet (3.62 cubic metres). This corresponds to a well stacked woodpile 4 feet (122 cm) wide, 4 feet (122 cm) high, and 8 feet (244 cm) long; or any other arrangement of linear measurements that yields the same volume. The name cord probably comes from the use of a cord or string to measure it. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 3.62 ;
    qudt:conversionMultiplierSN 3.62e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Cord"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAB289"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Cord?oldid=490232340"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB289"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/cord> ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "cord"^^xsd:string ;
    qudt:ucumCode "[crd_us]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M68"^^xsd:string,
        "WCD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q920297> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:C_Stat-PER-MOL a qudt:Unit ;
    rdfs:label "Statcoulomb per Mole"^^xsd:string,
        "Statcoulomb per Mole"@en ;
    dcterms:description "\"Statcoulomb per Mole\" is a unit of measure for the electical charge associated with one mole of a substance. The mole is a unit of measurement used in chemistry to express amounts of a chemical substance, defined as an amount of a substance that contains as many elementary entities (e.g., atoms, molecules, ions, electrons) as there are atoms in 12 grams of pure carbon-12 (12C), the isotope of carbon with atomic weight 12."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00000000033356409519815204957557671447492 ;
    qudt:conversionMultiplierSN 3.335641e-10 ;
    qudt:expression "$statC/mol$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E1L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:C_Stat ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargePerAmountOfSubstance ;
    qudt:symbol "statC/mol"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiL a qudt:Unit ;
    rdfs:label "Centilitre"^^xsd:string,
        "Centilitre"@en,
        "Centiliter"@en-us ;
    dcterms:description "0.01-fold of the unit litre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:LiquidVolume ;
    qudt:iec61360Code "0112/2///62720#UAA373"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA373"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the unit litre"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Centi> ;
    qudt:scalingOf unit:L ;
    qudt:symbol "cL"^^xsd:string ;
    qudt:ucumCode "cL"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "CLT"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1815100> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM-PER-BAR a qudt:Unit ;
    rdfs:label "Centimetre per Bar"^^xsd:string,
        "Centimetre per Bar"@en,
        "Centimeter per Bar"@en-us ;
    dcterms:description "0.01-fold of the SI base unit metre divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA377"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA377"^^xsd:anyURI ;
    qudt:symbol "cm/bar"^^xsd:string ;
    qudt:ucumCode "cm.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G04"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM-PER-K a qudt:Unit ;
    rdfs:label "Centimetre per Kelvin"^^xsd:string,
        "Centimetr na Kelvin"@cs,
        "Centimeter pro Kelvin"@de,
        "Centimetre per Kelvin"@en,
        "Centimeter per Kelvin"@en-us,
        "Centimetro por Kelvin"@es,
        "Centimètre par Kelvin"@fr,
        "Centimetro per Kelvin"@it,
        "Centimeter per Kelvin"@ms,
        "Centimetr na Kelwin"@pl,
        "Centimetru pe Kelvin"@ro,
        "Centimeter na Kelvin"@sl,
        "Centimetre per Kelvin"@tr ;
    dcterms:description "0.01-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA376"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA376"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the SI base unit metre divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "cm/K"^^xsd:string ;
    qudt:ucumCode "cm.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Centimetre per Second Bar"^^xsd:string,
        "Centimetre per Second Bar"@en,
        "Centimeter per Second Bar"@en-us ;
    dcterms:description "0.01-fold of the SI base unit metre divided by the product of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA381"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA381"^^xsd:anyURI ;
    qudt:symbol "cm/(s·bar)"^^xsd:string ;
    qudt:ucumCode "cm.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM-PER-SEC-K a qudt:Unit ;
    rdfs:label "Centimetre per Second Kelvin"^^xsd:string,
        "Centimetr na Sekunda Kelvin"@cs,
        "Centimeter pro Sekunde Kelvin"@de,
        "Centimetre per Second Kelvin"@en,
        "Centimeter per Second Kelvin"@en-us,
        "Centimetro por Segundo Kelvin"@es,
        "Centimètre par Seconde Kelvin"@fr,
        "Centimetro per Secondo Kelvin"@it,
        "Centimeter per Saat Kelvin"@ms,
        "Centimetr na Sekunda Kelwin"@pl,
        "Centimetru pe Secundă Kelvin"@ro,
        "Centimeter na Sekunda Kelvin"@sl,
        "Centimetre per Saniye Kelvin"@tr ;
    dcterms:description "0.01-fold of the SI base unit metre divided by the product of the SI base unit second and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA380"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA380"^^xsd:anyURI ;
    qudt:symbol "cm/(s·K)"^^xsd:string ;
    qudt:ucumCode "cm.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM-SEC-DEG_C a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Centimetre Second Degree Celsius"^^xsd:string,
        "Centimetr Sekunda Stupně Celsia"@cs,
        "Centimeter Sekunde Grad Celsius"@de,
        "Centimetre Second Degree Celsius"@en,
        "Centimeter Second Degree Celsius"@en-us,
        "Centimetro Segundo Grado Celsius"@es,
        "Centimètre Seconde Degré Celsius"@fr,
        "Centimetro Secondo Grado Celsius"@it,
        "Centimeter Saat Darjah Celsius"@ms,
        "Centimetr Sekunda Stopień Celsjusza"@pl,
        "Centimetru Secundă Grad Celsius"@ro,
        "Centimeter Sekunda Stopinja Celzija"@sl,
        "Centimetre Saniye Celsius"@tr ;
    dcterms:description """$\\textit{Centimeter Second Degree Celsius}$ is a C.G.S System unit for 'Length Temperature Time' expressed as $cm-s-degC$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:expression "$cm-s-degC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:LengthTemperatureTime ;
    qudt:symbol "cm·s·°C"^^xsd:string ;
    qudt:ucumCode "cm.s.Cel"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-MIN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Centimetre Minute"^^xsd:string,
        "Square Centimetre Minute"@en,
        "Square Centimeter Minute"@en-us ;
    dcterms:description "\"Square centimeter minute\" is a unit for  'Area Time' expressed as $cm^{2} . m$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.006 ;
    qudt:conversionMultiplierSN 6e-03 ;
    qudt:expression "$cm^{2}m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:AreaTime ;
    qudt:symbol "cm²·min"^^xsd:string ;
    qudt:ucumCode "cm2.min"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Square Centimetre per Cubic Centimetre"^^xsd:string,
        "Čtvereční Centimetr na Centimetr Krychlový"@cs,
        "Quadratcentimeter pro Kubikcentimeter"@de,
        "Square Centimetre per Cubic Centimetre"@en,
        "Square Centimeter per Cubic Centimeter"@en-us,
        "Centimetro Cuadrado por Centimetro Cúbico"@es,
        "Centimètre Carré par Centimètre Cube"@fr,
        "Centimetro Quadrato per Centimetro Cubo"@it,
        "Centimeter Persegi per Centimeter Kubik"@ms,
        "Centimetr Kwadratowy na Centimetr Sześcienny"@pl,
        "Centimetru Pătrat pe Centimetru Cub"@ro,
        "Kvadratni Centimeter na Kubični Centimeter"@sl,
        "Centimetrekare per Centimetreküp"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "cm²/cm³"^^xsd:string ;
    qudt:ucumCode "cm2.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-PER-SR-ERG a qudt:Unit ;
    rdfs:label "Square Centimetre per Steradian Erg"^^xsd:string,
        "Square Centimetre per Steradian Erg"@en,
        "Square Centimeter per Steradian Erg"@en-us ;
    dcterms:description "[CGS] unit of the spectral angle profile"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:ERG ] ;
    qudt:hasQuantityKind qudtqk:SpectralAngularCrossSection ;
    qudt:iec61360Code "0112/2///62720#UAB169"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB169"^^xsd:anyURI ;
    qudt:symbol "cm²/(sr·erg)"^^xsd:string ;
    qudt:ucumCode "cm2.sr-1.erg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM2-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Centimetre Second"^^xsd:string,
        "Čtvereční Centimetr Sekunda"@cs,
        "Quadratcentimeter Sekunde"@de,
        "Square Centimetre Second"@en,
        "Square Centimeter Second"@en-us,
        "Centimetro Cuadrado Segundo"@es,
        "Centimètre Carré Seconde"@fr,
        "Centimetro Quadrato Secondo"@it,
        "Centimeter Persegi Saat"@ms,
        "Centimetr Kwadratowy Sekunda"@pl,
        "Centimetru Pătrat Secundă"@ro,
        "Kvadratni Centimeter Sekunda"@sl,
        "Centimetrekare Saniye"@tr ;
    dcterms:description "\"Square Centimeter Second\" is a C.G.S System unit for  'Area Time' expressed as $cm^2 . s$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:expression "$cm^2 . s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:AreaTime ;
    qudt:symbol "cm²·s"^^xsd:string ;
    qudt:ucumCode "cm2.s"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-BAR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Bar"^^xsd:string,
        "Cubic Centimetre per Bar"@en,
        "Cubic Centimeter per Bar"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA387"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA387"^^xsd:anyURI ;
    qudt:symbol "cm³/bar"^^xsd:string ;
    qudt:ucumCode "cm3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Cubic Centimetre"^^xsd:string,
        "Centimetr Krychlový na Centimetr Krychlový"@cs,
        "Kubikcentimeter pro Kubikcentimeter"@de,
        "Cubic Centimetre per Cubic Centimetre"@en,
        "Cubic Centimeter per Cubic Centimeter"@en-us,
        "Centimetro Cúbico por Centimetro Cúbico"@es,
        "Centimètre Cube par Centimètre Cube"@fr,
        "Centimetro Cubo per Centimetro Cubo"@it,
        "Centimeter Kubik per Centimeter Kubik"@ms,
        "Centimetr Sześcienny na Centimetr Sześcienny"@pl,
        "Centimetru Cub pe Centimetru Cub"@ro,
        "Kubični Centimeter na Kubični Centimeter"@sl,
        "Centimetreküp per Centimetreküp"@tr ;
    dcterms:description "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:plainTextDescription "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "cm³/cm³"^^xsd:string ;
    qudt:ucumCode "cm3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Day Bar"^^xsd:string,
        "Cubic Centimetre per Day Bar"@en,
        "Cubic Centimeter per Day Bar"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-16 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA390"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA390"^^xsd:anyURI ;
    qudt:symbol "cm³/(d·bar)"^^xsd:string ;
    qudt:ucumCode "cm3.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G78"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-DAY-K a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Day Kelvin"^^xsd:string,
        "Cubic Centimetre per Day Kelvin"@en,
        "Cubic Centimeter per Day Kelvin"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA389"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA389"^^xsd:anyURI ;
    qudt:symbol "cm³/(d·K)"^^xsd:string ;
    qudt:ucumCode "cm3.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G61"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Hour Bar"^^xsd:string,
        "Cubic Centimetre per Hour Bar"@en,
        "Cubic Centimeter per Hour Bar"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA393"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA393"^^xsd:anyURI ;
    qudt:symbol "cm³/(h·bar)"^^xsd:string ;
    qudt:ucumCode "cm3.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-HR-K a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Hour Kelvin"^^xsd:string,
        "Cubic Centimetre per Hour Kelvin"@en,
        "Cubic Centimeter per Hour Kelvin"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA392"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA392"^^xsd:anyURI ;
    qudt:symbol "cm³/(h·K)"^^xsd:string ;
    qudt:ucumCode "cm3.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-K a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Kelvin"^^xsd:string,
        "Centimetr Krychlový na Kelvin"@cs,
        "Kubikcentimeter pro Kelvin"@de,
        "Cubic Centimetre per Kelvin"@en,
        "Cubic Centimeter per Kelvin"@en-us,
        "Centimetro Cúbico por Kelvin"@es,
        "Centimètre Cube par Kelvin"@fr,
        "Centimetro Cubo per Kelvin"@it,
        "Centimeter Kubik per Kelvin"@ms,
        "Centimetr Sześcienny na Kelwin"@pl,
        "Centimetru Cub pe Kelvin"@ro,
        "Kubični Centimeter na Kelvin"@sl,
        "Centimetreküp per Kelvin"@tr ;
    dcterms:description "0,000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA386"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA386"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "cm³/K"^^xsd:string ;
    qudt:ucumCode "cm3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-M3 a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Cubic Metre"^^xsd:string,
        "Centimetr Krychlový na Metr Krychlový"@cs,
        "Kubikcentimeter pro Kubikmeter"@de,
        "Cubic Centimetre per Cubic Metre"@en,
        "Cubic Centimeter per Cubic Meter"@en-us,
        "Centimetro Cúbico por Metro Cúbico"@es,
        "Centimètre Cube par Mètre Cube"@fr,
        "Centimetro Cubo per Metro Cubo"@it,
        "Centimeter Kubik per Meter Kubik"@ms,
        "Centimetr Sześcienny na Metr Sześcienny"@pl,
        "Centimetru Cub pe Metru Cub"@ro,
        "Kubični Centimeter na Kubični Meter"@sl,
        "Centimetreküp per Metreküp"@tr ;
    dcterms:description "volume ratio consisting of the 0.000 001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA394"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA394"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio consisting of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "cm³/m³"^^xsd:string ;
    qudt:ucumCode "cm3.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J87"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106998070> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Minute Bar"^^xsd:string,
        "Cubic Centimetre per Minute Bar"@en,
        "Cubic Centimeter per Minute Bar"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA397"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA397"^^xsd:anyURI ;
    qudt:symbol "cm³/(min·bar)"^^xsd:string ;
    qudt:ucumCode "cm3.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-MIN-K a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Minute Kelvin"^^xsd:string,
        "Cubic Centimetre per Minute Kelvin"@en,
        "Cubic Centimeter per Minute Kelvin"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA396"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA396"^^xsd:anyURI ;
    qudt:symbol "cm³/(min·K)"^^xsd:string ;
    qudt:ucumCode "cm3.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G63"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Second Bar"^^xsd:string,
        "Cubic Centimetre per Second Bar"@en,
        "Cubic Centimeter per Second Bar"@en-us ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA401"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA401"^^xsd:anyURI ;
    qudt:symbol "cm³/(s·bar)"^^xsd:string ;
    qudt:ucumCode "cm3.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM3-PER-SEC-K a qudt:Unit ;
    rdfs:label "Cubic Centimetre per Second Kelvin"^^xsd:string,
        "Centimetr Krychlový na Sekunda Kelvin"@cs,
        "Kubikcentimeter pro Sekunde Kelvin"@de,
        "Cubic Centimetre per Second Kelvin"@en,
        "Cubic Centimeter per Second Kelvin"@en-us,
        "Centimetro Cúbico por Segundo Kelvin"@es,
        "Centimètre Cube par Seconde Kelvin"@fr,
        "Centimetro Cubo per Secondo Kelvin"@it,
        "Centimeter Kubik per Saat Kelvin"@ms,
        "Centimetr Sześcienny na Sekunda Kelwin"@pl,
        "Centimetru Cub pe Secundă Kelvin"@ro,
        "Kubični Centimeter na Sekunda Kelvin"@sl,
        "Centimetreküp per Saniye Kelvin"@tr ;
    dcterms:description "0.000001-fold of the power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA400"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA400"^^xsd:anyURI ;
    qudt:symbol "cm³/(s·K)"^^xsd:string ;
    qudt:ucumCode "cm3.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiM6 a qudt:Unit ;
    rdfs:label "Sextic Centimetre"^^xsd:string,
        "Centimeter hoch sechs"@de,
        "Sextic Centimetre"@en,
        "Sextic Centimeter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L6I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 6 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:WarpingConstant ;
    qudt:plainTextDescription "Scaling of hexic meter by 10^-12"^^xsd:string ;
    qudt:symbol "cm⁶"^^xsd:string ;
    qudt:ucumCode "cm6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiPOISE-PER-K a qudt:Unit ;
    rdfs:label "Centipoise per Kelvin"^^xsd:string,
        "Centipoise per Kelvin"@en ;
    dcterms:description "[CGS] 0.01-fold of the CGS unit poise for dynamic viscosity divided by the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiPOISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA357"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA357"^^xsd:anyURI ;
    qudt:symbol "cP/K"^^xsd:string ;
    qudt:ucumCode "cP.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:CentiST a qudt:Unit ;
    rdfs:label "Centistokes"^^xsd:string,
        "Centistokes"@en ;
    dcterms:description """$\\textit{Centistokes}$ is a C.G.S System unit for  'Kinematic Viscosity' expressed as $cSt$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:KinematicViscosity ;
    qudt:iec61360Code "0112/2///62720#UAA359"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA359"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Centi> ;
    qudt:scalingOf unit:ST ;
    qudt:symbol "cSt"^^xsd:string ;
    qudt:ucumCode "cSt"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4C"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q26162530> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DAY-PER-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Day per Number"^^xsd:string,
        "Day per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 86400.0 ;
    qudt:conversionMultiplierSN 8.64e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NUM ] ;
    qudt:hasQuantityKind qudtqk:TimePerCount ;
    qudt:symbol "d/#"^^xsd:string ;
    qudt:ucumCode "d.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEATHS-PER-KiloINDIV-YR a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Deaths per Thousand Individuals Year"^^xsd:string,
        "Deaths per Thousand Individuals Year"@en ;
    dcterms:description "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year."^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloINDIV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEATHS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind qudtqk:MortalityRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ;
    qudt:plainTextDescription "The typical expression of mortality rate, expressed as deaths per 1000 individuals, per year."^^xsd:string ;
    qudt:symbol "deaths/1000 individuals/a"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEATHS-PER-MegaINDIV-YR a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Deaths per Million Individuals Year"^^xsd:string,
        "Deaths per Million Individuals Year"@en ;
    dcterms:description "The expression of mortality rate, expressed as deaths per 1,000,000 individuals, per year."^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEATHS ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MegaINDIV ] ;
    qudt:hasQuantityKind qudtqk:MortalityRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Mortality_rate"^^xsd:anyURI ;
    qudt:plainTextDescription "The expression of mortality rate, expressed as deaths per Million individuals, per year."^^xsd:string ;
    qudt:symbol "deaths/million individuals/a"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG-PER-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Degree per Square Second"^^xsd:string,
        "Degree per Square Second"@en ;
    dcterms:description "$\\textit{Degree per Square Second}$ is an Imperial unit for $\\textit{Angular Acceleration}$ expressed as $deg/s^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.0174532925 ;
    qudt:conversionMultiplierSN 1.745329e-02 ;
    qudt:expression "$deg/s^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration ;
    qudt:iec61360Code "0112/2///62720#UAB407"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB407"^^xsd:anyURI ;
    qudt:symbol "°/s²"^^xsd:string ;
    qudt:ucumCode "deg.s-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M45"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106611437> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG2 a qudt:Unit ;
    rdfs:label "Square Degree"^^xsd:string,
        "Square Degree"@en ;
    dcterms:description "A square degree is a non-SI unit measure of solid angle. It is denoted in various ways, including deg, sq. deg. and $\\circ^2$. Just as degrees are used to measure parts of a circle, square degrees are used to measure parts of a sphere. Analogous to one degree being equal to $\\pi /180 radians$, a square degree is equal to ($\\pi /180)$ or about 1/3283 steradian. The number of square degrees in a whole sphere is or approximately 41 253 deg. This is the total area of the 88 constellations in the list of constellations by area. For example, observed from the surface of the Earth, the Moon has a diameter of approximately $0.5^\\circ$, so it covers a solid angle of approximately 0.196 deg, which is $4.8 \\times 10$ of the total sky sphere."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00030461741909055625 ;
    qudt:conversionMultiplierSN 3.046174e-04 ;
    qudt:expression "$deg^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:DEG ] ;
    qudt:hasQuantityKind qudtqk:SolidAngle ;
    qudt:symbol "°²"^^xsd:string ;
    qudt:ucumCode "deg2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q254532> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEGREE_API a qudt:Unit ;
    rdfs:label "Degree Api"^^xsd:string,
        "Degree Api"@en ;
    dcterms:description "unit for the determination of the density of petroleum at 60 degrees F (15.56 degrees C)"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:APIGravity ;
    qudt:iec61360Code "0112/2///62720#UAA027"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA027"^^xsd:anyURI ;
    qudt:plainTextDescription "unit for the determination of the density of petroleum at 60 degrees F (15.56 degrees C)"^^xsd:string ;
    qudt:symbol "°API"^^xsd:string ;
    qudt:uneceCommonCode "J13"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q108730826> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-CentiM a qudt:Unit ;
    rdfs:label "Degree Celsius Centimetre"^^xsd:string,
        "Stupně Celsia Centimetr"@cs,
        "Grad Celsius Centimeter"@de,
        "Degree Celsius Centimetre"@en,
        "Degree Celsius Centimeter"@en-us,
        "Grado Celsius Centimetro"@es,
        "Degré Celsius Centimètre"@fr,
        "Grado Celsius Centimetro"@it,
        "Darjah Celsius Centimeter"@ms,
        "Stopień Celsjusza Centimetr"@pl,
        "Grad Celsius Centimetru"@ro,
        "Stopinja Celzija Centimeter"@sl,
        "Celsius Centimetre"@tr ;
    dcterms:description "$\\textit{Degree Celsius Centimeter}$ is a C.G.S System unit for 'Length Temperature' expressed as $cm-degC$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:expression "$cm-degC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:LengthTemperature ;
    qudt:symbol "°C·cm"^^xsd:string ;
    qudt:ucumCode "Cel.cm"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-KiloGM-PER-M2 a qudt:Unit ;
    rdfs:label "Degree Celsius Kilogram per Square Metre"^^xsd:string,
        "Градус Целзий Килограм на Квадратен Метър"@bg,
        "Stupně Celsia Kilogram na Čtvereční Metr"@cs,
        "Grad Celsius Kilogramm pro Quadratmeter"@de,
        "Βαθμός Κελσίου Χιλιόγραμμο ανά Τετραγωνικό Μέτρο"@el,
        "Degree Celsius Kilogram per Square Metre"@en,
        "Degree Celsius Kilogram per Square Meter"@en-us,
        "Grado Celsius Kilogramo por Metro Cuadrado"@es,
        "Degré Celsius Kilogramme par Mètre Carré"@fr,
        "Grado Celsius Chilogrammo per Metro Quadrato"@it,
        "Gradus Celsii Chiliogramma per Metrum Quadratum"@la,
        "Darjah Celsius Kilogram per Meter Persegi"@ms,
        "Stopień Celsjusza Kilogram na Metr Kwadratowy"@pl,
        "Grau Celsius Quilograma por Metro Quadrado"@pt,
        "Grad Celsius Kilogram pe Metru Pătrat"@ro,
        "Градус Цельсия Килограмм на Квадратный Метр"@ru,
        "Stopinja Celzija Kilogram na Kvadratni Meter"@sl,
        "Celsius Kilogram per Metrekare"@tr ;
    dcterms:description "Derived unit for the product of the temperature in degrees Celsius and the mass density of a medium, integrated over vertical depth or height in metres."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "°C·kg/m²"^^xsd:string ;
    qudt:ucumCode "Cel.kg.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-K a qudt:Unit ;
    rdfs:label "Degree Celsius per Kelvin"^^xsd:string,
        "Градус Целзий на Келвин"@bg,
        "Stupně Celsia na Kelvin"@cs,
        "Grad Celsius pro Kelvin"@de,
        "Βαθμός Κελσίου ανά Κέλβιν"@el,
        "Degree Celsius per Kelvin"@en,
        "Grado Celsius por Kelvin"@es,
        "Degré Celsius par Kelvin"@fr,
        "Grado Celsius per Kelvin"@it,
        "Gradus Celsii per Kelvin"@la,
        "Darjah Celsius per Kelvin"@ms,
        "Stopień Celsjusza na Kelwin"@pl,
        "Grau Celsius por Kelvin"@pt,
        "Grad Celsius pe Kelvin"@ro,
        "Градус Цельсия на Кельвин"@ru,
        "Stopinja Celzija na Kelvin"@sl,
        "Celsius per Kelvin"@tr ;
    dcterms:description """
  The unit $\\textit{Degree Celsius Per Kelvin}$ is Degree Celsius divided by the SI base unit kelvin.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:TemperatureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA034"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA034"^^xsd:anyURI ;
    qudt:plainTextDescription "unit with the name Degree Celsius divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "°C/K"^^xsd:string ;
    qudt:ucumCode "Cel.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C-PER-M a qudt:Unit ;
    rdfs:label "Degree Celsius per Metre"^^xsd:string,
        "Градус Целзий на Метър"@bg,
        "Stupně Celsia na Metr"@cs,
        "Grad Celsius pro Meter"@de,
        "Βαθμός Κελσίου ανά Μέτρο"@el,
        "Degree Celsius per Metre"@en,
        "Degree Celsius per Meter"@en-us,
        "Grado Celsius por Metro"@es,
        "Degré Celsius par Mètre"@fr,
        "Grado Celsius per Metro"@it,
        "Gradus Celsii per Metrum"@la,
        "Darjah Celsius per Meter"@ms,
        "Stopień Celsjusza na Metr"@pl,
        "Grau Celsius por Metro"@pt,
        "Grad Celsius pe Metru"@ro,
        "Градус Цельсия на Метр"@ru,
        "Stopinja Celzija na Meter"@sl,
        "Celsius per Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:TemperatureGradient ;
    qudt:symbol "°C/m"^^xsd:string ;
    qudt:ucumCode "Cel.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C2 a qudt:Unit ;
    rdfs:label "Square Degree Celsius"^^xsd:string,
        "Квадратен Градус Целзий"@bg,
        "Čtvereční Stupně Celsia"@cs,
        "Quadratgrad celsius"@de,
        "Τετραγωνικό Βαθμός Κελσίου"@el,
        "Square Degree Celsius"@en,
        "Grado Celsius Cuadrado"@es,
        "Degré Celsius Carré"@fr,
        "Grado Celsius Quadrato"@it,
        "Gradus Celsii Quadratum"@la,
        "Darjah Celsius Persegi"@ms,
        "Stopień Celsjusza Kwadratowy"@pl,
        "Grau Celsius Quadrado"@pt,
        "Grad Celsius Pătrat"@ro,
        "Квадратный Градус Цельсия"@ru,
        "Kvadratni Stopinja Celzija"@sl,
        "Celsiuskare"@tr ;
    dcterms:description "Degrees Celsius squared."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H2T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:TemperatureVariance ;
    qudt:symbol "°C²"^^xsd:string ;
    qudt:ucumCode "Cel2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C2-PER-SEC a qudt:Unit ;
    rdfs:label "Square Degree Celsius per Second"^^xsd:string,
        "Квадратен Градус Целзий на Секунда"@bg,
        "Čtvereční Stupně Celsia na Sekunda"@cs,
        "Quadratgrad celsius pro Sekunde"@de,
        "Τετραγωνικό Βαθμός Κελσίου ανά Δευτερόλεπτο"@el,
        "Square Degree Celsius per Second"@en,
        "Grado Celsius Cuadrado por Segundo"@es,
        "Degré Celsius Carré par Seconde"@fr,
        "Grado Celsius Quadrato per Secondo"@it,
        "Gradus Celsii Quadratum per Secundum"@la,
        "Darjah Celsius Persegi per Saat"@ms,
        "Stopień Celsjusza Kwadratowy na Sekunda"@pl,
        "Grau Celsius Quadrado por Segundo"@pt,
        "Grad Celsius Pătrat pe Secundă"@ro,
        "Квадратный Градус Цельсия на Секунда"@ru,
        "Kvadratni Stopinja Celzija na Sekunda"@sl,
        "Celsiuskare per Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H2T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "°C²/s"^^xsd:string ;
    qudt:ucumCode "Cel2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_C_GROWING_CEREAL-DAY a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Degree Celsius Growing Cereal Day"^^xsd:string,
        "Degree Celsius Growing Cereal Day"@en ;
    dcterms:description "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^rdf:HTML ;
    qudt:conversionMultiplier 86400.0 ;
    qudt:conversionMultiplierSN 8.64e+04 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C_GROWING_CEREAL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:GrowingDegreeDay ;
    qudt:plainTextDescription "The sum of excess temperature over 5.5°C, where the temperature is the mean of the minimum and maximum atmospheric temperature in a day. This measure is appropriate for most cereal crops."^^xsd:string ;
    qudt:symbol "GDD"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-PER-BTU_IT a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour per British Thermal Unit (international Definition)"^^xsd:string,
        "Degree Fahrenheit Hour per British Thermal Unit (international Definition)"@en ;
    dcterms:description "$\\textit{Degree Fahrenheit Hour per BTU}$ is an Imperial unit for 'Thermal Resistance' expressed as $degF-h/Btu$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.895634240626634400025570088951221 ;
    qudt:conversionMultiplierSN 1.895634e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$degF-h/Btu$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:ThermalResistance ;
    qudt:symbol "°F·h/Btu{IT}"^^xsd:string ;
    qudt:ucumCode "[degF].h.[Btu_IT]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-HR-PER-BTU_TH a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Hour per British Thermal Unit (thermochemical Definition)"^^xsd:string,
        "Degree Fahrenheit Hour per British Thermal Unit (thermochemical Definition)"@en ;
    dcterms:description """The unit $\\textit{Degree Fahrenheit hour per British thermal unit (thermochemical)}$ is a non SI-conform unit of the thermal resistance according to the Imperial system of units.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 1.896902829486604638680773053478947 ;
    qudt:conversionMultiplierSN 1.896903e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:ThermalResistance ;
    qudt:iec61360Code "0112/2///62720#UAB249"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB249"^^xsd:anyURI ;
    qudt:symbol "°F·h/Btu{th}"^^xsd:string ;
    qudt:ucumCode "[degF].h.[Btu_th]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-BAR a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Bar"^^xsd:string,
        "Degree Fahrenheit per Bar"@en ;
    dcterms:description """$\\textit{Degree Fahrenheit per bar}$ is the traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the unit bar.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.000005555555555555555555555555555555556 ;
    qudt:conversionMultiplierSN 5.555556e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA042"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA042"^^xsd:anyURI ;
    qudt:symbol "°F/bar"^^xsd:string ;
    qudt:ucumCode "[degF].bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J21"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-K a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Kelvin"^^xsd:string,
        "Degree Fahrenheit per Kelvin"@en ;
    dcterms:description "traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the SI base unit Kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.5555555555555555555555555555555556 ;
    qudt:conversionMultiplierSN 5.555556e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:TemperatureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA041"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA041"^^xsd:anyURI ;
    qudt:plainTextDescription "traditional unit degree Fahrenheit for temperature according to the Anglo-American system of units divided by the SI base unit Kelvin"^^xsd:string ;
    qudt:symbol "°F/K"^^xsd:string ;
    qudt:ucumCode "[degF].K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J20"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-PER-SEC2 a qudt:Unit ;
    rdfs:label "Degree Fahrenheit per Square Second"^^xsd:string,
        "Degree Fahrenheit per Square Second"@en ;
    dcterms:description """
  The unit $\\textit{Degree Fahrenheit per Square Second}$ is a C.G.S System unit for expressing the acceleration
   of a temperature expressed as $degF / s^2$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.5555555555555555555555555555555556 ;
    qudt:conversionMultiplierSN 5.555556e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$degF / s^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:TemperaturePerSquareTime ;
    qudt:plainTextDescription "'Degree Fahrenheit per Square Second' is a unit for expressing the acceleration of a temperature expressed as 'degF /s2'."^^xsd:string ;
    qudt:symbol "°F/s²"^^xsd:string ;
    qudt:ucumCode "[degF].s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-SEC-PER-BTU_IT a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Second per British Thermal Unit (international Definition)"^^xsd:string,
        "Degree Fahrenheit Second per British Thermal Unit (international Definition)"@en ;
    dcterms:description """
  The unit $\\textit{Degree Fahrenheit Second per British thermal unit (international table)}$ is a non SI-conform unit
   of the thermal resistance according to the Imperial system of units.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0005265650668407317777848805802642282 ;
    qudt:conversionMultiplierSN 5.265651e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:ThermalResistance ;
    qudt:iec61360Code "0112/2///62720#UAB250"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB250"^^xsd:anyURI ;
    qudt:symbol "°F·s/Btu{IT}"^^xsd:string ;
    qudt:ucumCode "[degF].s.[Btu_IT]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DEG_F-SEC-PER-BTU_TH a qudt:Unit ;
    rdfs:label "Degree Fahrenheit Second per British Thermal Unit (thermochemical Definition)"^^xsd:string,
        "Degree Fahrenheit Second per British Thermal Unit (thermochemical Definition)"@en ;
    dcterms:description """
  The unit $\\textit{Degree Fahrenheit Second per British thermal unit (thermochemical)}$ is a non SI-conform unit
   of the thermal resistance according to the Imperial system of units.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0005269174526351679551891036259663741 ;
    qudt:conversionMultiplierSN 5.269175e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_TH ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:ThermalResistance ;
    qudt:iec61360Code "0112/2///62720#UAB251"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB251"^^xsd:anyURI ;
    qudt:symbol "°F·s/Btu{th}"^^xsd:string ;
    qudt:ucumCode "[degF].s.[Btu_th]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DIOPTER a qudt:Unit ;
    rdfs:label "Diopter"^^xsd:string,
        "Diopter"@en ;
    dcterms:description """
  The unit $\\textit{Dioptre}$, or $\\textit{Diopter}$, is a unit of measurement for the optical power of a lens or curved mirror,
   which is equal to the reciprocal of the focal length measured in metres (that is, $1/metre$). 
  For example, a $3 \\; dioptre$ lens brings parallel rays of light to focus at $1/3\\,metre$. 
  The same unit is also sometimes used for other reciprocals of distance, particularly radii of curvature
   and the vergence of optical beams. 
  Though the diopter is based on the SI-metric system it has not been included in the standard so that there is
   no international name or abbreviation for this unit of measurement within the international system of units
    this unit for optical power would need to be specified explicitly as the inverse metre.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Dioptre"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:Curvature ;
    qudt:iec61360Code "0112/2///62720#UAB371"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Dioptre?oldid=492506920"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB371"^^xsd:anyURI ;
    qudt:scalingOf unit:PER-M ;
    qudt:symbol "D"^^xsd:string ;
    qudt:ucumCode "[diop]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q25"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q193933> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-SEC-PER-CentiM a qudt:Unit ;
    rdfs:label "Dyne Second per Centimetre"^^xsd:string,
        "Dyne Second per Centimetre"@en,
        "Dyne Second per Centimeter"@en-us ;
    dcterms:description "CGS unit of the mechanical impedance"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB144"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB144"^^xsd:anyURI ;
    qudt:plainTextDescription "CGS unit of the mechanical impedance"^^xsd:string ;
    qudt:symbol "dyn·s/cm"^^xsd:string ;
    qudt:ucumCode "dyn.s.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DYN-SEC-PER-CentiM5 a qudt:Unit ;
    rdfs:label "Dyne Second per Quintic Centimetre"^^xsd:string,
        "Dyne Second per Quintic Centimetre"@en,
        "Dyne Second per Quintic Centimeter"@en-us ;
    dcterms:description "[CGS] unit of the acoustic impedance (volume flow rate-related pressure)"^^xsd:string ;
    qudt:conversionMultiplier 100000.0 ;
    qudt:conversionMultiplierSN 1e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DYN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -5 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:PressureInRelationToVolumeFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB045"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB045"^^xsd:anyURI ;
    qudt:symbol "dyn·s/cm⁵"^^xsd:string ;
    qudt:ucumCode "dyn.s.cm-5"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB-MilliW a qudt:Unit ;
    rdfs:label "Decibel Milliwatt"^^xsd:string,
        "Decibel Milliwatt"@en ;
    dcterms:description "unit of level used to indicate that a power ratio is expressed in decibel (dB) with reference to one milliwatt (mW)"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliW ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD891"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD891"^^xsd:anyURI ;
    qudt:symbol "dB·mW"^^xsd:string ;
    qudt:ucumCode "dB.mW"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DBM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB-MilliW-PER-MegaHZ a qudt:Unit ;
    rdfs:label "Decibel Milliwatt per Megahertz"^^xsd:string,
        "Decibel Milliwatt per Megahertz"@en ;
    dcterms:description "unit of level used to indicate that a power ratio is expressed in decibel (dB) with reference to one milliwatt (mW) devided by the 1,000,000-fold of the derived unit hertz"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MegaHZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD892"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD892"^^xsd:anyURI ;
    qudt:symbol "dB·mW/MHz"^^xsd:string ;
    qudt:ucumCode "dB.mW.MHz-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DBM"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB-PER-KiloM a qudt:Unit ;
    rdfs:label "Decibel per Kilometre"^^xsd:string,
        "Decibel per Kilometre"@en,
        "Decibel per Kilometer"@en-us ;
    dcterms:description "0.1-fold of the unit bel divided by 1,000-fold of the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciB ] ;
    qudt:hasQuantityKind qudtqk:LinearLogarithmicRatio ;
    qudt:iec61360Code "0112/2///62720#UAA410"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA410"^^xsd:anyURI ;
    qudt:symbol "dB/km"^^xsd:string ;
    qudt:ucumCode "dB.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB-PER-M a qudt:Unit ;
    rdfs:label "Decibel per Metre"^^xsd:string,
        "Decibel per Metre"@en,
        "Decibel per Meter"@en-us ;
    dcterms:description "0.1-fold of the unit bel divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciB ] ;
    qudt:hasQuantityKind qudtqk:LinearLogarithmicRatio ;
    qudt:iec61360Code "0112/2///62720#UAA411"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA411"^^xsd:anyURI ;
    qudt:symbol "dB/m"^^xsd:string ;
    qudt:ucumCode "dB.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB-W a qudt:Unit ;
    rdfs:label "Decibel Watt"^^xsd:string,
        "Decibel Watt"@en ;
    dcterms:description "The decibel watt or dBW is a unit for the measurement of the strength of a signal expressed in decibels relative to one watt."^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD924"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD924"^^xsd:anyURI ;
    qudt:symbol "dB·W"^^xsd:string ;
    qudt:ucumCode "dB.W"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "DBW"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciBAR-PER-YR a qudt:Unit ;
    rdfs:label "Decibar per Year"^^xsd:string,
        "Decibar per Year"@en ;
    dcterms:description "A rate of change of pressure expressed in decibars over a period of an average calendar year (365.25 days)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.0003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DeciBAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "dbar/a"^^xsd:string ;
    qudt:ucumCode "dbar.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciB_C a qudt:Unit ;
    rdfs:label "Decibel Carrier Unit"^^xsd:string,
        "Decibel Carrier Unit"@en ;
    dcterms:description "\"Decibel Carrier Unit\" is a logarithmic unit for  'Signal Detection Threshold' expressed as $dBc$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:SignalDetectionThreshold ;
    qudt:iec61360Code "0112/2///62720#UAD894"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD894"^^xsd:anyURI ;
    qudt:symbol "dBc"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:DeciM3-PER-M3 a qudt:Unit ;
    rdfs:label "Cubic Decimetre per Cubic Metre"^^xsd:string,
        "Decimetr Krychlový na Metr Krychlový"@cs,
        "Kubikdecimeter pro Kubikmeter"@de,
        "Cubic Decimetre per Cubic Metre"@en,
        "Cubic Decimeter per Cubic Meter"@en-us,
        "Decimetro Cúbico por Metro Cúbico"@es,
        "Decimètre Cube par Mètre Cube"@fr,
        "Decimetro Cubo per Metro Cubo"@it,
        "Decimeter Kubik per Meter Kubik"@ms,
        "Decimetr Sześcienny na Metr Sześcienny"@pl,
        "Decimetru Cub pe Metru Cub"@ro,
        "Kubični Decimeter na Kubični Meter"@sl,
        "Decimetreküp per Metreküp"@tr ;
    dcterms:description "volume ratio consisting of the 0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:DeciM ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA417"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA417"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "dm³/m³"^^xsd:string ;
    qudt:ucumCode "dm3.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J91"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106998079> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ENZ-PER-L a qudt:Unit ;
    rdfs:label "Enzyme Unit per Litre"^^xsd:string,
        "Enzyme Unit per Litre"@en,
        "Enzyme Unit per Liter"@en-us ;
    dcterms:description "amount of enzyme units divided by litre"^^xsd:string ;
    qudt:conversionMultiplier 0.000016667 ;
    qudt:conversionMultiplierSN 1.6667e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ENZ ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:iec61360Code "0112/2///62720#UAB601"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB601"^^xsd:anyURI ;
    qudt:symbol "U/L"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ERG-CentiM2 a qudt:Unit ;
    rdfs:label "Erg Square Centimetre"^^xsd:string,
        "Erg Square Centimetre"@en,
        "Erg Square Centimeter"@en-us ;
    dcterms:description "[CGS] unit of the atomic stopping power"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ERG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:MassStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAB148"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB148"^^xsd:anyURI ;
    qudt:symbol "erg·cm²"^^xsd:string ;
    qudt:ucumCode "erg.cm2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ERG-CentiM2-PER-GM a qudt:Unit ;
    rdfs:label "Erg Square Centimetre per Gram"^^xsd:string,
        "Erg Square Centimetre per Gram"@en,
        "Erg Square Centimeter per Gram"@en-us ;
    dcterms:description "[CGS] unit of the mass stopping power"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ERG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:TotalMassStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAB149"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB149"^^xsd:anyURI ;
    qudt:symbol "erg·cm²/g"^^xsd:string ;
    qudt:ucumCode "erg.cm2.g-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ERG-PER-CentiM a qudt:Unit ;
    rdfs:label "Erg per Centimetre"^^xsd:string,
        "Erg per Centimetre"@en,
        "Erg per Centimeter"@en-us ;
    dcterms:description "CGS unit of the length-related energy"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-GAUSS> ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ERG ] ;
    qudt:hasQuantityKind qudtqk:TotalLinearStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAB145"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB145"^^xsd:anyURI ;
    qudt:plainTextDescription "CGS unit of the length-related energy"^^xsd:string ;
    qudt:symbol "erg/cm"^^xsd:string ;
    qudt:ucumCode "erg.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:EV-M2 a qudt:Unit ;
    rdfs:label "Electron Volt Square Metre"^^xsd:string,
        "Electron Volt Square Metre"@en,
        "Electron Volt Square Meter"@en-us ;
    dcterms:description "product of the unit electronvolt and the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-19 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:EV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:TotalAtomicStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAA427"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA427"^^xsd:anyURI ;
    qudt:symbol "eV·m²"^^xsd:string ;
    qudt:ucumCode "eV.m2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A55"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:EV-M2-PER-KiloGM a qudt:Unit ;
    rdfs:label "Electron Volt Square Metre per Kilogram"^^xsd:string,
        "Electron Volt Square Metre per Kilogram"@en,
        "Electron Volt Square Meter per Kilogram"@en-us ;
    dcterms:description "product of the unit electronvolt and the power of the SI base unit metre with the exponent 2 divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-19 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:EV ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:TotalMassStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAA428"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA428"^^xsd:anyURI ;
    qudt:symbol "eV·m²/kg"^^xsd:string ;
    qudt:ucumCode "eV.m2.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A56"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:EV-PER-ANGSTROM a qudt:Unit ;
    rdfs:label "Electron Volt per Angstrom"^^xsd:string,
        "Electron Volt per Angstrom"@en ;
    dcterms:description "unit electronvolt divided by the unit angstrom"^^rdf:HTML ;
    qudt:conversionMultiplier 0.000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:EV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:ANGSTROM ] ;
    qudt:hasQuantityKind qudtqk:TotalLinearStoppingPower ;
    qudt:latexSymbol "$ev/\\AA$"^^qudt:LatexString ;
    qudt:plainTextDescription "unit electronvolt divided by the unit angstrom"^^xsd:string ;
    qudt:symbol "eV/Å"^^xsd:string ;
    qudt:ucumCode "eV.Ao-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:EV-PER-M a qudt:Unit ;
    rdfs:label "Electron Volt per Metre"^^xsd:string,
        "Electron Volt per Metre"@en,
        "Electron Volt per Meter"@en-us ;
    dcterms:description "unit electronvolt divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-19 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:EV ] ;
    qudt:hasQuantityKind qudtqk:TotalLinearStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAA426"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA426"^^xsd:anyURI ;
    qudt:plainTextDescription "unit electronvolt divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "eV/m"^^xsd:string ;
    qudt:ucumCode "eV.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A54"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98635536> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExaBIT-PER-SEC a qudt:Unit ;
    rdfs:label "Exabit per Second"^^xsd:string,
        "Exabit per Second"@en ;
    dcterms:description "1,000,000,000,000,000,000-fold of the unit bit divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 693147180559945309.41723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ExaBIT ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA139"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA139"^^xsd:anyURI ;
    qudt:symbol "Eb/s"^^xsd:string ;
    qudt:ucumCode "Ebit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExbiBIT-PER-M a qudt:Unit ;
    rdfs:label "Exbibit per Metre"^^xsd:string,
        "Exbibit per Metre"@en,
        "Exbibit per Meter"@en-us ;
    dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 105997109765220669.3195572972757272 ;
    qudt:conversionMultiplierSN 1.059971e+17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ExbiBIT ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA140"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA140"^^xsd:anyURI ;
    qudt:symbol "Eib/m"^^xsd:string ;
    qudt:uneceCommonCode "E65"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExbiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Exbibit per Square Metre"^^xsd:string,
        "Exbibit per Square Metre"@en,
        "Exbibit per Square Meter"@en-us ;
    dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 105997109765220669.3195572972757272 ;
    qudt:conversionMultiplierSN 1.059971e+17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ExbiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA141"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA141"^^xsd:anyURI ;
    qudt:symbol "Eib/m²"^^xsd:string ;
    qudt:uneceCommonCode "E66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ExbiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Exbibit per Cubic Metre"^^xsd:string,
        "Exbibit per Cubic Metre"@en,
        "Exbibit per Cubic Meter"@en-us ;
    dcterms:description "1,152,921,504,606,846,976-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 105997109765220669.3195572972757272 ;
    qudt:conversionMultiplierSN 1.059971e+17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ExbiBIT ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA142"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA142"^^xsd:anyURI ;
    qudt:symbol "Eib/m³"^^xsd:string ;
    qudt:uneceCommonCode "E67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FA a qudt:Unit ;
    rdfs:label "Fractional Area"^^xsd:string,
        "Fractional Area"@en ;
    dcterms:description "\"Fractional area\" is a unit for  'Solid Angle' expressed as $fa$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 12.5663706 ;
    qudt:conversionMultiplierSN 1.256637e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:SolidAngle ;
    qudt:scalingOf unit:SR ;
    qudt:symbol "fa"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FARAD-PER-KiloM a qudt:Unit ;
    rdfs:label "Farad per Kilometre"^^xsd:string,
        "Farad na Kilometr"@cs,
        "Farad pro Kilometer"@de,
        "Farad per Kilometre"@en,
        "Farad per Kilometer"@en-us,
        "Faradio por Kilometro"@es,
        "Farad par Kilomètre"@fr,
        "Farad per Chilometro"@it,
        "Farad per Kilometer"@ms,
        "Farad na Kilometr"@pl,
        "Farad pe Kilometru"@ro,
        "Farad na Kilometer"@sl,
        "Farad per Kilometre"@tr ;
    dcterms:description "SI derived unit farad divided by the 1 000-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FARAD ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:iec61360Code "0112/2///62720#UAA145"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA145"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit farad divided by the 1 000-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "F/km"^^xsd:string ;
    qudt:ucumCode "F.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FARAD_Ab-PER-CentiM a qudt:Unit ;
    rdfs:label "Abfarad per Centimetre"^^xsd:string,
        "Abfarad per Centimetre"@en,
        "Abfarad per Centimeter"@en-us ;
    dcterms:description "The absolute dielectric constant of free space is defined as the ratio of displacement to the electric field intensity. The unit of measure is the abfarad per centimeter, a derived CGS unit."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 100000000000.0 ;
    qudt:conversionMultiplierSN 1e+11 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:expression "$abf-per-cm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FARAD_Ab ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:symbol "abF/cm"^^xsd:string ;
    qudt:ucumCode "GF.cm-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30063650> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FARAD_Stat a qudt:Unit ;
    rdfs:label "Statfarad"^^xsd:string,
        "Statfarad"@en ;
    dcterms:description """
  The $\\text{Statfarad (statF)}$ is a unit in the category of Electric capacitance. 
  It is also known as $statfarads$. 
  This unit is commonly used in the cgs unit system. 
  $Statfarad$ has a dimension of $M^{-1}L^{-2}T^4I^2$ where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. 
  It can be converted to the corresponding standard SI unit F by multiplying its value by a factor of 1.11265E-012.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 0.000000000000000001112650056053618432174089964848 ;
    qudt:conversionMultiplierSN 1.11265e-18 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--electric_capacitance--statfarad.cfm"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statfarad> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "statF"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25559953> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FRAME-PER-SEC a qudt:ContextualUnit,
        qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Frame per Second"^^xsd:string,
        "Frame per Second"@en ;
    dcterms:description "\"Frame per Second\" is a unit for  'Video Frame Rate' expressed as $fps$."^^qudt:LatexString ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FRAME ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:VideoFrameRate ;
    qudt:symbol "fps"^^xsd:string ;
    qudt:ucumCode "s-1{frame}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:HZ .

unit:FT-HR-PER-GAL_UK a qudt:Unit ;
    rdfs:label "Foot Hour per Gallon (UK)"^^xsd:string,
        "Foot Hour per Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 241367.856773623047497959785222026 ;
    qudt:conversionMultiplierSN 2.413679e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD854"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD854"^^xsd:anyURI ;
    qudt:symbol "ft·h/gal{UK}"^^xsd:string ;
    qudt:ucumCode "[ft_i].h.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-HR-PER-GAL_US a qudt:Unit ;
    rdfs:label "Foot Hour per Us Gallon"^^xsd:string,
        "Foot Hour per Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 289870.7096115490932280565859833018 ;
    qudt:conversionMultiplierSN 2.898707e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD850"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD850"^^xsd:anyURI ;
    qudt:symbol "ft·h/gal{US}"^^xsd:string ;
    qudt:ucumCode "[ft_i].h.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-HR-PER-IN3 a qudt:Unit ;
    rdfs:label "Foot Hour per Cubic Inch"^^xsd:string,
        "Foot Hour per Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 66960133.92026784053568107136214273 ;
    qudt:conversionMultiplierSN 6.696013e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD846"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD846"^^xsd:anyURI ;
    qudt:symbol "ft·h/in³"^^xsd:string ;
    qudt:ucumCode "[ft_i].h.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-PER-DEG_F a qudt:Unit ;
    rdfs:label "Foot per Degree Fahrenheit"^^xsd:string,
        "Foot per Degree Fahrenheit"@en ;
    dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.54864 ;
    qudt:conversionMultiplierSN 5.4864e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA441"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA441"^^xsd:anyURI ;
    qudt:plainTextDescription "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^xsd:string ;
    qudt:symbol "ft/°F"^^xsd:string ;
    qudt:ucumCode "[ft_i].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K13"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-PER-PSI a qudt:Unit ;
    rdfs:label "Foot per Psi"^^xsd:string,
        "Foot per Psi"@en ;
    dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.00004420750047668715004148802456506335 ;
    qudt:conversionMultiplierSN 4.42075e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA447"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA447"^^xsd:anyURI ;
    qudt:symbol "ft/psi"^^xsd:string ;
    qudt:ucumCode "[ft_i].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-PER-SEC-DEG_F a qudt:Unit ;
    rdfs:label "Foot per Second Degree Fahrenheit"^^xsd:string,
        "Foot per Second Degree Fahrenheit"@en ;
    dcterms:description "unit foot as a linear measure according to the Anglo-American and the Imperial system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.54864 ;
    qudt:conversionMultiplierSN 5.4864e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA450"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA450"^^xsd:anyURI ;
    qudt:symbol "ft/(s·°F)"^^xsd:string ;
    qudt:ucumCode "[ft_i].s-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-PER-SEC-PSI a qudt:Unit ;
    rdfs:label "Foot per Second Psi"^^xsd:string,
        "Foot per Second Psi"@en ;
    dcterms:description "quotient of the unit foot according to the Anglo-American and the Imperial system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.00004420750047668715004148802456506335 ;
    qudt:conversionMultiplierSN 4.42075e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA451"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA451"^^xsd:anyURI ;
    qudt:symbol "ft/(s·psi)"^^xsd:string ;
    qudt:ucumCode "[ft_i].s-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K19"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-SEC-PER-GAL_UK a qudt:Unit ;
    rdfs:label "Foot Second per Gallon (UK)"^^xsd:string,
        "Foot Second per Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 67.04662688156195763832216256167389 ;
    qudt:conversionMultiplierSN 6.704663e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD855"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD855"^^xsd:anyURI ;
    qudt:symbol "ft·s/gal{UK}"^^xsd:string ;
    qudt:ucumCode "[ft_i].s.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-SEC-PER-GAL_US a qudt:Unit ;
    rdfs:label "Foot Second per Us Gallon"^^xsd:string,
        "Foot Second per Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 80.51964155876363700779349610647273 ;
    qudt:conversionMultiplierSN 8.051964e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD851"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD851"^^xsd:anyURI ;
    qudt:symbol "ft·s/gal{US}"^^xsd:string ;
    qudt:ucumCode "[ft_i].s.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT-SEC-PER-IN3 a qudt:Unit ;
    rdfs:label "Foot Second per Cubic Inch"^^xsd:string,
        "Foot Second per Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 18600.0372000744001488002976005952 ;
    qudt:conversionMultiplierSN 1.860004e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD847"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD847"^^xsd:anyURI ;
    qudt:symbol "ft·s/in³"^^xsd:string ;
    qudt:ucumCode "[ft_i].s.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT2-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Foot Degree Fahrenheit"^^xsd:string,
        "Square Foot Degree Fahrenheit"@en ;
    dcterms:description "$\\textit{Square Foot Degree Fahrenheit}$ is an Imperial unit for 'Area Temperature' expressed as $ft^{2}-degF$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0516128 ;
    qudt:conversionMultiplierSN 5.16128e-02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft^{2}-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:AreaTemperature ;
    qudt:symbol "ft²·°F"^^xsd:string ;
    qudt:ucumCode "[ft_i]2.[degF]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT2-HR-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Foot Hour Degree Fahrenheit"^^xsd:string,
        "Square Foot Hour Degree Fahrenheit"@en ;
    dcterms:description "$\\textit{Square Foot Hour Degree Fahrenheit}$ is an Imperial unit for 'Area Time Temperature' expressed as $ft^{2}-h-degF$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 185.80608 ;
    qudt:conversionMultiplierSN 1.858061e+02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft^{2}-h-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:AreaTimeTemperature ;
    qudt:symbol "ft²·h·°F"^^xsd:string ;
    qudt:ucumCode "[ft_i]2.h.[degF]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT2-PER-BTU_IT-IN a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Foot per British Thermal Unit (international Definition) Inch"^^xsd:string,
        "Square Foot per British Thermal Unit (international Definition) Inch"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.003466735899257988990766762578673993 ;
    qudt:conversionMultiplierSN 3.466736e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft2-per-btu-in$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BTU_IT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "ft²/(Btu{IT}·in)"^^xsd:string ;
    qudt:ucumCode "[ft_i]2.[Btu_IT]-1.[in_i]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT2-SEC-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Foot Second Degree Fahrenheit"^^xsd:string,
        "Square Foot Second Degree Fahrenheit"@en ;
    dcterms:description "$\\textit{Square Foot Second Degree Fahrenheit}$ is an Imperial unit for 'Area Time Temperature' expressed as $ft^{2}\\cdot s\\cdot degF$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0516128 ;
    qudt:conversionMultiplierSN 5.16128e-02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft^{2}-s-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:AreaTimeTemperature ;
    qudt:symbol "ft²·s·°F"^^xsd:string ;
    qudt:ucumCode "[ft_i]2.s.[degF]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-DEG_F a qudt:Unit ;
    rdfs:label "Cubic Foot per Degree Fahrenheit"^^xsd:string,
        "Cubic Foot per Degree Fahrenheit"@en ;
    dcterms:description "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0509703238656 ;
    qudt:conversionMultiplierSN 5.097032e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA457"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA457"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^xsd:string ;
    qudt:symbol "ft³/°F"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K21"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FT3-PER-PSI a qudt:Unit ;
    rdfs:label "Cubic Foot per Psi"^^xsd:string,
        "Cubic Foot per Psi"@en ;
    dcterms:description "power of the unit foot as a linear measure according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.000004107011185085685367790363605689063 ;
    qudt:conversionMultiplierSN 4.107011e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA460"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA460"^^xsd:anyURI ;
    qudt:symbol "ft³/psi"^^xsd:string ;
    qudt:ucumCode "[ft_i]3.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FemtoFARAD a qudt:Unit ;
    rdfs:label "Femtofarad"^^xsd:string,
        "Femtofarad"@cs,
        "Femtofarad"@de,
        "Femtofarad"@en,
        "Femtofaradio"@es,
        "Femtofarad"@fr,
        "Femtofarad"@hu,
        "Femtofarad"@it,
        "Femtofarad"@ms,
        "Femtofarad"@pl,
        "Femtofarad"@ro,
        "Femtofarad"@sl,
        "Femtofarad"@tr ;
    dcterms:description "0.000000000000001-fold of the unit farad"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000000001 ;
    qudt:conversionMultiplierSN 1e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAB588"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB588"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Femto> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "fF"^^xsd:string ;
    qudt:ucumCode "fF"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95447253> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:FemtoMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Femtomole per Kilogram"^^xsd:string,
        "Femtomol na Kilogram"@cs,
        "Femtomol pro Kilogramm"@de,
        "Femtomole per Kilogram"@en,
        "Femtomol por Kilogramo"@es,
        "Femtomole par Kilogramme"@fr,
        "Femtomole per Chilogrammo"@it,
        "Femtomole per Kilogram"@ms,
        "Femtomol na Kilogram"@pl,
        "Femtomol pe Kilogram"@ro,
        "Femtomol na Kilogram"@sl,
        "Femtomol per Kilogram"@tr ;
    dcterms:description "A 10**15 part quantity of substance of the measurand per kilogram mass of matrix."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000000001 ;
    qudt:conversionMultiplierSN 1e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FemtoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:symbol "fmol/kg"^^xsd:string ;
    qudt:ucumCode "fmol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GAL_US_DRY a qudt:Unit ;
    rdfs:label "Dry Gallon Us"^^xsd:string,
        "Dry Gallon Us"@en ;
    dcterms:description "\"Dry Gallon US\" is a unit for  'Dry Volume' expressed as $dry_gal$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.00440488377086 ;
    qudt:conversionMultiplierSN 4.404884e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:factorUnitScalar 0.125 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:BU_US ] ;
    qudt:hasQuantityKind qudtqk:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAB118"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB118"^^xsd:anyURI ;
    qudt:symbol "gal{US Dry}"^^xsd:string ;
    qudt:ucumCode "[gal_wi]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "GLD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5309589> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "Winchester gallon"^^xsd:string,
        "corn gallon"^^xsd:string .

unit:GI a qudt:Unit ;
    rdfs:label "Gilbert"^^xsd:string,
        "Gilbert"@en ;
    dcterms:description "The fundamental unit of magnetomotive force ($mmf$) in electromagnetic units is called a Gilbert. It is the $mmf$ which will produce a magnetic field strength of one Gauss (Maxwell per Square Centimeter) in a path one centimeter long."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.795774715 ;
    qudt:conversionMultiplierSN 7.957747e-01 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Gilbert"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:MagnetomotiveForce ;
    qudt:iec61360Code "0112/2///62720#UAB211"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Gilbert?oldid=492755037"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB211"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/gilbert> ;
    qudt:scalingOf unit:A ;
    qudt:symbol "Gb"^^xsd:string ;
    qudt:ucumCode "Gb"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N97"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1413142> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-CentiM-PER-SEC a qudt:Unit ;
    rdfs:label "Gram Centimetre per Second"^^xsd:string,
        "Gram Centimetr na Sekunda"@cs,
        "Gramm Centimeter pro Sekunde"@de,
        "Gram Centimetre per Second"@en,
        "Gram Centimeter per Second"@en-us,
        "Gramo Centimetro por Segundo"@es,
        "Gramme Centimètre par Seconde"@fr,
        "Grammo Centimetro per Secondo"@it,
        "Gram Centimeter per Saat"@ms,
        "Gram Centimetr na Sekunda"@pl,
        "Gram Centimetru pe Secundă"@ro,
        "Gram Centimeter na Sekunda"@sl,
        "Gram Centimetre per Saniye"@tr ;
    dcterms:description "product of the 0.001-fold of the SI base unit kilogram and the 0.01-fold of the SI base unit metre divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Impulse ;
    qudt:iec61360Code "0112/2///62720#UAB414"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB414"^^xsd:anyURI ;
    qudt:symbol "g·cm/s"^^xsd:string ;
    qudt:ucumCode "g.cm.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M99"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Hour per Litre Cubic Centimetre"^^xsd:string,
        "Gram Hour per Litre Cubic Centimetre"@en,
        "Gram Hour per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600000000.0 ;
    qudt:conversionMultiplierSN 3.6e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC822"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC822"^^xsd:anyURI ;
    qudt:symbol "g·h/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "g.h.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-L-M3 a qudt:Unit ;
    rdfs:label "Gram Hour per Litre Cubic Metre"^^xsd:string,
        "Gram Hour per Litre Cubic Metre"@en,
        "Gram Hour per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC821"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC821"^^xsd:anyURI ;
    qudt:symbol "g·h/(L·m³)"^^xsd:string ;
    qudt:ucumCode "g.h.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-L2 a qudt:Unit ;
    rdfs:label "Gram Hour per Square Litre"^^xsd:string,
        "Gram Hour per Square Litre"@en,
        "Gram Hour per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC823"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC823"^^xsd:anyURI ;
    qudt:symbol "g·h/L²"^^xsd:string ;
    qudt:ucumCode "g.h.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Hour per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Gram Hour per Cubic Metre Cubic Centimetre"@en,
        "Gram Hour per Cubic Meter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC813"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC813"^^xsd:anyURI ;
    qudt:symbol "g·h/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "g.h.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-M3-L a qudt:Unit ;
    rdfs:label "Gram Hour per Cubic Metre Litre"^^xsd:string,
        "Gram Hour per Cubic Metre Litre"@en,
        "Gram Hour per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC814"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC814"^^xsd:anyURI ;
    qudt:symbol "g·h/(m³·L)"^^xsd:string ;
    qudt:ucumCode "g.h.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-HR-PER-M6 a qudt:Unit ;
    rdfs:label "Gram Hour per Sextic Metre"^^xsd:string,
        "Gram Hour per Sextic Metre"@en,
        "Gram Hour per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3.6 ;
    qudt:conversionMultiplierSN 3.6e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC812"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC812"^^xsd:anyURI ;
    qudt:symbol "g·h/m⁶"^^xsd:string ;
    qudt:ucumCode "g.h.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Minute per Litre Cubic Centimetre"^^xsd:string,
        "Gram Minute per Litre Cubic Centimetre"@en,
        "Gram Minute per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60000000.0 ;
    qudt:conversionMultiplierSN 6e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC825"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC825"^^xsd:anyURI ;
    qudt:symbol "g·min/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "g.min.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-L-M3 a qudt:Unit ;
    rdfs:label "Gram Minute per Litre Cubic Metre"^^xsd:string,
        "Gram Minute per Litre Cubic Metre"@en,
        "Gram Minute per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC824"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC824"^^xsd:anyURI ;
    qudt:symbol "g·min/(L·m³)"^^xsd:string ;
    qudt:ucumCode "g.min.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-L2 a qudt:Unit ;
    rdfs:label "Gram Minute per Square Litre"^^xsd:string,
        "Gram Minute per Square Litre"@en,
        "Gram Minute per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60000.0 ;
    qudt:conversionMultiplierSN 6e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC826"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC826"^^xsd:anyURI ;
    qudt:symbol "g·min/L²"^^xsd:string ;
    qudt:ucumCode "g.min.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Minute per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Gram Minute per Cubic Metre Cubic Centimetre"@en,
        "Gram Minute per Cubic Meter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60000.0 ;
    qudt:conversionMultiplierSN 6e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC816"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC816"^^xsd:anyURI ;
    qudt:symbol "g·min/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "g.min.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-M3-L a qudt:Unit ;
    rdfs:label "Gram Minute per Cubic Metre Litre"^^xsd:string,
        "Gram Minute per Cubic Metre Litre"@en,
        "Gram Minute per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC817"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC817"^^xsd:anyURI ;
    qudt:symbol "g·min/(m³·L)"^^xsd:string ;
    qudt:ucumCode "g.min.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MIN-PER-M6 a qudt:Unit ;
    rdfs:label "Gram Minute per Sextic Metre"^^xsd:string,
        "Gram Minute per Sextic Metre"@en,
        "Gram Minute per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.06 ;
    qudt:conversionMultiplierSN 6e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC815"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC815"^^xsd:anyURI ;
    qudt:symbol "g·min/m⁶"^^xsd:string ;
    qudt:ucumCode "g.min.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-MilliM a qudt:Unit ;
    rdfs:label "Gram Millimetre"^^xsd:string,
        "Gram Millimetr"@cs,
        "Gramm Millimeter"@de,
        "Gram Millimetre"@en,
        "Gram Millimeter"@en-us,
        "Gramo Millimetro"@es,
        "Gramme Millimètre"@fr,
        "Grammo Millimetro"@it,
        "Gram Millimeter"@ms,
        "Gram Millimetr"@pl,
        "Gram Millimetru"@ro,
        "Gram Millimeter"@sl,
        "Gram Millimetre"@tr ;
    dcterms:description "unit of the imbalance as product of the 0.001-fold of the SI base unit kilogram and the 0.001-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:LengthMass ;
    qudt:iec61360Code "0112/2///62720#UAB381"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB381"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the imbalance as product of the 0.001-fold of the SI base unit kilogram and the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "g·mm"^^xsd:string ;
    qudt:ucumCode "g.mm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-BAR a qudt:Unit ;
    rdfs:label "Gram per Bar"^^xsd:string,
        "Gram per Bar"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA468"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA468"^^xsd:anyURI ;
    qudt:symbol "g/bar"^^xsd:string ;
    qudt:ucumCode "g.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-CentiM-BAR a qudt:Unit ;
    rdfs:label "Gram per Centimetre Bar"^^xsd:string,
        "Gram per Centimetre Bar"@en,
        "Gram per Centimeter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:SquareTime ;
    qudt:symbol "g/(cm·bar)"^^xsd:string ;
    qudt:ucumCode "g.cm-1.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-CentiM3-BAR a qudt:Unit ;
    rdfs:label "Gram per Cubic Centimetre Bar"^^xsd:string,
        "Gram per Cubic Centimetre Bar"@en,
        "Gram per Cubic Centimeter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA471"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA471"^^xsd:anyURI ;
    qudt:symbol "g/(cm³·bar)"^^xsd:string ;
    qudt:ucumCode "g.cm-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G11"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-CentiM3-K a qudt:Unit ;
    rdfs:label "Gram per Cubic Centimetre Kelvin"^^xsd:string,
        "Gram na Centimetr Krychlový Kelvin"@cs,
        "Gramm pro Kubikcentimeter Kelvin"@de,
        "Gram per Cubic Centimetre Kelvin"@en,
        "Gram per Cubic Centimeter Kelvin"@en-us,
        "Gramo por Centimetro Cúbico Kelvin"@es,
        "Gramme par Centimètre Cube Kelvin"@fr,
        "Grammo per Centimetro Cubo Kelvin"@it,
        "Gram per Centimeter Kubik Kelvin"@ms,
        "Gram na Centimetr Sześcienny Kelwin"@pl,
        "Gram pe Centimetru Cub Kelvin"@ro,
        "Gram na Kubični Centimeter Kelvin"@sl,
        "Gram per Centimetreküp Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA470"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA470"^^xsd:anyURI ;
    qudt:symbol "g/(cm³·K)"^^xsd:string ;
    qudt:ucumCode "g.cm-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DAY a qudt:Unit ;
    rdfs:label "Gram per Day"^^xsd:string,
        "Gram per Day"@en ;
    dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA472"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA472"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit day"^^xsd:string ;
    qudt:symbol "g/d"^^xsd:string ;
    qudt:ucumCode "g.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F26"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210098> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Gram per Day Bar"^^xsd:string,
        "Gram per Day Bar"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA474"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA474"^^xsd:anyURI ;
    qudt:symbol "g/(d·bar)"^^xsd:string ;
    qudt:ucumCode "g.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DAY-K a qudt:Unit ;
    rdfs:label "Gram per Day Kelvin"^^xsd:string,
        "Gram per Day Kelvin"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA473"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA473"^^xsd:anyURI ;
    qudt:symbol "g/(d·K)"^^xsd:string ;
    qudt:ucumCode "g.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DEG_C a qudt:Unit ;
    rdfs:label "Gram per Degree Celsius"^^xsd:string,
        "Gram na Stupně Celsia"@cs,
        "Gramm pro Grad Celsius"@de,
        "Gram per Degree Celsius"@en,
        "Gramo por Grado Celsius"@es,
        "Gramme par Degré Celsius"@fr,
        "Grammo per Grado Celsius"@it,
        "Gramma per Gradus Celsii"@la,
        "Gram per Darjah Celsius"@ms,
        "Gram na Stopień Celsjusza"@pl,
        "Grama por Grau Celsius"@pt,
        "Gram pe Grad Celsius"@ro,
        "Gram na Stopinja Celzija"@sl,
        "Gram per Celsius"@tr ;
    dcterms:description "$\\textit{Gram Degree Celsius}$ is a C.G.S System unit for 'Mass Temperature' expressed as $g \\cdot degC$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:expression "$g-degC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "g/°C"^^xsd:string ;
    qudt:ucumCode "g.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DeciM3-BAR a qudt:Unit ;
    rdfs:label "Gram per Cubic Decimetre Bar"^^xsd:string,
        "Gram per Cubic Decimetre Bar"@en,
        "Gram per Cubic Decimeter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA477"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA477"^^xsd:anyURI ;
    qudt:symbol "g/(dm³·bar)"^^xsd:string ;
    qudt:ucumCode "g.dm-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-DeciM3-K a qudt:Unit ;
    rdfs:label "Gram per Cubic Decimetre Kelvin"^^xsd:string,
        "Gram na Decimetr Krychlový Kelvin"@cs,
        "Gramm pro Kubikdecimeter Kelvin"@de,
        "Gram per Cubic Decimetre Kelvin"@en,
        "Gram per Cubic Decimeter Kelvin"@en-us,
        "Gramo por Decimetro Cúbico Kelvin"@es,
        "Gramme par Decimètre Cube Kelvin"@fr,
        "Grammo per Decimetro Cubo Kelvin"@it,
        "Gram per Decimeter Kubik Kelvin"@ms,
        "Gram na Decimetr Sześcienny Kelwin"@pl,
        "Gram pe Decimetru Cub Kelvin"@ro,
        "Gram na Kubični Decimeter Kelvin"@sl,
        "Gram per Decimetreküp Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA476"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA476"^^xsd:anyURI ;
    qudt:symbol "g/(dm³·K)"^^xsd:string ;
    qudt:ucumCode "g.dm-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-HR a qudt:Unit ;
    rdfs:label "Gram per Hour"^^xsd:string,
        "Gram per Hour"@en ;
    dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA478"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA478"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit hour"^^xsd:string ;
    qudt:symbol "g/h"^^xsd:string ;
    qudt:ucumCode "g.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F27"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210103> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Gram per Hour Bar"^^xsd:string,
        "Gram per Hour Bar"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA480"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA480"^^xsd:anyURI ;
    qudt:symbol "g/(h·bar)"^^xsd:string ;
    qudt:ucumCode "g.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F63"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-HR-K a qudt:Unit ;
    rdfs:label "Gram per Hour Kelvin"^^xsd:string,
        "Gram per Hour Kelvin"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA479"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA479"^^xsd:anyURI ;
    qudt:symbol "g/(h·K)"^^xsd:string ;
    qudt:ucumCode "g.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-HZ a qudt:Unit ;
    rdfs:label "Gram per Hertz"^^xsd:string,
        "Gram na Hertz"@cs,
        "Gramm pro Hertz"@de,
        "Gram per Hertz"@en,
        "Gramo por Hercio"@es,
        "Gramme par Hertz"@fr,
        "Grammo per Hertz"@it,
        "Gramma per Hertzium"@la,
        "Gram per Hertz"@ms,
        "Gram na Herc"@pl,
        "Grama por Hertz"@pt,
        "Gram pe Hertz"@ro,
        "Gram na Hertz"@sl,
        "Gram per Hertz"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the SI derived unit hertz"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD916"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD916"^^xsd:anyURI ;
    qudt:symbol "g/Hz"^^xsd:string ;
    qudt:ucumCode "g.Hz-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-K a qudt:Unit ;
    rdfs:label "Gram per Kelvin"^^xsd:string,
        "Gram na Kelvin"@cs,
        "Gramm pro Kelvin"@de,
        "Gram per Kelvin"@en,
        "Gramo por Kelvin"@es,
        "Gramme par Kelvin"@fr,
        "Grammo per Kelvin"@it,
        "Gramma per Kelvin"@la,
        "Gram per Kelvin"@ms,
        "Gram na Kelwin"@pl,
        "Grama por Kelvin"@pt,
        "Gram pe Kelvin"@ro,
        "Gram na Kelvin"@sl,
        "Gram per Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA467"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA467"^^xsd:anyURI ;
    qudt:symbol "g/K"^^xsd:string ;
    qudt:ucumCode "g.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F14"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-KiloM a qudt:Unit ;
    rdfs:label "Gram per Kilometre"^^xsd:string,
        "Gram na Kilometr"@cs,
        "Gramm pro Kilometer"@de,
        "Gram per Kilometre"@en,
        "Gram per Kilometer"@en-us,
        "Gramo por Kilometro"@es,
        "Gramme par Kilomètre"@fr,
        "Grammo per Chilometro"@it,
        "Gram per Kilometer"@ms,
        "Gram na Kilometr"@pl,
        "Gram pe Kilometru"@ro,
        "Gram na Kilometer"@sl,
        "Gram per Kilometre"@tr ;
    dcterms:description "0,001-fold of the SI base unit kilogram divided by the 1000-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the 1000-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "g/km"^^xsd:string ;
    qudt:ucumCode "g.km-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-BAR a qudt:Unit ;
    rdfs:label "Gram per Litre Bar"^^xsd:string,
        "Gram per Litre Bar"@en,
        "Gram per Liter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit litre and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA484"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA484"^^xsd:anyURI ;
    qudt:symbol "g/(L·bar)"^^xsd:string ;
    qudt:ucumCode "g.L-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G13"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-CentiPOISE a qudt:Unit ;
    rdfs:label "Gram per Litre Centipoise"^^xsd:string,
        "Gram per Litre Centipoise"@en,
        "Gram per Liter Centipoise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per litre and and the 0.01-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiPOISE ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD834"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD834"^^xsd:anyURI ;
    qudt:symbol "g/(L·cP)"^^xsd:string ;
    qudt:ucumCode "g.L-1.cP-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-K a qudt:Unit ;
    rdfs:label "Gram per Litre Kelvin"^^xsd:string,
        "Gram per Litre Kelvin"@en,
        "Gram per Liter Kelvin"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit litre and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA483"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA483"^^xsd:anyURI ;
    qudt:symbol "g/(L·K)"^^xsd:string ;
    qudt:ucumCode "g.L-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-MilliPA-SEC a qudt:Unit ;
    rdfs:label "Gram per Litre Millipascal Second"^^xsd:string,
        "Gram per Litre Millipascal Second"@en,
        "Gram per Liter Millipascal Second"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD868"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD868"^^xsd:anyURI ;
    qudt:symbol "g/(L·mPa·s)"^^xsd:string ;
    qudt:ucumCode "g.L-1.mPa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-PA-SEC a qudt:Unit ;
    rdfs:label "Gram per Litre Pascal Second"^^xsd:string,
        "Gram per Litre Pascal Second"@en,
        "Gram per Liter Pascal Second"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD832"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD832"^^xsd:anyURI ;
    qudt:symbol "g/(L·Pa·s)"^^xsd:string ;
    qudt:ucumCode "g.L-1.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-L-POISE a qudt:Unit ;
    rdfs:label "Gram per Litre Poise"^^xsd:string,
        "Gram per Litre Poise"@en,
        "Gram per Liter Poise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per litre and the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD833"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD833"^^xsd:anyURI ;
    qudt:symbol "g/(L·P)"^^xsd:string ;
    qudt:ucumCode "g.L-1.P-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M a qudt:Unit ;
    rdfs:label "Gram per Metre"^^xsd:string,
        "Gram na Metr"@cs,
        "Gramm pro Meter"@de,
        "Gram per Metre"@en,
        "Gram per Meter"@en-us,
        "Gramo por Metro"@es,
        "Gramme par Mètre"@fr,
        "Grammo per Metro"@it,
        "Gramma per Metrum"@la,
        "Gram per Meter"@ms,
        "Gram na Metr"@pl,
        "Grama por Metro"@pt,
        "Gram pe Metru"@ro,
        "Gram na Meter"@sl,
        "Gram per Metre"@tr ;
    dcterms:description "0,001-fold of the SI base unit kilogram divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAA485"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA485"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "g/m"^^xsd:string ;
    qudt:ucumCode "g.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "GF"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107460866> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Bar"^^xsd:string,
        "Gram per Cubic Metre Bar"@en,
        "Gram per Cubic Meter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA489"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA489"^^xsd:anyURI ;
    qudt:symbol "g/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "g.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G14"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-CentiPOISE a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Centipoise"^^xsd:string,
        "Gram per Cubic Metre Centipoise"@en,
        "Gram per Cubic Meter Centipoise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.01-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiPOISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD831"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD831"^^xsd:anyURI ;
    qudt:symbol "g/(m³·cP)"^^xsd:string ;
    qudt:ucumCode "g.m-3.cP-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-K a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Kelvin"^^xsd:string,
        "Gram na Metr Krychlový Kelvin"@cs,
        "Gramm pro Kubikmeter Kelvin"@de,
        "Gram per Cubic Metre Kelvin"@en,
        "Gram per Cubic Meter Kelvin"@en-us,
        "Gramo por Metro Cúbico Kelvin"@es,
        "Gramme par Mètre Cube Kelvin"@fr,
        "Grammo per Metro Cubo Kelvin"@it,
        "Gramma per Metrum Cubicum Kelvin"@la,
        "Gram per Meter Kubik Kelvin"@ms,
        "Gram na Metr Sześcienny Kelwin"@pl,
        "Grama por Metro Cúbico Kelvin"@pt,
        "Gram pe Metru Cub Kelvin"@ro,
        "Gram na Kubični Meter Kelvin"@sl,
        "Gram per Metreküp Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA488"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA488"^^xsd:anyURI ;
    qudt:symbol "g/(m³·K)"^^xsd:string ;
    qudt:ucumCode "g.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-MilliPA-SEC a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Millipascal Second"^^xsd:string,
        "Gram na Metr Krychlový Millipascal Sekunda"@cs,
        "Gramm pro Kubikmeter Millipascal Sekunde"@de,
        "Gram per Cubic Metre Millipascal Second"@en,
        "Gram per Cubic Meter Millipascal Second"@en-us,
        "Gramo por Metro Cúbico Millipascal Segundo"@es,
        "Gramme par Mètre Cube Millipascal Seconde"@fr,
        "Grammo per Metro Cubo Millipascal Secondo"@it,
        "Gram per Meter Kubik Millipascal Saat"@ms,
        "Gram na Metr Sześcienny Millipaskal Sekunda"@pl,
        "Gram pe Metru Cub Millipascal Secundă"@ro,
        "Gram na Kubični Meter Millipascal Sekunda"@sl,
        "Gram per Metreküp Millipascal Saniye"@tr ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliPA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD828"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD828"^^xsd:anyURI ;
    qudt:symbol "g/(m³·mPa·s)"^^xsd:string ;
    qudt:ucumCode "g.m-3.mPa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-PA-SEC a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Pascal Second"^^xsd:string,
        "Gram na Metr Krychlový Pascal Sekunda"@cs,
        "Gramm pro Kubikmeter Pascal Sekunde"@de,
        "Gram per Cubic Metre Pascal Second"@en,
        "Gram per Cubic Meter Pascal Second"@en-us,
        "Gramo por Metro Cúbico Pascal Segundo"@es,
        "Gramme par Mètre Cube Pascal Seconde"@fr,
        "Grammo per Metro Cubo Pascal Secondo"@it,
        "Gramma per Metrum Cubicum Pascalium Secundum"@la,
        "Gram per Meter Kubik Pascal Saat"@ms,
        "Gram na Metr Sześcienny Paskal Sekunda"@pl,
        "Grama por Metro Cúbico Pascal Segundo"@pt,
        "Gram pe Metru Cub Pascal Secundă"@ro,
        "Gram na Kubični Meter Pascal Sekunda"@sl,
        "Gram per Metreküp Pascal Saniye"@tr ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD829"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD829"^^xsd:anyURI ;
    qudt:symbol "g/(m³·Pa·s)"^^xsd:string ;
    qudt:ucumCode "g.m-3.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-M3-POISE a qudt:Unit ;
    rdfs:label "Gram per Cubic Metre Poise"^^xsd:string,
        "Gram per Cubic Metre Poise"@en,
        "Gram per Cubic Meter Poise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD830"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD830"^^xsd:anyURI ;
    qudt:symbol "g/(m³·P)"^^xsd:string ;
    qudt:ucumCode "g.m-3.P-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MIN a qudt:Unit ;
    rdfs:label "Gram per Minute"^^xsd:string,
        "Gram per Minute"@en ;
    dcterms:description "0,001-fold of the SI base unit kilogram divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA490"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA490"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001-fold of the SI base unit kilogram divided by the unit minute"^^xsd:string ;
    qudt:symbol "g/min"^^xsd:string ;
    qudt:ucumCode "g.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F28"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210111> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Gram per Minute Bar"^^xsd:string,
        "Gram per Minute Bar"@en ;
    dcterms:description "0.001-fold the SI base unit kilogram divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA492"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA492"^^xsd:anyURI ;
    qudt:symbol "g/(min·bar)"^^xsd:string ;
    qudt:ucumCode "g.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MIN-K a qudt:Unit ;
    rdfs:label "Gram per Minute Kelvin"^^xsd:string,
        "Gram per Minute Kelvin"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA491"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA491"^^xsd:anyURI ;
    qudt:symbol "g/(min·K)"^^xsd:string ;
    qudt:ucumCode "g.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MOL a qudt:Unit ;
    rdfs:label "Gram per Mole"^^xsd:string,
        "Gram na Mol"@cs,
        "Gramm pro Mol"@de,
        "Gram per Mole"@en,
        "Gramo por Mol"@es,
        "Gramme par Mole"@fr,
        "Grammo per Mole"@it,
        "Gramma per Moles"@la,
        "Gram per Mole"@ms,
        "Gram na Mol"@pl,
        "Grama por Mol"@pt,
        "Gram pe Mol"@ro,
        "Gram na Mol"@sl,
        "Gram per Mol"@tr ;
    dcterms:description "0.01-fold of the SI base unit kilogram divided by the SI base unit mol"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L0I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MolarMass ;
    qudt:iec61360Code "0112/2///62720#UAA496"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA496"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the SI base unit kilogram divided by the SI base unit mol"^^xsd:string ;
    qudt:symbol "g/mol"^^xsd:string ;
    qudt:ucumCode "g.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A94"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q28924752> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MilliL-BAR a qudt:Unit ;
    rdfs:label "Gram per Millilitre Bar"^^xsd:string,
        "Gram per Millilitre Bar"@en,
        "Gram per Milliliter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit litre and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA495"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA495"^^xsd:anyURI ;
    qudt:symbol "g/(mL·bar)"^^xsd:string ;
    qudt:ucumCode "g.mL-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MilliL-K a qudt:Unit ;
    rdfs:label "Gram per Millilitre Kelvin"^^xsd:string,
        "Gram per Millilitre Kelvin"@en,
        "Gram per Milliliter Kelvin"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit litre and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA494"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA494"^^xsd:anyURI ;
    qudt:symbol "g/(mL·K)"^^xsd:string ;
    qudt:ucumCode "g.mL-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-MilliM-BAR a qudt:Unit ;
    rdfs:label "Gram per Millimetre Bar"^^xsd:string,
        "Gram per Millimetre Bar"@en,
        "Gram per Millimeter Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the 0.001-fold of the unit meter and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:SquareTime ;
    qudt:symbol "g/(mm·bar)"^^xsd:string ;
    qudt:ucumCode "g.mm-1.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-SEC a qudt:Unit ;
    rdfs:label "Gram per Second"^^xsd:string,
        "Gram na Sekunda"@cs,
        "Gramm pro Sekunde"@de,
        "Gram per Second"@en,
        "Gramo por Segundo"@es,
        "Gramme par Seconde"@fr,
        "Grammo per Secondo"@it,
        "Gramma per Secundum"@la,
        "Gram per Saat"@ms,
        "Gram na Sekunda"@pl,
        "Grama por Segundo"@pt,
        "Gram pe Secundă"@ro,
        "Gram na Sekunda"@sl,
        "Gram per Saniye"@tr ;
    dcterms:description "0,001fold of the SI base unit kilogram divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA497"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA497"^^xsd:anyURI ;
    qudt:plainTextDescription "0,001fold of the SI base unit kilogram divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "g/s"^^xsd:string ;
    qudt:ucumCode "g.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F29"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210119> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Gram per Second Bar"^^xsd:string,
        "Gram per Second Bar"@en ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA499"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA499"^^xsd:anyURI ;
    qudt:symbol "g/(s·bar)"^^xsd:string ;
    qudt:ucumCode "g.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F65"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-PER-SEC-K a qudt:Unit ;
    rdfs:label "Gram per Second Kelvin"^^xsd:string,
        "Gram na Sekunda Kelvin"@cs,
        "Gramm pro Sekunde Kelvin"@de,
        "Gram per Second Kelvin"@en,
        "Gramo por Segundo Kelvin"@es,
        "Gramme par Seconde Kelvin"@fr,
        "Grammo per Secondo Kelvin"@it,
        "Gramma per Secundum Kelvin"@la,
        "Gram per Saat Kelvin"@ms,
        "Gram na Sekunda Kelwin"@pl,
        "Grama por Segundo Kelvin"@pt,
        "Gram pe Secundă Kelvin"@ro,
        "Gram na Sekunda Kelvin"@sl,
        "Gram per Saniye Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA498"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA498"^^xsd:anyURI ;
    qudt:symbol "g/(s·K)"^^xsd:string ;
    qudt:ucumCode "g.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Second per Litre Cubic Centimetre"^^xsd:string,
        "Gram Second per Litre Cubic Centimetre"@en,
        "Gram Second per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC828"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC828"^^xsd:anyURI ;
    qudt:symbol "g·s/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "g.s.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-L-M3 a qudt:Unit ;
    rdfs:label "Gram Second per Litre Cubic Metre"^^xsd:string,
        "Gram Second per Litre Cubic Metre"@en,
        "Gram Second per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC827"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC827"^^xsd:anyURI ;
    qudt:symbol "g·s/(L·m³)"^^xsd:string ;
    qudt:ucumCode "g.s.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-L2 a qudt:Unit ;
    rdfs:label "Gram Second per Square Litre"^^xsd:string,
        "Gram Second per Square Litre"@en,
        "Gram Second per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per litre and unit litre per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC829"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC829"^^xsd:anyURI ;
    qudt:symbol "g·s/L²"^^xsd:string ;
    qudt:ucumCode "g.s.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Gram Second per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Gram Sekunda na Metr Krychlový Centimetr Krychlový"@cs,
        "Gramm Sekunde pro Kubikmeter Kubikcentimeter"@de,
        "Gram Second per Cubic Metre Cubic Centimetre"@en,
        "Gram Second per Cubic Meter Cubic Centimeter"@en-us,
        "Gramo Segundo por Metro Cúbico Centimetro Cúbico"@es,
        "Gramme Seconde par Mètre Cube Centimètre Cube"@fr,
        "Grammo Secondo per Metro Cubo Centimetro Cubo"@it,
        "Gram Saat per Meter Kubik Centimeter Kubik"@ms,
        "Gram Sekunda na Metr Sześcienny Centimetr Sześcienny"@pl,
        "Gram Secundă pe Metru Cub Centimetru Cub"@ro,
        "Gram Sekunda na Kubični Meter Kubični Centimeter"@sl,
        "Gram Saniye per Metreküp Centimetreküp"@tr ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC819"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC819"^^xsd:anyURI ;
    qudt:symbol "g·s/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "g.s.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-M3-L a qudt:Unit ;
    rdfs:label "Gram Second per Cubic Metre Litre"^^xsd:string,
        "Gram Second per Cubic Metre Litre"@en,
        "Gram Second per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC820"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC820"^^xsd:anyURI ;
    qudt:symbol "g·s/(m³·L)"^^xsd:string ;
    qudt:ucumCode "g.s.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GM-SEC-PER-M6 a qudt:Unit ;
    rdfs:label "Gram Second per Sextic Metre"^^xsd:string,
        "Gramm Sekunde pro Meter hoch sechs"@de,
        "Gram Second per Sextic Metre"@en,
        "Gram Second per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC818"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC818"^^xsd:anyURI ;
    qudt:symbol "g·s/m⁶"^^xsd:string ;
    qudt:ucumCode "g.s.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GibiBIT-PER-M a qudt:Unit ;
    rdfs:label "Gibibit per Metre"^^xsd:string,
        "Gibibit per Metre"@en,
        "Gibibit per Meter"@en-us ;
    dcterms:description "1,073,741,824-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 744261117.9548930178739031951258957 ;
    qudt:conversionMultiplierSN 7.442611e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GibiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA159"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA159"^^xsd:anyURI ;
    qudt:symbol "Gib/m"^^xsd:string ;
    qudt:ucumCode "Gibit.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GibiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Gibibit per Square Metre"^^xsd:string,
        "Gibibit per Square Metre"@en,
        "Gibibit per Square Meter"@en-us ;
    dcterms:description "1,073,741,824-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 744261117.9548930178739031951258957 ;
    qudt:conversionMultiplierSN 7.442611e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GibiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA160"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA160"^^xsd:anyURI ;
    qudt:symbol "Gib/m²"^^xsd:string ;
    qudt:ucumCode "Gibit.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GibiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Gibibit per Cubic Metre"^^xsd:string,
        "Gibibit per Cubic Metre"@en,
        "Gibibit per Cubic Meter"@en-us ;
    dcterms:description "1,073,741,824-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 744261117.9548930178739031951258957 ;
    qudt:conversionMultiplierSN 7.442611e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GibiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA161"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA161"^^xsd:anyURI ;
    qudt:symbol "Gib/m³"^^xsd:string ;
    qudt:ucumCode "Gibit.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaBIT-PER-M a qudt:Unit ;
    rdfs:label "Gigabit per Metre"^^xsd:string,
        "Gigabit per Metre"@en,
        "Gigabit per Meter"@en-us ;
    dcterms:description "1,000,000,000-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 693147180.55994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaBIT ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:symbol "Gb/m"^^xsd:string ;
    qudt:ucumCode "Gbit.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaBIT-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Gigabit per Second"^^xsd:string,
        "Gigabit per Second"@en ;
    dcterms:description "A gigabit per second (Gbit/s or Gb/s) is a unit of data transfer rate equal to 1,000,000,000 bits per second."^^rdf:HTML ;
    qudt:conversionMultiplier 693147180.55994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaBIT ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA156"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data-rate_units#Gigabit_per_second"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA156"^^xsd:anyURI ;
    qudt:symbol "Gb/s"^^xsd:string ;
    qudt:ucumCode "Gbit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B80"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2243141> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaBQ a qudt:Unit ;
    rdfs:label "Gigabecquerel"^^xsd:string,
        "Gigabecquerel"@cs,
        "Gigabecquerel"@de,
        "Gigabecquerel"@en,
        "Gigabecquerel"@es,
        "Gigabecquerel"@fr,
        "Gigabecquerel"@hu,
        "Gigabecquerel"@it,
        "Gigabecquerel"@ms,
        "Gigabekerel"@pl,
        "Gigabecquerel"@ro,
        "Gigabecquerel"@sl,
        "Gigabekerel"@tr ;
    dcterms:description "1,000,000,000-fold of the derived SI unit becquerel"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAB047"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB047"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000 000 000-fold of the derived SI unit becquerel"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "GBq"^^xsd:string ;
    qudt:ucumCode "GBq"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "GBQ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94488759> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaFLOPS a qudt:Unit ;
    rdfs:label "Giga Floating Point Operations per Second"^^xsd:string,
        "Giga Floating Point Operations per Second"@en ;
    dcterms:description "1,000,000,000-fold of the unit floating point operations divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:FloatingPointCalculationCapability ;
    qudt:iec61360Code "0112/2///62720#UAB592"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB592"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:FLOPS ;
    qudt:symbol "GFLOPS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaOHM-M a qudt:Unit ;
    rdfs:label "Gigaohm Metre"^^xsd:string,
        "Gigaohm Metr"@cs,
        "Gigaohm Meter"@de,
        "Gigaohm Metre"@en,
        "Gigaohm Meter"@en-us,
        "Gigaohmio Metro"@es,
        "Gigaohm Mètre"@fr,
        "Gigaohm Metro"@it,
        "Gigaohm Meter"@ms,
        "Gigaom Metr"@pl,
        "Gigaohm Metru"@ro,
        "Gigaohm Meter"@sl,
        "Gigaohm Metre"@tr ;
    dcterms:description "1,000,000,000-fold of the product out of the SI derived unit ohm and the SI unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA148"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA148"^^xsd:anyURI ;
    qudt:symbol "GΩ·m"^^xsd:string ;
    qudt:ucumCode "GOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "A88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaOHM-PER-M a qudt:Unit ;
    rdfs:label "Gigaohm per Metre"^^xsd:string,
        "Gigaohm na Metr"@cs,
        "Gigaohm pro Meter"@de,
        "Gigaohm per Metre"@en,
        "Gigaohm per Meter"@en-us,
        "Gigaohmio por Metro"@es,
        "Gigaohm par Mètre"@fr,
        "Gigaohm per Metro"@it,
        "Gigaohm per Meter"@ms,
        "Gigaom na Metr"@pl,
        "Gigaohm pe Metru"@ro,
        "Gigaohm na Meter"@sl,
        "Gigaohm per Metre"@tr ;
    dcterms:description "1,000,000,000-fold of the SI derived unit ohm divided by the SI unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:GigaOHM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAB496"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB496"^^xsd:anyURI ;
    qudt:symbol "GΩ/m"^^xsd:string ;
    qudt:ucumCode "GOhm.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M26"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:GigaVA a qudt:Unit ;
    rdfs:label "Giga Volt Ampere"^^xsd:string,
        "Gigavoltampere"@de,
        "Giga Volt Ampere"@en,
        "Gigavoltiamperio"@es,
        "Gigavoltampère"@fr,
        "Giga Volt Ampere"@it ;
    dcterms:description "1,000,000,000-fold of the product of the SI base unit volt with the SI base unit ampere"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:ApparentPower ;
    qudt:iec61360Code "0112/2///62720#UAB534"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB534"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Giga> ;
    qudt:scalingOf unit:VA ;
    qudt:symbol "GVA"^^xsd:string ;
    qudt:ucumCode "GVA"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HART-PER-SEC a qudt:Unit ;
    rdfs:label "Hartley per Second"^^xsd:string,
        "Hartley per Second"@en ;
    dcterms:description "The \"Hartley per Second\" is a unit of information rate."^^rdf:HTML ;
    qudt:conversionMultiplier 2.3025850929940456840179914546844 ;
    qudt:conversionMultiplierSN 2.302585e+00 ;
    qudt:expression "$Hart/s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HART ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:InformationFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB347"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB347"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
    qudt:symbol "Hart/s"^^xsd:string ;
    qudt:uneceCommonCode "Q18"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106466982> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HR-FT2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Hour Square Foot"^^xsd:string,
        "Hour Square Foot"@en ;
    dcterms:description "\"Hour Square Foot\" is an Imperial unit for  'Area Time' expressed as $hr-ft^{2}$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 334.450944 ;
    qudt:conversionMultiplierSN 3.344509e+02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$h-ft^{2}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:AreaTime ;
    qudt:symbol "h·ft²"^^xsd:string ;
    qudt:ucumCode "h.[ft_i]2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HR-PER-YR a qudt:Unit ;
    rdfs:label "Hour per Year"^^xsd:string,
        "Hour per Year"@en,
        "Uur per Jaar"@nl ;
    dcterms:description "Hours per year, used for the time an industrial facility or installation is active during one year"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0001140771161305042208532968286561716 ;
    qudt:conversionMultiplierSN 1.140771e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind qudtqk:TimeRatio ;
    qudt:plainTextDescription "hours (of activity) per year"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:symbol "h/a"^^xsd:string ;
    qudt:ucumCode "h.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HectoPA-PER-BAR a qudt:Unit ;
    rdfs:label "Hectopascal per Bar"^^xsd:string,
        "Hectopascal per Bar"@en ;
    dcterms:description "100-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HectoPA ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA529"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA529"^^xsd:anyURI ;
    qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the unit bar"^^xsd:string ;
    qudt:symbol "hPa/bar"^^xsd:string ;
    qudt:ucumCode "hPa.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E99"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HectoPA-PER-HR a qudt:Unit ;
    rdfs:label "Hectopascal per Hour"^^xsd:string,
        "Hectopascal per Hour"@en ;
    dcterms:description "A change in pressure of one hundred Newtons per square metre (100 Pascals) per hour. Equivalent to a change of one millibar per hour."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.02777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HectoPA ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "hPa/h"^^xsd:string ;
    qudt:ucumCode "hPa.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HectoPA-PER-K a qudt:Unit ;
    rdfs:label "Hectopascal per Kelvin"^^xsd:string,
        "Hectopascal na Kelvin"@cs,
        "Hectopascal pro Kelvin"@de,
        "Hectopascal per Kelvin"@en,
        "Hectopascal por Kelvin"@es,
        "Hectopascal par Kelvin"@fr,
        "Ettopascal per Kelvin"@it,
        "Hectopascal per Kelvin"@ms,
        "Hectopaskal na Kelwin"@pl,
        "Hectopascal pe Kelvin"@ro,
        "Hectopascal na Kelvin"@sl,
        "Hectopascal per Kelvin"@tr ;
    dcterms:description "100-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HectoPA ] ;
    qudt:hasQuantityKind qudtqk:PressureCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA528"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA528"^^xsd:anyURI ;
    qudt:plainTextDescription "100-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "hPa/K"^^xsd:string ;
    qudt:ucumCode "hPa.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:HectoPA-PER-M a qudt:Unit ;
    rdfs:label "Hectopascal per Metre"^^xsd:string,
        "Hectopascal na Metr"@cs,
        "Hectopascal pro Meter"@de,
        "Hectopascal per Metre"@en,
        "Hectopascal per Meter"@en-us,
        "Hectopascal por Metro"@es,
        "Hectopascal par Mètre"@fr,
        "Ettopascal per Metro"@it,
        "Hectopascal per Meter"@ms,
        "Hectopaskal na Metr"@pl,
        "Hectopascal pe Metru"@ro,
        "Hectopascal na Meter"@sl,
        "Hectopascal per Metre"@tr ;
    dcterms:description "100-fold of the SI derived unit pascal divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HectoPA ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB422"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB422"^^xsd:anyURI ;
    qudt:symbol "hPa/m"^^xsd:string ;
    qudt:ucumCode "hPa.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PER-DEG_F a qudt:Unit ;
    rdfs:label "Inch per Degree Fahrenheit"^^xsd:string,
        "Inch per Degree Fahrenheit"@en ;
    dcterms:description "unit inch according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.04572 ;
    qudt:conversionMultiplierSN 4.572e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA540"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA540"^^xsd:anyURI ;
    qudt:plainTextDescription "unit inch according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^xsd:string ;
    qudt:symbol "in/°F"^^xsd:string ;
    qudt:ucumCode "[in_i].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K45"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PER-SEC-DEG_F a qudt:Unit ;
    rdfs:label "Inch per Second Degree Fahrenheit"^^xsd:string,
        "Inch per Second Degree Fahrenheit"@en ;
    dcterms:description "unit inch according to the Anglo-American and the Imperial system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.04572 ;
    qudt:conversionMultiplierSN 4.572e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA543"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA543"^^xsd:anyURI ;
    qudt:symbol "in/(s·°F)"^^xsd:string ;
    qudt:ucumCode "[in_i].s-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K47"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IN-PER-SEC-PSI a qudt:Unit ;
    rdfs:label "Inch per Second Psi"^^xsd:string,
        "Inch per Second Psi"@en ;
    dcterms:description "quotient of the unit inch according to the Anglo-American and the Imperial system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.000003683958373057262503457335380421946 ;
    qudt:conversionMultiplierSN 3.683958e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA544"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA544"^^xsd:anyURI ;
    qudt:symbol "in/(s·psi)"^^xsd:string ;
    qudt:ucumCode "[in_i].s-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K48"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:IU-PER-MilliGM a qudt:Unit ;
    rdfs:label "International Unit per Milligram"^^xsd:string,
        "International Unit per Milligram"@en ;
    dcterms:description """
<p>International Unit per milligramme.
The magnitude of one $IU/L$ depends on the material, so there is no single conversion multiplier.
"""^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IU ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:plainTextDescription "International Units per milligramme."^^xsd:string ;
    qudt:symbol "IU/mg"^^xsd:string ;
    qudt:ucumCode "[IU].mg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule Square Metre"^^xsd:string,
        "Джаул Квадратен Метър"@bg,
        "Joule Čtvereční Metr"@cs,
        "Joule Quadratmeter"@de,
        "Τζάουλ Τετραγωνικό Μέτρο"@el,
        "Joule Square Metre"@en,
        "Joule Square Meter"@en-us,
        "Julio Metro Cuadrado"@es,
        "Joule Mètre Carré"@fr,
        "Joule Metro Quadrato"@it,
        "Joulium Metrum Quadratum"@la,
        "Joule Meter Persegi"@ms,
        "Dżul Metr Kwadratowy"@pl,
        "Joule Metro Quadrado"@pt,
        "Joule Metru Pătrat"@ro,
        "Джоуль Квадратный Метр"@ru,
        "Joule Kvadratni Meter"@sl,
        "Joule Metrekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind qudtqk:TotalAtomicStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAA181"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA181"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "J·m²"^^xsd:string ;
    qudt:ucumCode "J.m2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D73"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q112726147> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-M2-PER-KiloGM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule Square Metre per Kilogram"^^xsd:string,
        "Джаул Квадратен Метър на Килограм"@bg,
        "Joule Čtvereční Metr na Kilogram"@cs,
        "Joule Quadratmeter pro Kilogramm"@de,
        "Τζάουλ Τετραγωνικό Μέτρο ανά Χιλιόγραμμο"@el,
        "Joule Square Metre per Kilogram"@en,
        "Joule Square Meter per Kilogram"@en-us,
        "Julio Metro Cuadrado por Kilogramo"@es,
        "Joule Mètre Carré par Kilogramme"@fr,
        "Joule Metro Quadrato per Chilogrammo"@it,
        "Joulium Metrum Quadratum per Chiliogramma"@la,
        "Joule Meter Persegi per Kilogram"@ms,
        "Dżul Metr Kwadratowy na Kilogram"@pl,
        "Joule Metro Quadrado por Quilograma"@pt,
        "Joule Metru Pătrat pe Kilogram"@ro,
        "Джоуль Квадратный Метр на Килограмм"@ru,
        "Joule Kvadratni Meter na Kilogram"@sl,
        "Joule Metrekare per Kilogram"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$j-m2/kg$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:TotalMassStoppingPower ;
    qudt:iec61360Code "0112/2///62720#UAB487"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB487"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "J·m²/kg"^^xsd:string ;
    qudt:ucumCode "J.m2.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B20"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98643033> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-CentiM3-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Cubic Centimetre Kelvin"^^xsd:string,
        "Joule na Centimetr Krychlový Kelvin"@cs,
        "Joule pro Kubikcentimeter Kelvin"@de,
        "Joule per Cubic Centimetre Kelvin"@en,
        "Joule per Cubic Centimeter Kelvin"@en-us,
        "Julio por Centimetro Cúbico Kelvin"@es,
        "Joule par Centimètre Cube Kelvin"@fr,
        "Joule per Centimetro Cubo Kelvin"@it,
        "Joule per Centimeter Kubik Kelvin"@ms,
        "Dżul na Centimetr Sześcienny Kelwin"@pl,
        "Joule pe Centimetru Cub Kelvin"@ro,
        "Joule na Kubični Centimeter Kelvin"@sl,
        "Joule per Centimetreküp Kelvin"@tr ;
    dcterms:description "$\\textit{Joule per Cubic Centimeter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $J/(cm^{3} K)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$J/(cm^{3} K)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind qudtqk:VolumetricHeatCapacity ;
    qudt:plainTextDescription "Joule per Cubic Centimeter Kelvin is a unit for Volumetric Heat Capacity expressed as J/(cm³·K)"^^xsd:string ;
    qudt:symbol "J/(cm³·K)"^^xsd:string ;
    qudt:ucumCode "J.cm-3.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-KiloGM-K-M3 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Kilogram Kelvin Cubic Metre"^^xsd:string,
        "Джаул на Килограм Келвин Кубичен Метър"@bg,
        "Joule na Kilogram Kelvin Metr Krychlový"@cs,
        "Joule pro Kilogramm Kelvin Kubikmeter"@de,
        "Τζάουλ ανά Χιλιόγραμμο Κέλβιν Κυβικό Μέτρο"@el,
        "Joule per Kilogram Kelvin Cubic Metre"@en,
        "Joule per Kilogram Kelvin Cubic Meter"@en-us,
        "Julio por Kilogramo Kelvin Metro Cúbico"@es,
        "Joule par Kilogramme Kelvin Mètre Cube"@fr,
        "Joule per Chilogrammo Kelvin Metro Cubo"@it,
        "Joulium per Chiliogramma Kelvin Metrum Cubicum"@la,
        "Joule per Kilogram Kelvin Meter Kubik"@ms,
        "Dżul na Kilogram Kelwin Metr Sześcienny"@pl,
        "Joule por Quilograma Kelvin Metro Cúbico"@pt,
        "Joule pe Kilogram Kelvin Metru Cub"@ro,
        "Джоуль на Килограмм Кельвин Кубический Метр"@ru,
        "Joule na Kilogram Kelvin Kubični Meter"@sl,
        "Joule per Kilogram Kelvin Metreküp"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$j-per-kg-k-m3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:SpecificHeatVolume ;
    qudt:symbol "J/(kg·K·m³)"^^xsd:string ;
    qudt:ucumCode "J.kg-1.K-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-KiloGM-K-PA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Kilogram Kelvin Pascal"^^xsd:string,
        "Джаул на Килограм Келвин Паскал"@bg,
        "Joule na Kilogram Kelvin Pascal"@cs,
        "Joule pro Kilogramm Kelvin Pascal"@de,
        "Τζάουλ ανά Χιλιόγραμμο Κέλβιν Πασκάλ"@el,
        "Joule per Kilogram Kelvin Pascal"@en,
        "Julio por Kilogramo Kelvin Pascal"@es,
        "Joule par Kilogramme Kelvin Pascal"@fr,
        "Joule per Chilogrammo Kelvin Pascal"@it,
        "Joulium per Chiliogramma Kelvin Pascalium"@la,
        "Joule per Kilogram Kelvin Pascal"@ms,
        "Dżul na Kilogram Kelwin Paskal"@pl,
        "Joule por Quilograma Kelvin Pascal"@pt,
        "Joule pe Kilogram Kelvin Pascal"@ro,
        "Джоуль на Килограмм Кельвин Паскаль"@ru,
        "Joule na Kilogram Kelvin Pascal"@sl,
        "Joule per Kilogram Kelvin Pascal"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$j-per-kg-k-pa$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:SpecificHeatPressure ;
    qudt:symbol "J/(kg·K·Pa)"^^xsd:string ;
    qudt:ucumCode "J.kg-1.K-1.Pa-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-M3-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Cubic Metre Kelvin"^^xsd:string,
        "Джаул на Кубичен Метър Келвин"@bg,
        "Joule na Metr Krychlový Kelvin"@cs,
        "Joule pro Kubikmeter Kelvin"@de,
        "Τζάουλ ανά Κυβικό Μέτρο Κέλβιν"@el,
        "Joule per Cubic Metre Kelvin"@en,
        "Joule per Cubic Meter Kelvin"@en-us,
        "Julio por Metro Cúbico Kelvin"@es,
        "Joule par Mètre Cube Kelvin"@fr,
        "Joule per Metro Cubo Kelvin"@it,
        "Joulium per Metrum Cubicum Kelvin"@la,
        "Joule per Meter Kubik Kelvin"@ms,
        "Dżul na Metr Sześcienny Kelwin"@pl,
        "Joule por Metro Cúbico Kelvin"@pt,
        "Joule pe Metru Cub Kelvin"@ro,
        "Джоуль на Кубический Метр Кельвин"@ru,
        "Joule na Kubični Meter Kelvin"@sl,
        "Joule per Metreküp Kelvin"@tr ;
    dcterms:description "$\\textit{Joule per Cubic Meter Kelvin}$ is a unit for 'Volumetric Heat Capacity' expressed as $J/(m^{3} K)$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$J/(m^{3} K)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind qudtqk:VolumetricHeatCapacity ;
    qudt:symbol "J/(m³·K)"^^xsd:string ;
    qudt:ucumCode "J.m-3.K-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q3186734> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:J-PER-M4 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Joule per Quartic Metre"^^xsd:string,
        "Joule pro Meter hoch vier"@de,
        "Joule per Quartic Metre"@en,
        "Joule per Quartic Meter"@en-us ;
    dcterms:description """
  The unit $\\textit{Joule Per Quartic Meter}$ ($J/m^4$) is a unit for the spectral concentration of radiant energy density (in terms of wavelength), or the spectral radiant energy density (in terms of wave length). 
  This unit is commonly used in the SI unit system.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$J/m^4$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -4 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiantEnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAA177"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA177"^^xsd:anyURI ;
    qudt:symbol "J/m⁴"^^xsd:string ;
    qudt:ucumCode "J.m-4"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B14"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106867426> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-M-PER-SEC a qudt:Unit ;
    rdfs:label "Kelvin Metre per Second"^^xsd:string,
        "Келвин Метър на Секунда"@bg,
        "Kelvin Metr na Sekunda"@cs,
        "Kelvin Meter pro Sekunde"@de,
        "Κέλβιν Μέτρο ανά Δευτερόλεπτο"@el,
        "Kelvin Metre per Second"@en,
        "Kelvin Meter per Second"@en-us,
        "Kelvin Metro por Segundo"@es,
        "Kelvin Mètre par Seconde"@fr,
        "Kelvin Metro per Secondo"@it,
        "Kelvin Metrum per Secundum"@la,
        "Kelvin Meter per Saat"@ms,
        "Kelwin Metr na Sekunda"@pl,
        "Kelvin Metro por Segundo"@pt,
        "Kelvin Metru pe Secundă"@ro,
        "Кельвин Метр на Секунда"@ru,
        "Kelvin Meter na Sekunda"@sl,
        "Kelvin Metre per Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "K·m/s"^^xsd:string ;
    qudt:ucumCode "K.m.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-M2-PER-KiloGM-SEC a qudt:Unit ;
    rdfs:label "Kelvin Square Metre per Kilogram Second"^^xsd:string,
        "Келвин Квадратен Метър на Килограм Секунда"@bg,
        "Kelvin Čtvereční Metr na Kilogram Sekunda"@cs,
        "Kelvin Quadratmeter pro Kilogramm Sekunde"@de,
        "Κέλβιν Τετραγωνικό Μέτρο ανά Χιλιόγραμμο Δευτερόλεπτο"@el,
        "Kelvin Square Metre per Kilogram Second"@en,
        "Kelvin Square Meter per Kilogram Second"@en-us,
        "Kelvin Metro Cuadrado por Kilogramo Segundo"@es,
        "Kelvin Mètre Carré par Kilogramme Seconde"@fr,
        "Kelvin Metro Quadrato per Chilogrammo Secondo"@it,
        "Kelvin Metrum Quadratum per Chiliogramma Secundum"@la,
        "Kelvin Meter Persegi per Kilogram Saat"@ms,
        "Kelwin Metr Kwadratowy na Kilogram Sekunda"@pl,
        "Kelvin Metro Quadrado por Quilograma Segundo"@pt,
        "Kelvin Metru Pătrat pe Kilogram Secundă"@ro,
        "Кельвин Квадратный Метр на Килограмм Секунда"@ru,
        "Kelvin Kvadratni Meter na Kilogram Sekunda"@sl,
        "Kelvin Metrekare per Kilogram Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "K·m²/(kg·s)"^^xsd:string ;
    qudt:ucumCode "K.m2.kg-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PA-PER-SEC a qudt:Unit ;
    rdfs:label "Kelvin Pascal per Second"^^xsd:string,
        "Келвин Паскал на Секунда"@bg,
        "Kelvin Pascal na Sekunda"@cs,
        "Kelvin Pascal pro Sekunde"@de,
        "Κέλβιν Πασκάλ ανά Δευτερόλεπτο"@el,
        "Kelvin Pascal per Second"@en,
        "Kelvin Pascal por Segundo"@es,
        "Kelvin Pascal par Seconde"@fr,
        "Kelvin Pascal per Secondo"@it,
        "Kelvin Pascalium per Secundum"@la,
        "Kelvin Pascal per Saat"@ms,
        "Kelwin Paskal na Sekunda"@pl,
        "Kelvin Pascal por Segundo"@pt,
        "Kelvin Pascal pe Secundă"@ro,
        "Кельвин Паскаль на Секунда"@ru,
        "Kelvin Pascal na Sekunda"@sl,
        "Kelvin Pascal per Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "K·Pa/s"^^xsd:string ;
    qudt:ucumCode "K.Pa.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-K a qudt:Unit ;
    rdfs:label "Kelvin per Kelvin"^^xsd:string,
        "Келвин на Келвин"@bg,
        "Kelvin na Kelvin"@cs,
        "Kelvin pro Kelvin"@de,
        "Κέλβιν ανά Κέλβιν"@el,
        "Kelvin per Kelvin"@en,
        "Kelvin por Kelvin"@es,
        "Kelvin par Kelvin"@fr,
        "Kelvin per Kelvin"@it,
        "Kelvin per Kelvin"@la,
        "Kelvin per Kelvin"@ms,
        "Kelwin na Kelwin"@pl,
        "Kelvin por Kelvin"@pt,
        "Kelvin pe Kelvin"@ro,
        "Кельвин на Кельвин"@ru,
        "Kelvin na Kelvin"@sl,
        "Kelvin per Kelvin"@tr ;
    dcterms:description "SI base unit kelvin divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:TemperatureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA186"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA186"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kelvin divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "K/K"^^xsd:string ;
    qudt:ucumCode "K.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F02"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K-PER-SEC2 a qudt:Unit ;
    rdfs:label "Kelvin per Square Second"^^xsd:string,
        "Келвин на Квадратен Секунда"@bg,
        "Kelvin na Čtvereční Sekunda"@cs,
        "Kelvin pro Quadratsekunde"@de,
        "Κέλβιν ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Kelvin per Square Second"@en,
        "Kelvin por Segundo Cuadrado"@es,
        "Kelvin par Seconde Carré"@fr,
        "Kelvin per Secondo Quadrato"@it,
        "Kelvin per Secundum Quadratum"@la,
        "Kelvin per Saat Persegi"@ms,
        "Kelwin na Sekunda Kwadratowy"@pl,
        "Kelvin por Segundo Quadrado"@pt,
        "Kelvin pe Secundă Pătrat"@ro,
        "Кельвин на Квадратный Секунда"@ru,
        "Kelvin na Kvadratni Sekunda"@sl,
        "Kelvin per Saniyekare"@tr ;
    dcterms:description "$\\textit{Kelvin per Square Second}$ is a unit for 'Temperature Per Time Squared' expressed as $K / s^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$K / s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:TemperaturePerSquareTime ;
    qudt:symbol "K/s²"^^xsd:string ;
    qudt:ucumCode "K.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:K2 a qudt:Unit ;
    rdfs:label "Square Kelvin"^^xsd:string,
        "Квадратен Келвин"@bg,
        "Čtvereční Kelvin"@cs,
        "Quadratkelvin"@de,
        "Τετραγωνικό Κέλβιν"@el,
        "Square Kelvin"@en,
        "Kelvin Cuadrado"@es,
        "Kelvin Carré"@fr,
        "Kelvin Quadrato"@it,
        "Kelvin Quadratum"@la,
        "Kelvin Persegi"@ms,
        "Kelwin Kwadratowy"@pl,
        "Kelvin Quadrado"@pt,
        "Kelvin Pătrat"@ro,
        "Квадратный Кельвин"@ru,
        "Kvadratni Kelvin"@sl,
        "Kelvinkare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H2T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "K²"^^xsd:string ;
    qudt:ucumCode "K2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KAT-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Katal per Litre"^^xsd:string,
        "Katal per Litre"@en,
        "Katal per Liter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KAT ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^xsd:string ;
    qudt:symbol "kat/L"^^xsd:string ;
    qudt:ucumCode "kat.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KAT-PER-M3 a qudt:Unit ;
    rdfs:label "Katal per Cubic Metre"^^xsd:string,
        "Катал на Кубичен Метър"@bg,
        "Katal na Metr Krychlový"@cs,
        "Katal pro Kubikmeter"@de,
        "Κατάλ ανά Κυβικό Μέτρο"@el,
        "Katal per Cubic Metre"@en,
        "Katal per Cubic Meter"@en-us,
        "Katal por Metro Cúbico"@es,
        "Katal par Mètre Cube"@fr,
        "Katal per Metro Cubo"@it,
        "Katal per Meter Kubik"@ms,
        "Katal na Metr Sześcienny"@pl,
        "Katal por Metro Cúbico"@pt,
        "Katal pe Metru Cub"@ro,
        "Катал на Кубический Метр"@ru,
        "Katal na Kubični Meter"@sl,
        "Katal per Metreküp"@tr ;
    dcterms:description "the SI derived unit katal divided by the SI base unit metre to the power three"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KAT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:iec61360Code "0112/2///62720#UAB602"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB602"^^xsd:anyURI ;
    qudt:symbol "kat/m³"^^xsd:string ;
    qudt:ucumCode "kat.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KAT-PER-MicroL a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Katal per Microlitre"^^xsd:string,
        "Katal per Microlitre"@en,
        "Katal per Microliter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Katal"^^xsd:anyURI ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KAT ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^xsd:string ;
    qudt:symbol "kat/μL"^^xsd:string ;
    qudt:ucumCode "kat.uL-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KibiBIT-PER-M a qudt:Unit ;
    rdfs:label "Kibibit per Metre"^^xsd:string,
        "Kibibit per Metre"@en,
        "Kibibit per Meter"@en-us ;
    dcterms:description "1024-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 709.7827128933839968432456923731763 ;
    qudt:conversionMultiplierSN 7.097827e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KibiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA194"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA194"^^xsd:anyURI ;
    qudt:symbol "Kib/m"^^xsd:string ;
    qudt:ucumCode "Kibit.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KibiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Kibibit per Square Metre"^^xsd:string,
        "Kibibit per Square Metre"@en,
        "Kibibit per Square Meter"@en-us ;
    dcterms:description "1024-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 709.7827128933839968432456923731763 ;
    qudt:conversionMultiplierSN 7.097827e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KibiBIT ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA195"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA195"^^xsd:anyURI ;
    qudt:symbol "Kib/m²"^^xsd:string ;
    qudt:ucumCode "Kibit.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KibiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Kibibit per Cubic Metre"^^xsd:string,
        "Kibibit per Cubic Metre"@en,
        "Kibibit per Cubic Meter"@en-us ;
    dcterms:description "1024-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 709.7827128933839968432456923731763 ;
    qudt:conversionMultiplierSN 7.097827e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KibiBIT ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA196"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA196"^^xsd:anyURI ;
    qudt:symbol "Kib/m³"^^xsd:string ;
    qudt:ucumCode "Kibit.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloA-PER-K a qudt:Unit ;
    rdfs:label "Kiloampere per Kelvin"^^xsd:string,
        "Kiloampér na Kelvin"@cs,
        "Kiloampere pro Kelvin"@de,
        "Kiloampere per Kelvin"@en,
        "Kiloamperio por Kelvin"@es,
        "Kiloampère par Kelvin"@fr,
        "Chiloampere per Kelvin"@it,
        "Kiloampere per Kelvin"@ms,
        "Kiloamper na Kelwin"@pl,
        "Kiloamper pe Kelvin"@ro,
        "Kiloamper na Kelvin"@sl,
        "Kiloamper per Kelvin"@tr ;
    dcterms:description "1,000-fold of the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloA ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAD900"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD900"^^xsd:anyURI ;
    qudt:symbol "kA/K"^^xsd:string ;
    qudt:ucumCode "kA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloA-PER-M2 a qudt:Unit ;
    rdfs:label "Kiloampere per Square Metre"^^xsd:string,
        "Kiloampér na Čtvereční Metr"@cs,
        "Kiloampere pro Quadratmeter"@de,
        "Kiloampere per Square Metre"@en,
        "Kiloampere per Square Meter"@en-us,
        "Kiloamperio por Metro Cuadrado"@es,
        "Kiloampère par Mètre Carré"@fr,
        "Chiloampere per Metro Quadrato"@it,
        "Kiloampere per Meter Persegi"@ms,
        "Kiloamper na Metr Kwadratowy"@pl,
        "Kiloamper pe Metru Pătrat"@ro,
        "Kiloamper na Kvadratni Meter"@sl,
        "Kiloamper per Metrekare"@tr ;
    dcterms:description "1 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:iec61360Code "0112/2///62720#UAA559"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA559"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:symbol "kA/m²"^^xsd:string ;
    qudt:ucumCode "kA.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBAUD a qudt:Unit ;
    rdfs:label "Kilobaud"^^xsd:string,
        "Kilobaud"@en ;
    dcterms:description "1,000-fold of the unit baud for the symbol rate in communications engineering and telecommunication"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:DigitRate ;
    qudt:iec61360Code "0112/2///62720#UAA560"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA560"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:BAUD ;
    qudt:symbol "kBd"^^xsd:string ;
    qudt:uneceCommonCode "K50"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBIT-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilobit per Second"^^xsd:string,
        "Kilobit per Second"@en ;
    dcterms:description "A kilobit per second (kB/s) is a unit of data transfer rate equal to 1,000 bits per second."^^rdf:HTML ;
    qudt:conversionMultiplier 693.14718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloBIT ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA586"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobit_per_second"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA586"^^xsd:anyURI ;
    qudt:symbol "kb/s"^^xsd:string ;
    qudt:ucumCode "kbit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C74"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2269250> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloBYTE-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilobyte per Second"^^xsd:string,
        "Kilobyte per Second"@en ;
    dcterms:description "A kilobyte per second (kByte/s) is a unit of data transfer rate equal to 1000 bytes per second or 8000 bits per second."^^rdf:HTML ;
    qudt:conversionMultiplier 5545.17744447956247533785697166544 ;
    qudt:conversionMultiplierSN 5.545177e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloBYTE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAB306"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units#Kilobyte_per_second"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB306"^^xsd:anyURI ;
    qudt:symbol "kB/s"^^xsd:string ;
    qudt:ucumCode "kBy.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P94"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q12261466> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloC-PER-M3 a qudt:Unit ;
    rdfs:label "Kilocoulomb per Cubic Metre"^^xsd:string,
        "Kilocoulomb na Metr Krychlový"@cs,
        "Kilocoulomb pro Kubikmeter"@de,
        "Kilocoulomb per Cubic Metre"@en,
        "Kilocoulomb per Cubic Meter"@en-us,
        "Kiloculombio por Metro Cúbico"@es,
        "Kilocoulomb par Mètre Cube"@fr,
        "Chilocoulomb per Metro Cubo"@it,
        "Kilocoulomb per Meter Kubik"@ms,
        "Kilokulomb na Metr Sześcienny"@pl,
        "Kilocoulomb pe Metru Cub"@ro,
        "Kilocoulomb na Kubični Meter"@sl,
        "Kilocoulomb per Metreküp"@tr ;
    dcterms:description "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloC ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAA565"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA565"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "kC/m³"^^xsd:string ;
    qudt:ucumCode "kC.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B27"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808144> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL-PER-CentiM-SEC-DEG_C a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilocalorie per Centimetre Second Degree Celsius"^^xsd:string,
        "Kilocalorie per Centimetre Second Degree Celsius"@en,
        "Kilocalorie per Centimeter Second Degree Celsius"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 418400.0 ;
    qudt:conversionMultiplierSN 4.184e+05 ;
    qudt:expression "$kilocal-per-cm-sec-degc$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloCAL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:symbol "kcal/(cm·s·°C)"^^xsd:string ;
    qudt:ucumCode "kcal.cm-1.s-1.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL-PER-MOL-DEG_C a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilocalorie per Mole Degree Celsius"^^xsd:string,
        "Kilocalorie per Mole Degree Celsius"@en ;
    dcterms:description """
  A $\\textit{Kilocalorie per Mole Degree Celsius}$ is a unit for 'Molar Heat Capacity',
   expressed as $kcal/(mol-degC)$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 4184.0 ;
    qudt:conversionMultiplierSN 4.184e+03 ;
    qudt:expression "$kcal/(mol-degC)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloCAL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:MolarHeatCapacity ;
    qudt:symbol "kcal/(mol·°C)"^^xsd:string ;
    qudt:ucumCode "kcal.mol-1.Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL_IT-PER-GM-K a qudt:Unit ;
    rdfs:label "Kilo International Table Calorie per Gram Kelvin"^^xsd:string,
        "Kilo International Table Calorie per Gram Kelvin"@en ;
    dcterms:description "unit of the mass-related heat capacity as quotient 1,000-fold of the calorie (international table) divided by the product of the 0.001-fold of the SI base units kilogram and kelvin"^^qudt:LatexString ;
    qudt:conversionMultiplier 4186800.0 ;
    qudt:conversionMultiplierSN 4.1868e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloCAL_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:MassicHeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAB455"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB455"^^xsd:anyURI ;
    qudt:symbol "kcal{IT}/(g·K)"^^xsd:string ;
    qudt:ucumCode "kcal_IT.g-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N65"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCAL_IT-PER-HR-M-DEG_C a qudt:Unit ;
    rdfs:label "Kilo International Table Calorie per Hour Metre Degree Celsius"^^xsd:string,
        "Kilo International Table Calorie per Hour Metre Degree Celsius"@en,
        "Kilo International Table Calorie per Hour Meter Degree Celsius"@en-us ;
    dcterms:description "1 000-fold of the no longer approved unit international calorie for energy divided by the product of the SI base unit metre, the unit hour for time and the unit degree Celsius for temperature"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.163 ;
    qudt:conversionMultiplierSN 1.163e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloCAL_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA588"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA588"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the no longer approved unit international calorie for energy divided by the product of the SI base unit metre, the unit hour for time and the unit degree Celsius for temperature"^^xsd:string ;
    qudt:symbol "kcal{IT}/(h·m·°C)"^^xsd:string ;
    qudt:ucumCode "kcal_IT.h-1.m-1.Cel-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloCD a qudt:Unit ;
    rdfs:label "Kilocandela"^^xsd:string,
        "Kilokandela"@cs,
        "Kilocandela"@de,
        "Kilocandela"@en,
        "Kilocandela"@es,
        "Kilocandela"@fr,
        "Kilokandela"@hu,
        "Chilocandela"@it,
        "Kilokandela"@ms,
        "Kilokandela"@pl,
        "Kilocandelă"@ro,
        "Kilokandela"@sl,
        "Kilocandela"@tr ;
    dcterms:description "1,000-fold of the SI base unit candela"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:LuminousIntensity ;
    qudt:iec61360Code "0112/2///62720#UAB365"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB365"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:CD ;
    qudt:symbol "kcd"^^xsd:string ;
    qudt:ucumCode "kcd"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloEV-PER-MicroM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilo Electron Volt per Micrometre"^^xsd:string,
        "Kilo Electron Volt per Micrometre"@en,
        "Kilo Electron Volt per Micrometer"@en-us ;
    dcterms:description "\"Kilo Electron Volt per Micrometer\" is a unit for  'Linear Energy Transfer' expressed as $keV/microM$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-10 ;
    qudt:expression "$keV/microM$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloEV ] ;
    qudt:hasQuantityKind qudtqk:LinearEnergyTransfer ;
    qudt:symbol "keV/μm"^^xsd:string ;
    qudt:ucumCode "keV.um-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloFARAD a qudt:Unit ;
    rdfs:label "Kilofarad"^^xsd:string,
        "Kilofarad"@cs,
        "Kilofarad"@de,
        "Kilofarad"@en,
        "Kilofaradio"@es,
        "Kilofarad"@fr,
        "Kilofarad"@hu,
        "Chilofarad"@it,
        "Kilofarad"@ms,
        "Kilofarad"@pl,
        "Kilofarad"@ro,
        "Kilofarad"@sl,
        "Kilofarad"@tr ;
    dcterms:description "1,000-fold of the SI derived unit farad"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAB384"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB384"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Kilo> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "kF"^^xsd:string ;
    qudt:ucumCode "kF"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N90"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q95378017> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-CentiM-PER-SEC a qudt:Unit ;
    rdfs:label "Kilogram Centimetre per Second"^^xsd:string,
        "Kilogram Centimetr na Sekunda"@cs,
        "Kilogramm Centimeter pro Sekunde"@de,
        "Kilogram Centimetre per Second"@en,
        "Kilogram Centimeter per Second"@en-us,
        "Kilogramo Centimetro por Segundo"@es,
        "Kilogramme Centimètre par Seconde"@fr,
        "Chilogrammo Centimetro per Secondo"@it,
        "Kilogram Centimeter per Saat"@ms,
        "Kilogram Centimetr na Sekunda"@pl,
        "Kilogram Centimetru pe Secundă"@ro,
        "Kilogram Centimeter na Sekunda"@sl,
        "Kilogram Centimetre per Saniye"@tr ;
    dcterms:description "product of the SI base unit kilogram and the 0.01-fold of the SI base unit metre divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Impulse ;
    qudt:iec61360Code "0112/2///62720#UAB413"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB413"^^xsd:anyURI ;
    qudt:symbol "kg·cm/s"^^xsd:string ;
    qudt:ucumCode "kg.cm.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram Kelvin"^^xsd:string,
        "Килограм Келвин"@bg,
        "Kilogram Kelvin"@cs,
        "Kilogramm Kelvin"@de,
        "Χιλιόγραμμο Κέλβιν"@el,
        "Kilogram Kelvin"@en,
        "Kilogramo Kelvin"@es,
        "Kilogramme Kelvin"@fr,
        "Chilogrammo Kelvin"@it,
        "Chiliogramma Kelvin"@la,
        "Kilogram Kelvin"@ms,
        "Kilogram Kelwin"@pl,
        "Quilograma Kelvin"@pt,
        "Kilogram Kelvin"@ro,
        "Килограмм Кельвин"@ru,
        "Kilogram Kelvin"@sl,
        "Kilogram Kelvin"@tr ;
    dcterms:description "$\\textit{Kilogram Kelvin}$ is a unit for 'Mass Temperature' expressed as $kg-K$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$kg-K$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassTemperature ;
    qudt:symbol "kg·K"^^xsd:string ;
    qudt:ucumCode "kg.K"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-M a qudt:Unit ;
    rdfs:label "Kilogram Metre"^^xsd:string,
        "Килограм Метър"@bg,
        "Kilogram Metr"@cs,
        "Kilogramm Meter"@de,
        "Χιλιόγραμμο Μέτρο"@el,
        "Kilogram Metre"@en,
        "Kilogram Meter"@en-us,
        "Kilogramo Metro"@es,
        "Kilogramme Mètre"@fr,
        "Chilogrammo Metro"@it,
        "Chiliogramma Metrum"@la,
        "Kilogram Meter"@ms,
        "Kilogram Metr"@pl,
        "Quilograma Metro"@pt,
        "Kilogram Metru"@ro,
        "Килограмм Метр"@ru,
        "Kilogram Meter"@sl,
        "Kilogram Metre"@tr ;
    dcterms:description "unit of the imbalance as a product of the SI base unit kilogram and the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unbalance ;
    qudt:iec61360Code "0112/2///62720#UAB368"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB368"^^xsd:anyURI ;
    qudt:symbol "kg·m"^^xsd:string ;
    qudt:ucumCode "kg.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Bar"^^xsd:string,
        "Kilogram per Bar"@en ;
    dcterms:description "SI base unit kilogram divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA596"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA596"^^xsd:anyURI ;
    qudt:symbol "kg/bar"^^xsd:string ;
    qudt:ucumCode "kg.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H53"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-CentiM3-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Centimetre Bar"^^xsd:string,
        "Kilogram per Cubic Centimetre Bar"@en,
        "Kilogram per Cubic Centimeter Bar"@en-us ;
    dcterms:description "SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA599"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA599"^^xsd:anyURI ;
    qudt:symbol "kg/(cm³·bar)"^^xsd:string ;
    qudt:ucumCode "kg.cm-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-CentiM3-K a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Centimetre Kelvin"^^xsd:string,
        "Kilogram na Centimetr Krychlový Kelvin"@cs,
        "Kilogramm pro Kubikcentimeter Kelvin"@de,
        "Kilogram per Cubic Centimetre Kelvin"@en,
        "Kilogram per Cubic Centimeter Kelvin"@en-us,
        "Kilogramo por Centimetro Cúbico Kelvin"@es,
        "Kilogramme par Centimètre Cube Kelvin"@fr,
        "Chilogrammo per Centimetro Cubo Kelvin"@it,
        "Kilogram per Centimeter Kubik Kelvin"@ms,
        "Kilogram na Centimetr Sześcienny Kelwin"@pl,
        "Kilogram pe Centimetru Cub Kelvin"@ro,
        "Kilogram na Kubični Centimeter Kelvin"@sl,
        "Kilogram per Centimetreküp Kelvin"@tr ;
    dcterms:description "SI base unit kilogram divided by the product out of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA598"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA598"^^xsd:anyURI ;
    qudt:symbol "kg/(cm³·K)"^^xsd:string ;
    qudt:ucumCode "kg.cm-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G38"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-DAY a qudt:Unit ;
    rdfs:label "Kilogram per Day"^^xsd:string,
        "Kilogram per Day"@en ;
    dcterms:description "SI base unit kilogram divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA601"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA601"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the unit day"^^xsd:string ;
    qudt:symbol "kg/d"^^xsd:string ;
    qudt:ucumCode "kg.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F30"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210127> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Day Bar"^^xsd:string,
        "Kilogram per Day Bar"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA603"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA603"^^xsd:anyURI ;
    qudt:symbol "kg/(d·bar)"^^xsd:string ;
    qudt:ucumCode "kg.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-DAY-K a qudt:Unit ;
    rdfs:label "Kilogram per Day Kelvin"^^xsd:string,
        "Kilogram per Day Kelvin"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA602"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA602"^^xsd:anyURI ;
    qudt:symbol "kg/(d·K)"^^xsd:string ;
    qudt:ucumCode "kg.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-DeciM3-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Decimetre Bar"^^xsd:string,
        "Kilogram per Cubic Decimetre Bar"@en,
        "Kilogram per Cubic Decimeter Bar"@en-us ;
    dcterms:description "SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA606"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA606"^^xsd:anyURI ;
    qudt:symbol "kg/(dm³·bar)"^^xsd:string ;
    qudt:ucumCode "kg.dm-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H55"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-DeciM3-K a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Decimetre Kelvin"^^xsd:string,
        "Kilogram na Decimetr Krychlový Kelvin"@cs,
        "Kilogramm pro Kubikdecimeter Kelvin"@de,
        "Kilogram per Cubic Decimetre Kelvin"@en,
        "Kilogram per Cubic Decimeter Kelvin"@en-us,
        "Kilogramo por Decimetro Cúbico Kelvin"@es,
        "Kilogramme par Decimètre Cube Kelvin"@fr,
        "Chilogrammo per Decimetro Cubo Kelvin"@it,
        "Kilogram per Decimeter Kubik Kelvin"@ms,
        "Kilogram na Decimetr Sześcienny Kelwin"@pl,
        "Kilogram pe Decimetru Cub Kelvin"@ro,
        "Kilogram na Kubični Decimeter Kelvin"@sl,
        "Kilogram per Decimetreküp Kelvin"@tr ;
    dcterms:description "SI base unit kilogram divided by the product out of the 0.001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:DeciM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA605"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA605"^^xsd:anyURI ;
    qudt:symbol "kg/(dm³·K)"^^xsd:string ;
    qudt:ucumCode "kg.dm-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H54"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-GigaJ a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Gigajoule"^^xsd:string,
        "Kilogram na Gigajoule"@cs,
        "Kilogramm pro Gigajoule"@de,
        "Kilogram per Gigajoule"@en,
        "Kilogramo por Gigajulio"@es,
        "Kilogramme par Gigajoule"@fr,
        "Chilogrammo per Gigajoule"@it,
        "Kilogram per Gigajoule"@ms,
        "Kilogram na Gigadżul"@pl,
        "Kilogram pe Gigajoule"@ro,
        "Kilogram na Gigajoule"@sl,
        "Kilogram per Gigajoule"@tr ;
    dcterms:description "SI base unit kilogram divided by the SI base unit gigajoule"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GigaJ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:plainTextDescription "SI base unit kilogram divided by the SI base unit gigajoule"^^xsd:string ;
    qudt:symbol "kg/GJ"^^xsd:string ;
    qudt:ucumCode "kg.GJ-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107460790> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Hour Bar"^^xsd:string,
        "Kilogram per Hour Bar"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA609"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA609"^^xsd:anyURI ;
    qudt:symbol "kg/(h·bar)"^^xsd:string ;
    qudt:ucumCode "kg.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-HR-K a qudt:Unit ;
    rdfs:label "Kilogram per Hour Kelvin"^^xsd:string,
        "Kilogram per Hour Kelvin"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA608"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA608"^^xsd:anyURI ;
    qudt:symbol "kg/(h·K)"^^xsd:string ;
    qudt:ucumCode "kg.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F40"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-K a qudt:Unit ;
    rdfs:label "Kilogram per Kelvin"^^xsd:string,
        "Килограм на Келвин"@bg,
        "Kilogram na Kelvin"@cs,
        "Kilogramm pro Kelvin"@de,
        "Χιλιόγραμμο ανά Κέλβιν"@el,
        "Kilogram per Kelvin"@en,
        "Kilogramo por Kelvin"@es,
        "Kilogramme par Kelvin"@fr,
        "Chilogrammo per Kelvin"@it,
        "Chiliogramma per Kelvin"@la,
        "Kilogram per Kelvin"@ms,
        "Kilogram na Kelwin"@pl,
        "Quilograma por Kelvin"@pt,
        "Kilogram pe Kelvin"@ro,
        "Килограмм на Кельвин"@ru,
        "Kilogram na Kelvin"@sl,
        "Kilogram per Kelvin"@tr ;
    dcterms:description "SI base unit kilogram divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA595"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA595"^^xsd:anyURI ;
    qudt:symbol "kg/K"^^xsd:string ;
    qudt:ucumCode "kg.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-KiloM a qudt:Unit ;
    rdfs:label "Kilogram per Kilometre"^^xsd:string,
        "Kilogram na Kilometr"@cs,
        "Kilogramm pro Kilometer"@de,
        "Kilogram per Kilometre"@en,
        "Kilogram per Kilometer"@en-us,
        "Kilogramo por Kilometro"@es,
        "Kilogramme par Kilomètre"@fr,
        "Chilogrammo per Chilometro"@it,
        "Kilogram per Kilometer"@ms,
        "Kilogram na Kilometr"@pl,
        "Kilogram pe Kilometru"@ro,
        "Kilogram na Kilometer"@sl,
        "Kilogram per Kilometre"@tr ;
    dcterms:description "SI base kilogram divided by the 1,000-fold of the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:LinearMass ;
    qudt:iec61360Code "0112/2///62720#UAB495"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB495"^^xsd:anyURI ;
    qudt:symbol "kg/km"^^xsd:string ;
    qudt:ucumCode "kg.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M31"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-L-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Litre Bar"^^xsd:string,
        "Kilogram per Litre Bar"@en,
        "Kilogram per Liter Bar"@en-us ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit litre and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA614"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA614"^^xsd:anyURI ;
    qudt:symbol "kg/(L·bar)"^^xsd:string ;
    qudt:ucumCode "kg.L-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-L-K a qudt:Unit ;
    rdfs:label "Kilogram per Litre Kelvin"^^xsd:string,
        "Kilogram per Litre Kelvin"@en,
        "Kilogram per Liter Kelvin"@en-us ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit litre and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA613"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA613"^^xsd:anyURI ;
    qudt:symbol "kg/(L·K)"^^xsd:string ;
    qudt:ucumCode "kg.L-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M2-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Square Metre Square Second"^^xsd:string,
        "Килограм на Квадратен Метър Квадратен Секунда"@bg,
        "Kilogram na Čtvereční Metr Čtvereční Sekunda"@cs,
        "Kilogramm pro Quadratmeter Quadratsekunde"@de,
        "Χιλιόγραμμο ανά Τετραγωνικό Μέτρο Τετραγωνικό Δευτερόλεπτο"@el,
        "Kilogram per Square Metre Square Second"@en,
        "Kilogram per Square Meter Square Second"@en-us,
        "Kilogramo por Metro Cuadrado Segundo Cuadrado"@es,
        "Kilogramme par Mètre Carré Seconde Carré"@fr,
        "Chilogrammo per Metro Quadrato Secondo Quadrato"@it,
        "Chiliogramma per Metrum Quadratum Secundum Quadratum"@la,
        "Kilogram per Meter Persegi Saat Persegi"@ms,
        "Kilogram na Metr Kwadratowy Sekunda Kwadratowy"@pl,
        "Quilograma por Metro Quadrado Segundo Quadrado"@pt,
        "Kilogram pe Metru Pătrat Secundă Pătrat"@ro,
        "Килограмм на Квадратный Метр Квадратный Секунда"@ru,
        "Kilogram na Kvadratni Meter Kvadratni Sekunda"@sl,
        "Kilogram per Metrekare Saniyekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:PressureLossPerLength ;
    qudt:symbol "kg/(m²·s²)"^^xsd:string ;
    qudt:ucumCode "kg.m-2.s-2"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106867449> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Metre Bar"^^xsd:string,
        "Kilogram per Cubic Metre Bar"@en,
        "Kilogram per Cubic Meter Bar"@en-us ;
    dcterms:description "SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA621"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA621"^^xsd:anyURI ;
    qudt:symbol "kg/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "kg.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M3-K a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Metre Kelvin"^^xsd:string,
        "Килограм на Кубичен Метър Келвин"@bg,
        "Kilogram na Metr Krychlový Kelvin"@cs,
        "Kilogramm pro Kubikmeter Kelvin"@de,
        "Χιλιόγραμμο ανά Κυβικό Μέτρο Κέλβιν"@el,
        "Kilogram per Cubic Metre Kelvin"@en,
        "Kilogram per Cubic Meter Kelvin"@en-us,
        "Kilogramo por Metro Cúbico Kelvin"@es,
        "Kilogramme par Mètre Cube Kelvin"@fr,
        "Chilogrammo per Metro Cubo Kelvin"@it,
        "Chiliogramma per Metrum Cubicum Kelvin"@la,
        "Kilogram per Meter Kubik Kelvin"@ms,
        "Kilogram na Metr Sześcienny Kelwin"@pl,
        "Quilograma por Metro Cúbico Kelvin"@pt,
        "Kilogram pe Metru Cub Kelvin"@ro,
        "Килограмм на Кубический Метр Кельвин"@ru,
        "Kilogram na Kubični Meter Kelvin"@sl,
        "Kilogram per Metreküp Kelvin"@tr ;
    dcterms:description "SI base unit kilogram divided by the product out of the power of the SI base unit metre with the exponent 3 and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA620"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA620"^^xsd:anyURI ;
    qudt:symbol "kg/(m³·K)"^^xsd:string ;
    qudt:ucumCode "kg.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G40"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M3-PA a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Metre Pascal"^^xsd:string,
        "Килограм на Кубичен Метър Паскал"@bg,
        "Kilogram na Metr Krychlový Pascal"@cs,
        "Kilogramm pro Kubikmeter Pascal"@de,
        "Χιλιόγραμμο ανά Κυβικό Μέτρο Πασκάλ"@el,
        "Kilogram per Cubic Metre Pascal"@en,
        "Kilogram per Cubic Meter Pascal"@en-us,
        "Kilogramo por Metro Cúbico Pascal"@es,
        "Kilogramme par Mètre Cube Pascal"@fr,
        "Chilogrammo per Metro Cubo Pascal"@it,
        "Chiliogramma per Metrum Cubicum Pascalium"@la,
        "Kilogram per Meter Kubik Pascal"@ms,
        "Kilogram na Metr Sześcienny Paskal"@pl,
        "Quilograma por Metro Cúbico Pascal"@pt,
        "Kilogram pe Metru Cub Pascal"@ro,
        "Килограмм на Кубический Метр Паскаль"@ru,
        "Kilogram na Kubični Meter Pascal"@sl,
        "Kilogram per Metreküp Pascal"@tr ;
    dcterms:description "SI base unit kilogram divided by the product of the power of the SI base unit metre with exponent 3 and the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB310"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB310"^^xsd:anyURI ;
    qudt:symbol "kg/(m³·Pa)"^^xsd:string ;
    qudt:ucumCode "kg.m-3.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-M3-SEC a qudt:Unit ;
    rdfs:label "Kilogram per Cubic Metre Second"^^xsd:string,
        "Килограм на Кубичен Метър Секунда"@bg,
        "Kilogram na Metr Krychlový Sekunda"@cs,
        "Kilogramm pro Kubikmeter Sekunde"@de,
        "Χιλιόγραμμο ανά Κυβικό Μέτρο Δευτερόλεπτο"@el,
        "Kilogram per Cubic Metre Second"@en,
        "Kilogram per Cubic Meter Second"@en-us,
        "Kilogramo por Metro Cúbico Segundo"@es,
        "Kilogramme par Mètre Cube Seconde"@fr,
        "Chilogrammo per Metro Cubo Secondo"@it,
        "Chiliogramma per Metrum Cubicum Secundum"@la,
        "Kilogram per Meter Kubik Saat"@ms,
        "Kilogram na Metr Sześcienny Sekunda"@pl,
        "Quilograma por Metro Cúbico Segundo"@pt,
        "Kilogram pe Metru Cub Secundă"@ro,
        "Килограмм на Кубический Метр Секунда"@ru,
        "Kilogram na Kubični Meter Sekunda"@sl,
        "Kilogram per Metreküp Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "kg/(m³·s)"^^xsd:string ;
    qudt:ucumCode "kg.m-3.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-MIN a qudt:Unit ;
    rdfs:label "Kilogram per Minute"^^xsd:string,
        "Kilogram per Minute"@en ;
    dcterms:description "SI base unit kilogram divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA624"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA624"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit kilogram divided by the unit minute"^^xsd:string ;
    qudt:symbol "kg/min"^^xsd:string ;
    qudt:ucumCode "kg.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F31"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210172> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Minute Bar"^^xsd:string,
        "Kilogram per Minute Bar"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA626"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA626"^^xsd:anyURI ;
    qudt:symbol "kg/(min·bar)"^^xsd:string ;
    qudt:ucumCode "kg.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-MIN-K a qudt:Unit ;
    rdfs:label "Kilogram per Minute Kelvin"^^xsd:string,
        "Kilogram per Minute Kelvin"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA625"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA625"^^xsd:anyURI ;
    qudt:symbol "kg/(min·K)"^^xsd:string ;
    qudt:ucumCode "kg.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-MegaBTU_IT a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram per Mega British Thermal Unit (international Definition)"^^xsd:string,
        "Kilogram per Mega British Thermal Unit (international Definition)"@en ;
    dcterms:description """$\\textit{Kilogram per Mega BTU}$ is an Imperial unit for 'Mass Per Energy' expressed as $kg/MBtu$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000000009478171203133172000127850444756106 ;
    qudt:conversionMultiplierSN 9.478171e-10 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$kg/MBtu$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MegaBTU_IT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:plainTextDescription "Kilogram per Mega BTU is an Imperial Unit for 'Mass Per Energy."^^xsd:string ;
    qudt:symbol "kg/MBtu{IT}"^^xsd:string ;
    qudt:ucumCode "kg.M[Btu_IT]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-PA a qudt:Unit ;
    rdfs:label "Kilogram per Pascal"^^xsd:string,
        "Килограм на Паскал"@bg,
        "Kilogram na Pascal"@cs,
        "Kilogramm pro Pascal"@de,
        "Χιλιόγραμμο ανά Πασκάλ"@el,
        "Kilogram per Pascal"@en,
        "Kilogramo por Pascal"@es,
        "Kilogramme par Pascal"@fr,
        "Chilogrammo per Pascal"@it,
        "Chiliogramma per Pascalium"@la,
        "Kilogram per Pascal"@ms,
        "Kilogram na Paskal"@pl,
        "Quilograma por Pascal"@pt,
        "Kilogram pe Pascal"@ro,
        "Килограмм на Паскаль"@ru,
        "Kilogram na Pascal"@sl,
        "Kilogram per Pascal"@tr ;
    dcterms:description "SI base unit kilogram divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB316"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB316"^^xsd:anyURI ;
    qudt:symbol "kg/Pa"^^xsd:string ;
    qudt:ucumCode "kg.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Kilogram per Second Bar"^^xsd:string,
        "Kilogram per Second Bar"@en ;
    dcterms:description "SI base unit kilogram divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA631"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA631"^^xsd:anyURI ;
    qudt:symbol "kg/(s·bar)"^^xsd:string ;
    qudt:ucumCode "kg.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC-K a qudt:Unit ;
    rdfs:label "Kilogram per Second Kelvin"^^xsd:string,
        "Килограм на Секунда Келвин"@bg,
        "Kilogram na Sekunda Kelvin"@cs,
        "Kilogramm pro Sekunde Kelvin"@de,
        "Χιλιόγραμμο ανά Δευτερόλεπτο Κέλβιν"@el,
        "Kilogram per Second Kelvin"@en,
        "Kilogramo por Segundo Kelvin"@es,
        "Kilogramme par Seconde Kelvin"@fr,
        "Chilogrammo per Secondo Kelvin"@it,
        "Chiliogramma per Secundum Kelvin"@la,
        "Kilogram per Saat Kelvin"@ms,
        "Kilogram na Sekunda Kelwin"@pl,
        "Quilograma por Segundo Kelvin"@pt,
        "Kilogram pe Secundă Kelvin"@ro,
        "Килограмм на Секунда Кельвин"@ru,
        "Kilogram na Sekunda Kelvin"@sl,
        "Kilogram per Saniye Kelvin"@tr ;
    dcterms:description "SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA630"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA630"^^xsd:anyURI ;
    qudt:symbol "kg/(s·K)"^^xsd:string ;
    qudt:ucumCode "kg.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-SEC-PA a qudt:Unit ;
    rdfs:label "Kilogram per Second Pascal"^^xsd:string,
        "Килограм на Секунда Паскал"@bg,
        "Kilogram na Sekunda Pascal"@cs,
        "Kilogramm pro Sekunde Pascal"@de,
        "Χιλιόγραμμο ανά Δευτερόλεπτο Πασκάλ"@el,
        "Kilogram per Second Pascal"@en,
        "Kilogramo por Segundo Pascal"@es,
        "Kilogramme par Seconde Pascal"@fr,
        "Chilogrammo per Secondo Pascal"@it,
        "Chiliogramma per Secundum Pascalium"@la,
        "Kilogram per Saat Pascal"@ms,
        "Kilogram na Sekunda Paskal"@pl,
        "Quilograma por Segundo Pascal"@pt,
        "Kilogram pe Secundă Pascal"@ro,
        "Килограмм на Секунда Паскаль"@ru,
        "Kilogram na Sekunda Pascal"@sl,
        "Kilogram per Saniye Pascal"@tr ;
    dcterms:description "SI base unit kilogram divided by the product of the SI base unit second and the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB321"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB321"^^xsd:anyURI ;
    qudt:symbol "kg/(s·Pa)"^^xsd:string ;
    qudt:ucumCode "kg.s-1.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-PER-YR a qudt:Unit ;
    rdfs:label "Kilogram per Year"^^xsd:string,
        "Kilogram per Year"@en,
        "Kilogram per Jaar"@nl ;
    dcterms:description "The SI base unit kilogram divided by the unit year"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:informativeReference "http://dd.eionet.europa.eu/vocabulary/wise/uom/kg.a-1"^^xsd:anyURI ;
    qudt:plainTextDescription "kilogram divided by the unit year with 365 days"^^xsd:string ;
    qudt:symbol "kg/a"^^xsd:string ;
    qudt:ucumCode "kg.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilogram Square Second"^^xsd:string,
        "Килограм Квадратен Секунда"@bg,
        "Kilogram Čtvereční Sekunda"@cs,
        "Kilogramm Quadratsekunde"@de,
        "Χιλιόγραμμο Τετραγωνικό Δευτερόλεπτο"@el,
        "Kilogram Square Second"@en,
        "Kilogramo Segundo Cuadrado"@es,
        "Kilogramme Seconde Carré"@fr,
        "Chilogrammo Secondo Quadrato"@it,
        "Chiliogramma Secundum Quadratum"@la,
        "Kilogram Saat Persegi"@ms,
        "Kilogram Sekunda Kwadratowy"@pl,
        "Quilograma Segundo Quadrado"@pt,
        "Kilogram Secundă Pătrat"@ro,
        "Килограмм Квадратный Секунда"@ru,
        "Kilogram Kvadratni Sekunda"@sl,
        "Kilogram Saniyekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$kilog-sec2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "kg·s²"^^xsd:string ;
    qudt:ucumCode "kg.s2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloGM2-PER-SEC2 a qudt:Unit ;
    rdfs:label "Square Kilogram per Square Second"^^xsd:string,
        "Квадратен Килограм на Квадратен Секунда"@bg,
        "Čtvereční Kilogram na Čtvereční Sekunda"@cs,
        "Quadratkilogramm pro Quadratsekunde"@de,
        "Τετραγωνικό Χιλιόγραμμο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Square Kilogram per Square Second"@en,
        "Kilogramo Cuadrado por Segundo Cuadrado"@es,
        "Kilogramme Carré par Seconde Carré"@fr,
        "Chilogrammo Quadrato per Secondo Quadrato"@it,
        "Chiliogramma Quadratum per Secundum Quadratum"@la,
        "Kilogram Persegi per Saat Persegi"@ms,
        "Kilogram Kwadratowy na Sekunda Kwadratowy"@pl,
        "Quilograma Quadrado por Segundo Quadrado"@pt,
        "Kilogram Pătrat pe Secundă Pătrat"@ro,
        "Квадратный Килограмм на Квадратный Секунда"@ru,
        "Kvadratni Kilogram na Kvadratni Sekunda"@sl,
        "Kilogramkare per Saniyekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M2H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "kg²/s²"^^xsd:string ;
    qudt:ucumCode "kg2.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloM-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Kilometre per Second Bar"^^xsd:string,
        "Kilometre per Second Bar"@en,
        "Kilometer per Second Bar"@en-us ;
    dcterms:description "SI base unit metre divided by the product of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA735"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA735"^^xsd:anyURI ;
    qudt:symbol "km/(s·bar)"^^xsd:string ;
    qudt:ucumCode "km.s-1.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloM3-PER-SEC2 a qudt:Unit ;
    rdfs:label "Cubic Kilometre per Square Second"^^xsd:string,
        "Kilometr Krychlový na Čtvereční Sekunda"@cs,
        "Kubikkilometer pro Quadratsekunde"@de,
        "Cubic Kilometre per Square Second"@en,
        "Cubic Kilometer per Square Second"@en-us,
        "Kilometro Cúbico por Segundo Cuadrado"@es,
        "Kilomètre Cube par Seconde Carré"@fr,
        "Chilometro Cubo per Secondo Quadrato"@it,
        "Kilometer Kubik per Saat Persegi"@ms,
        "Kilometr Sześcienny na Sekunda Kwadratowy"@pl,
        "Kilometru Cub pe Secundă Pătrat"@ro,
        "Kubični Kilometer na Kvadratni Sekunda"@sl,
        "Kilometreküp per Saniyekare"@tr ;
    dcterms:description "$\\textit{Cubic Kilometer per Square Second}$ is a unit for $\\textit{Standard Gravitational Parameter}$ expressed as $km^3/s^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:expression "$km^3/s^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:StandardGravitationalParameter ;
    qudt:symbol "km³/s²"^^xsd:string ;
    qudt:ucumCode "km3.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloMOL-PER-HR a qudt:Unit ;
    rdfs:label "Kilomole per Hour"^^xsd:string,
        "Kilomole per Hour"@en ;
    dcterms:description "1 000-fold of the SI base unit mole divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloMOL ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivity ;
    qudt:iec61360Code "0112/2///62720#UAA641"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA641"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "kmol/h"^^xsd:string ;
    qudt:ucumCode "kmol.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K58"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloMOL-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Kilomole per Cubic Metre Bar"^^xsd:string,
        "Kilomole per Cubic Metre Bar"@en,
        "Kilomole per Cubic Meter Bar"@en-us ;
    dcterms:description "1,000-fold of the SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA644"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA644"^^xsd:anyURI ;
    qudt:symbol "kmol/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "kmol.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloMOL-PER-M3-K a qudt:Unit ;
    rdfs:label "Kilomole per Cubic Metre Kelvin"^^xsd:string,
        "Kilomol na Metr Krychlový Kelvin"@cs,
        "Kilomol pro Kubikmeter Kelvin"@de,
        "Kilomole per Cubic Metre Kelvin"@en,
        "Kilomole per Cubic Meter Kelvin"@en-us,
        "Kilomol por Metro Cúbico Kelvin"@es,
        "Kilomole par Mètre Cube Kelvin"@fr,
        "Chilomole per Metro Cubo Kelvin"@it,
        "Kilomole per Meter Kubik Kelvin"@ms,
        "Kilomol na Metr Sześcienny Kelwin"@pl,
        "Kilomol pe Metru Cub Kelvin"@ro,
        "Kilomol na Kubični Meter Kelvin"@sl,
        "Kilomol per Metreküp Kelvin"@tr ;
    dcterms:description "1,000-fold of the SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA643"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA643"^^xsd:anyURI ;
    qudt:symbol "kmol/(m³·K)"^^xsd:string ;
    qudt:ucumCode "kmol.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloMOL-PER-MIN a qudt:Unit ;
    rdfs:label "Kilomole per Minute"^^xsd:string,
        "Kilomole per Minute"@en ;
    dcterms:description "1 000-fold of the SI base unit mole divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA645"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA645"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI base unit mole divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "kmol/min"^^xsd:string ;
    qudt:ucumCode "kmol.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K61"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloMOL-PER-SEC a qudt:Unit ;
    rdfs:label "Kilomole per Second"^^xsd:string,
        "Kilomol na Sekunda"@cs,
        "Kilomol pro Sekunde"@de,
        "Kilomole per Second"@en,
        "Kilomol por Segundo"@es,
        "Kilomole par Seconde"@fr,
        "Chilomole per Secondo"@it,
        "Kilomole per Saat"@ms,
        "Kilomol na Sekunda"@pl,
        "Kilomol pe Secundă"@ro,
        "Kilomol na Sekunda"@sl,
        "Kilomol per Saniye"@tr ;
    dcterms:description "1 000-fold of the SI base unit mol divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloMOL ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA646"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA646"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI base unit mol divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "kmol/s"^^xsd:string ;
    qudt:ucumCode "kmol.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-M-PER-DEG a qudt:Unit ;
    rdfs:label "Kilonewton Metre per Degree"^^xsd:string,
        "Kilonewton Metre per Degree"@en,
        "Kilonewton Meter per Degree"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 57295.77957855229894302178227976183 ;
    qudt:conversionMultiplierSN 5.729578e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:TorsionalSpringConstant ;
    qudt:plainTextDescription "Unit for expressing the value of the torsional spring constant"^^xsd:string ;
    qudt:symbol "kN·m/°"^^xsd:string ;
    qudt:ucumCode "kN.m.deg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-M-PER-DEG-M a qudt:Unit ;
    rdfs:label "Kilonewton Metre per Degree Metre"^^xsd:string,
        "Kilonewton Metre per Degree Metre"@en,
        "Kilonewton Meter per Degree Meter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 57295.77957855229894302178227976183 ;
    qudt:conversionMultiplierSN 5.729578e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG ] ;
    qudt:hasQuantityKind qudtqk:ModulusOfRotationalSubgradeReaction ;
    qudt:plainTextDescription "A common unit for measuring the modulus of rotational subgrade reaction."^^xsd:string ;
    qudt:symbol "kN·m/(°·m)"^^xsd:string ;
    qudt:ucumCode "kN.m.deg-1.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-M-PER-M a qudt:Unit ;
    rdfs:label "Kilonewton Metre per Metre"^^xsd:string,
        "Kilonewton Metr na Metr"@cs,
        "Kilonewton Meter pro Meter"@de,
        "Kilonewton Metre per Metre"@en,
        "Kilonewton Meter per Meter"@en-us,
        "Kilonewton Metro por Metro"@es,
        "Kilonewton Mètre par Mètre"@fr,
        "Chilonewton Metro per Metro"@it,
        "Kilonewton Meter per Meter"@ms,
        "Kiloniuton Metr na Metr"@pl,
        "Kilonewton Metru pe Metru"@ro,
        "Kilonewton Meter na Meter"@sl,
        "Kilonewton Metre per Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:TorquePerLength ;
    qudt:plainTextDescription "Scaling of the base unit for expressing the rolling resistance, nM/m, by a factor of 1000"^^xsd:string ;
    qudt:symbol "kN·m/m"^^xsd:string ;
    qudt:ucumCode "kN.m.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloN-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Kilonewton Square Metre"^^xsd:string,
        "Kilonewton Čtvereční Metr"@cs,
        "Kilonewton Quadratmeter"@de,
        "Kilonewton Square Metre"@en,
        "Kilonewton Square Meter"@en-us,
        "Kilonewton Metro Cuadrado"@es,
        "Kilonewton Mètre Carré"@fr,
        "Chilonewton Metro Quadrato"@it,
        "Kilonewton Meter Persegi"@ms,
        "Kiloniuton Metr Kwadratowy"@pl,
        "Kilonewton Metru Pătrat"@ro,
        "Kilonewton Kvadratni Meter"@sl,
        "Kilonewton Metrekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:WarpingMoment ;
    qudt:symbol "kN·m²"^^xsd:string ;
    qudt:ucumCode "kN.m2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloOHM-M a qudt:Unit ;
    rdfs:label "Kiloohm Metre"^^xsd:string,
        "Kiloohm Metr"@cs,
        "Kiloohm Meter"@de,
        "Kiloohm Metre"@en,
        "Kiloohm Meter"@en-us,
        "Kiloohmio Metro"@es,
        "Kiloohm Mètre"@fr,
        "Chiloohm Metro"@it,
        "Kiloohm Meter"@ms,
        "Kiloom Metr"@pl,
        "Kiloohm Metru"@ro,
        "Kiloohm Meter"@sl,
        "Kiloohm Metre"@tr ;
    dcterms:description "1,000-fold of the product of the SI derived unit ohm and the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA556"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA556"^^xsd:anyURI ;
    qudt:symbol "kΩ·m"^^xsd:string ;
    qudt:ucumCode "kOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B50"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloOHM-PER-BAR a qudt:Unit ;
    rdfs:label "Kiloohm per Bar"^^xsd:string,
        "Kiloohm per Bar"@en ;
    dcterms:description "1,000-fold of SI derived unit ohm per metrical non SI unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD880"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD880"^^xsd:anyURI ;
    qudt:symbol "kΩ/bar"^^xsd:string ;
    qudt:ucumCode "kOhm.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloOHM-PER-K a qudt:Unit ;
    rdfs:label "Kiloohm per Kelvin"^^xsd:string,
        "Kiloohm na Kelvin"@cs,
        "Kiloohm pro Kelvin"@de,
        "Kiloohm per Kelvin"@en,
        "Kiloohmio por Kelvin"@es,
        "Kiloohm par Kelvin"@fr,
        "Chiloohm per Kelvin"@it,
        "Kiloohm per Kelvin"@ms,
        "Kiloom na Kelwin"@pl,
        "Kiloohm pe Kelvin"@ro,
        "Kiloohm na Kelvin"@sl,
        "Kiloohm per Kelvin"@tr ;
    dcterms:description "1,000-fold of the SI derived unit ohm per SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD876"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD876"^^xsd:anyURI ;
    qudt:symbol "kΩ/K"^^xsd:string ;
    qudt:ucumCode "kOhm.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloOHM-PER-M a qudt:Unit ;
    rdfs:label "Kiloohm per Metre"^^xsd:string,
        "Kiloohm na Metr"@cs,
        "Kiloohm pro Meter"@de,
        "Kiloohm per Metre"@en,
        "Kiloohm per Meter"@en-us,
        "Kiloohmio por Metro"@es,
        "Kiloohm par Mètre"@fr,
        "Chiloohm per Metro"@it,
        "Kiloohm per Meter"@ms,
        "Kiloom na Metr"@pl,
        "Kiloohm pe Metru"@ro,
        "Kiloohm na Meter"@sl,
        "Kiloohm per Metre"@tr ;
    dcterms:description "1,000-fold of the SI derived unit ohm divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloOHM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAB787"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB787"^^xsd:anyURI ;
    qudt:symbol "kΩ/m"^^xsd:string ;
    qudt:ucumCode "kOhm.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloPA-PER-BAR a qudt:Unit ;
    rdfs:label "Kilopascal per Bar"^^xsd:string,
        "Kilopascal per Bar"@en ;
    dcterms:description "1 000-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA577"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA577"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the unit bar"^^xsd:string ;
    qudt:symbol "kPa/bar"^^xsd:string ;
    qudt:ucumCode "kPa.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F03"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloPA-PER-K a qudt:Unit ;
    rdfs:label "Kilopascal per Kelvin"^^xsd:string,
        "Kilopascal na Kelvin"@cs,
        "Kilopascal pro Kelvin"@de,
        "Kilopascal per Kelvin"@en,
        "Kilopascal por Kelvin"@es,
        "Kilopascal par Kelvin"@fr,
        "Chilopascal per Kelvin"@it,
        "Kilopascal per Kelvin"@ms,
        "Kilopaskal na Kelwin"@pl,
        "Kilopascal pe Kelvin"@ro,
        "Kilopascal na Kelvin"@sl,
        "Kilopascal per Kelvin"@tr ;
    dcterms:description "1 000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloPA ] ;
    qudt:hasQuantityKind qudtqk:PressureCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA576"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA576"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "kPa/K"^^xsd:string ;
    qudt:ucumCode "kPa.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloPA-PER-M a qudt:Unit ;
    rdfs:label "Kilopascal per Metre"^^xsd:string,
        "Kilopascal na Metr"@cs,
        "Kilopascal pro Meter"@de,
        "Kilopascal per Metre"@en,
        "Kilopascal per Meter"@en-us,
        "Kilopascal por Metro"@es,
        "Kilopascal par Mètre"@fr,
        "Chilopascal per Metro"@it,
        "Kilopascal per Meter"@ms,
        "Kilopaskal na Metr"@pl,
        "Kilopascal pe Metru"@ro,
        "Kilopascal na Meter"@sl,
        "Kilopascal per Metre"@tr ;
    dcterms:description "1,000-fold of the SI derived unit pascal divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloPA ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB421"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB421"^^xsd:anyURI ;
    qudt:symbol "kPa/m"^^xsd:string ;
    qudt:ucumCode "kPa.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloPA-PER-MilliM a qudt:Unit ;
    rdfs:label "Kilopascal per Millimetre"^^xsd:string,
        "Kilopascal na Millimetr"@cs,
        "Kilopascal pro Millimeter"@de,
        "Kilopascal per Millimetre"@en,
        "Kilopascal per Millimeter"@en-us,
        "Kilopascal por Millimetro"@es,
        "Kilopascal par Millimètre"@fr,
        "Chilopascal per Millimetro"@it,
        "Kilopascal per Millimeter"@ms,
        "Kilopaskal na Millimetr"@pl,
        "Kilopascal pe Millimetru"@ro,
        "Kilopascal na Millimeter"@sl,
        "Kilopascal per Millimetre"@tr ;
    dcterms:description "1 000-fold of the derived SI unit pascal divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloPA ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiantEnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAB060"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB060"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the derived SI unit pascal divided by the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "kPa/mm"^^xsd:string ;
    qudt:ucumCode "kPa.mm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloTONNE-PER-YR a qudt:Unit ;
    rdfs:label "Kilotonne per Year"^^xsd:string,
        "Kilotonne per Year"@en,
        "Kiloton per Jaar"@nl ;
    dcterms:description "1,000,000-fold of the SI base unit kilogram divided by the unit year"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.03168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloTONNE ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:informativeReference "http://dd.eionet.europa.eu/vocabulary/wise/uom/1000t.a-1"^^xsd:anyURI ;
    qudt:plainTextDescription "1000 metric tonne divided by the unit year with 365 days"^^xsd:string ;
    qudt:symbol "kt/a"^^xsd:string ;
    qudt:ucumCode "kt.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloV-PER-M a qudt:Unit ;
    rdfs:label "Kilovolt per Metre"^^xsd:string,
        "Kilovolt na Metr"@cs,
        "Kilovolt pro Meter"@de,
        "Kilovolt per Metre"@en,
        "Kilovolt per Meter"@en-us,
        "Kilovoltio por Metro"@es,
        "Kilovolt par Mètre"@fr,
        "Chilovolt per Metro"@it,
        "Kilovolt per Meter"@ms,
        "Kilowolt na Metr"@pl,
        "Kilovolt pe Metru"@ro,
        "Kilovolt na Meter"@sl,
        "Kilovolt per Metre"@tr ;
    dcterms:description "1 000-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA582"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA582"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit volt divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "kV/m"^^xsd:string ;
    qudt:ucumCode "kV.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B55"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloW-PER-M-DEG_C a qudt:Unit ;
    rdfs:label "Kilowatt per Metre Degree Celsius"^^xsd:string,
        "Kilowatt na Metr Stupně Celsia"@cs,
        "Kilowatt pro Meter Grad Celsius"@de,
        "Kilowatt per Metre Degree Celsius"@en,
        "Kilowatt per Meter Degree Celsius"@en-us,
        "Kilovatio por Metro Grado Celsius"@es,
        "Kilowatt par Mètre Degré Celsius"@fr,
        "Chilowatt per Metro Grado Celsius"@it,
        "Kilowatt per Meter Darjah Celsius"@ms,
        "Kilowat na Metr Stopień Celsjusza"@pl,
        "Kilowatt pe Metru Grad Celsius"@ro,
        "Kilowatt na Meter Stopinja Celzija"@sl,
        "Kilowatt per Metre Celsius"@tr ;
    dcterms:description "1,000-fold of the SI derived unit watt divided by the product of the SI base unit metre and the unit for temperature degree Celsius"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB459"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB459"^^xsd:anyURI ;
    qudt:symbol "kW/(m·°C)"^^xsd:string ;
    qudt:ucumCode "kW.m-1.Cel-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloW-PER-M-K a qudt:Unit ;
    rdfs:label "Kilowatt per Metre Kelvin"^^xsd:string,
        "Kilowatt na Metr Kelvin"@cs,
        "Kilowatt pro Meter Kelvin"@de,
        "Kilowatt per Metre Kelvin"@en,
        "Kilowatt per Meter Kelvin"@en-us,
        "Kilovatio por Metro Kelvin"@es,
        "Kilowatt par Mètre Kelvin"@fr,
        "Chilowatt per Metro Kelvin"@it,
        "Kilowatt per Meter Kelvin"@ms,
        "Kilowat na Metr Kelwin"@pl,
        "Kilowatt pe Metru Kelvin"@ro,
        "Kilowatt na Meter Kelvin"@sl,
        "Kilowatt per Metre Kelvin"@tr ;
    dcterms:description "1,000-fold of the SI derived unit watt divided by the product of the SI base unit metre and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB458"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB458"^^xsd:anyURI ;
    qudt:symbol "kW/(m·K)"^^xsd:string ;
    qudt:ucumCode "kW.m-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloW-PER-TON_FG a qudt:Unit ;
    rdfs:label "Kilowatt per Ton of Refrigeration"^^xsd:string,
        "Kilowatt per Ton of Refrigeration"@en ;
    dcterms:description "Unit of Cooling Performance Ratio representing kilowatts of power input per ton of refrigeration output. Used to measure the energy performance of chillers and cooling systems."^^xsd:string ;
    qudt:conversionMultiplier 0.2843451233247451627918482802664769 ;
    qudt:conversionMultiplierSN 2.843451e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:TON_FG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloW ] ;
    qudt:hasQuantityKind qudtqk:CoolingPerformanceRatio ;
    qudt:symbol "kW/TOR"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:KiloWB-PER-M a qudt:Unit ;
    rdfs:label "Kiloweber per Metre"^^xsd:string,
        "Kiloweber na Metr"@cs,
        "Kiloweber pro Meter"@de,
        "Kiloweber per Metre"@en,
        "Kiloweber per Meter"@en-us,
        "Kiloweber por Metro"@es,
        "Kiloweber par Mètre"@fr,
        "Chiloweber per Metro"@it,
        "Kiloweber per Meter"@ms,
        "Kiloweber na Metr"@pl,
        "Kiloweber pe Metru"@ro,
        "Kiloweber na Meter"@sl,
        "Kiloweber per Metre"@tr ;
    dcterms:description "1 000-fold of the SI derived unit weber divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloWB ] ;
    qudt:hasQuantityKind qudtqk:MagneticVectorPotential ;
    qudt:iec61360Code "0112/2///62720#UAA585"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA585"^^xsd:anyURI ;
    qudt:plainTextDescription "1 000-fold of the SI derived unit weber divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "kWb/m"^^xsd:string ;
    qudt:ucumCode "kWb.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B56"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107325155> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-BAR a qudt:Unit ;
    rdfs:label "Litre per Bar"^^xsd:string,
        "Litre per Bar"@en,
        "Liter per Bar"@en-us ;
    dcterms:description "unit litre divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA651"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA651"^^xsd:anyURI ;
    qudt:symbol "L/bar"^^xsd:string ;
    qudt:ucumCode "L.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G95"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Litre per Day Bar"^^xsd:string,
        "Litre per Day Bar"@en,
        "Liter per Day Bar"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA654"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA654"^^xsd:anyURI ;
    qudt:symbol "L/(d·bar)"^^xsd:string ;
    qudt:ucumCode "L.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-DAY-K a qudt:Unit ;
    rdfs:label "Litre per Day Kelvin"^^xsd:string,
        "Litre per Day Kelvin"@en,
        "Liter per Day Kelvin"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA653"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA653"^^xsd:anyURI ;
    qudt:symbol "L/(d·K)"^^xsd:string ;
    qudt:ucumCode "L.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G65"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Litre per Hour Bar"^^xsd:string,
        "Litre per Hour Bar"@en,
        "Liter per Hour Bar"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA657"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA657"^^xsd:anyURI ;
    qudt:symbol "L/(h·bar)"^^xsd:string ;
    qudt:ucumCode "L.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-HR-K a qudt:Unit ;
    rdfs:label "Litre per Hour Kelvin"^^xsd:string,
        "Litre per Hour Kelvin"@en,
        "Liter per Hour Kelvin"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA656"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA656"^^xsd:anyURI ;
    qudt:symbol "L/(h·K)"^^xsd:string ;
    qudt:ucumCode "L.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-K a qudt:Unit ;
    rdfs:label "Litre per Kelvin"^^xsd:string,
        "Litre per Kelvin"@en,
        "Liter per Kelvin"@en-us ;
    dcterms:description "unit litre divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA650"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA650"^^xsd:anyURI ;
    qudt:plainTextDescription "unit litre divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "L/K"^^xsd:string ;
    qudt:ucumCode "L.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-L a qudt:Unit ;
    rdfs:label "Litre per Litre"^^xsd:string,
        "Litre per Litre"@en,
        "Liter per Liter"@en-us ;
    dcterms:description "volume ratio consisting of the unit litre divided by the unit litre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA658"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA658"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio consisting of the unit litre divided by the unit litre"^^xsd:string ;
    qudt:symbol "L/L"^^xsd:string ;
    qudt:ucumCode "L.L-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K62"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106629979> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Litre per Minute Bar"^^xsd:string,
        "Litre per Minute Bar"@en,
        "Liter per Minute Bar"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA661"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA661"^^xsd:anyURI ;
    qudt:symbol "L/(min·bar)"^^xsd:string ;
    qudt:ucumCode "L.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-MIN-K a qudt:Unit ;
    rdfs:label "Litre per Minute Kelvin"^^xsd:string,
        "Litre per Minute Kelvin"@en,
        "Liter per Minute Kelvin"@en-us ;
    dcterms:description "unit litre divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA660"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA660"^^xsd:anyURI ;
    qudt:symbol "L/(min·K)"^^xsd:string ;
    qudt:ucumCode "L.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Litre per Second Bar"^^xsd:string,
        "Litre per Second Bar"@en,
        "Liter per Second Bar"@en-us ;
    dcterms:description "unit litre divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA666"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA666"^^xsd:anyURI ;
    qudt:symbol "L/(s·bar)"^^xsd:string ;
    qudt:ucumCode "L.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-SEC-K a qudt:Unit ;
    rdfs:label "Litre per Second Kelvin"^^xsd:string,
        "Litre per Second Kelvin"@en,
        "Liter per Second Kelvin"@en-us ;
    dcterms:description "unit litre divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA665"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA665"^^xsd:anyURI ;
    qudt:symbol "L/(s·K)"^^xsd:string ;
    qudt:ucumCode "L.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G68"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:L-PER-SEC-M2 a qudt:Unit ;
    rdfs:label "Litre per Second Square Metre"^^xsd:string,
        "Litre per Second Square Metre"@en,
        "Liter per Second Square Meter"@en-us ;
    dcterms:description "Ventilation rate in Litres per second divided by the floor area"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VentilationRatePerFloorArea ;
    qudt:plainTextDescription "Ventilation rate in Litres per second divided by the floor area"^^xsd:string ;
    qudt:symbol "L/(s·m²)"^^xsd:string ;
    qudt:ucumCode "L.s-1.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LA_FT a qudt:Unit ;
    rdfs:label "Foot Lambert"^^xsd:string,
        "Foot Lambert"@en ;
    dcterms:description "\"Foot Lambert\" is a C.G.S System unit for  'Luminance' expressed as $ft-L$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 3.426259099594588078065045018978927 ;
    qudt:conversionMultiplierSN 3.426259e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$ft-L$"^^qudt:LatexString ;
    qudt:factorUnitScalar 0.31830988618 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Luminance ;
    qudt:symbol "ft-L"^^xsd:string ;
    qudt:ucumCode "[ft-Lmb]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P29"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q5465726> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Pound Mass Degree Fahrenheit"^^xsd:string,
        "Pound Mass Degree Fahrenheit"@en ;
    dcterms:description "$\\textit{Pound Degree Fahrenheit}$ is an Imperial unit for 'Mass Temperature' expressed as $lb-degF$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.2519957611111111111111111111111111 ;
    qudt:conversionMultiplierSN 2.519958e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lb-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:MassTemperature ;
    qudt:symbol "lbm·°F"^^xsd:string ;
    qudt:ucumCode "[lb_av].[degF]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-DEG_R a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Pound Mass Degree Rankine"^^xsd:string,
        "Pound Mass Degree Rankine"@en ;
    dcterms:description "$\\textit{Pound Degree Rankine}$ is an Imperial unit for 'Mass Temperature' expressed as $lb-degR$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.251995761111111131270772 ;
    qudt:conversionMultiplierSN 2.519958e-01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:expression "$lb-degR$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_R ] ;
    qudt:hasQuantityKind qudtqk:MassTemperature ;
    qudt:symbol "lbm·°R"^^xsd:string ;
    qudt:ucumCode "[lb_av].[degR]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-FT-PER-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Foot per Second"^^xsd:string,
        "Pound Mass Foot per Second"@en ;
    dcterms:description "product of the avoirdupois pound according to the avoirdupois unit system and the unit foot according to the Anglo-American and Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.138254954376 ;
    qudt:conversionMultiplierSN 1.38255e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Impulse ;
    qudt:iec61360Code "0112/2///62720#UAB415"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB415"^^xsd:anyURI ;
    qudt:symbol "lbm·ft/s"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N10"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-FT2-PER-GAL_UK-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Foot per Gallon (UK) Pound Force Second"^^xsd:string,
        "Pound Mass Square Foot per Gallon (UK) Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 2.083872775779299082282838578347267 ;
    qudt:conversionMultiplierSN 2.083873e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD856"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD856"^^xsd:anyURI ;
    qudt:symbol "lbm·ft²/(gal{UK}·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]2.[gal_br]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-FT2-PER-GAL_US-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Foot per Us Gallon Pound Force Second"^^xsd:string,
        "Pound Mass Square Foot per Us Gallon Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 2.502626854833744493086617821084779 ;
    qudt:conversionMultiplierSN 2.502627e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD852"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD852"^^xsd:anyURI ;
    qudt:symbol "lbm·ft²/(gal{US}·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]2.[gal_us]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-FT2-PER-IN3-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Foot per Cubic Inch Pound Force Second"^^xsd:string,
        "Pound Mass Square Foot per Cubic Inch Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 578.106803466594977903008716670584 ;
    qudt:conversionMultiplierSN 5.781068e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD848"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD848"^^xsd:anyURI ;
    qudt:symbol "lbm·ft²/(in³·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-FT3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Foot Gallon (UK)"^^xsd:string,
        "Pound Mass Hour per Cubic Foot Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 12684849.65019533323949993386765412 ;
    qudt:conversionMultiplierSN 1.268485e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC846"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC846"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(ft³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-FT3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Foot Us Gallon"^^xsd:string,
        "Pound Mass Hour per Cubic Foot Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 15233869.24244237056740727215858525 ;
    qudt:conversionMultiplierSN 1.523387e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC845"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC845"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(ft³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-FT3-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Foot Cubic Inch"^^xsd:string,
        "Pound Mass Hour per Cubic Foot Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 3519023795.004187601071079868633193 ;
    qudt:conversionMultiplierSN 3.519024e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC847"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC847"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(ft³·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-FT3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Foot Cubic Yard"^^xsd:string,
        "Pound Mass Hour per Cubic Foot Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 75424.89272556986456342335109381842 ;
    qudt:conversionMultiplierSN 7.542489e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC849"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC849"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(ft³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-FT6 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Sextic Foot"^^xsd:string,
        "Pound Mass Hour per Sextic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 2036472.103590386343212430479533098 ;
    qudt:conversionMultiplierSN 2.036472e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC848"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC848"^^xsd:anyURI ;
    qudt:symbol "lbm·h/ft⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[ft_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_UK-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Gallon (UK) Cubic Foot"^^xsd:string,
        "Pound Mass Hour per Gallon (UK) Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 12684849.65019533323949993386765412 ;
    qudt:conversionMultiplierSN 1.268485e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC863"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC863"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{UK}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_UK-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Gallon (UK) Cubic Inch"^^xsd:string,
        "Pound Mass Hour per Gallon (UK) Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 21919420195.53753583785588572330633 ;
    qudt:conversionMultiplierSN 2.191942e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC862"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC862"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{UK}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_UK-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Gallon (UK) Cubic Yard"^^xsd:string,
        "Pound Mass Hour per Gallon (UK) Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 469809.2463035308607222197728760785 ;
    qudt:conversionMultiplierSN 4.698092e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC864"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC864"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{UK}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_UK2 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Square Gallon (UK)"^^xsd:string,
        "Pound Mass Hour per Square Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 79011841.29376367695695378272856609 ;
    qudt:conversionMultiplierSN 7.901184e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC861"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC861"^^xsd:anyURI ;
    qudt:symbol "lbm·h/gal{UK}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_br]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_US-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Us Gallon Cubic Foot"^^xsd:string,
        "Pound Mass Hour per Us Gallon Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 15233869.24244237056740727215858525 ;
    qudt:conversionMultiplierSN 1.523387e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC858"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC858"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{US}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_US-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Us Gallon Cubic Inch"^^xsd:string,
        "Pound Mass Hour per Us Gallon Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 26324126050.94041634047976629003531 ;
    qudt:conversionMultiplierSN 2.632413e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC857"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC857"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{US}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_US-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Us Gallon Cubic Yard"^^xsd:string,
        "Pound Mass Hour per Us Gallon Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 564217.3793497174284224915614290831 ;
    qudt:conversionMultiplierSN 5.642174e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC859"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC859"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(gal{US}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-GAL_US2 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Square Us Gallon"^^xsd:string,
        "Pound Mass Hour per Square Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 113957255.6317766941146310229005858 ;
    qudt:conversionMultiplierSN 1.139573e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC855"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC855"^^xsd:anyURI ;
    qudt:symbol "lbm·h/gal{US}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[gal_us]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Inch Cubic Foot"^^xsd:string,
        "Pound Mass Hour per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 3519023795.004187601071079868633193 ;
    qudt:conversionMultiplierSN 3.519024e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC853"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC853"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Inch Gallon (UK)"^^xsd:string,
        "Pound Mass Hour per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 21919420195.53753583785588572330633 ;
    qudt:conversionMultiplierSN 2.191942e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC851"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC851"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Inch Us Gallon"^^xsd:string,
        "Pound Mass Hour per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 26324126050.94041634047976629003531 ;
    qudt:conversionMultiplierSN 2.632413e+10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC850"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC850"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Cubic Inch Cubic Yard"^^xsd:string,
        "Pound Mass Hour per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 130334214.6297847259655955506901182 ;
    qudt:conversionMultiplierSN 1.303342e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC854"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC854"^^xsd:anyURI ;
    qudt:symbol "lbm·h/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-HR-PER-IN6 a qudt:Unit ;
    rdfs:label "Pound Mass Hour per Sextic Inch"^^xsd:string,
        "Pound Mass Hour per Sextic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 6080873117767.236174650826012998158 ;
    qudt:conversionMultiplierSN 6.080873e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC852"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC852"^^xsd:anyURI ;
    qudt:symbol "lbm·h/in⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].h.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN a qudt:Unit ;
    rdfs:label "Pound Mass Inch"^^xsd:string,
        "Pound Mass Inch"@en ;
    dcterms:description "unit of the unbalance (product of avoirdupois pound according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units)"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.011521246198 ;
    qudt:conversionMultiplierSN 1.152125e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:LengthMass ;
    qudt:iec61360Code "0112/2///62720#UAB194"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB194"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the unbalance (product of avoirdupois pound according to the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units)"^^xsd:string ;
    qudt:symbol "lbm·in"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "IA"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN-PER-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Inch per Second"^^xsd:string,
        "Pound Mass Inch per Second"@en ;
    dcterms:description "product of the avoirdupois pound according to the avoirdupois unit system and the unit inch according to the Anglo-American and Imperial system of units divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.011521246198 ;
    qudt:conversionMultiplierSN 1.152125e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Impulse ;
    qudt:iec61360Code "0112/2///62720#UAB416"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB416"^^xsd:anyURI ;
    qudt:symbol "lbm·in/s"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N11"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN2-PER-FT3-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Inch per Cubic Foot Pound Force Second"^^xsd:string,
        "Pound Mass Square Inch per Cubic Foot Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.002323281585433525342009905143512828 ;
    qudt:conversionMultiplierSN 2.323282e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD845"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD845"^^xsd:anyURI ;
    qudt:symbol "lbm·in²/(ft³·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]2.[ft_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN2-PER-GAL_UK-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Inch per Gallon (UK) Pound Force Second"^^xsd:string,
        "Pound Mass Square Inch per Gallon (UK) Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.01447133872068957696029749012741158 ;
    qudt:conversionMultiplierSN 1.447134e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD857"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD857"^^xsd:anyURI ;
    qudt:symbol "lbm·in²/(gal{UK}·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]2.[gal_br]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN2-PER-GAL_US-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Inch per Us Gallon Pound Force Second"^^xsd:string,
        "Pound Mass Square Inch per Us Gallon Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.01737935315856767009087929042419986 ;
    qudt:conversionMultiplierSN 1.737935e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD853"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD853"^^xsd:anyURI ;
    qudt:symbol "lbm·in²/(gal{US}·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]2.[gal_us]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-IN2-PER-IN3-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass Square Inch per Cubic Inch Pound Force Second"^^xsd:string,
        "Pound Mass Square Inch per Cubic Inch Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 4.014630579629131790993116087990167 ;
    qudt:conversionMultiplierSN 4.014631e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD849"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD849"^^xsd:anyURI ;
    qudt:symbol "lbm·in²/(in³·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-FT3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Foot Gallon (UK)"^^xsd:string,
        "Pound Mass Minute per Cubic Foot Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 211414.1608365888873249988977942354 ;
    qudt:conversionMultiplierSN 2.114142e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC871"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC871"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(ft³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-FT3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Foot Us Gallon"^^xsd:string,
        "Pound Mass Minute per Cubic Foot Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 253897.8207073728427901212026430875 ;
    qudt:conversionMultiplierSN 2.538978e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC870"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC870"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(ft³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-FT3-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Foot Cubic Inch"^^xsd:string,
        "Pound Mass Minute per Cubic Foot Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 58650396.58340312668451799781055322 ;
    qudt:conversionMultiplierSN 5.86504e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC872"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC872"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(ft³·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-FT3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Foot Cubic Yard"^^xsd:string,
        "Pound Mass Minute per Cubic Foot Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 1257.081545426164409390389184896974 ;
    qudt:conversionMultiplierSN 1.257082e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC874"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC874"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(ft³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-FT6 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Sextic Foot"^^xsd:string,
        "Pound Mass Minute per Sextic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 33941.20172650643905354050799221829 ;
    qudt:conversionMultiplierSN 3.39412e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC873"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC873"^^xsd:anyURI ;
    qudt:symbol "lbm·min/ft⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[ft_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_UK-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Gallon (UK) Cubic Foot"^^xsd:string,
        "Pound Mass Minute per Gallon (UK) Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 211414.1608365888873249988977942354 ;
    qudt:conversionMultiplierSN 2.114142e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC888"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC888"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{UK}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_UK-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Gallon (UK) Cubic Inch"^^xsd:string,
        "Pound Mass Minute per Gallon (UK) Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 365323669.9256255972975980953884388 ;
    qudt:conversionMultiplierSN 3.653237e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC887"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC887"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{UK}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_UK-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Gallon (UK) Cubic Yard"^^xsd:string,
        "Pound Mass Minute per Gallon (UK) Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 7830.154105058847678703662881267974 ;
    qudt:conversionMultiplierSN 7.830154e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC889"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC889"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{UK}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_UK2 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Square Gallon (UK)"^^xsd:string,
        "Pound Mass Minute per Square Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 1316864.021562727949282563045476102 ;
    qudt:conversionMultiplierSN 1.316864e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC886"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC886"^^xsd:anyURI ;
    qudt:symbol "lbm·min/gal{UK}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_br]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_US-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Us Gallon Cubic Foot"^^xsd:string,
        "Pound Mass Minute per Us Gallon Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 253897.8207073728427901212026430875 ;
    qudt:conversionMultiplierSN 2.538978e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC883"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC883"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{US}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_US-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Us Gallon Cubic Inch"^^xsd:string,
        "Pound Mass Minute per Us Gallon Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 438735434.1823402723413294381672552 ;
    qudt:conversionMultiplierSN 4.387354e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC882"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC882"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{US}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_US-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Us Gallon Cubic Yard"^^xsd:string,
        "Pound Mass Minute per Us Gallon Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 9403.622989161957140374859357151386 ;
    qudt:conversionMultiplierSN 9.403623e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC884"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC884"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(gal{US}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-GAL_US2 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Square Us Gallon"^^xsd:string,
        "Pound Mass Minute per Square Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 1899287.593862944901910517048343096 ;
    qudt:conversionMultiplierSN 1.899288e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC880"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC880"^^xsd:anyURI ;
    qudt:symbol "lbm·min/gal{US}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[gal_us]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Inch Cubic Foot"^^xsd:string,
        "Pound Mass Minute per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 58650396.58340312668451799781055322 ;
    qudt:conversionMultiplierSN 5.86504e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC878"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC878"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Inch Gallon (UK)"^^xsd:string,
        "Pound Mass Minute per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 365323669.9256255972975980953884388 ;
    qudt:conversionMultiplierSN 3.653237e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC876"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC876"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Inch Us Gallon"^^xsd:string,
        "Pound Mass Minute per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 438735434.1823402723413294381672552 ;
    qudt:conversionMultiplierSN 4.387354e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC875"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC875"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Cubic Inch Cubic Yard"^^xsd:string,
        "Pound Mass Minute per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 2172236.91049641209942659251150197 ;
    qudt:conversionMultiplierSN 2.172237e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC879"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC879"^^xsd:anyURI ;
    qudt:symbol "lbm·min/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-MIN-PER-IN6 a qudt:Unit ;
    rdfs:label "Pound Mass Minute per Sextic Inch"^^xsd:string,
        "Pound Mass Minute per Sextic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 101347885296.120602910847100216636 ;
    qudt:conversionMultiplierSN 1.013479e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC877"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC877"^^xsd:anyURI ;
    qudt:symbol "lbm·min/in⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].min.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-DAY a qudt:Unit ;
    rdfs:label "Pound Mass per Day"^^xsd:string,
        "Pound Mass per Day"@en ;
    dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit for time day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000005249911689814814814814814814814813 ;
    qudt:conversionMultiplierSN 5.249912e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA673"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA673"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "lbm/d"^^xsd:string ;
    qudt:ucumCode "[lb_av].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Degree Fahrenheit"@en ;
    dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.816466266 ;
    qudt:conversionMultiplierSN 8.164663e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA668"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA668"^^xsd:anyURI ;
    qudt:symbol "lbm/°F"^^xsd:string ;
    qudt:ucumCode "[lb_av].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT a qudt:Unit ;
    rdfs:label "Pound Mass per Foot"^^xsd:string,
        "Pound Mass per Foot"@en ;
    dcterms:description "\"Pound per Foot\" is an Imperial unit for  'Mass Per Length' expressed as $lb/ft$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.488163943569553805774278215223097 ;
    qudt:conversionMultiplierSN 1.488164e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lb/ft$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAA670"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA670"^^xsd:anyURI ;
    qudt:symbol "lbm/ft"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT-LB_F-SEC a qudt:Unit ;
    rdfs:label "Pound Mass per Foot Pound Force Second"^^xsd:string,
        "Pound Mass per Foot Pound Force Second"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.3345525483024276492494263406658472 ;
    qudt:conversionMultiplierSN 3.345525e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD844"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD844"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-1.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT3-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Cubic Foot Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Cubic Foot Degree Fahrenheit"@en ;
    dcterms:description "traditional unit pound (avoirdupois) for mass according to the avoirdupois system of units divided by the product of the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 28.83323407312825124337912717820187 ;
    qudt:conversionMultiplierSN 2.883323e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA677"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA677"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft³·°F)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-3.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-FT3-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Cubic Foot Psi"^^xsd:string,
        "Pound Mass per Cubic Foot Psi"@en ;
    dcterms:description "traditional unit pound (avoirdupois) for mass according to the avoirdupois system of units divided by the power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.002323281585433525342009905143512828 ;
    qudt:conversionMultiplierSN 2.323282e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA678"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA678"^^xsd:anyURI ;
    qudt:symbol "lbm/(ft³·psi)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[ft_i]-3.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-HR-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Hour Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Hour Degree Fahrenheit"@en ;
    dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the unit for time hour and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.000226796185 ;
    qudt:conversionMultiplierSN 2.267962e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA683"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA683"^^xsd:anyURI ;
    qudt:symbol "lbm/(h·°F)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-HR-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Hour Psi"^^xsd:string,
        "Pound Mass per Hour Psi"@en ;
    dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the unit for time hour divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001827444673464991081206633802592347 ;
    qudt:conversionMultiplierSN 1.827445e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:ThrusterPowerToThrustEfficiency ;
    qudt:iec61360Code "0112/2///62720#UAA684"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA684"^^xsd:anyURI ;
    qudt:symbol "lbm/(h·psi)"^^xsd:string ;
    qudt:ucumCode "[lb_av].h-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-IN a qudt:Unit ;
    rdfs:label "Pound Mass per Inch"^^xsd:string,
        "Pound Mass per Inch"@en ;
    dcterms:description "\"Pound per Inch\" is an Imperial unit for  'Mass Per Length' expressed as $lb/in$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 17.85796732283464566929133858267716 ;
    qudt:conversionMultiplierSN 1.785797e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lb/in$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAB071"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB071"^^xsd:anyURI ;
    qudt:symbol "lbm/in"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "PO"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-IN3-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Cubic Inch Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Cubic Inch Degree Fahrenheit"@en ;
    dcterms:description "traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the product of the power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 49823.82847836561814855913176393282 ;
    qudt:conversionMultiplierSN 4.982383e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA686"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA686"^^xsd:anyURI ;
    qudt:symbol "lbm/(in³·°F)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]-3.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-IN3-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Cubic Inch Psi"^^xsd:string,
        "Pound Mass per Cubic Inch Psi"@en ;
    dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units divided by the power of the unit inch with the exponent 3 according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 4.014630579629131790993116087990167 ;
    qudt:conversionMultiplierSN 4.014631e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA687"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA687"^^xsd:anyURI ;
    qudt:symbol "lbm/(in³·psi)"^^xsd:string ;
    qudt:ucumCode "[lb_av].[in_i]-3.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-MIN-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Minute Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Minute Degree Fahrenheit"@en ;
    dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the unit for time minute and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.0136077711 ;
    qudt:conversionMultiplierSN 1.360777e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA690"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA690"^^xsd:anyURI ;
    qudt:symbol "lbm/(min·°F)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-MIN-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Minute Psi"^^xsd:string,
        "Pound Mass per Minute Psi"@en ;
    dcterms:description "quotient of the traditional unit avoirdupois pound for mass according to the avoirdupois system of units and the unit minute for time divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.000001096466804078994648723980281555408 ;
    qudt:conversionMultiplierSN 1.096467e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:ThrusterPowerToThrustEfficiency ;
    qudt:iec61360Code "0112/2///62720#UAA691"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA691"^^xsd:anyURI ;
    qudt:symbol "lbm/(min·psi)"^^xsd:string ;
    qudt:ucumCode "[lb_av].min-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Psi"^^xsd:string,
        "Pound Mass per Psi"@en ;
    dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.0000657880082447396789234388168933245 ;
    qudt:conversionMultiplierSN 6.578801e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA688"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA688"^^xsd:anyURI ;
    qudt:symbol "lbm/psi"^^xsd:string ;
    qudt:ucumCode "[lb_av].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K77"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-SEC a qudt:Unit ;
    rdfs:label "Pound Mass per Second"^^xsd:string,
        "Pound Mass per Second"@en ;
    dcterms:description "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the SI base unit for time second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.45359237 ;
    qudt:conversionMultiplierSN 4.535924e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA692"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA692"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the mass avoirdupois pound according to the avoirdupois system of units divided by the SI base unit for time second"^^xsd:string ;
    qudt:symbol "lbm/s"^^xsd:string ;
    qudt:ucumCode "[lb_av].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-SEC-DEG_F a qudt:Unit ;
    rdfs:label "Pound Mass per Second Degree Fahrenheit"^^xsd:string,
        "Pound Mass per Second Degree Fahrenheit"@en ;
    dcterms:description "traditional unit for mass avoirdupois pound according to the avoirdupois system of units divided by the product of the SI base unit second and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.816466266 ;
    qudt:conversionMultiplierSN 8.164663e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA693"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA693"^^xsd:anyURI ;
    qudt:symbol "lbm/(s·°F)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-SEC-PSI a qudt:Unit ;
    rdfs:label "Pound Mass per Second Psi"^^xsd:string,
        "Pound Mass per Second Psi"@en ;
    dcterms:description "quotient of the traditional unit avoirdupois pound for mass according the avoirdupois system of units and the SI base unit second divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.0000657880082447396789234388168933245 ;
    qudt:conversionMultiplierSN 6.578801e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:ThrusterPowerToThrustEfficiency ;
    qudt:iec61360Code "0112/2///62720#UAA694"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA694"^^xsd:anyURI ;
    qudt:symbol "lbm/(s·psi)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K83"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-PER-YD a qudt:Unit ;
    rdfs:label "Pound Mass per Yard"^^xsd:string,
        "Pound Mass per Yard"@en ;
    dcterms:description "unit for linear mass according to avoirdupois system of units"^^xsd:string ;
    qudt:conversionMultiplier 0.496054647856517935258092738407699 ;
    qudt:conversionMultiplierSN 4.960546e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:LinearMass ;
    qudt:iec61360Code "0112/2///62720#UAB245"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB245"^^xsd:anyURI ;
    qudt:symbol "lbm/yd"^^xsd:string ;
    qudt:ucumCode "[lb_av].[yd_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-FT3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Foot Gallon (UK)"^^xsd:string,
        "Pound Mass Second per Cubic Foot Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 3523.56934727648145541664829657059 ;
    qudt:conversionMultiplierSN 3.523569e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD804"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD804"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(ft³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[ft_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-FT3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Foot Us Gallon"^^xsd:string,
        "Pound Mass Second per Cubic Foot Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 4231.630345122880713168686710718126 ;
    qudt:conversionMultiplierSN 4.23163e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD803"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD803"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(ft³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[ft_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-FT3-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Foot Cubic Inch"^^xsd:string,
        "Pound Mass Second per Cubic Foot Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 977506.609723385444741966630175887 ;
    qudt:conversionMultiplierSN 9.775066e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD805"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD805"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(ft³·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[ft_i]-3.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-FT3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Foot Cubic Yard"^^xsd:string,
        "Pound Mass Second per Cubic Foot Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 20.95135909043607348983981974828289 ;
    qudt:conversionMultiplierSN 2.095136e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD807"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD807"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(ft³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[ft_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-FT6 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Sextic Foot"^^xsd:string,
        "Pound Mass Second per Sextic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 565.6866954417739842256751332036382 ;
    qudt:conversionMultiplierSN 5.656867e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD806"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD806"^^xsd:anyURI ;
    qudt:symbol "lbm·s/ft⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[ft_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_UK-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Gallon (UK) Cubic Foot"^^xsd:string,
        "Pound Mass Second per Gallon (UK) Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 3523.56934727648145541664829657059 ;
    qudt:conversionMultiplierSN 3.523569e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD821"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD821"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{UK}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_br]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_UK-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Gallon (UK) Cubic Inch"^^xsd:string,
        "Pound Mass Second per Gallon (UK) Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 6088727.832093759954959968256473979 ;
    qudt:conversionMultiplierSN 6.088728e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD820"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD820"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{UK}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_br]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_UK-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Gallon (UK) Cubic Yard"^^xsd:string,
        "Pound Mass Second per Gallon (UK) Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 130.5025684176474613117277146877996 ;
    qudt:conversionMultiplierSN 1.305026e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD822"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD822"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{UK}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_br]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_UK2 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Square Gallon (UK)"^^xsd:string,
        "Pound Mass Second per Square Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (UK) according to the Anglo-American system of units and unit gallon (UK) according to the Imperial system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 21947.73369271213248804271742460169 ;
    qudt:conversionMultiplierSN 2.194773e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD819"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD819"^^xsd:anyURI ;
    qudt:symbol "lbm·s/gal{UK}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_br]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_US-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Us Gallon Cubic Foot"^^xsd:string,
        "Pound Mass Second per Us Gallon Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 4231.630345122880713168686710718126 ;
    qudt:conversionMultiplierSN 4.23163e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD816"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD816"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{US}·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_us]-1.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_US-IN3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Us Gallon Cubic Inch"^^xsd:string,
        "Pound Mass Second per Us Gallon Cubic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 7312257.23637233787235549063612092 ;
    qudt:conversionMultiplierSN 7.312257e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD815"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD815"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{US}·in³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_us]-1.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_US-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Us Gallon Cubic Yard"^^xsd:string,
        "Pound Mass Second per Us Gallon Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 156.7270498193659523395809892858564 ;
    qudt:conversionMultiplierSN 1.56727e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD817"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD817"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(gal{US}·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_us]-1.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-GAL_US2 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Square Us Gallon"^^xsd:string,
        "Pound Mass Second per Square Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per unit gallon (US) according to the Anglo-American system of units and the unit gallon (US) according to the Anglo-American system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 31654.79323104908169850861747238494 ;
    qudt:conversionMultiplierSN 3.165479e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD813"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD813"^^xsd:anyURI ;
    qudt:symbol "lbm·s/gal{US}²"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[gal_us]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Inch Cubic Foot"^^xsd:string,
        "Pound Mass Second per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 977506.609723385444741966630175887 ;
    qudt:conversionMultiplierSN 9.775066e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD811"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD811"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Inch Gallon (UK)"^^xsd:string,
        "Pound Mass Second per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 6088727.832093759954959968256473979 ;
    qudt:conversionMultiplierSN 6.088728e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD809"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD809"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Inch Us Gallon"^^xsd:string,
        "Pound Mass Second per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 7312257.23637233787235549063612092 ;
    qudt:conversionMultiplierSN 7.312257e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD808"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD808"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Cubic Inch Cubic Yard"^^xsd:string,
        "Pound Mass Second per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 36203.94850827353499044320852503284 ;
    qudt:conversionMultiplierSN 3.620395e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD812"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD812"^^xsd:anyURI ;
    qudt:symbol "lbm·s/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB-SEC-PER-IN6 a qudt:Unit ;
    rdfs:label "Pound Mass Second per Sextic Inch"^^xsd:string,
        "Pound Mass Second per Sextic Inch"@en ;
    dcterms:description "quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1689131421.602010048514118336943933 ;
    qudt:conversionMultiplierSN 1.689131e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD810"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD810"^^xsd:anyURI ;
    qudt:symbol "lbm·s/in⁶"^^xsd:string ;
    qudt:ucumCode "[lb_av].s.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-FT-PER-IN a qudt:Unit ;
    rdfs:label "Pound Force Foot per Inch"^^xsd:string,
        "Pound Force Foot per Inch"@en ;
    dcterms:description "unit for length-related rotational moment according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 53.3786617780937136 ;
    qudt:conversionMultiplierSN 5.337866e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:LinearTorque ;
    qudt:iec61360Code "0112/2///62720#UAB292"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB292"^^xsd:anyURI ;
    qudt:symbol "lbf·ft/in"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[ft_i].[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-IN-PER-IN a qudt:Unit ;
    rdfs:label "Pound Force Inch per Inch"^^xsd:string,
        "Pound Force Inch per Inch"@en ;
    dcterms:description "unit for length-related rotational moment according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 4.4482218148411428 ;
    qudt:conversionMultiplierSN 4.448222e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:LinearTorque ;
    qudt:iec61360Code "0112/2///62720#UAB293"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB293"^^xsd:anyURI ;
    qudt:symbol "lbf·in/in"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[in_i].[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-PER-IN2-DEG_F a qudt:Unit ;
    rdfs:label "Pound Force per Square Inch Degree Fahrenheit"^^xsd:string,
        "Pound Force per Square Inch Degree Fahrenheit"@en ;
    dcterms:description "composed unit for pressure (pound-force per square inch) divided by the unit degree Fahrenheit for temperature"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 12410.56368453415748031496062992126 ;
    qudt:conversionMultiplierSN 1.241056e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:VolumetricHeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAA702"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA702"^^xsd:anyURI ;
    qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the unit degree Fahrenheit for temperature"^^xsd:string ;
    qudt:symbol "lbf/(in²·°F)"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[in_i]-2.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "K86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-PER-IN2-SEC a qudt:Unit ;
    rdfs:label "Pound Force per Square Inch Second"^^xsd:string,
        "Pound Force per Square Inch Second"@en ;
    dcterms:description "\"Pound Force per Square Inch Second\" is a unit for  'Force Per Area Time' expressed as $lbf / in^{2}-s$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 6894.757602518976377952755905511811 ;
    qudt:conversionMultiplierSN 6.894758e+03 ;
    qudt:expression "$lbf / in^{2}-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "lbf/(in²·s)"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[in_i]-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LB_F-PER-LB a qudt:Unit ;
    rdfs:label "Pound Force per Pound Mass"^^xsd:string,
        "Pound Force per Pound Mass"@en ;
    dcterms:description "\"Pound Force per Pound\" is an Imperial unit for  'Thrust To Mass Ratio' expressed as $lbf/lb$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 9.806650439999999999999999999999998 ;
    qudt:conversionMultiplierSN 9.80665e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$lbf/lb$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind qudtqk:ThrustToMassRatio ;
    qudt:symbol "lbf/lbm"^^xsd:string ;
    qudt:ucumCode "[lbf_av].[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LM-HR a qudt:Unit ;
    rdfs:label "Lumen Hour"^^xsd:string,
        "Lumen Hour"@en ;
    dcterms:description "product of the SI derived unit lumen and the unit hour"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:LuminousEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA720"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA720"^^xsd:anyURI ;
    qudt:symbol "lm·h"^^xsd:string ;
    qudt:ucumCode "lm.h"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LM-PER-FT2 a qudt:Unit ;
    rdfs:label "Lumen per Square Foot"^^xsd:string,
        "Lumen per Square Foot"@en ;
    dcterms:description "SI derived unit lumen divided by the power of the unit foot according to the Anglo-American and Imperial system of units by exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 10.7639104167097223083335055559 ;
    qudt:conversionMultiplierSN 1.076391e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LM ] ;
    qudt:hasQuantityKind qudtqk:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAB254"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB254"^^xsd:anyURI ;
    qudt:symbol "lm/ft²"^^xsd:string ;
    qudt:ucumCode "lm.[ft_i]-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LM-PER-M2 a qudt:Unit ;
    rdfs:label "Lumen per Square Metre"^^xsd:string,
        "Лумен на Квадратен Метър"@bg,
        "Lumen na Čtvereční Metr"@cs,
        "Lumen pro Quadratmeter"@de,
        "Λούμεν ανά Τετραγωνικό Μέτρο"@el,
        "Lumen per Square Metre"@en,
        "Lumen per Square Meter"@en-us,
        "Lumen por Metro Cuadrado"@es,
        "Lumen par Mètre Carré"@fr,
        "Lumen per Metro Quadrato"@it,
        "Lumen per Metrum Quadratum"@la,
        "Lumen per Meter Persegi"@ms,
        "Lumen na Metr Kwadratowy"@pl,
        "Lumen por Metro Quadrado"@pt,
        "Lumen pe Metru Pătrat"@ro,
        "Лумен на Квадратный Метр"@ru,
        "Lumen na Kvadratni Meter"@sl,
        "Lümen per Metrekare"@tr ;
    dcterms:description "SI derived unit lumen divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LM ] ;
    qudt:hasQuantityKind qudtqk:Luminance ;
    qudt:iec61360Code "0112/2///62720#UAA721"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA721"^^xsd:anyURI ;
    qudt:symbol "lm/m²"^^xsd:string ;
    qudt:ucumCode "lm.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LM-PER-W a qudt:Unit ;
    rdfs:label "Lumen per Watt"^^xsd:string,
        "Лумен на Ват"@bg,
        "Lumen na Watt"@cs,
        "Lumen pro Watt"@de,
        "Λούμεν ανά Βατ"@el,
        "Lumen per Watt"@en,
        "Lumen por Vatio"@es,
        "Lumen par Watt"@fr,
        "Lumen per Watt"@it,
        "Lumen per Wattium"@la,
        "Lumen per Watt"@ms,
        "Lumen na Wat"@pl,
        "Lumen por Watt"@pt,
        "Lumen pe Watt"@ro,
        "Лумен на Ватт"@ru,
        "Lumen na Watt"@sl,
        "Lümen per Watt"@tr ;
    dcterms:description "A measurement of luminous efficacy, which is the light output in lumens using one watt of electricity."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$lm-per-w$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LM ] ;
    qudt:hasQuantityKind qudtqk:LuminousEfficacy ;
    qudt:iec61360Code "0112/2///62720#UAA719"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA719"^^xsd:anyURI ;
    qudt:symbol "lm/W"^^xsd:string ;
    qudt:ucumCode "lm.W-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B61"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83386886> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LM-SEC a qudt:Unit ;
    rdfs:label "Lumen Second"^^xsd:string,
        "Лумен Секунда"@bg,
        "Lumen Sekunda"@cs,
        "Lumen Sekunde"@de,
        "Λούμεν Δευτερόλεπτο"@el,
        "Lumen Second"@en,
        "Lumen Segundo"@es,
        "Lumen Seconde"@fr,
        "Lumen Secondo"@it,
        "Lumen Secundum"@la,
        "Lumen Saat"@ms,
        "Lumen Sekunda"@pl,
        "Lumen Segundo"@pt,
        "Lumen Secundă"@ro,
        "Лумен Секунда"@ru,
        "Lumen Sekunda"@sl,
        "Lümen Saniye"@tr ;
    dcterms:description "In photometry, the lumen second is the SI derived unit of luminous energy. It is based on the lumen, the SI unit of luminous flux, and the second, the SI base unit of time.  The lumen second is sometimes called the talbot (symbol T).  An older name for the lumen second was the lumberg."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$lm s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LM ] ;
    qudt:hasQuantityKind qudtqk:LuminousEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA722"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA722"^^xsd:anyURI ;
    qudt:symbol "lm·s"^^xsd:string ;
    qudt:ucumCode "lm.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B62"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q910311> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:altLabel "lumberg"^^xsd:string,
        "talbot"^^xsd:string .

unit:LUX-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Lux Hour"^^xsd:string,
        "Lux Hour"@en ;
    dcterms:description "The SI unit for measuring the illumination (illuminance) of a surface. One lux is defined as an illumination of one lumen per square meter or 0.0001 phot. In considering the various light units, it's useful to think about light originating at a point and shining upon a surface. The intensity of the light source is measured in candelas; the total light flux in transit is measured in lumens (1 lumen = 1 candelau00b7steradian); and the amount of light received per unit of surface area is measured in lux (1 lux = 1 lumen/square meter). One lux is equal to approximately 0.09290 foot candle."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Lux"^^xsd:anyURI ;
    qudt:expression "$lx h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LUX ] ;
    qudt:hasQuantityKind qudtqk:LuminousExposure ;
    qudt:iec61360Code "0112/2///62720#UAA724"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Lux?oldid=494700274"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA724"^^xsd:anyURI ;
    qudt:siUnitsExpression "lm-h/m^2"^^xsd:string ;
    qudt:symbol "lx·h"^^xsd:string ;
    qudt:ucumCode "lx.h"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B63"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107361135> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:LUX-SEC a qudt:Unit ;
    rdfs:label "Lux Second"^^xsd:string,
        "Лукс Секунда"@bg,
        "Lux Sekunda"@cs,
        "Lux Sekunde"@de,
        "Lux Δευτερόλεπτο"@el,
        "Lux Second"@en,
        "Lux Segundo"@es,
        "Lux Seconde"@fr,
        "Lux Secondo"@it,
        "Lux Saat"@ms,
        "Luks Sekunda"@pl,
        "Lux Segundo"@pt,
        "Lux Secundă"@ro,
        "Люкс Секунда"@ru,
        "Luks Sekunda"@sl,
        "Lüks Saniye"@tr ;
    dcterms:description "product of the SI derived unit lux and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I1M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:LUX ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:LuminousExposure ;
    qudt:iec61360Code "0112/2///62720#UAA725"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA725"^^xsd:anyURI ;
    qudt:symbol "lx·s"^^xsd:string ;
    qudt:ucumCode "lx.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B64"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-KiloGM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Metre Kilogram"^^xsd:string,
        "Метър Килограм"@bg,
        "Metr Kilogram"@cs,
        "Meter Kilogramm"@de,
        "Μέτρο Χιλιόγραμμο"@el,
        "Metre Kilogram"@en,
        "Meter Kilogram"@en-us,
        "Metro Kilogramo"@es,
        "Mètre Kilogramme"@fr,
        "Metro Chilogrammo"@it,
        "Metrum Chiliogramma"@la,
        "Meter Kilogram"@ms,
        "Metr Kilogram"@pl,
        "Metro Quilograma"@pt,
        "Metru Kilogram"@ro,
        "Метр Килограмм"@ru,
        "Meter Kilogram"@sl,
        "Metre Kilogram"@tr ;
    dcterms:description "product of SI base units metre and kilogram given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$m-kg$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:LengthMass ;
    qudt:iec61360Code "0112/2///62720#UAD674"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD674"^^xsd:anyURI ;
    qudt:symbol "m·kg"^^xsd:string ;
    qudt:ucumCode "m.kg"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-BAR a qudt:Unit ;
    rdfs:label "Metre per Bar"^^xsd:string,
        "Metre per Bar"@en,
        "Meter per Bar"@en-us ;
    dcterms:description "SI base unit metre divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA731"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA731"^^xsd:anyURI ;
    qudt:symbol "m/bar"^^xsd:string ;
    qudt:ucumCode "m.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G05"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Metre per Second Bar"^^xsd:string,
        "Metre per Second Bar"@en,
        "Meter per Second Bar"@en-us ;
    dcterms:description "SI base unit meter divided by the product of SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB313"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB313"^^xsd:anyURI ;
    qudt:symbol "m/(s·bar)"^^xsd:string ;
    qudt:ucumCode "m.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L13"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-PER-SEC-K a qudt:Unit ;
    rdfs:label "Metre per Second Kelvin"^^xsd:string,
        "Метър на Секунда Келвин"@bg,
        "Metr na Sekunda Kelvin"@cs,
        "Meter pro Sekunde Kelvin"@de,
        "Μέτρο ανά Δευτερόλεπτο Κέλβιν"@el,
        "Metre per Second Kelvin"@en,
        "Meter per Second Kelvin"@en-us,
        "Metro por Segundo Kelvin"@es,
        "Mètre par Seconde Kelvin"@fr,
        "Metro per Secondo Kelvin"@it,
        "Metrum per Secundum Kelvin"@la,
        "Meter per Saat Kelvin"@ms,
        "Metr na Sekunda Kelwin"@pl,
        "Metro por Segundo Kelvin"@pt,
        "Metru pe Secundă Kelvin"@ro,
        "Метр на Секунда Кельвин"@ru,
        "Meter na Sekunda Kelvin"@sl,
        "Metre per Saniye Kelvin"@tr ;
    dcterms:description "SI base units metre divided by the product of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC009"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC009"^^xsd:anyURI ;
    qudt:symbol "m/(s·K)"^^xsd:string ;
    qudt:ucumCode "m.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L12"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M-SEC2 a qudt:Unit ;
    rdfs:label "Metre Square Second"^^xsd:string,
        "Метър Квадратен Секунда"@bg,
        "Metr Čtvereční Sekunda"@cs,
        "Meter Quadratsekunde"@de,
        "Μέτρο Τετραγωνικό Δευτερόλεπτο"@el,
        "Metre Square Second"@en,
        "Meter Square Second"@en-us,
        "Metro Segundo Cuadrado"@es,
        "Mètre Seconde Carré"@fr,
        "Metro Secondo Quadrato"@it,
        "Metrum Secundum Quadratum"@la,
        "Meter Saat Persegi"@ms,
        "Metr Sekunda Kwadratowy"@pl,
        "Metro Segundo Quadrado"@pt,
        "Metru Secundă Pătrat"@ro,
        "Метр Квадратный Секунда"@ru,
        "Meter Kvadratni Sekunda"@sl,
        "Metre Saniyekare"@tr ;
    dcterms:description "product of SI base units metre and second to the power of two given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD683"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD683"^^xsd:anyURI ;
    qudt:symbol "m·s²"^^xsd:string ;
    qudt:ucumCode "m.s2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-HR-DEG_C-PER-KiloCAL_IT a qudt:Unit ;
    rdfs:label "Square Metre Hour Degree Celsius per Kilo International Table Calorie"^^xsd:string,
        "Square Metre Hour Degree Celsius per Kilo International Table Calorie"@en,
        "Square Meter Hour Degree Celsius per Kilo International Table Calorie"@en-us ;
    dcterms:description "product of the power of the SI base unit metre with the exponent 2, of the unit hour for time and the unit degree Celsius for temperature divided by the 1000-fold of the out of use unit for energy international calorie"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.8598452278589853826311263972484954 ;
    qudt:conversionMultiplierSN 8.598452e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H1T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloCAL_IT ] ;
    qudt:hasQuantityKind qudtqk:ThermalInsulance ;
    qudt:iec61360Code "0112/2///62720#UAA749"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA749"^^xsd:anyURI ;
    qudt:plainTextDescription "product of the power of the SI base unit metre with the exponent 2, of the unit hour for time and the unit degree Celsius for temperature divided by the 1000-fold of the out of use unit for energy international calorie"^^xsd:string ;
    qudt:symbol "m²·h·°C/kcal{IT}"^^xsd:string ;
    qudt:ucumCode "m2.h.Cel.kcal_IT-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L14"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-HZ2 a qudt:Unit ;
    rdfs:label "Square Metre Square Hertz"^^xsd:string,
        "Квадратен Метър Квадратен Херц"@bg,
        "Čtvereční Metr Čtvereční Hertz"@cs,
        "Quadratmeter Quadrathertz"@de,
        "Τετραγωνικό Μέτρο Τετραγωνικό Χερτζ"@el,
        "Square Metre Square Hertz"@en,
        "Square Meter Square Hertz"@en-us,
        "Metro Cuadrado Hercio Cuadrado"@es,
        "Mètre Carré Hertz Carré"@fr,
        "Metro Quadrato Hertz Quadrato"@it,
        "Metrum Quadratum Hertzium Quadratum"@la,
        "Meter Persegi Hertz Persegi"@ms,
        "Metr Kwadratowy Herc Kwadratowy"@pl,
        "Metro Quadrado Hertz Quadrado"@pt,
        "Metru Pătrat Hertz Pătrat"@ro,
        "Квадратный Метр Квадратный Герц"@ru,
        "Kvadratni Meter Kvadratni Hertz"@sl,
        "Metrekare Hertzkare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:HZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²·Hz²"^^xsd:string ;
    qudt:ucumCode "m2.Hz2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-HZ3 a qudt:Unit ;
    rdfs:label "Square Metre Cubic Hertz"^^xsd:string,
        "Квадратен Метър Кубичен Херц"@bg,
        "Čtvereční Metr Hertz Krychlový"@cs,
        "Quadratmeter Kubikhertz"@de,
        "Τετραγωνικό Μέτρο Κυβικό Χερτζ"@el,
        "Square Metre Cubic Hertz"@en,
        "Square Meter Cubic Hertz"@en-us,
        "Metro Cuadrado Hercio Cúbico"@es,
        "Mètre Carré Hertz Cube"@fr,
        "Metro Quadrato Hertz Cubo"@it,
        "Metrum Quadratum Hertzium Cubicum"@la,
        "Meter Persegi Hertz Kubik"@ms,
        "Metr Kwadratowy Herc Sześcienny"@pl,
        "Metro Quadrado Hertz Cúbico"@pt,
        "Metru Pătrat Hertz Cub"@ro,
        "Квадратный Метр Кубический Герц"@ru,
        "Kvadratni Meter Kubični Hertz"@sl,
        "Metrekare Hertzküp"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:HZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²·Hz³"^^xsd:string ;
    qudt:ucumCode "m2.Hz3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-HZ4 a qudt:Unit ;
    rdfs:label "Square Metre Quartic Hertz"^^xsd:string,
        "Quadratmeter Hertz hoch vier"@de,
        "Square Metre Quartic Hertz"@en,
        "Square Meter Quartic Hertz"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²·Hz⁴"^^xsd:string ;
    qudt:ucumCode "m2.Hz4"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre Kelvin"^^xsd:string,
        "Квадратен Метър Келвин"@bg,
        "Čtvereční Metr Kelvin"@cs,
        "Quadratmeter Kelvin"@de,
        "Τετραγωνικό Μέτρο Κέλβιν"@el,
        "Square Metre Kelvin"@en,
        "Square Meter Kelvin"@en-us,
        "Metro Cuadrado Kelvin"@es,
        "Mètre Carré Kelvin"@fr,
        "Metro Quadrato Kelvin"@it,
        "Metrum Quadratum Kelvin"@la,
        "Meter Persegi Kelvin"@ms,
        "Metr Kwadratowy Kelwin"@pl,
        "Metro Quadrado Kelvin"@pt,
        "Metru Pătrat Kelvin"@ro,
        "Квадратный Метр Кельвин"@ru,
        "Kvadratni Meter Kelvin"@sl,
        "Metrekare Kelvin"@tr ;
    dcterms:description "$\\textit{Square Meter Kelvin}$ is a unit for 'Area Temperature' expressed as $m^{2}-K$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m^{2}-K$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:AreaTemperature ;
    qudt:symbol "m²·K"^^xsd:string ;
    qudt:ucumCode "m2.K"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-GM_DRY a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Dry Gram"^^xsd:string,
        "Square Metre per Dry Gram"@en,
        "Square Meter per Dry Gram"@en-us ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM_DRY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:MassAttenuationCoefficient ;
    qudt:symbol "m²/g{dry sediment}"^^xsd:string ;
    qudt:ucumCode "m2.g-1{dry}"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    skos:broader unit:M2-PER-GM .

unit:M2-PER-HA a qudt:Unit ;
    rdfs:label "Square Metre per Hectare"^^xsd:string,
        "Square Metre per Hectare"@en,
        "Square Meter per Hectare"@en-us ;
    dcterms:description "Square metres per hectare."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaRatio ;
    qudt:plainTextDescription "Square metres per hectare."^^xsd:string ;
    qudt:symbol "m²/ha"^^xsd:string ;
    qudt:ucumCode "m2.har-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-HA-YR a qudt:Unit ;
    rdfs:label "Square Metre per Hectare Year"^^xsd:string,
        "Square Metre per Hectare Year"@en,
        "Square Meter per Hectare Year"@en-us ;
    qudt:conversionMultiplier 0.000000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 2 divided by the unit hectare and by the unit year"^^xsd:string ;
    qudt:symbol "m²/(ha·a)"^^xsd:string ;
    qudt:ucumCode "m2.har-1.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-HZ a qudt:Unit ;
    rdfs:label "Square Metre per Hertz"^^xsd:string,
        "Квадратен Метър на Херц"@bg,
        "Čtvereční Metr na Hertz"@cs,
        "Quadratmeter pro Hertz"@de,
        "Τετραγωνικό Μέτρο ανά Χερτζ"@el,
        "Square Metre per Hertz"@en,
        "Square Meter per Hertz"@en-us,
        "Metro Cuadrado por Hercio"@es,
        "Mètre Carré par Hertz"@fr,
        "Metro Quadrato per Hertz"@it,
        "Metrum Quadratum per Hertzium"@la,
        "Meter Persegi per Hertz"@ms,
        "Metr Kwadratowy na Herc"@pl,
        "Metro Quadrado por Hertz"@pt,
        "Metru Pătrat pe Hertz"@ro,
        "Квадратный Метр на Герц"@ru,
        "Kvadratni Meter na Hertz"@sl,
        "Metrekare per Hertz"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²/Hz"^^xsd:string ;
    qudt:ucumCode "m2.Hz-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-HZ-DEG a qudt:Unit ;
    rdfs:label "Square Metre per Hertz Degree"^^xsd:string,
        "Square Metre per Hertz Degree"@en,
        "Square Meter per Hertz Degree"@en-us ;
    qudt:conversionMultiplier 57.29577957855229894302178227976183 ;
    qudt:conversionMultiplierSN 5.729578e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²/(Hz·°)"^^xsd:string ;
    qudt:ucumCode "m2.Hz-1.deg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-HZ2 a qudt:Unit ;
    rdfs:label "Square Metre per Square Hertz"^^xsd:string,
        "Квадратен Метър на Квадратен Херц"@bg,
        "Čtvereční Metr na Čtvereční Hertz"@cs,
        "Quadratmeter pro Quadrathertz"@de,
        "Τετραγωνικό Μέτρο ανά Τετραγωνικό Χερτζ"@el,
        "Square Metre per Square Hertz"@en,
        "Square Meter per Square Hertz"@en-us,
        "Metro Cuadrado por Hercio Cuadrado"@es,
        "Mètre Carré par Hertz Carré"@fr,
        "Metro Quadrato per Hertz Quadrato"@it,
        "Metrum Quadratum per Hertzium Quadratum"@la,
        "Meter Persegi per Hertz Persegi"@ms,
        "Metr Kwadratowy na Herc Kwadratowy"@pl,
        "Metro Quadrado por Hertz Quadrado"@pt,
        "Metru Pătrat pe Hertz Pătrat"@ro,
        "Квадратный Метр на Квадратный Герц"@ru,
        "Kvadratni Meter na Kvadratni Hertz"@sl,
        "Metrekare per Hertzkare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:HZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²/Hz²"^^xsd:string ;
    qudt:ucumCode "m2.Hz-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Kelvin"^^xsd:string,
        "Квадратен Метър на Келвин"@bg,
        "Čtvereční Metr na Kelvin"@cs,
        "Quadratmeter pro Kelvin"@de,
        "Τετραγωνικό Μέτρο ανά Κέλβιν"@el,
        "Square Metre per Kelvin"@en,
        "Square Meter per Kelvin"@en-us,
        "Metro Cuadrado por Kelvin"@es,
        "Mètre Carré par Kelvin"@fr,
        "Metro Quadrato per Kelvin"@it,
        "Metrum Quadratum per Kelvin"@la,
        "Meter Persegi per Kelvin"@ms,
        "Metr Kwadratowy na Kelwin"@pl,
        "Metro Quadrado por Kelvin"@pt,
        "Metru Pătrat pe Kelvin"@ro,
        "Квадратный Метр на Кельвин"@ru,
        "Kvadratni Meter na Kelvin"@sl,
        "Metrekare per Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m2-per-k$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:AreaThermalExpansion ;
    qudt:symbol "m²/K"^^xsd:string ;
    qudt:ucumCode "m2.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Square Metre per Second Bar"^^xsd:string,
        "Square Metre per Second Bar"@en,
        "Square Meter per Second Bar"@en-us ;
    dcterms:description """
  The unit $\\textit{Square Metre per Second Bar}$ typically refers to a measure of fluid permeability in the
   context of materials science or engineering.
  It is the volume of fluid (in square metres) that can pass through a material in one second under a pressure difference of one bar. 
  This unit is particularly important in fields such as petrophysics, hydrogeology, and materials engineering,
   where understanding the flow of fluids through porous media is crucial.
  A $Bar$ is not an SI unit but is a unit of pressure that is widely used in various scientific and engineering contexts.
  A bar is equal to $100,000\\ pascals$, (symbol $Pa$), approximately equal to the atmospheric pressure on Earth at sea level.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB493"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB493"^^xsd:anyURI ;
    qudt:symbol "m²/(s·bar)"^^xsd:string ;
    qudt:ucumCode "m2.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SEC-K a qudt:Unit ;
    rdfs:label "Square Metre per Second Kelvin"^^xsd:string,
        "Квадратен Метър на Секунда Келвин"@bg,
        "Čtvereční Metr na Sekunda Kelvin"@cs,
        "Quadratmeter pro Sekunde Kelvin"@de,
        "Τετραγωνικό Μέτρο ανά Δευτερόλεπτο Κέλβιν"@el,
        "Square Metre per Second Kelvin"@en,
        "Square Meter per Second Kelvin"@en-us,
        "Metro Cuadrado por Segundo Kelvin"@es,
        "Mètre Carré par Seconde Kelvin"@fr,
        "Metro Quadrato per Secondo Kelvin"@it,
        "Metrum Quadratum per Secundum Kelvin"@la,
        "Meter Persegi per Saat Kelvin"@ms,
        "Metr Kwadratowy na Sekunda Kelwin"@pl,
        "Metro Quadrado por Segundo Kelvin"@pt,
        "Metru Pătrat pe Secundă Kelvin"@ro,
        "Квадратный Метр на Секунда Кельвин"@ru,
        "Kvadratni Meter na Sekunda Kelvin"@sl,
        "Metrekare per Saniye Kelvin"@tr ;
    dcterms:description """
  The unit $\\textit{Square Metre per Second Kelvin}$ is a heat transfer coefficient that is area-dependent
   and varies with time and temperature difference. 
  Heat transfer is typically defined in terms of watts per square meter per kelvin ($W/m^{2}K$),
   representing the rate of heat transfer across a surface per unit area per unit temperature difference.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA753"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA753"^^xsd:anyURI ;
    qudt:symbol "m²/(s·K)"^^xsd:string ;
    qudt:ucumCode "m2.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G09"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SEC-PA a qudt:Unit ;
    rdfs:label "Square Metre per Second Pascal"^^xsd:string,
        "Квадратен Метър на Секунда Паскал"@bg,
        "Čtvereční Metr na Sekunda Pascal"@cs,
        "Quadratmeter pro Sekunde Pascal"@de,
        "Τετραγωνικό Μέτρο ανά Δευτερόλεπτο Πασκάλ"@el,
        "Square Metre per Second Pascal"@en,
        "Square Meter per Second Pascal"@en-us,
        "Metro Cuadrado por Segundo Pascal"@es,
        "Mètre Carré par Seconde Pascal"@fr,
        "Metro Quadrato per Secondo Pascal"@it,
        "Metrum Quadratum per Secundum Pascalium"@la,
        "Meter Persegi per Saat Pascal"@ms,
        "Metr Kwadratowy na Sekunda Paskal"@pl,
        "Metro Quadrado por Segundo Pascal"@pt,
        "Metru Pătrat pe Secundă Pascal"@ro,
        "Квадратный Метр на Секунда Паскаль"@ru,
        "Kvadratni Meter na Sekunda Pascal"@sl,
        "Metrekare per Saniye Pascal"@tr ;
    dcterms:description """
  The unit $\\textit{Square Metre per Second Pascal}$, symbol $m^{2}/s\\cdot Pa$, is a measure of permeability, which describes the ability
   of a material to allow fluids to pass through it under a pressure gradient. 
  It's particularly relevant in fields like hydrogeology, petroleum engineering, and civil engineering,
   where understanding fluid flow through porous materials is essential.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB460"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB460"^^xsd:anyURI ;
    qudt:symbol "m²/(s·Pa)"^^xsd:string ;
    qudt:ucumCode "m2.s-1.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Steradian"^^xsd:string,
        "Квадратен Метър на Стерадиан"@bg,
        "Čtvereční Metr na Steradián"@cs,
        "Quadratmeter pro Steradiant"@de,
        "Τετραγωνικό Μέτρο ανά Στερακτίνιο"@el,
        "Square Metre per Steradian"@en,
        "Square Meter per Steradian"@en-us,
        "Metro Cuadrado por Estereorradián"@es,
        "Mètre Carré par Stéradian"@fr,
        "Metro Quadrato per Steradiante"@it,
        "Metrum Quadratum per Steradian"@la,
        "Meter Persegi per Steradian"@ms,
        "Metr Kwadratowy na Steradian"@pl,
        "Metro Quadrado por Esterradiano"@pt,
        "Metru Pătrat pe Steradian"@ro,
        "Квадратный Метр на Стерадиан"@ru,
        "Kvadratni Meter na Steradian"@sl,
        "Metrekare per Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
    qudt:expression "$m^2/sr$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AngularCrossSection ;
    qudt:iec61360Code "0112/2///62720#UAA755"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Steradian?oldid=494317847"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA755"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m²/sr"^^xsd:string ;
    qudt:ucumCode "m2.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D24"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98266832> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-PER-SR-J a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre per Steradian Joule"^^xsd:string,
        "Квадратен Метър на Стерадиан Джаул"@bg,
        "Čtvereční Metr na Steradián Joule"@cs,
        "Quadratmeter pro Steradiant Joule"@de,
        "Τετραγωνικό Μέτρο ανά Στερακτίνιο Τζάουλ"@el,
        "Square Metre per Steradian Joule"@en,
        "Square Meter per Steradian Joule"@en-us,
        "Metro Cuadrado por Estereorradián Julio"@es,
        "Mètre Carré par Stéradian Joule"@fr,
        "Metro Quadrato per Steradiante Joule"@it,
        "Metrum Quadratum per Steradian Joulium"@la,
        "Meter Persegi per Steradian Joule"@ms,
        "Metr Kwadratowy na Steradian Dżul"@pl,
        "Metro Quadrado por Esterradiano Joule"@pt,
        "Metru Pătrat pe Steradian Joule"@ro,
        "Квадратный Метр на Стерадиан Джоуль"@ru,
        "Kvadratni Meter na Steradian Joule"@sl,
        "Metrekare per Steradyan Joule"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Steradian"^^xsd:anyURI ;
    qudt:expression "$m^2/sr-j$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:SpectralAngularCrossSection ;
    qudt:iec61360Code "0112/2///62720#UAA756"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA756"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31895"^^xsd:anyURI ;
    qudt:symbol "m²/(sr·J)"^^xsd:string ;
    qudt:ucumCode "m2.sr-1.J-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D25"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98269780> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-SEC-PER-RAD a qudt:Unit ;
    rdfs:label "Square Metre Second per Radian"^^xsd:string,
        "Квадратен Метър Секунда на Радиан"@bg,
        "Čtvereční Metr Sekunda na Radián"@cs,
        "Quadratmeter Sekunde pro Radiant"@de,
        "Τετραγωνικό Μέτρο Δευτερόλεπτο ανά Ακτίνιο"@el,
        "Square Metre Second per Radian"@en,
        "Square Meter Second per Radian"@en-us,
        "Metro Cuadrado Segundo por Radián"@es,
        "Mètre Carré Seconde par Radian"@fr,
        "Metro Quadrato Secondo per Radiante"@it,
        "Metrum Quadratum Secundum per Radian"@la,
        "Meter Persegi Saat per Radian"@ms,
        "Metr Kwadratowy Sekunda na Radian"@pl,
        "Metro Quadrado Segundo por Radiano"@pt,
        "Metru Pătrat Secundă pe Radian"@ro,
        "Квадратный Метр Секунда на Радиан"@ru,
        "Kvadratni Meter Sekunda na Radian"@sl,
        "Metrekare Saniye per Radyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m²·s/rad"^^xsd:string ;
    qudt:ucumCode "m2.s.rad-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M2-SR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Metre Steradian"^^xsd:string,
        "Квадратен Метър Стерадиан"@bg,
        "Čtvereční Metr Steradián"@cs,
        "Quadratmeter Steradiant"@de,
        "Τετραγωνικό Μέτρο Στερακτίνιο"@el,
        "Square Metre Steradian"@en,
        "Square Meter Steradian"@en-us,
        "Metro Cuadrado Estereorradián"@es,
        "Mètre Carré Stéradian"@fr,
        "Metro Quadrato Steradiante"@it,
        "Metrum Quadratum Steradian"@la,
        "Meter Persegi Steradian"@ms,
        "Metr Kwadratowy Steradian"@pl,
        "Metro Quadrado Esterradiano"@pt,
        "Metru Pătrat Steradian"@ro,
        "Квадратный Метр Стерадиан"@ru,
        "Kvadratni Meter Steradian"@sl,
        "Metrekare Steradyan"@tr ;
    dcterms:description "\"Square Meter Steradian\" is a unit for  'Area Angle' expressed as $m^{2}-sr$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m^{2}-sr$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:AreaAngle ;
    qudt:symbol "m²·sr"^^xsd:string ;
    qudt:ucumCode "m2.sr"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-BAR a qudt:Unit ;
    rdfs:label "Cubic Metre per Bar"^^xsd:string,
        "Cubic Metre per Bar"@en,
        "Cubic Meter per Bar"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA759"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA759"^^xsd:anyURI ;
    qudt:symbol "m³/bar"^^xsd:string ;
    qudt:ucumCode "m3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G96"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Cubic Metre per Day Bar"^^xsd:string,
        "Cubic Metre per Day Bar"@en,
        "Cubic Meter per Day Bar"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA762"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA762"^^xsd:anyURI ;
    qudt:symbol "m³/(d·bar)"^^xsd:string ;
    qudt:ucumCode "m3.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-DAY-K a qudt:Unit ;
    rdfs:label "Cubic Metre per Day Kelvin"^^xsd:string,
        "Cubic Metre per Day Kelvin"@en,
        "Cubic Meter per Day Kelvin"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA761"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA761"^^xsd:anyURI ;
    qudt:symbol "m³/(d·K)"^^xsd:string ;
    qudt:ucumCode "m3.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-HA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Metre per Hectare"^^xsd:string,
        "Cubic Metre per Hectare"@en,
        "Cubic Meter per Hectare"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ] ;
    qudt:hasQuantityKind qudtqk:VolumePerArea ;
    qudt:symbol "m³/ha"^^xsd:string ;
    qudt:ucumCode "m3.har-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-HA-YR a qudt:Unit ;
    rdfs:label "Cubic Metre per Hectare Year"^^xsd:string,
        "Cubic Metre per Hectare Year"@en,
        "Cubic Meter per Hectare Year"@en-us ;
    qudt:conversionMultiplier 0.000000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SurfaceRelatedVolumeFlow ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the unit hectare and by the unit year"^^xsd:string ;
    qudt:symbol "m³/(ha·a)"^^xsd:string ;
    qudt:ucumCode "m3.har-1.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Cubic Metre per Hour Bar"^^xsd:string,
        "Cubic Metre per Hour Bar"@en,
        "Cubic Meter per Hour Bar"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 diveded by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA765"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA765"^^xsd:anyURI ;
    qudt:symbol "m³/(h·bar)"^^xsd:string ;
    qudt:ucumCode "m3.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-HR-K a qudt:Unit ;
    rdfs:label "Cubic Metre per Hour Kelvin"^^xsd:string,
        "Cubic Metre per Hour Kelvin"@en,
        "Cubic Meter per Hour Kelvin"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA764"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA764"^^xsd:anyURI ;
    qudt:symbol "m³/(h·K)"^^xsd:string ;
    qudt:ucumCode "m3.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Cubic Metre per Kelvin"^^xsd:string,
        "Кубичен Метър на Келвин"@bg,
        "Metr Krychlový na Kelvin"@cs,
        "Kubikmeter pro Kelvin"@de,
        "Κυβικό Μέτρο ανά Κέλβιν"@el,
        "Cubic Metre per Kelvin"@en,
        "Cubic Meter per Kelvin"@en-us,
        "Metro Cúbico por Kelvin"@es,
        "Mètre Cube par Kelvin"@fr,
        "Metro Cubo per Kelvin"@it,
        "Metrum Cubicum per Kelvin"@la,
        "Meter Kubik per Kelvin"@ms,
        "Metr Sześcienny na Kelwin"@pl,
        "Metro Cúbico por Kelvin"@pt,
        "Metru Cub pe Kelvin"@ro,
        "Кубический Метр на Кельвин"@ru,
        "Kubični Meter na Kelvin"@sl,
        "Metreküp per Kelvin"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$m3-per-k$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA758"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA758"^^xsd:anyURI ;
    qudt:symbol "m³/K"^^xsd:string ;
    qudt:ucumCode "m3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G29"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-M2 a qudt:Unit ;
    rdfs:label "Cubic Metre per Square Metre"^^xsd:string,
        "Кубичен Метър на Квадратен Метър"@bg,
        "Metr Krychlový na Čtvereční Metr"@cs,
        "Kubikmeter pro Quadratmeter"@de,
        "Κυβικό Μέτρο ανά Τετραγωνικό Μέτρο"@el,
        "Cubic Metre per Square Metre"@en,
        "Cubic Meter per Square Meter"@en-us,
        "Metro Cúbico por Metro Cuadrado"@es,
        "Mètre Cube par Mètre Carré"@fr,
        "Metro Cubo per Metro Quadrato"@it,
        "Metrum Cubicum per Metrum Quadratum"@la,
        "Meter Kubik per Meter Persegi"@ms,
        "Metr Sześcienny na Metr Kwadratowy"@pl,
        "Metro Cúbico por Metro Quadrado"@pt,
        "Metru Cub pe Metru Pătrat"@ro,
        "Кубический Метр на Квадратный Метр"@ru,
        "Kubični Meter na Kvadratni Meter"@sl,
        "Metreküp per Metrekare"@tr ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumePerArea ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:symbol "m³/m²"^^xsd:string ;
    qudt:ucumCode "m3.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-M3 a qudt:Unit ;
    rdfs:label "Cubic Metre per Cubic Metre"^^xsd:string,
        "Кубичен Метър на Кубичен Метър"@bg,
        "Metr Krychlový na Metr Krychlový"@cs,
        "Kubikmeter pro Kubikmeter"@de,
        "Κυβικό Μέτρο ανά Κυβικό Μέτρο"@el,
        "Cubic Metre per Cubic Metre"@en,
        "Cubic Meter per Cubic Meter"@en-us,
        "Metro Cúbico por Metro Cúbico"@es,
        "Mètre Cube par Mètre Cube"@fr,
        "Metro Cubo per Metro Cubo"@it,
        "Metrum Cubicum per Metrum Cubicum"@la,
        "Meter Kubik per Meter Kubik"@ms,
        "Metr Sześcienny na Metr Sześcienny"@pl,
        "Metro Cúbico por Metro Cúbico"@pt,
        "Metru Cub pe Metru Cub"@ro,
        "Кубический Метр на Кубический Метр"@ru,
        "Kubični Meter na Kubični Meter"@sl,
        "Metreküp per Metreküp"@tr ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA767"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA767"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "m³/m³"^^xsd:string ;
    qudt:ucumCode "m3.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H60"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106629974> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Cubic Metre per Minute Bar"^^xsd:string,
        "Cubic Metre per Minute Bar"@en,
        "Cubic Meter per Minute Bar"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA770"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA770"^^xsd:anyURI ;
    qudt:symbol "m³/(min·bar)"^^xsd:string ;
    qudt:ucumCode "m3.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-MIN-K a qudt:Unit ;
    rdfs:label "Cubic Metre per Minute Kelvin"^^xsd:string,
        "Cubic Metre per Minute Kelvin"@en,
        "Cubic Meter per Minute Kelvin"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA769"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA769"^^xsd:anyURI ;
    qudt:symbol "m³/(min·K)"^^xsd:string ;
    qudt:ucumCode "m3.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-PA a qudt:Unit ;
    rdfs:label "Cubic Metre per Pascal"^^xsd:string,
        "Кубичен Метър на Паскал"@bg,
        "Metr Krychlový na Pascal"@cs,
        "Kubikmeter pro Pascal"@de,
        "Κυβικό Μέτρο ανά Πασκάλ"@el,
        "Cubic Metre per Pascal"@en,
        "Cubic Meter per Pascal"@en-us,
        "Metro Cúbico por Pascal"@es,
        "Mètre Cube par Pascal"@fr,
        "Metro Cubo per Pascal"@it,
        "Metrum Cubicum per Pascalium"@la,
        "Meter Kubik per Pascal"@ms,
        "Metr Sześcienny na Paskal"@pl,
        "Metro Cúbico por Pascal"@pt,
        "Metru Cub pe Pascal"@ro,
        "Кубический Метр на Паскаль"@ru,
        "Kubični Meter na Pascal"@sl,
        "Metreküp per Pascal"@tr ;
    dcterms:description "power of the SI base unit meter by exponent 3 divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB323"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB323"^^xsd:anyURI ;
    qudt:symbol "m³/Pa"^^xsd:string ;
    qudt:ucumCode "m3.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Cubic Metre per Second Bar"^^xsd:string,
        "Cubic Metre per Second Bar"@en,
        "Cubic Meter per Second Bar"@en-us ;
    dcterms:description "power of the SI base unit metre with the exponent 3 divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA774"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA774"^^xsd:anyURI ;
    qudt:symbol "m³/(s·bar)"^^xsd:string ;
    qudt:ucumCode "m3.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-SEC-K a qudt:Unit ;
    rdfs:label "Cubic Metre per Second Kelvin"^^xsd:string,
        "Кубичен Метър на Секунда Келвин"@bg,
        "Metr Krychlový na Sekunda Kelvin"@cs,
        "Kubikmeter pro Sekunde Kelvin"@de,
        "Κυβικό Μέτρο ανά Δευτερόλεπτο Κέλβιν"@el,
        "Cubic Metre per Second Kelvin"@en,
        "Cubic Meter per Second Kelvin"@en-us,
        "Metro Cúbico por Segundo Kelvin"@es,
        "Mètre Cube par Seconde Kelvin"@fr,
        "Metro Cubo per Secondo Kelvin"@it,
        "Metrum Cubicum per Secundum Kelvin"@la,
        "Meter Kubik per Saat Kelvin"@ms,
        "Metr Sześcienny na Sekunda Kelwin"@pl,
        "Metro Cúbico por Segundo Kelvin"@pt,
        "Metru Cub pe Secundă Kelvin"@ro,
        "Кубический Метр на Секунда Кельвин"@ru,
        "Kubični Meter na Sekunda Kelvin"@sl,
        "Metreküp per Saniye Kelvin"@tr ;
    dcterms:description "power of the SI base unit metre with the expontent 3 divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA773"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA773"^^xsd:anyURI ;
    qudt:symbol "m³/(s·K)"^^xsd:string ;
    qudt:ucumCode "m3.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-SEC-M2 a qudt:Unit ;
    rdfs:label "Cubic Metre per Second Square Metre"^^xsd:string,
        "Кубичен Метър на Секунда Квадратен Метър"@bg,
        "Metr Krychlový na Sekunda Čtvereční Metr"@cs,
        "Kubikmeter pro Sekunde Quadratmeter"@de,
        "Κυβικό Μέτρο ανά Δευτερόλεπτο Τετραγωνικό Μέτρο"@el,
        "Cubic Metre per Second Square Metre"@en,
        "Cubic Meter per Second Square Meter"@en-us,
        "Metro Cúbico por Segundo Metro Cuadrado"@es,
        "Mètre Cube par Seconde Mètre Carré"@fr,
        "Metro Cubo per Secondo Metro Quadrato"@it,
        "Metrum Cubicum per Secundum Metrum Quadratum"@la,
        "Meter Kubik per Saat Meter Persegi"@ms,
        "Metr Sześcienny na Sekunda Metr Kwadratowy"@pl,
        "Metro Cúbico por Segundo Metro Quadrado"@pt,
        "Metru Cub pe Secundă Metru Pătrat"@ro,
        "Кубический Метр на Секунда Квадратный Метр"@ru,
        "Kubični Meter na Sekunda Kvadratni Meter"@sl,
        "Metreküp per Saniye Metrekare"@tr ;
    dcterms:description "unit of volume flow cubic meters by the SI base unit second related to the transmission surface in square metres"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SurfaceRelatedVolumeFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB325"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB325"^^xsd:anyURI ;
    qudt:symbol "m³/(s·m²)"^^xsd:string ;
    qudt:ucumCode "m3.s-1.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M3-PER-SEC2 a qudt:Unit ;
    rdfs:label "Cubic Metre per Square Second"^^xsd:string,
        "Кубичен Метър на Квадратен Секунда"@bg,
        "Metr Krychlový na Čtvereční Sekunda"@cs,
        "Kubikmeter pro Quadratsekunde"@de,
        "Κυβικό Μέτρο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Cubic Metre per Square Second"@en,
        "Cubic Meter per Square Second"@en-us,
        "Metro Cúbico por Segundo Cuadrado"@es,
        "Mètre Cube par Seconde Carré"@fr,
        "Metro Cubo per Secondo Quadrato"@it,
        "Metrum Cubicum per Secundum Quadratum"@la,
        "Meter Kubik per Saat Persegi"@ms,
        "Metr Sześcienny na Sekunda Kwadratowy"@pl,
        "Metro Cúbico por Segundo Quadrado"@pt,
        "Metru Cub pe Secundă Pătrat"@ro,
        "Кубический Метр на Квадратный Секунда"@ru,
        "Kubični Meter na Kvadratni Sekunda"@sl,
        "Metreküp per Saniyekare"@tr ;
    dcterms:description "$\\textit{Cubic Meter per Square Second}$ is a C.G.S System unit for  $\\textit{Standard Gravitational Parameter}$ expressed as $m^3/s^2$"^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$m^3/s^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:StandardGravitationalParameter ;
    qudt:symbol "m³/s²"^^xsd:string ;
    qudt:ucumCode "m3.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M4-PER-SEC a qudt:Unit ;
    rdfs:label "Quartic Metre per Second"^^xsd:string,
        "Meter hoch vier pro Sekunde"@de,
        "Quartic Metre per Second"@en,
        "Quartic Meter per Second"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 4 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "m⁴/s"^^xsd:string ;
    qudt:ucumCode "m4.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M5 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Quintic Metre"^^xsd:string,
        "Meter hoch fünf"@de,
        "Quintic Metre"@en,
        "Quintic Meter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$m^{5}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L5I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 5 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SectionAreaIntegral ;
    qudt:symbol "m⁵"^^xsd:string ;
    qudt:ucumCode "m5"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:M6 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Sextic Metre"^^xsd:string,
        "Meter hoch sechs"@de,
        "Sextic Metre"@en,
        "Sextic Meter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$m^{6}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L6I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 6 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:WarpingConstant ;
    qudt:symbol "m⁶"^^xsd:string ;
    qudt:ucumCode "m6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MACH a qudt:DimensionlessUnit,
        qudt:Unit ;
    rdfs:label "Mach"^^xsd:string,
        "Mach"@en ;
    dcterms:description "\"Mach\" is a unit for speed as a multiple of the ambient speed of sound, expressed as $mach$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Mach"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:MachNumber ;
    qudt:iec61360Code "0112/2///62720#UAB595"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Mach?oldid=492058934"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB595"^^xsd:anyURI ;
    qudt:symbol "Mach"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MIN-PER-KiloM a qudt:Unit ;
    rdfs:label "Minute per Kilometre"^^xsd:string,
        "Minute per Kilometre"@en,
        "Minute per Kilometer"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.06 ;
    qudt:conversionMultiplierSN 6e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:Pace ;
    qudt:iec61360Code "0112/2///62720#UAD709"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD709"^^xsd:anyURI ;
    qudt:symbol "min/km"^^xsd:string ;
    qudt:ucumCode "min.km-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MO-PER-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Month per Number"^^xsd:string,
        "Month per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 2551442.976 ;
    qudt:conversionMultiplierSN 2.551443e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MO ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NUM ] ;
    qudt:hasQuantityKind qudtqk:TimePerCount ;
    qudt:symbol "mo/#"^^xsd:string ;
    qudt:ucumCode "mo.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOHM a qudt:Unit ;
    rdfs:label "Mohm"^^xsd:string,
        "Mohm"@en ;
    dcterms:description """
  The $\\textit{Mohm}$ is a unit of mechanical mobility for sound waves, being the reciprocal of the mechanical $ohm$ unit of impedance, i.e., for an acoustic medium, the ratio of the flux or volumic speed (area times particle speed) of the resulting waves through it to the effective sound pressure (i.e. force) causing them, the unit being qualified, according to the units used, as m.k.s. or c.g.s. 
  The mechanical ohm is defined as:
  $$Mohm \\equiv 1\\,dyn\\cdot\\,s\\cdot cm^{-1} \\text{ or } 10^{-3} N\\cdot s\\cdot m^{-1}$$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:expression "$mohm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T1D0> ;
    qudt:hasQuantityKind qudtqk:MechanicalMobility ;
    qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-914"^^xsd:anyURI ;
    qudt:latexDefinition "$1\\:{mohm_{cgs}} = 1\\:\\frac {cm} {dyn.s}\\: (=\\:1\\:\\frac s g \\:in\\:base\\:c.g.s.\\:terms)$"^^qudt:LatexString,
        "$1\\:{mohm_{mks}} = 10^{3}\\:\\frac m {N.s}\\:(=\\:10^{3}\\:   \\frac s {kg}\\:in\\:base\\:m.k.s.\\:terms)$"^^qudt:LatexString ;
    qudt:scalingOf unit:SEC-PER-KiloGM ;
    qudt:symbol "mohm"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-DEG_C a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mole Degree Celsius"^^xsd:string,
        "Мол Градус Целзий"@bg,
        "Mol Stupně Celsia"@cs,
        "Mol Grad Celsius"@de,
        "Μολ Βαθμός Κελσίου"@el,
        "Mole Degree Celsius"@en,
        "Mol Grado Celsius"@es,
        "Mole Degré Celsius"@fr,
        "Mole Grado Celsius"@it,
        "Moles Gradus Celsii"@la,
        "Mole Darjah Celsius"@ms,
        "Mol Stopień Celsjusza"@pl,
        "Mol Grau Celsius"@pt,
        "Mol Grad Celsius"@ro,
        "Моль Градус Цельсия"@ru,
        "Mol Stopinja Celzija"@sl,
        "Mol Celsius"@tr ;
    dcterms:description """$\\textit{Mole Degree Celsius}$ is a C.G.S System unit for $\\textit{Temperature Amount Of Substance}$ expressed as $mol-degC$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$mol-deg-c$"^^qudt:LatexString,
        "$mol-degC$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:TemperatureAmountOfSubstance ;
    qudt:symbol "mol·°C"^^xsd:string ;
    qudt:ucumCode "mol.Cel"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mole Kelvin"^^xsd:string,
        "Мол Келвин"@bg,
        "Mol Kelvin"@cs,
        "Mol Kelvin"@de,
        "Μολ Κέλβιν"@el,
        "Mole Kelvin"@en,
        "Mol Kelvin"@es,
        "Mole Kelvin"@fr,
        "Mole Kelvin"@it,
        "Moles Kelvin"@la,
        "Mole Kelvin"@ms,
        "Mol Kelwin"@pl,
        "Mol Kelvin"@pt,
        "Mol Kelvin"@ro,
        "Моль Кельвин"@ru,
        "Mol Kelvin"@sl,
        "Mol Kelvin"@tr ;
    dcterms:description """
  The $\\textit{Mole Kelvin}$ is a unit for $\\textit{Temperature Amount Of Substance}$ expressed as $mol-K$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:TemperatureAmountOfSubstance ;
    qudt:symbol "mol·K"^^xsd:string ;
    qudt:ucumCode "mol.K"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-GM-HR a qudt:Unit ;
    rdfs:label "Mole per Gram Hour"^^xsd:string,
        "Mole per Gram Hour"@en ;
    dcterms:description "SI unit of the quantity of matter per SI unit of mass per unit of time expressed in hour."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.2777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mol/(g·h)"^^xsd:string ;
    qudt:ucumCode "mol.g-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-HR a qudt:Unit ;
    rdfs:label "Mole per Hour"^^xsd:string,
        "Mole per Hour"@en ;
    dcterms:description "SI base unit mole divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA884"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA884"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit mole divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "mol/h"^^xsd:string ;
    qudt:ucumCode "mol.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-KiloGM-BAR a qudt:Unit ;
    rdfs:label "Mole per Kilogram Bar"^^xsd:string,
        "Mole per Kilogram Bar"@en ;
    dcterms:description "SI base unit mol divided by the product of the SI base unit kilogram and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L1I0M-2H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMassPressure ;
    qudt:iec61360Code "0112/2///62720#UAA887"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA887"^^xsd:anyURI ;
    qudt:symbol "mol/(kg·bar)"^^xsd:string ;
    qudt:ucumCode "mol.kg-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-KiloGM-K a qudt:Unit ;
    rdfs:label "Mole per Kilogram Kelvin"^^xsd:string,
        "Мол на Килограм Келвин"@bg,
        "Mol na Kilogram Kelvin"@cs,
        "Mol pro Kilogramm Kelvin"@de,
        "Μολ ανά Χιλιόγραμμο Κέλβιν"@el,
        "Mole per Kilogram Kelvin"@en,
        "Mol por Kilogramo Kelvin"@es,
        "Mole par Kilogramme Kelvin"@fr,
        "Mole per Chilogrammo Kelvin"@it,
        "Moles per Chiliogramma Kelvin"@la,
        "Mole per Kilogram Kelvin"@ms,
        "Mol na Kilogram Kelwin"@pl,
        "Mol por Quilograma Kelvin"@pt,
        "Mol pe Kilogram Kelvin"@ro,
        "Моль на Килограмм Кельвин"@ru,
        "Mol na Kilogram Kelvin"@sl,
        "Mol per Kilogram Kelvin"@tr ;
    dcterms:description "SI base unit mol divided by the product of the SI base unit kilogram and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA886"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA886"^^xsd:anyURI ;
    qudt:symbol "mol/(kg·K)"^^xsd:string ;
    qudt:ucumCode "mol.kg-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-KiloGM-PA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mole per Kilogram Pascal"^^xsd:string,
        "Мол на Килограм Паскал"@bg,
        "Mol na Kilogram Pascal"@cs,
        "Mol pro Kilogramm Pascal"@de,
        "Μολ ανά Χιλιόγραμμο Πασκάλ"@el,
        "Mole per Kilogram Pascal"@en,
        "Mol por Kilogramo Pascal"@es,
        "Mole par Kilogramme Pascal"@fr,
        "Mole per Chilogrammo Pascal"@it,
        "Moles per Chiliogramma Pascalium"@la,
        "Mole per Kilogram Pascal"@ms,
        "Mol na Kilogram Paskal"@pl,
        "Mol por Quilograma Pascal"@pt,
        "Mol pe Kilogram Pascal"@ro,
        "Моль на Килограмм Паскаль"@ru,
        "Mol na Kilogram Pascal"@sl,
        "Mol per Kilogram Pascal"@tr ;
    dcterms:description "Mole Per Kilogram Pascal ($mol/kg-pa$) is a unit of Molar Mass variation due to Pressure."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$mol/(kg.pa)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L1I0M-2H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMassPressure ;
    qudt:iec61360Code "0112/2///62720#UAB317"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB317"^^xsd:anyURI ;
    qudt:symbol "mol/(kg·Pa)"^^xsd:string ;
    qudt:ucumCode "mol.kg-1.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-L-BAR a qudt:Unit ;
    rdfs:label "Mole per Litre Bar"^^xsd:string,
        "Mole per Litre Bar"@en,
        "Mole per Liter Bar"@en-us ;
    dcterms:description "SI base unit mol divided by the product of the unit litre and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA890"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA890"^^xsd:anyURI ;
    qudt:symbol "mol/(L·bar)"^^xsd:string ;
    qudt:ucumCode "mol.L-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-L-K a qudt:Unit ;
    rdfs:label "Mole per Litre Kelvin"^^xsd:string,
        "Mole per Litre Kelvin"@en,
        "Mole per Liter Kelvin"@en-us ;
    dcterms:description "SI base unit mol divided by the product of the unit litre and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA889"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA889"^^xsd:anyURI ;
    qudt:symbol "mol/(L·K)"^^xsd:string ;
    qudt:ucumCode "mol.L-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L26"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Mole per Square Metre Day"^^xsd:string,
        "Mole per Square Metre Day"@en,
        "Mole per Square Meter Day"@en-us ;
    dcterms:description "quantity of matter per unit area per unit of time."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "mol/(m²·d)"^^xsd:string ;
    qudt:ucumCode "mol.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2-SEC a qudt:Unit ;
    rdfs:label "Mole per Square Metre Second"^^xsd:string,
        "Мол на Квадратен Метър Секунда"@bg,
        "Mol na Čtvereční Metr Sekunda"@cs,
        "Mol pro Quadratmeter Sekunde"@de,
        "Μολ ανά Τετραγωνικό Μέτρο Δευτερόλεπτο"@el,
        "Mole per Square Metre Second"@en,
        "Mole per Square Meter Second"@en-us,
        "Mol por Metro Cuadrado Segundo"@es,
        "Mole par Mètre Carré Seconde"@fr,
        "Mole per Metro Quadrato Secondo"@it,
        "Moles per Metrum Quadratum Secundum"@la,
        "Mole per Meter Persegi Saat"@ms,
        "Mol na Metr Kwadratowy Sekunda"@pl,
        "Mol por Metro Quadrado Segundo"@pt,
        "Mol pe Metru Pătrat Secundă"@ro,
        "Моль на Квадратный Метр Секунда"@ru,
        "Mol na Kvadratni Meter Sekunda"@sl,
        "Mol per Metrekare Saniye"@tr ;
    dcterms:description "SI unit of quantity of matter per SI unit area per SI unit of time."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "mol/(m²·s)"^^xsd:string ;
    qudt:ucumCode "mol.m-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2-SEC-M a qudt:Unit ;
    rdfs:label "Mole per Square Metre Second Metre"^^xsd:string,
        "Мол на Квадратен Метър Секунда Метър"@bg,
        "Mol na Čtvereční Metr Sekunda Metr"@cs,
        "Mol pro Quadratmeter Sekunde Meter"@de,
        "Μολ ανά Τετραγωνικό Μέτρο Δευτερόλεπτο Μέτρο"@el,
        "Mole per Square Metre Second Metre"@en,
        "Mole per Square Meter Second Meter"@en-us,
        "Mol por Metro Cuadrado Segundo Metro"@es,
        "Mole par Mètre Carré Seconde Mètre"@fr,
        "Mole per Metro Quadrato Secondo Metro"@it,
        "Moles per Metrum Quadratum Secundum Metrum"@la,
        "Mole per Meter Persegi Saat Meter"@ms,
        "Mol na Metr Kwadratowy Sekunda Metr"@pl,
        "Mol por Metro Quadrado Segundo Metro"@pt,
        "Mol pe Metru Pătrat Secundă Metru"@ro,
        "Моль на Квадратный Метр Секунда Метр"@ru,
        "Mol na Kvadratni Meter Sekunda Meter"@sl,
        "Mol per Metrekare Saniye Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "mol/(m²·s·m)"^^xsd:string ;
    qudt:ucumCode "mol.m-2.s-1.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2-SEC-M-SR a qudt:Unit ;
    rdfs:label "Mole per Square Metre Second Metre Steradian"^^xsd:string,
        "Мол на Квадратен Метър Секунда Метър Стерадиан"@bg,
        "Mol na Čtvereční Metr Sekunda Metr Steradián"@cs,
        "Mol pro Quadratmeter Sekunde Meter Steradiant"@de,
        "Μολ ανά Τετραγωνικό Μέτρο Δευτερόλεπτο Μέτρο Στερακτίνιο"@el,
        "Mole per Square Metre Second Metre Steradian"@en,
        "Mole per Square Meter Second Meter Steradian"@en-us,
        "Mol por Metro Cuadrado Segundo Metro Estereorradián"@es,
        "Mole par Mètre Carré Seconde Mètre Stéradian"@fr,
        "Mole per Metro Quadrato Secondo Metro Steradiante"@it,
        "Moles per Metrum Quadratum Secundum Metrum Steradian"@la,
        "Mole per Meter Persegi Saat Meter Steradian"@ms,
        "Mol na Metr Kwadratowy Sekunda Metr Steradian"@pl,
        "Mol por Metro Quadrado Segundo Metro Esterradiano"@pt,
        "Mol pe Metru Pătrat Secundă Metru Steradian"@ro,
        "Моль на Квадратный Метр Секунда Метр Стерадиан"@ru,
        "Mol na Kvadratni Meter Sekunda Meter Steradian"@sl,
        "Mol per Metrekare Saniye Metre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mol/(m²·s·m·sr)"^^xsd:string ;
    qudt:ucumCode "mol.m-2.s-1.m-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M2-SEC-SR a qudt:Unit ;
    rdfs:label "Mole per Square Metre Second Steradian"^^xsd:string,
        "Мол на Квадратен Метър Секунда Стерадиан"@bg,
        "Mol na Čtvereční Metr Sekunda Steradián"@cs,
        "Mol pro Quadratmeter Sekunde Steradiant"@de,
        "Μολ ανά Τετραγωνικό Μέτρο Δευτερόλεπτο Στερακτίνιο"@el,
        "Mole per Square Metre Second Steradian"@en,
        "Mole per Square Meter Second Steradian"@en-us,
        "Mol por Metro Cuadrado Segundo Estereorradián"@es,
        "Mole par Mètre Carré Seconde Stéradian"@fr,
        "Mole per Metro Quadrato Secondo Steradiante"@it,
        "Moles per Metrum Quadratum Secundum Steradian"@la,
        "Mole per Meter Persegi Saat Steradian"@ms,
        "Mol na Metr Kwadratowy Sekunda Steradian"@pl,
        "Mol por Metro Quadrado Segundo Esterradiano"@pt,
        "Mol pe Metru Pătrat Secundă Steradian"@ro,
        "Моль на Квадратный Метр Секунда Стерадиан"@ru,
        "Mol na Kvadratni Meter Sekunda Steradian"@sl,
        "Mol per Metrekare Saniye Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mol/(m²·s·sr)"^^xsd:string ;
    qudt:ucumCode "mol.m-2.s-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Mole per Cubic Metre Bar"^^xsd:string,
        "Mole per Cubic Metre Bar"@en,
        "Mole per Cubic Meter Bar"@en-us ;
    dcterms:description "SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA893"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA893"^^xsd:anyURI ;
    qudt:symbol "mol/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "mol.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L29"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M3-K a qudt:Unit ;
    rdfs:label "Mole per Cubic Metre Kelvin"^^xsd:string,
        "Мол на Кубичен Метър Келвин"@bg,
        "Mol na Metr Krychlový Kelvin"@cs,
        "Mol pro Kubikmeter Kelvin"@de,
        "Μολ ανά Κυβικό Μέτρο Κέλβιν"@el,
        "Mole per Cubic Metre Kelvin"@en,
        "Mole per Cubic Meter Kelvin"@en-us,
        "Mol por Metro Cúbico Kelvin"@es,
        "Mole par Mètre Cube Kelvin"@fr,
        "Mole per Metro Cubo Kelvin"@it,
        "Moles per Metrum Cubicum Kelvin"@la,
        "Mole per Meter Kubik Kelvin"@ms,
        "Mol na Metr Sześcienny Kelwin"@pl,
        "Mol por Metro Cúbico Kelvin"@pt,
        "Mol pe Metru Cub Kelvin"@ro,
        "Моль на Кубический Метр Кельвин"@ru,
        "Mol na Kubični Meter Kelvin"@sl,
        "Mol per Metreküp Kelvin"@tr ;
    dcterms:description "SI base unit mol divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA892"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA892"^^xsd:anyURI ;
    qudt:symbol "mol/(m³·K)"^^xsd:string ;
    qudt:ucumCode "mol.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M3-PA a qudt:Unit ;
    rdfs:label "Mole per Cubic Metre Pascal"^^xsd:string,
        "Мол на Кубичен Метър Паскал"@bg,
        "Mol na Metr Krychlový Pascal"@cs,
        "Mol pro Kubikmeter Pascal"@de,
        "Μολ ανά Κυβικό Μέτρο Πασκάλ"@el,
        "Mole per Cubic Metre Pascal"@en,
        "Mole per Cubic Meter Pascal"@en-us,
        "Mol por Metro Cúbico Pascal"@es,
        "Mole par Mètre Cube Pascal"@fr,
        "Mole per Metro Cubo Pascal"@it,
        "Moles per Metrum Cubicum Pascalium"@la,
        "Mole per Meter Kubik Pascal"@ms,
        "Mol na Metr Sześcienny Paskal"@pl,
        "Mol por Metro Cúbico Pascal"@pt,
        "Mol pe Metru Cub Pascal"@ro,
        "Моль на Кубический Метр Паскаль"@ru,
        "Mol na Kubični Meter Pascal"@sl,
        "Mol per Metreküp Pascal"@tr ;
    dcterms:description "SI base unit mol divided by the product of the power from the SI base unit metre with exponent 3 and the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB318"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB318"^^xsd:anyURI ;
    qudt:symbol "mol/(m³·Pa)"^^xsd:string ;
    qudt:ucumCode "mol.m-3.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-M3-SEC a qudt:Unit ;
    rdfs:label "Mole per Cubic Metre Second"^^xsd:string,
        "Мол на Кубичен Метър Секунда"@bg,
        "Mol na Metr Krychlový Sekunda"@cs,
        "Mol pro Kubikmeter Sekunde"@de,
        "Μολ ανά Κυβικό Μέτρο Δευτερόλεπτο"@el,
        "Mole per Cubic Metre Second"@en,
        "Mole per Cubic Meter Second"@en-us,
        "Mol por Metro Cúbico Segundo"@es,
        "Mole par Mètre Cube Seconde"@fr,
        "Mole per Metro Cubo Secondo"@it,
        "Moles per Metrum Cubicum Secundum"@la,
        "Mole per Meter Kubik Saat"@ms,
        "Mol na Metr Sześcienny Sekunda"@pl,
        "Mol por Metro Cúbico Segundo"@pt,
        "Mol pe Metru Cub Secundă"@ro,
        "Моль на Кубический Метр Секунда"@ru,
        "Mol na Kubični Meter Sekunda"@sl,
        "Mol per Metreküp Saniye"@tr ;
    dcterms:description "SI unit of quantity of matter per SI unit volume per SI unit of time."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "mol/(m³·s)"^^xsd:string ;
    qudt:ucumCode "mol.m-3.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-MIN a qudt:Unit ;
    rdfs:label "Mole per Minute"^^xsd:string,
        "Mole per Minute"@en ;
    dcterms:description "SI base unit mole divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA894"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA894"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit mole divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "mol/min"^^xsd:string ;
    qudt:ucumCode "mol.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L30"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-MOL a qudt:Unit ;
    rdfs:label "Mole per Mole"^^xsd:string,
        "Мол на Мол"@bg,
        "Mol na Mol"@cs,
        "Mol pro Mol"@de,
        "Μολ ανά Μολ"@el,
        "Mole per Mole"@en,
        "Mol por Mol"@es,
        "Mole par Mole"@fr,
        "Mole per Mole"@it,
        "Moles per Moles"@la,
        "Mole per Mole"@ms,
        "Mol na Mol"@pl,
        "Mol por Mol"@pt,
        "Mol pe Mol"@ro,
        "Моль на Моль"@ru,
        "Mol na Mol"@sl,
        "Mol per Mol"@tr ;
    dcterms:description "Unavailable."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:symbol "mol/mol"^^xsd:string ;
    qudt:ucumCode "mol.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-SEC a qudt:Unit ;
    rdfs:label "Mole per Second"^^xsd:string,
        "Мол на Секунда"@bg,
        "Mol na Sekunda"@cs,
        "Mol pro Sekunde"@de,
        "Μολ ανά Δευτερόλεπτο"@el,
        "Mole per Second"@en,
        "Mol por Segundo"@es,
        "Mole par Seconde"@fr,
        "Mole per Secondo"@it,
        "Moles per Secundum"@la,
        "Mole per Saat"@ms,
        "Mol na Sekunda"@pl,
        "Mol por Segundo"@pt,
        "Mol pe Secundă"@ro,
        "Моль на Секунда"@ru,
        "Mol na Sekunda"@sl,
        "Mol per Saniye"@tr ;
    dcterms:description "SI base unit mol divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA895"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA895"^^xsd:anyURI ;
    qudt:plainTextDescription "SI base unit mol divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "mol/s"^^xsd:string ;
    qudt:ucumCode "mol.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E95"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q85178038> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL-PER-TONNE a qudt:Unit ;
    rdfs:label "Mole per Tonne"^^xsd:string,
        "Mole per Tonne"@en ;
    dcterms:description "Mole Per Tonne (mol/t) is a unit of Molality"^^rdf:HTML ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:plainTextDescription "Mole Per Tonne (mol/t) is a unit of Molality"^^xsd:string ;
    qudt:symbol "mol/t"^^xsd:string ;
    qudt:ucumCode "mol.t-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL_LB-DEG_F a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Pound Mole Degree Fahrenheit"^^xsd:string,
        "Pound Mole Degree Fahrenheit"@en ;
    dcterms:description "$\\textit{Pound Mole Degree Fahrenheit}$ is a unit for 'Mass Amount Of Substance Temperature' expressed as $lb-mol-degF$."^^qudt:LatexString ;
    qudt:conversionMultiplier 251.9957611111111111111111111111111 ;
    qudt:conversionMultiplierSN 2.519958e+02 ;
    qudt:expression "$lb-mol-degF$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL_LB ] ;
    qudt:hasQuantityKind qudtqk:MassAmountOfSubstanceTemperature ;
    qudt:symbol "lb-mol·°F"^^xsd:string ;
    qudt:ucumCode "[mol_lb].[degF]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL_LB-PER-MIN a qudt:Unit ;
    rdfs:label "Pound Mole per Minute"^^xsd:string,
        "Pound Mole per Minute"@en ;
    dcterms:description "non SI-conform unit of the power of the amount of substance non-SI compliant unit of the molar flux relating that a pound mole of a chemical composition the same number of pound corresponds like the molecular weight of a molecule of this composition in atomic mass units"^^xsd:string ;
    qudt:conversionMultiplier 7.559872833333333333333333333333335 ;
    qudt:conversionMultiplierSN 7.559873e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL_LB ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivity ;
    qudt:iec61360Code "0112/2///62720#UAB452"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB452"^^xsd:anyURI ;
    qudt:symbol "lb-mol/min"^^xsd:string ;
    qudt:ucumCode "[mol_lb].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MOL_LB-PER-SEC a qudt:Unit ;
    rdfs:label "Pound Mole per Second"^^xsd:string,
        "Pound Mole per Second"@en ;
    dcterms:description "non SI-conformunit of the power of the amount of substance non-SI compliant unit of the molar flux relating that a pound mole of a chemical composition the same number of pound corresponds like the molecular weight of a molecule of this composition in atomic mass units"^^xsd:string ;
    qudt:conversionMultiplier 453.59237 ;
    qudt:conversionMultiplierSN 4.535924e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MOL_LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivity ;
    qudt:iec61360Code "0112/2///62720#UAB451"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB451"^^xsd:anyURI ;
    qudt:symbol "lb-mol/s"^^xsd:string ;
    qudt:ucumCode "[mol_lb].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P45"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MebiBIT-PER-M a qudt:Unit ;
    rdfs:label "Mebibit per Metre"^^xsd:string,
        "Mebibit per Metre"@en,
        "Mebibit per Meter"@en-us ;
    dcterms:description "1,048,576-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 726817.4980028252127674835889901326 ;
    qudt:conversionMultiplierSN 7.268175e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MebiBIT ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA230"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA230"^^xsd:anyURI ;
    qudt:symbol "Mib/m"^^xsd:string ;
    qudt:ucumCode "Mibit.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MebiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Mebibit per Square Metre"^^xsd:string,
        "Mebibit per Square Metre"@en,
        "Mebibit per Square Meter"@en-us ;
    dcterms:description "1,048,576-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 726817.4980028252127674835889901326 ;
    qudt:conversionMultiplierSN 7.268175e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MebiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA231"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA231"^^xsd:anyURI ;
    qudt:symbol "Mib/m²"^^xsd:string ;
    qudt:ucumCode "Mibit.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MebiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Mebibit per Cubic Metre"^^xsd:string,
        "Mebibit per Cubic Metre"@en,
        "Mebibit per Cubic Meter"@en-us ;
    dcterms:description "1,048,576-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 726817.4980028252127674835889901326 ;
    qudt:conversionMultiplierSN 7.268175e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MebiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA232"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA232"^^xsd:anyURI ;
    qudt:symbol "Mib/m³"^^xsd:string ;
    qudt:ucumCode "Mibit.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E77"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaA-PER-M2 a qudt:Unit ;
    rdfs:label "Megaampere per Square Metre"^^xsd:string,
        "Megaampér na Čtvereční Metr"@cs,
        "Megaampere pro Quadratmeter"@de,
        "Megaampere per Square Metre"@en,
        "Megaampere per Square Meter"@en-us,
        "Megaamperio por Metro Cuadrado"@es,
        "Megaampère par Mètre Carré"@fr,
        "Megaampere per Metro Quadrato"@it,
        "Megaampere per Meter Persegi"@ms,
        "Megaamper na Metr Kwadratowy"@pl,
        "Megaamper pe Metru Pătrat"@ro,
        "Megaamper na Kvadratni Meter"@sl,
        "Megaamper per Metrekare"@tr ;
    dcterms:description "1,000,000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaA ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:iec61360Code "0112/2///62720#UAA203"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA203"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI base unit ampere divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:symbol "MA/m²"^^xsd:string ;
    qudt:ucumCode "MA.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaBAUD a qudt:Unit ;
    rdfs:label "Megabaud"^^xsd:string,
        "Megabaud"@en ;
    dcterms:description "1,000,000-fold of the unit baud for the symbol rate in communications engineering and telecommunication"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:DigitRate ;
    qudt:iec61360Code "0112/2///62720#UAA204"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA204"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mega> ;
    qudt:scalingOf unit:BAUD ;
    qudt:symbol "MBd"^^xsd:string ;
    qudt:uneceCommonCode "J54"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaBIT-PER-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Megabit per Second"^^xsd:string,
        "Megabit per Second"@en ;
    dcterms:description "A megabit per second (Mbit/s or Mb/s; not to be confused with mbit/s which means millibit per second, or with Mbitps which means megabit picosecond) is a unit of data transfer rate equal to 1,000,000 bits per second or 1,000 kilobits per second or 125,000 bytes per second or 125 kilobytes per second."^^rdf:HTML ;
    qudt:conversionMultiplier 693147.18055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA226"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Data_rate_units"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA226"^^xsd:anyURI ;
    qudt:symbol "Mb/s"^^xsd:string ;
    qudt:ucumCode "Mbit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E20"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q7350781> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaC-PER-M3 a qudt:Unit ;
    rdfs:label "Megacoulomb per Cubic Metre"^^xsd:string,
        "Megacoulomb na Metr Krychlový"@cs,
        "Megacoulomb pro Kubikmeter"@de,
        "Megacoulomb per Cubic Metre"@en,
        "Megacoulomb per Cubic Meter"@en-us,
        "Megaculombio por Metro Cúbico"@es,
        "Megacoulomb par Mètre Cube"@fr,
        "Megacoulomb per Metro Cubo"@it,
        "Megacoulomb per Meter Kubik"@ms,
        "Megakulomb na Metr Sześcienny"@pl,
        "Megacoulomb pe Metru Cub"@ro,
        "Megacoulomb na Kubični Meter"@sl,
        "Megacoulomb per Metreküp"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeDensity ;
    qudt:iec61360Code "0112/2///62720#UAA208"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA208"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "MC/m³"^^xsd:string ;
    qudt:ucumCode "MC.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B69"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808129> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaEV-PER-CentiM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Mega Electron Volt per Centimetre"^^xsd:string,
        "Mega Electron Volt per Centimetre"@en,
        "Mega Electron Volt per Centimeter"@en-us ;
    dcterms:description "\"Mega Electron Volt per Centimeter\" is a unit for  'Linear Energy Transfer' expressed as $MeV/cm$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001602176634 ;
    qudt:conversionMultiplierSN 1.602177e-11 ;
    qudt:expression "$MeV/cm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaEV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:LinearEnergyTransfer ;
    qudt:symbol "MeV/cm"^^xsd:string ;
    qudt:ucumCode "MeV.cm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaFLOPS a qudt:Unit ;
    rdfs:label "Mega Floating Point Operations per Second"^^xsd:string,
        "Mega Floating Point Operations per Second"@en ;
    dcterms:description "1,000,000-fold of the unit floating point operations divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:FloatingPointCalculationCapability ;
    qudt:iec61360Code "0112/2///62720#UAB591"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB591"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Mega> ;
    qudt:scalingOf unit:FLOPS ;
    qudt:symbol "MFLOPS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaHZ-KiloM a qudt:Unit ;
    rdfs:label "Megahertz Kilometre"^^xsd:string,
        "Megahertz Kilometr"@cs,
        "Megahertz Kilometer"@de,
        "Megahertz Kilometre"@en,
        "Megahertz Kilometer"@en-us,
        "Megahercio Kilometro"@es,
        "Megahertz Kilomètre"@fr,
        "Megahertz Chilometro"@it,
        "Megahertz Kilometer"@ms,
        "Megaherc Kilometr"@pl,
        "Megahertz Kilometru"@ro,
        "Megahertz Kilometer"@sl,
        "Megahertz Kilometre"@tr ;
    dcterms:description "product of the 1,000,000-fold of the SI derived unit hertz and the 1,000-fold of the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaHZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD911"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD911"^^xsd:anyURI ;
    qudt:symbol "MHz·km"^^xsd:string ;
    qudt:ucumCode "MHz.km"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaHZ-PER-K a qudt:Unit ;
    rdfs:label "Megahertz per Kelvin"^^xsd:string,
        "Megahertz na Kelvin"@cs,
        "Megahertz pro Kelvin"@de,
        "Megahertz per Kelvin"@en,
        "Megahercio por Kelvin"@es,
        "Megahertz par Kelvin"@fr,
        "Megahertz per Kelvin"@it,
        "Megahertz per Kelvin"@ms,
        "Megaherc na Kelwin"@pl,
        "Megahertz pe Kelvin"@ro,
        "Megahertz na Kelvin"@sl,
        "Megahertz per Kelvin"@tr ;
    dcterms:description "$\\textit{Mega Hertz per Kelvin}$ is a unit for 'Inverse Time Temperature' expressed as $MHz K^{-1}$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:expression "$MHz K^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaHZ ] ;
    qudt:hasQuantityKind qudtqk:InverseTimeTemperature ;
    qudt:symbol "MHz/K"^^xsd:string ;
    qudt:ucumCode "MHz.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaJ-PER-K a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Megajoule per Kelvin"^^xsd:string,
        "Megajoule na Kelvin"@cs,
        "Megajoule pro Kelvin"@de,
        "Megajoule per Kelvin"@en,
        "Megajulio por Kelvin"@es,
        "Megajoule par Kelvin"@fr,
        "Megajoule per Kelvin"@it,
        "Megajoule per Kelvin"@ms,
        "Megadżul na Kelwin"@pl,
        "Megajoule pe Kelvin"@ro,
        "Megajoule na Kelvin"@sl,
        "Megajoule per Kelvin"@tr ;
    dcterms:description "MegaJoule Per Kelvin (MegaJ/K) is a unit in the category of Entropy."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:expression "$MegaJ/K$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaJ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:HeatCapacity ;
    qudt:symbol "MJ/K"^^xsd:string ;
    qudt:ucumCode "MJ.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaJ-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Megajoule per Square Metre Day"^^xsd:string,
        "Megajoule per Square Metre Day"@en,
        "Megajoule per Square Meter Day"@en-us ;
    dcterms:description "MegaJoule Per Square Meter Per Day (\\(MegaJ/m^2/day\\)) is a unit in the category of Energy density over time."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 11.57407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaJ ] ;
    qudt:hasQuantityKind qudtqk:Irradiance ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit joule divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:symbol "MJ/(m²·d)"^^xsd:string ;
    qudt:ucumCode "MJ.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-M a qudt:Unit ;
    rdfs:label "Megaohm Metre"^^xsd:string,
        "Megaohm Metr"@cs,
        "Megaohm Meter"@de,
        "Megaohm Metre"@en,
        "Megaohm Meter"@en-us,
        "Megaohmio Metro"@es,
        "Megaohm Mètre"@fr,
        "Megaohm Metro"@it,
        "Megaohm Meter"@ms,
        "Megaom Metr"@pl,
        "Megaohm Metru"@ro,
        "Megaohm Meter"@sl,
        "Megaohm Metre"@tr ;
    dcterms:description "1,000,000-fold of the product of the SI derived unit ohm and the SI unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA200"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA200"^^xsd:anyURI ;
    qudt:symbol "MΩ·m"^^xsd:string ;
    qudt:ucumCode "MOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-PER-BAR a qudt:Unit ;
    rdfs:label "Megaohm per Bar"^^xsd:string,
        "Megaohm per Bar"@en ;
    dcterms:description "1,000,000-fold of SI derived unit ohm per metrical non SI unit bar"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaOHM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD881"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD881"^^xsd:anyURI ;
    qudt:symbol "MΩ/bar"^^xsd:string ;
    qudt:ucumCode "MOhm.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-PER-K a qudt:Unit ;
    rdfs:label "Megaohm per Kelvin"^^xsd:string,
        "Megaohm na Kelvin"@cs,
        "Megaohm pro Kelvin"@de,
        "Megaohm per Kelvin"@en,
        "Megaohmio por Kelvin"@es,
        "Megaohm par Kelvin"@fr,
        "Megaohm per Kelvin"@it,
        "Megaohm per Kelvin"@ms,
        "Megaom na Kelwin"@pl,
        "Megaohm pe Kelvin"@ro,
        "Megaohm na Kelvin"@sl,
        "Megaohm per Kelvin"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit ohm per SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaOHM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD877"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD877"^^xsd:anyURI ;
    qudt:symbol "MΩ/K"^^xsd:string ;
    qudt:ucumCode "MOhm.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-PER-KiloM a qudt:Unit ;
    rdfs:label "Megaohm per Kilometre"^^xsd:string,
        "Megaohm na Kilometr"@cs,
        "Megaohm pro Kilometer"@de,
        "Megaohm per Kilometre"@en,
        "Megaohm per Kilometer"@en-us,
        "Megaohmio por Kilometro"@es,
        "Megaohm par Kilomètre"@fr,
        "Megaohm per Chilometro"@it,
        "Megaohm per Kilometer"@ms,
        "Megaom na Kilometr"@pl,
        "Megaohm pe Kilometru"@ro,
        "Megaohm na Kilometer"@sl,
        "Megaohm per Kilometre"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit ohm divided by the 1,000-fold of the SI base unit metre."^^rdf:HTML ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA199"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA199"^^xsd:anyURI ;
    qudt:symbol "MΩ/km"^^xsd:string ;
    qudt:ucumCode "MOhm.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaOHM-PER-M a qudt:Unit ;
    rdfs:label "Megaohm per Metre"^^xsd:string,
        "Megaohm na Metr"@cs,
        "Megaohm pro Meter"@de,
        "Megaohm per Metre"@en,
        "Megaohm per Meter"@en-us,
        "Megaohmio por Metro"@es,
        "Megaohm par Mètre"@fr,
        "Megaohm per Metro"@it,
        "Megaohm per Meter"@ms,
        "Megaom na Metr"@pl,
        "Megaohm pe Metru"@ro,
        "Megaohm na Meter"@sl,
        "Megaohm per Metre"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit ohm divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaOHM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA201"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA201"^^xsd:anyURI ;
    qudt:symbol "MΩ/m"^^xsd:string ;
    qudt:ucumCode "MOhm.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H37"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaPA-M0dot5 a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Megapascal Quintic Placeholder"^^xsd:string,
        "Megapascal Quintic Placeholder"@en,
        "Megapascal Square Root Meter"@en-us ;
    dcterms:description "1,000,000-fold of the derived unit Pascal Square Root Meter"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 5 ;
            qudt:hasUnit unit:M0dot ] ;
    qudt:hasQuantityKind qudtqk:StressIntensityFactor ;
    qudt:plainTextDescription "1,000,000-fold of the derived unit Pascal Square Root Meter"^^xsd:string ;
    qudt:symbol "MPa√m"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaPA-PER-BAR a qudt:Unit ;
    rdfs:label "Megapascal per Bar"^^xsd:string,
        "Megapascal per Bar"@en ;
    dcterms:description "1,000,000-fold of the SI derived unit pascal divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaPA ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA217"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA217"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the unit bar"^^xsd:string ;
    qudt:symbol "MPa/bar"^^xsd:string ;
    qudt:ucumCode "MPa.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F05"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaPA-PER-K a qudt:Unit ;
    rdfs:label "Megapascal per Kelvin"^^xsd:string,
        "Megapascal na Kelvin"@cs,
        "Megapascal pro Kelvin"@de,
        "Megapascal per Kelvin"@en,
        "Megapascal por Kelvin"@es,
        "Megapascal par Kelvin"@fr,
        "Megapascal per Kelvin"@it,
        "Megapascal per Kelvin"@ms,
        "Megapaskal na Kelwin"@pl,
        "Megapascal pe Kelvin"@ro,
        "Megapascal na Kelvin"@sl,
        "Megapascal per Kelvin"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:PressureCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA216"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA216"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit pascal divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "MPa/K"^^xsd:string ;
    qudt:ucumCode "MPa.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaTONNE-PER-YR a qudt:Unit ;
    rdfs:label "Megatonne per Year"^^xsd:string,
        "Megatonne pro Jahr"@de,
        "Megatonne per Year"@en,
        "Mégatonne par An"@fr ;
    dcterms:description "1,000,000,000-fold of the SI base unit kilogram divided by the unit year"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 31.68808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaTONNE ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:plainTextDescription "1,000,000 metric tonne divided by the unit year with 365 days"^^xsd:string ;
    qudt:symbol "Mt/a"^^xsd:string ;
    qudt:ucumCode "Mt.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MegaV-PER-M a qudt:Unit ;
    rdfs:label "Megavolt per Metre"^^xsd:string,
        "Megavolt na Metr"@cs,
        "Megavolt pro Meter"@de,
        "Megavolt per Metre"@en,
        "Megavolt per Meter"@en-us,
        "Megavoltio por Metro"@es,
        "Megavolt par Mètre"@fr,
        "Megavolt per Metro"@it,
        "Megavolt per Meter"@ms,
        "Megawolt na Metr"@pl,
        "Megavolt pe Metru"@ro,
        "Megavolt na Meter"@sl,
        "Megavolt per Metre"@tr ;
    dcterms:description "1,000,000-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MegaV ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA223"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA223"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000-fold of the SI derived unit volt divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "MV/m"^^xsd:string ;
    qudt:ucumCode "MV.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroA-PER-K a qudt:Unit ;
    rdfs:label "Microampere per Kelvin"^^xsd:string,
        "Microampér na Kelvin"@cs,
        "Microampere pro Kelvin"@de,
        "Microampere per Kelvin"@en,
        "Microamperio por Kelvin"@es,
        "Microampère par Kelvin"@fr,
        "Microampere per Kelvin"@it,
        "Microampere per Kelvin"@ms,
        "Microamper na Kelwin"@pl,
        "Microamper pe Kelvin"@ro,
        "Microamper na Kelvin"@sl,
        "Microamper per Kelvin"@tr ;
    dcterms:description "0.000001-fold of the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroA ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAD898"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD898"^^xsd:anyURI ;
    qudt:symbol "μA/K"^^xsd:string ;
    qudt:ucumCode "uA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroBQ-PER-KiloGM a qudt:Unit ;
    rdfs:label "Microbecquerel per Kilogram"^^xsd:string,
        "Microbecquerel na Kilogram"@cs,
        "Microbecquerel pro Kilogramm"@de,
        "Microbecquerel per Kilogram"@en,
        "Microbecquerel por Kilogramo"@es,
        "Microbecquerel par Kilogramme"@fr,
        "Microbecquerel per Chilogrammo"@it,
        "Microbecquerel per Kilogram"@ms,
        "Microbekerel na Kilogram"@pl,
        "Microbecquerel pe Kilogram"@ro,
        "Microbecquerel na Kilogram"@sl,
        "Microbekerel per Kilogram"@tr ;
    dcterms:description "One radioactive disintegration per hundred thousand seconds from an SI standard unit of mass of sample."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroBQ ] ;
    qudt:hasQuantityKind qudtqk:SpecificActivity ;
    qudt:symbol "μBq/kg"^^xsd:string ;
    qudt:ucumCode "uBq.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroBQ-PER-L a qudt:Unit ;
    rdfs:label "Microbecquerel per Litre"^^xsd:string,
        "Microbecquerel per Litre"@en,
        "Microbecquerel per Liter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroBQ ] ;
    qudt:hasQuantityKind qudtqk:ActivityConcentration ;
    qudt:symbol "μBq/L"^^xsd:string ;
    qudt:ucumCode "uBq.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroC-PER-M3 a qudt:Unit ;
    rdfs:label "Microcoulomb per Cubic Metre"^^xsd:string,
        "Microcoulomb na Metr Krychlový"@cs,
        "Microcoulomb pro Kubikmeter"@de,
        "Microcoulomb per Cubic Metre"@en,
        "Microcoulomb per Cubic Meter"@en-us,
        "Microculombio por Metro Cúbico"@es,
        "Microcoulomb par Mètre Cube"@fr,
        "Microcoulomb per Metro Cubo"@it,
        "Microcoulomb per Meter Kubik"@ms,
        "Microkulomb na Metr Sześcienny"@pl,
        "Microcoulomb pe Metru Cub"@ro,
        "Microcoulomb na Kubični Meter"@sl,
        "Microcoulomb per Metreküp"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeDensity ;
    qudt:iec61360Code "0112/2///62720#UAA061"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA061"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "μC/m³"^^xsd:string ;
    qudt:ucumCode "uC.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B87"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808156> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroFARAD-PER-KiloM a qudt:Unit ;
    rdfs:label "Microfarad per Kilometre"^^xsd:string,
        "Microfarad na Kilometr"@cs,
        "Microfarad pro Kilometer"@de,
        "Microfarad per Kilometre"@en,
        "Microfarad per Kilometer"@en-us,
        "Microfaradio por Kilometro"@es,
        "Microfarad par Kilomètre"@fr,
        "Microfarad per Chilometro"@it,
        "Microfarad per Kilometer"@ms,
        "Microfarad na Kilometr"@pl,
        "Microfarad pe Kilometru"@ro,
        "Microfarad na Kilometer"@sl,
        "Microfarad per Kilometre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit farad divided by the 1,000-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroFARAD ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:iec61360Code "0112/2///62720#UAA064"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA064"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the 1,000-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "μF/km"^^xsd:string ;
    qudt:ucumCode "uF.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H28"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroFARAD-PER-M a qudt:Unit ;
    rdfs:label "Microfarad per Metre"^^xsd:string,
        "Microfarad na Metr"@cs,
        "Microfarad pro Meter"@de,
        "Microfarad per Metre"@en,
        "Microfarad per Meter"@en-us,
        "Microfaradio por Metro"@es,
        "Microfarad par Mètre"@fr,
        "Microfarad per Metro"@it,
        "Microfarad per Meter"@ms,
        "Microfarad na Metr"@pl,
        "Microfarad pe Metru"@ro,
        "Microfarad na Meter"@sl,
        "Microfarad per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroFARAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:iec61360Code "0112/2///62720#UAA065"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA065"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit farad divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "μF/m"^^xsd:string ;
    qudt:ucumCode "uF.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-GM-DAY a qudt:Unit ;
    rdfs:label "Microgram per Gram Day"^^xsd:string,
        "Microgram per Gram Day"@en ;
    dcterms:description "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of SI base unit kilogram per day "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:MassSpecificBiogeochemicalRate ;
    qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of the SI base unit kilogram per day (8640 seconds)"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "μg/(g·d)"^^xsd:string ;
    qudt:ucumCode "ug.g-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-GM-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Microgram per Gram Hour"^^xsd:string,
        "Microgram per Gram Hour"@en ;
    dcterms:description "0.0000000001-fold of the SI base unit kilogram divided by 0.0001-fold of the SI base unit kilogram over a period of 1 hour "@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassSpecificBiogeochemicalRate ;
    qudt:plainTextDescription "0.0000000001-fold of the SI base unit kilogram divided by 0.0001-fold of the SI base unit kilogram over a period of 1 hour "^^xsd:string ;
    qudt:symbol "μg/(g·h)"^^xsd:string ;
    qudt:ucumCode "ug.g-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-L-DAY a qudt:Unit ;
    rdfs:label "Microgram per Litre Day"^^xsd:string,
        "Microgram per Litre Day"@en,
        "Microgram per Liter Day"@en-us ;
    dcterms:description "A rate of change of mass of a measurand equivalent to 10^-9 kilogram (the SI unit of mass) per litre volume of matrix over a period of 1 day."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ] ;
    qudt:hasQuantityKind qudtqk:MassConcentrationRateOfChange ;
    qudt:symbol "μg/(L·d)"^^xsd:string ;
    qudt:ucumCode "ug.L-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-L-HR a qudt:Unit ;
    rdfs:label "Microgram per Litre Hour"^^xsd:string,
        "Microgram per Litre Hour"@en,
        "Microgram per Liter Hour"@en-us ;
    dcterms:description "A rate of change of mass of a measurand equivalent to 10^-9 kilogram (the SI unit of mass) per litre volume of matrix over a period of 1 hour."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μg/(L·h)"^^xsd:string ;
    qudt:ucumCode "ug.L-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Microgram per Cubic Metre Bar"^^xsd:string,
        "Microgram per Cubic Metre Bar"@en,
        "Microgram per Cubic Meter Bar"@en-us ;
    dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000000001 ;
    qudt:conversionMultiplierSN 1e-14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA087"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA087"^^xsd:anyURI ;
    qudt:symbol "μg/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "ug.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-M3-HR a qudt:Unit ;
    rdfs:label "Microgram per Cubic Metre Hour"^^xsd:string,
        "Microgram per Cubic Metre Hour"@en,
        "Microgram per Cubic Meter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μg/(m³·h)"^^xsd:string ;
    qudt:ucumCode "ug.m-3.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroGM-PER-M3-K a qudt:Unit ;
    rdfs:label "Microgram per Cubic Metre Kelvin"^^xsd:string,
        "Microgram na Metr Krychlový Kelvin"@cs,
        "Microgramm pro Kubikmeter Kelvin"@de,
        "Microgram per Cubic Metre Kelvin"@en,
        "Microgram per Cubic Meter Kelvin"@en-us,
        "Microgramo por Metro Cúbico Kelvin"@es,
        "Microgramme par Mètre Cube Kelvin"@fr,
        "Microgrammo per Metro Cubo Kelvin"@it,
        "Microgram per Meter Kubik Kelvin"@ms,
        "Microgram na Metr Sześcienny Kelwin"@pl,
        "Microgram pe Metru Cub Kelvin"@ro,
        "Microgram na Kubični Meter Kelvin"@sl,
        "Microgram per Metreküp Kelvin"@tr ;
    dcterms:description "0.000000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA086"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA086"^^xsd:anyURI ;
    qudt:symbol "μg/(m³·K)"^^xsd:string ;
    qudt:ucumCode "ug.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroKAT-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Microkatal per Litre"^^xsd:string,
        "Microkatal per Litre"@en,
        "Microkatal per Liter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroKAT ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^xsd:string ;
    qudt:symbol "μkat/L"^^xsd:string ;
    qudt:ucumCode "ukat.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroL-PER-L a qudt:Unit ;
    rdfs:label "Microlitre per Litre"^^xsd:string,
        "Microlitre per Litre"@en,
        "Microliter per Liter"@en-us ;
    dcterms:description "volume ratio as 0.000001-fold of the unit litre divided by the unit litre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroL ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA089"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA089"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio as 0.000001-fold of the unit litre divided by the unit litre"^^xsd:string ;
    qudt:symbol "μL/L"^^xsd:string ;
    qudt:ucumCode "uL.L-1"^^qudt:UCUMcs ;
    qudt:udunitsCode "ppmv"^^xsd:string ;
    qudt:uneceCommonCode "J36"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106998052> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM-PER-K a qudt:Unit ;
    rdfs:label "Micrometre per Kelvin"^^xsd:string,
        "Micrometr na Kelvin"@cs,
        "Micrometer pro Kelvin"@de,
        "Micrometre per Kelvin"@en,
        "Micrometer per Kelvin"@en-us,
        "Micrometro por Kelvin"@es,
        "Micromètre par Kelvin"@fr,
        "Micrometro per Kelvin"@it,
        "Micrometer per Kelvin"@ms,
        "Micrometr na Kelwin"@pl,
        "Micrometru pe Kelvin"@ro,
        "Micrometer na Kelvin"@sl,
        "Micrometre per Kelvin"@tr ;
    dcterms:description "0.000001-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA091"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA091"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit metre divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "μm/K"^^xsd:string ;
    qudt:ucumCode "um.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F50"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM-PER-M a qudt:Unit ;
    rdfs:label "Micrometre per Metre"^^xsd:string,
        "Micrometr na Metr"@cs,
        "Micrometer pro Meter"@de,
        "Micrometre per Metre"@en,
        "Micrometer per Meter"@en-us,
        "Micrometro por Metro"@es,
        "Micromètre par Mètre"@fr,
        "Micrometro per Metro"@it,
        "Micrometer per Meter"@ms,
        "Micrometr na Metr"@pl,
        "Micrometru pe Metru"@ro,
        "Micrometer na Meter"@sl,
        "Micrometre per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI base unit metre divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Gradient ;
    qudt:iec61360Code "0112/2///62720#UAC002"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC002"^^xsd:anyURI ;
    qudt:symbol "μm/m"^^xsd:string ;
    qudt:ucumCode "um.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM-PER-MilliL a qudt:Unit ;
    rdfs:label "Micrometre per Millilitre"^^xsd:string,
        "Micrometre per Millilitre"@en,
        "Micrometer per Milliliter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μm/mL"^^xsd:string ;
    qudt:ucumCode "um.mL-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM-PER-N a qudt:Unit ;
    rdfs:label "Micrometre per Newton"^^xsd:string,
        "Micrometr na Newton"@cs,
        "Micrometer pro Newton"@de,
        "Micrometre per Newton"@en,
        "Micrometer per Newton"@en-us,
        "Micrometro por Newton"@es,
        "Micromètre par Newton"@fr,
        "Micrometro per Newton"@it,
        "Micrometer per Newton"@ms,
        "Micrometr na Niuton"@pl,
        "Micrometru pe Newton"@ro,
        "Micrometer na Newton"@sl,
        "Micrometre per Newton"@tr ;
    dcterms:description "Micro metres measured per Newton"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:LinearCompressibility ;
    qudt:plainTextDescription "Micro metres measured per Newton"^^xsd:string ;
    qudt:symbol "μm/N"^^xsd:string ;
    qudt:ucumCode "um.N-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM3-PER-M3 a qudt:Unit ;
    rdfs:label "Cubic Micrometre per Cubic Metre"^^xsd:string,
        "Micrometr Krychlový na Metr Krychlový"@cs,
        "Kubikmicrometer pro Kubikmeter"@de,
        "Cubic Micrometre per Cubic Metre"@en,
        "Cubic Micrometer per Cubic Meter"@en-us,
        "Micrometro Cúbico por Metro Cúbico"@es,
        "Micromètre Cube par Mètre Cube"@fr,
        "Micrometro Cubo per Metro Cubo"@it,
        "Micrometer Kubik per Meter Kubik"@ms,
        "Micrometr Sześcienny na Metr Sześcienny"@pl,
        "Micrometru Cub pe Metru Cub"@ro,
        "Kubični Micrometer na Kubični Meter"@sl,
        "Micrometreküp per Metreküp"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000000000001 ;
    qudt:conversionMultiplierSN 1e-18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:symbol "μm³/m³"^^xsd:string ;
    qudt:ucumCode "um3.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroM3-PER-MilliL a qudt:Unit ;
    rdfs:label "Cubic Micrometre per Millilitre"^^xsd:string,
        "Cubic Micrometre per Millilitre"@en,
        "Cubic Micrometer per Milliliter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:symbol "μm³/mL"^^xsd:string ;
    qudt:ucumCode "um3.mL-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-GM-HR a qudt:Unit ;
    rdfs:label "Micromole per Gram Hour"^^xsd:string,
        "Micromole per Gram Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μmol/(g·h)"^^xsd:string ;
    qudt:ucumCode "umol.g-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-GM-SEC a qudt:Unit ;
    rdfs:label "Micromole per Gram Second"^^xsd:string,
        "Micromol na Gram Sekunda"@cs,
        "Micromol pro Gramm Sekunde"@de,
        "Micromole per Gram Second"@en,
        "Micromol por Gramo Segundo"@es,
        "Micromole par Gramme Seconde"@fr,
        "Micromole per Grammo Secondo"@it,
        "Micromole per Gram Saat"@ms,
        "Micromol na Gram Sekunda"@pl,
        "Micromol pe Gram Secundă"@ro,
        "Micromol na Gram Sekunda"@sl,
        "Micromol per Gram Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μmol/(g·s)"^^xsd:string ;
    qudt:ucumCode "umol.g-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Micromole per Kilogram"^^xsd:string,
        "Micromol na Kilogram"@cs,
        "Micromol pro Kilogramm"@de,
        "Micromole per Kilogram"@en,
        "Micromol por Kilogramo"@es,
        "Micromole par Kilogramme"@fr,
        "Micromole per Chilogrammo"@it,
        "Micromole per Kilogram"@ms,
        "Micromol na Kilogram"@pl,
        "Micromol pe Kilogram"@ro,
        "Micromol na Kilogram"@sl,
        "Micromol per Kilogram"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:symbol "μmol/kg"^^xsd:string ;
    qudt:ucumCode "umol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-L-HR a qudt:Unit ;
    rdfs:label "Micromole per Litre Hour"^^xsd:string,
        "Micromole per Litre Hour"@en,
        "Micromole per Liter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "μmol/(L·h)"^^xsd:string ;
    qudt:ucumCode "umol.L-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-M2 a qudt:Unit ;
    rdfs:label "Micromole per Square Metre"^^xsd:string,
        "Micromol na Čtvereční Metr"@cs,
        "Micromol pro Quadratmeter"@de,
        "Micromole per Square Metre"@en,
        "Micromole per Square Meter"@en-us,
        "Micromol por Metro Cuadrado"@es,
        "Micromole par Mètre Carré"@fr,
        "Micromole per Metro Quadrato"@it,
        "Micromole per Meter Persegi"@ms,
        "Micromol na Metr Kwadratowy"@pl,
        "Micromol pe Metru Pătrat"@ro,
        "Micromol na Kvadratni Meter"@sl,
        "Micromol per Metrekare"@tr ;
    dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μmol/m²"^^xsd:string ;
    qudt:ucumCode "umol.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Micromole per Square Metre Day"^^xsd:string,
        "Micromole per Square Metre Day"@en,
        "Micromole per Square Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "μmol/(m²·d)"^^xsd:string ;
    qudt:ucumCode "umol.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-M2-HR a qudt:Unit ;
    rdfs:label "Micromole per Square Metre Hour"^^xsd:string,
        "Micromole per Square Metre Hour"@en,
        "Micromole per Square Meter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "μmol/(m²·h)"^^xsd:string ;
    qudt:ucumCode "umol.m-2.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-M2-SEC a qudt:Unit ;
    rdfs:label "Micromole per Square Metre Second"^^xsd:string,
        "Micromol na Čtvereční Metr Sekunda"@cs,
        "Micromol pro Quadratmeter Sekunde"@de,
        "Micromole per Square Metre Second"@en,
        "Micromole per Square Meter Second"@en-us,
        "Micromol por Metro Cuadrado Segundo"@es,
        "Micromole par Mètre Carré Seconde"@fr,
        "Micromole per Metro Quadrato Secondo"@it,
        "Micromole per Meter Persegi Saat"@ms,
        "Micromol na Metr Kwadratowy Sekunda"@pl,
        "Micromol pe Metru Pătrat Secundă"@ro,
        "Micromol na Kvadratni Meter Sekunda"@sl,
        "Micromol per Metrekare Saniye"@tr ;
    dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time.  This term is based on the number of photons in a certain waveband incident per unit time (s) on a unit area (m2) divided by the Avogadro constant (6.022 x 1023 mol-1). It is used commonly to describe PAR in the 400-700 nm waveband. Definition Source: Thimijan, Richard W., and Royal D. Heins. 1982. Photometric, Radiometric, and Quantum Light Units of Measure: A Review of Procedures for Interconversion. HortScience 18:818-822."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "μmol/(m²·s)"^^xsd:string ;
    qudt:ucumCode "umol.m-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-M2-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Micromole per Square Metre Square Second"^^xsd:string,
        "Micromol na Čtvereční Metr Čtvereční Sekunda"@cs,
        "Micromol pro Quadratmeter Quadratsekunde"@de,
        "Micromole per Square Metre Square Second"@en,
        "Micromole per Square Meter Square Second"@en-us,
        "Micromol por Metro Cuadrado Segundo Cuadrado"@es,
        "Micromole par Mètre Carré Seconde Carré"@fr,
        "Micromole per Metro Quadrato Secondo Quadrato"@it,
        "Micromole per Meter Persegi Saat Persegi"@ms,
        "Micromol na Metr Kwadratowy Sekunda Kwadratowy"@pl,
        "Micromol pe Metru Pătrat Secundă Pătrat"@ro,
        "Micromol na Kvadratni Meter Kvadratni Sekunda"@sl,
        "Micromol per Metrekare Saniyekare"@tr ;
    dcterms:description "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time squared."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:plainTextDescription "One part per 10**6 (million) of the SI unit of quantity of matter (the mole) per SI unit area per SI unit of time squared."^^xsd:string ;
    qudt:symbol "μmol/(m²·s²)"^^xsd:string ;
    qudt:ucumCode "umol.m-2.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-MOL a qudt:Unit ;
    rdfs:label "Micromole per Mole"^^xsd:string,
        "Micromol na Mol"@cs,
        "Micromol pro Mol"@de,
        "Micromole per Mole"@en,
        "Micromol por Mol"@es,
        "Micromole par Mole"@fr,
        "Micromole per Mole"@it,
        "Micromole per Mole"@ms,
        "Micromol na Mol"@pl,
        "Micromol pe Mol"@ro,
        "Micromol na Mol"@sl,
        "Micromol per Mol"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:symbol "μmol/mol"^^xsd:string ;
    qudt:ucumCode "umol.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-MicroMOL-DAY a qudt:Unit ;
    rdfs:label "Micromole per Micromole Day"^^xsd:string,
        "Micromole per Micromole Day"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "μmol/(μmol·d)"^^xsd:string ;
    qudt:ucumCode "umol.umol-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL-PER-SEC a qudt:Unit ;
    rdfs:label "Micromole per Second"^^xsd:string,
        "Micromol na Sekunda"@cs,
        "Micromol pro Sekunde"@de,
        "Micromole per Second"@en,
        "Micromol por Segundo"@es,
        "Micromole par Seconde"@fr,
        "Micromole per Secondo"@it,
        "Micromole per Saat"@ms,
        "Micromol na Sekunda"@pl,
        "Micromol pe Secundă"@ro,
        "Micromol na Sekunda"@sl,
        "Micromol per Saniye"@tr ;
    dcterms:description " This unit is used commonly to describe Photosynthetic Photon Flux (PPF) - the total number of photons emitted by a light source each second within the PAR wavelength range. "@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFlux ;
    qudt:symbol "μmol/s"^^xsd:string ;
    qudt:ucumCode "umol.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroMOL2-PER-M4-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Micromole per Quartic Metre Square Second"^^xsd:string,
        "Quadratmicromol pro Meter hoch vier Quadratsekunde"@de,
        "Square Micromole per Quartic Metre Square Second"@en,
        "Square Micromole per Quartic Meter Square Second"@en-us ;
    dcterms:description "Variance for a molar flux density, (uM/m^2/s)^2 ."@en ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A2E0L-4I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -4 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:MolarFluxDensityVariance ;
    qudt:plainTextDescription "Variance for a molar flux density, (uM/m^2/s)^2 ."@en ;
    qudt:symbol "μmol²/(m⁴·s²)"^^xsd:string ;
    qudt:ucumCode "umol2.m-4.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroOHM-M a qudt:Unit ;
    rdfs:label "Microohm Metre"^^xsd:string,
        "Microohm Metr"@cs,
        "Microohm Meter"@de,
        "Microohm Metre"@en,
        "Microohm Meter"@en-us,
        "Microohmio Metro"@es,
        "Microohm Mètre"@fr,
        "Microohm Metro"@it,
        "Microohm Meter"@ms,
        "Microom Metr"@pl,
        "Microohm Metru"@ro,
        "Microohm Meter"@sl,
        "Microohm Metre"@tr ;
    dcterms:description "0.000001-fold of the product out of the SI derived unit ohm and the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroOHM ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA056"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA056"^^xsd:anyURI ;
    qudt:symbol "μΩ·m"^^xsd:string ;
    qudt:ucumCode "uOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "B95"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroS2-PER-CentiM2 a qudt:Unit ;
    rdfs:label "Square Microsiemens per Square Centimetre"^^xsd:string,
        "Čtvereční Microsiemens na Čtvereční Centimetr"@cs,
        "Quadratmicrosiemens pro Quadratcentimeter"@de,
        "Square Microsiemens per Square Centimetre"@en,
        "Square Microsiemens per Square Centimeter"@en-us,
        "Microsiemens Cuadrado por Centimetro Cuadrado"@es,
        "Microsiemens Carré par Centimètre Carré"@fr,
        "Microsiemens Quadrato per Centimetro Quadrato"@it,
        "Microsiemens Persegi per Centimeter Persegi"@ms,
        "Microsimens Kwadratowy na Centimetr Kwadratowy"@pl,
        "Microsiemens Pătrat pe Centimetru Pătrat"@ro,
        "Kvadratni Microsiemens na Kvadratni Centimeter"@sl,
        "Microsiemenskare per Centimetrekare"@tr ;
    dcterms:description "Conductivity variance, or (MicroS-PER-CentiM)2"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:expression "\\(uS{2}-cm^{-2}\\)"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E4L-6I0M-2H0T6D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:MicroS ] ;
    qudt:hasQuantityKind qudtqk:ConductivityVariance ;
    qudt:plainTextDescription "Conductivity variance, or (MicroS-PER-CentiM)2"^^xsd:string ;
    qudt:symbol "μS²/cm²"^^xsd:string ;
    qudt:ucumCode "uS2.cm-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroSV-PER-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Microsievert per Hour"^^xsd:string,
        "Microsievert per Hour"@en ;
    dcterms:description "0.000001-fold of the derived SI unit sievert divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Sievert"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroSV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:AbsorbedDoseRate ;
    qudt:iec61360Code "0112/2///62720#UAB466"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Sievert?oldid=495474333"^^xsd:anyURI,
        "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1284"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB466"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/sievert> ;
    qudt:siUnitsExpression "J/kg"^^xsd:string ;
    qudt:symbol "μSv/h"^^xsd:string ;
    qudt:ucumCode "uSv.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P72"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106600007> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroV-PER-M a qudt:Unit ;
    rdfs:label "Microvolt per Metre"^^xsd:string,
        "Microvolt na Metr"@cs,
        "Microvolt pro Meter"@de,
        "Microvolt per Metre"@en,
        "Microvolt per Meter"@en-us,
        "Microvoltio por Metro"@es,
        "Microvolt par Mètre"@fr,
        "Microvolt per Metro"@it,
        "Microvolt per Meter"@ms,
        "Microwolt na Metr"@pl,
        "Microvolt pe Metru"@ro,
        "Microvolt na Meter"@sl,
        "Microvolt per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroV ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA079"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA079"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "μV/m"^^xsd:string ;
    qudt:ucumCode "uV.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C3"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MicroW-PER-CentiM2-MicroM-SR a qudt:Unit ;
    rdfs:label "Microwatt per Square Centimetre Micrometre Steradian"^^xsd:string,
        "Microwatt na Čtvereční Centimetr Micrometr Steradián"@cs,
        "Microwatt pro Quadratcentimeter Micrometer Steradiant"@de,
        "Microwatt per Square Centimetre Micrometre Steradian"@en,
        "Microwatt per Square Centimeter Micrometer Steradian"@en-us,
        "Microvatio por Centimetro Cuadrado Micrometro Estereorradián"@es,
        "Microwatt par Centimètre Carré Micromètre Stéradian"@fr,
        "Microwatt per Centimetro Quadrato Micrometro Steradiante"@it,
        "Microwatt per Centimeter Persegi Micrometer Steradian"@ms,
        "Microwat na Centimetr Kwadratowy Micrometr Steradian"@pl,
        "Microwatt pe Centimetru Pătrat Micrometru Steradian"@ro,
        "Microwatt na Kvadratni Centimeter Micrometer Steradian"@sl,
        "Microwatt per Centimetrekare Micrometre Steradyan"@tr ;
    qudt:conversionMultiplier 10000.0 ;
    qudt:conversionMultiplierSN 1e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MicroW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiance ;
    qudt:plainTextDescription "A unit of spectral radiance that is the power radiating from a surface per unit of solid angle per unit of wavelength, measured in units of watts per centimeter squared per micrometer per steradian"^^xsd:string ;
    qudt:symbol "μW/(cm²·μm·sr)"^^xsd:string ;
    qudt:ucumCode "uW.cm-2.um-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-HR-PER-GM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Milliampere Hour per Gram"^^xsd:string,
        "Milliampere Hour per Gram"@en ;
    dcterms:description """$\\textit{Milliampere hour per gram}$ is a practical unit of electric charge relative to the mass of the (active) parts. 
  1mAh/g describes the capability of a material to store charge equivalent to 1h charge with 1mA per gram. 
  The unit is often used in electrochemistry to describe the properties of active components like electrodes.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:SpecificElectricCharge ;
    qudt:symbol "mA·h/g"^^xsd:string ;
    qudt:ucumCode "mA.h.g-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-IN2-PER-LB_F a qudt:Unit ;
    rdfs:label "Milliampere Square Inch per Pound Force"^^xsd:string,
        "Milliampere Square Inch per Pound Force"@en ;
    dcterms:description "product of the 0.001-fold of the SI base unit ampere and the unit inch according to the Anglo-American and Imperial system of units with the exponent 2 according to the quotient of the unit pound-force according to the Anglo-American system of units"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001450377312227268702148557236386593 ;
    qudt:conversionMultiplierSN 1.450377e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB494"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB494"^^xsd:anyURI ;
    qudt:symbol "mA·in²/lbf"^^xsd:string ;
    qudt:ucumCode "mA.[in_i]2.[lbf_av]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F57"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-PER-BAR a qudt:Unit ;
    rdfs:label "Milliampere per Bar"^^xsd:string,
        "Milliampere per Bar"@en ;
    dcterms:description "0.001-fold of the SI base unit ampere divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA776"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA776"^^xsd:anyURI ;
    qudt:symbol "mA/bar"^^xsd:string ;
    qudt:ucumCode "mA.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-PER-K a qudt:Unit ;
    rdfs:label "Milliampere per Kelvin"^^xsd:string,
        "Milliampér na Kelvin"@cs,
        "Milliampere pro Kelvin"@de,
        "Milliampere per Kelvin"@en,
        "Milliamperio por Kelvin"@es,
        "Milliampère par Kelvin"@fr,
        "Milliampere per Kelvin"@it,
        "Milliampere per Kelvin"@ms,
        "Milliamper na Kelwin"@pl,
        "Milliamper pe Kelvin"@ro,
        "Milliamper na Kelvin"@sl,
        "Milliamper per Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAD897"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD897"^^xsd:anyURI ;
    qudt:symbol "mA/K"^^xsd:string ;
    qudt:ucumCode "mA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-PER-L-MIN a qudt:Unit ;
    rdfs:label "Milliampere per Litre Minute"^^xsd:string,
        "Milliampere per Litre Minute"@en,
        "Milliampere per Liter Minute"@en-us ;
    dcterms:description "0.001-fold of the SI base unit ampere divided by the product of the unit litre and the unit minute"^^xsd:string ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD910"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD910"^^xsd:anyURI ;
    qudt:symbol "mA/(L·min)"^^xsd:string ;
    qudt:ucumCode "mA.L-1.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G59"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliA-PER-LB_F-IN2 a qudt:Unit ;
    rdfs:label "Milliampere per Pound Force Square Inch"^^xsd:string,
        "Milliampere per Pound Force Square Inch"@en ;
    dcterms:description "product of the 0.001-fold of the SI base unit ampere according to the quotient of the unit pound-force according to the Anglo-American system of units divided by the power of the unit inch according to the Anglo-American and Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.3484545430793798050380935091957634 ;
    qudt:conversionMultiplierSN 3.484545e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mA/(lbf·in²)"^^xsd:string ;
    qudt:ucumCode "mA.[lbf_av]-1.[in_i]-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBAR-PER-BAR a qudt:Unit ;
    rdfs:label "Millibar per Bar"^^xsd:string,
        "Millibar per Bar"@en ;
    dcterms:description "0.01-fold of the unit bar divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBAR ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA812"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA812"^^xsd:anyURI ;
    qudt:plainTextDescription "0.01-fold of the unit bar divided by the unit bar"^^xsd:string ;
    qudt:symbol "mbar/bar"^^xsd:string ;
    qudt:ucumCode "mbar.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F04"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBAR-PER-K a qudt:Unit ;
    rdfs:label "Millibar per Kelvin"^^xsd:string,
        "Millibar per Kelvin"@en ;
    dcterms:description "0.001-fold of the unit bar divided by the unit temperature kelvin"^^rdf:HTML ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:VolumetricHeatCapacity ;
    qudt:iec61360Code "0112/2///62720#UAA811"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA811"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the unit bar divided by the unit temperature kelvin"^^xsd:string ;
    qudt:symbol "mbar/K"^^xsd:string ;
    qudt:ucumCode "mbar.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBQ-PER-GM a qudt:Unit ;
    rdfs:label "Millibecquerel per Gram"^^xsd:string,
        "Millibecquerel na Gram"@cs,
        "Millibecquerel pro Gramm"@de,
        "Millibecquerel per Gram"@en,
        "Millibecquerel por Gramo"@es,
        "Millibecquerel par Gramme"@fr,
        "Millibecquerel per Grammo"@it,
        "Millibecquerel per Gram"@ms,
        "Millibekerel na Gram"@pl,
        "Millibecquerel pe Gram"@ro,
        "Millibecquerel na Gram"@sl,
        "Millibekerel per Gram"@tr ;
    dcterms:description "One radioactive disintegration per thousand seconds per 1000th SI unit of sample mass."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBQ ] ;
    qudt:hasQuantityKind qudtqk:SpecificActivity ;
    qudt:symbol "mBq/g"^^xsd:string ;
    qudt:ucumCode "mBq.g-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBQ-PER-KiloGM a qudt:Unit ;
    rdfs:label "Millibecquerel per Kilogram"^^xsd:string,
        "Millibecquerel na Kilogram"@cs,
        "Millibecquerel pro Kilogramm"@de,
        "Millibecquerel per Kilogram"@en,
        "Millibecquerel por Kilogramo"@es,
        "Millibecquerel par Kilogramme"@fr,
        "Millibecquerel per Chilogrammo"@it,
        "Millibecquerel per Kilogram"@ms,
        "Millibekerel na Kilogram"@pl,
        "Millibecquerel pe Kilogram"@ro,
        "Millibecquerel na Kilogram"@sl,
        "Millibekerel per Kilogram"@tr ;
    dcterms:description "One radioactive disintegration per thousand seconds from an SI standard unit of mass of sample."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBQ ] ;
    qudt:hasQuantityKind qudtqk:SpecificActivity ;
    qudt:symbol "mBq/kg"^^xsd:string ;
    qudt:ucumCode "mBq.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBQ-PER-L a qudt:Unit ;
    rdfs:label "Millibecquerel per Litre"^^xsd:string,
        "Millibecquerel per Litre"@en,
        "Millibecquerel per Liter"@en-us ;
    dcterms:description "One radioactive disintegration per second from the SI unit of volume (cubic metre). Equivalent to Becquerels per cubic metre."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBQ ] ;
    qudt:hasQuantityKind qudtqk:ActivityConcentration ;
    qudt:symbol "mBq/L"^^xsd:string ;
    qudt:ucumCode "mBq.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliBQ-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Millibecquerel per Square Metre Day"^^xsd:string,
        "Millibecquerel per Square Metre Day"@en,
        "Millibecquerel per Square Meter Day"@en-us ;
    dcterms:description "One radioactive disintegration per thousand seconds in material passing through an area of one square metre during a period of one day (86400 seconds)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliBQ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mBq/(m²·d)"^^xsd:string ;
    qudt:ucumCode "mBq.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliC-PER-M3 a qudt:Unit ;
    rdfs:label "Millicoulomb per Cubic Metre"^^xsd:string,
        "Millicoulomb na Metr Krychlový"@cs,
        "Millicoulomb pro Kubikmeter"@de,
        "Millicoulomb per Cubic Metre"@en,
        "Millicoulomb per Cubic Meter"@en-us,
        "Milliculombio por Metro Cúbico"@es,
        "Millicoulomb par Mètre Cube"@fr,
        "Millicoulomb per Metro Cubo"@it,
        "Millicoulomb per Meter Kubik"@ms,
        "Millikulomb na Metr Sześcienny"@pl,
        "Millicoulomb pe Metru Cub"@ro,
        "Millicoulomb na Kubični Meter"@sl,
        "Millicoulomb per Metreküp"@tr ;
    dcterms:description "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricChargeVolumeDensity ;
    qudt:iec61360Code "0112/2///62720#UAA785"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA785"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit coulomb divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "mC/m³"^^xsd:string ;
    qudt:ucumCode "mC.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D88"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106808151> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliCD a qudt:Unit ;
    rdfs:label "Millicandela"^^xsd:string,
        "Millikandela"@cs,
        "Millicandela"@de,
        "Millicandela"@en,
        "Millicandela"@es,
        "Millicandela"@fr,
        "Millikandela"@hu,
        "Millicandela"@it,
        "Millikandela"@ms,
        "Millikandela"@pl,
        "Millicandelă"@ro,
        "Millikandela"@sl,
        "Millicandela"@tr ;
    dcterms:description "0.001-fold of the SI base unit candela"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I1M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:LuminousIntensity ;
    qudt:iec61360Code "0112/2///62720#UAB369"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB369"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:CD ;
    qudt:symbol "mcd"^^xsd:string ;
    qudt:ucumCode "mcd"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliDARCY a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Millidarcy"^^xsd:string,
        "Millidarcy"@en ;
    dcterms:description """
  The $\\textit{Millidarcy}$ ($md$) is a unit of permeability named after Henry Darcy. 
  It is not an SI unit, but it is widely used in petroleum engineering and geology. 
  The unit has also been used in biophysics and biomechanics, where the flow of fluids such as 
  blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. 
  A millidarcy has dimensional units of $length^2$.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000000009869233 ;
    qudt:conversionMultiplierSN 9.869233e-16 ;
    qudt:expression "$d$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:HydraulicPermeability ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Darcy_(unit)"^^xsd:anyURI ;
    qudt:plainTextDescription "The millidarcy (md) is a unit of permeability named after Henry Darcy. It is not an SI unit, but it is widely used in petroleum engineering and geology. The unit has also been used in biophysics and biomechanics, where the flow of fluids such as blood through capillary beds and cerebrospinal fluid through the brain interstitial space is being examined. A millidarcy has dimensional units of length²."^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:DARCY ;
    qudt:symbol "md"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliFARAD a qudt:Unit ;
    rdfs:label "Millifarad"^^xsd:string,
        "Millifarad"@cs,
        "Millifarad"@de,
        "Millifarad"@en,
        "Millifaradio"@es,
        "Millifarad"@fr,
        "Millifarad"@hu,
        "Millifarad"@it,
        "Millifarad"@ms,
        "Millifarad"@pl,
        "Millifarad"@ro,
        "Millifarad"@sl,
        "Millifarad"@tr ;
    dcterms:description "0.001-fold of the SI derived unit farad"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T4D0> ;
    qudt:hasQuantityKind qudtqk:Capacitance ;
    qudt:iec61360Code "0112/2///62720#UAA787"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA787"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit farad"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:FARAD ;
    qudt:symbol "mF"^^xsd:string ;
    qudt:ucumCode "mF"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C10"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q4456994> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Hour per Litre Cubic Centimetre"^^xsd:string,
        "Milligram Hour per Litre Cubic Centimetre"@en,
        "Milligram Hour per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC837"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC837"^^xsd:anyURI ;
    qudt:symbol "mg·h/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.h.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-L-M3 a qudt:Unit ;
    rdfs:label "Milligram Hour per Litre Cubic Metre"^^xsd:string,
        "Milligram Hour per Litre Cubic Metre"@en,
        "Milligram Hour per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3.6 ;
    qudt:conversionMultiplierSN 3.6e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC836"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC836"^^xsd:anyURI ;
    qudt:symbol "mg·h/(L·m³)"^^xsd:string ;
    qudt:ucumCode "mg.h.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-L2 a qudt:Unit ;
    rdfs:label "Milligram Hour per Square Litre"^^xsd:string,
        "Milligram Hour per Square Litre"@en,
        "Milligram Hour per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC838"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC838"^^xsd:anyURI ;
    qudt:symbol "mg·h/L²"^^xsd:string ;
    qudt:ucumCode "mg.h.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Hour per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Milligram Hour per Cubic Metre Cubic Centimetre"@en,
        "Milligram Hour per Cubic Meter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3600.0 ;
    qudt:conversionMultiplierSN 3.6e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC831"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC831"^^xsd:anyURI ;
    qudt:symbol "mg·h/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.h.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-M3-L a qudt:Unit ;
    rdfs:label "Milligram Hour per Cubic Metre Litre"^^xsd:string,
        "Milligram Hour per Cubic Metre Litre"@en,
        "Milligram Hour per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 3.6 ;
    qudt:conversionMultiplierSN 3.6e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC832"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC832"^^xsd:anyURI ;
    qudt:symbol "mg·h/(m³·L)"^^xsd:string ;
    qudt:ucumCode "mg.h.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-HR-PER-M6 a qudt:Unit ;
    rdfs:label "Milligram Hour per Sextic Metre"^^xsd:string,
        "Milligram Hour per Sextic Metre"@en,
        "Milligram Hour per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 0.0036 ;
    qudt:conversionMultiplierSN 3.6e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC830"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC830"^^xsd:anyURI ;
    qudt:symbol "mg·h/m⁶"^^xsd:string ;
    qudt:ucumCode "mg.h.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Minute per Litre Cubic Centimetre"^^xsd:string,
        "Milligram Minute per Litre Cubic Centimetre"@en,
        "Milligram Minute per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60000.0 ;
    qudt:conversionMultiplierSN 6e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC840"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC840"^^xsd:anyURI ;
    qudt:symbol "mg·min/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.min.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-L-M3 a qudt:Unit ;
    rdfs:label "Milligram Minute per Litre Cubic Metre"^^xsd:string,
        "Milligram Minute per Litre Cubic Metre"@en,
        "Milligram Minute per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.06 ;
    qudt:conversionMultiplierSN 6e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC839"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC839"^^xsd:anyURI ;
    qudt:symbol "mg·min/(L·m³)"^^xsd:string ;
    qudt:ucumCode "mg.min.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-L2 a qudt:Unit ;
    rdfs:label "Milligram Minute per Square Litre"^^xsd:string,
        "Milligram Minute per Square Litre"@en,
        "Milligram Minute per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC841"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC841"^^xsd:anyURI ;
    qudt:symbol "mg·min/L²"^^xsd:string ;
    qudt:ucumCode "mg.min.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Minute per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Milligram Minute per Cubic Metre Cubic Centimetre"@en,
        "Milligram Minute per Cubic Meter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and 0.000001-fold of power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 60.0 ;
    qudt:conversionMultiplierSN 6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC834"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC834"^^xsd:anyURI ;
    qudt:symbol "mg·min/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.min.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-M3-L a qudt:Unit ;
    rdfs:label "Milligram Minute per Cubic Metre Litre"^^xsd:string,
        "Milligram Minute per Cubic Metre Litre"@en,
        "Milligram Minute per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.06 ;
    qudt:conversionMultiplierSN 6e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD870"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD870"^^xsd:anyURI ;
    qudt:symbol "mg·min/(m³·L)"^^xsd:string ;
    qudt:ucumCode "mg.min.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-MIN-PER-M6 a qudt:Unit ;
    rdfs:label "Milligram Minute per Sextic Metre"^^xsd:string,
        "Milligram Minute per Sextic Metre"@en,
        "Milligram Minute per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per unit of time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.00006 ;
    qudt:conversionMultiplierSN 6e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC833"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC833"^^xsd:anyURI ;
    qudt:symbol "mg·min/m⁶"^^xsd:string ;
    qudt:ucumCode "mg.min.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-BAR a qudt:Unit ;
    rdfs:label "Milligram per Bar"^^xsd:string,
        "Milligram per Bar"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA817"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA817"^^xsd:anyURI ;
    qudt:symbol "mg/bar"^^xsd:string ;
    qudt:ucumCode "mg.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-DAY a qudt:Unit ;
    rdfs:label "Milligram per Day"^^xsd:string,
        "Milligram per Day"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA819"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA819"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit day"^^xsd:string ;
    qudt:symbol "mg/d"^^xsd:string ;
    qudt:ucumCode "mg.d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F32"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210240> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Milligram per Day Bar"^^xsd:string,
        "Milligram per Day Bar"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-16 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA821"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA821"^^xsd:anyURI ;
    qudt:symbol "mg/(d·bar)"^^xsd:string ;
    qudt:ucumCode "mg.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F70"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-DAY-K a qudt:Unit ;
    rdfs:label "Milligram per Day Kelvin"^^xsd:string,
        "Milligram per Day Kelvin"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA820"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA820"^^xsd:anyURI ;
    qudt:symbol "mg/(d·K)"^^xsd:string ;
    qudt:ucumCode "mg.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F43"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-GM-HR a qudt:Unit ;
    rdfs:label "Milligram per Gram Hour"^^xsd:string,
        "Milligram per Gram Hour"@en ;
    dcterms:description "mass-specific rate, e.g., uptake or emission"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:MassSpecificBiogeochemicalRate ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the 0.001-fold of the SI base unit kilogram, divided by 3600-fold of the SI base unit second"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:symbol "mg/(g·h)"^^xsd:string ;
    qudt:ucumCode "mg.g-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-HR a qudt:Unit ;
    rdfs:label "Milligram per Hour"^^xsd:string,
        "Milligram per Hour"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA823"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA823"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit hour"^^xsd:string ;
    qudt:symbol "mg/h"^^xsd:string ;
    qudt:ucumCode "mg.h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4M"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Milligram per Hour Bar"^^xsd:string,
        "Milligram per Hour Bar"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA825"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA825"^^xsd:anyURI ;
    qudt:symbol "mg/(h·bar)"^^xsd:string ;
    qudt:ucumCode "mg.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F71"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-HR-K a qudt:Unit ;
    rdfs:label "Milligram per Hour Kelvin"^^xsd:string,
        "Milligram per Hour Kelvin"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA824"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA824"^^xsd:anyURI ;
    qudt:symbol "mg/(h·K)"^^xsd:string ;
    qudt:ucumCode "mg.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F44"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-K a qudt:Unit ;
    rdfs:label "Milligram per Kelvin"^^xsd:string,
        "Milligram na Kelvin"@cs,
        "Milligramm pro Kelvin"@de,
        "Milligram per Kelvin"@en,
        "Milligramo por Kelvin"@es,
        "Milligramme par Kelvin"@fr,
        "Milligrammo per Kelvin"@it,
        "Milligram per Kelvin"@ms,
        "Milligram na Kelwin"@pl,
        "Milligram pe Kelvin"@ro,
        "Milligram na Kelvin"@sl,
        "Milligram per Kelvin"@tr ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA816"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA816"^^xsd:anyURI ;
    qudt:symbol "mg/K"^^xsd:string ;
    qudt:ucumCode "mg.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F16"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-KiloGM-DAY a qudt:Unit ;
    rdfs:label "Milligram per Kilogram Day"^^xsd:string,
        "Milligram per Kilogram Day"@en ;
    dcterms:description "mass ratio as 0.000001-fold of the SI base unit kilogram divided by the SI base unit kilogram per day "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:MassSpecificBiogeochemicalRate ;
    qudt:plainTextDescription "mass ratio as 0.000000001-fold of the SI base unit kilogram divided by 0.001-fold of the SI base unit kilogram per day (8640 seconds)"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T1D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T0D0> ;
    qudt:symbol "mg/(kg·d)"^^xsd:string ;
    qudt:ucumCode "mg.kg-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-L-CentiPOISE a qudt:Unit ;
    rdfs:label "Milligram per Litre Centipoise"^^xsd:string,
        "Milligram per Litre Centipoise"@en,
        "Milligram per Liter Centipoise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per litre and and the 0.01-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiPOISE ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD841"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD841"^^xsd:anyURI ;
    qudt:symbol "mg/(L·cP)"^^xsd:string ;
    qudt:ucumCode "mg.L-1.cP-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-L-MilliPA-SEC a qudt:Unit ;
    rdfs:label "Milligram per Litre Millipascal Second"^^xsd:string,
        "Milligram per Litre Millipascal Second"@en,
        "Milligram per Liter Millipascal Second"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD869"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD869"^^xsd:anyURI ;
    qudt:symbol "mg/(L·mPa·s)"^^xsd:string ;
    qudt:ucumCode "mg.L-1.mPa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-L-PA-SEC a qudt:Unit ;
    rdfs:label "Milligram per Litre Pascal Second"^^xsd:string,
        "Milligram per Litre Pascal Second"@en,
        "Milligram per Liter Pascal Second"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD839"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD839"^^xsd:anyURI ;
    qudt:symbol "mg/(L·Pa·s)"^^xsd:string ;
    qudt:ucumCode "mg.L-1.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-L-POISE a qudt:Unit ;
    rdfs:label "Milligram per Litre Poise"^^xsd:string,
        "Milligram per Litre Poise"@en,
        "Milligram per Liter Poise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per litre and the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD840"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD840"^^xsd:anyURI ;
    qudt:symbol "mg/(L·P)"^^xsd:string ;
    qudt:ucumCode "mg.L-1.P-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M a qudt:Unit ;
    rdfs:label "Milligram per Metre"^^xsd:string,
        "Milligram na Metr"@cs,
        "Milligramm pro Meter"@de,
        "Milligram per Metre"@en,
        "Milligram per Meter"@en-us,
        "Milligramo por Metro"@es,
        "Milligramme par Mètre"@fr,
        "Milligrammo per Metro"@it,
        "Milligram per Meter"@ms,
        "Milligram na Metr"@pl,
        "Milligram pe Metru"@ro,
        "Milligram na Meter"@sl,
        "Milligram per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAA828"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA828"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "mg/m"^^xsd:string ;
    qudt:ucumCode "mg.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C12"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106645241> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Bar"^^xsd:string,
        "Milligram per Cubic Metre Bar"@en,
        "Milligram per Cubic Meter Bar"@en-us ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA832"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA832"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L18"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-CentiPOISE a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Centipoise"^^xsd:string,
        "Milligram per Cubic Metre Centipoise"@en,
        "Milligram per Cubic Meter Centipoise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.01-fold of the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiPOISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD838"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD838"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·cP)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.cP-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-DAY a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Day"^^xsd:string,
        "Milligram per Cubic Metre Day"@en,
        "Milligram per Cubic Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mg/(m³·d)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-HR a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Hour"^^xsd:string,
        "Milligram per Cubic Metre Hour"@en,
        "Milligram per Cubic Meter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mg/(m³·h)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-K a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Kelvin"^^xsd:string,
        "Milligram na Metr Krychlový Kelvin"@cs,
        "Milligramm pro Kubikmeter Kelvin"@de,
        "Milligram per Cubic Metre Kelvin"@en,
        "Milligram per Cubic Meter Kelvin"@en-us,
        "Milligramo por Metro Cúbico Kelvin"@es,
        "Milligramme par Mètre Cube Kelvin"@fr,
        "Milligrammo per Metro Cubo Kelvin"@it,
        "Milligram per Meter Kubik Kelvin"@ms,
        "Milligram na Metr Sześcienny Kelwin"@pl,
        "Milligram pe Metru Cub Kelvin"@ro,
        "Milligram na Kubični Meter Kelvin"@sl,
        "Milligram per Metreküp Kelvin"@tr ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product of the power of the SI base unit metre with the exponent 3 and the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA831"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA831"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·K)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L17"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-MilliPA-SEC a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Millipascal Second"^^xsd:string,
        "Milligram na Metr Krychlový Millipascal Sekunda"@cs,
        "Milligramm pro Kubikmeter Millipascal Sekunde"@de,
        "Milligram per Cubic Metre Millipascal Second"@en,
        "Milligram per Cubic Meter Millipascal Second"@en-us,
        "Milligramo por Metro Cúbico Millipascal Segundo"@es,
        "Milligramme par Mètre Cube Millipascal Seconde"@fr,
        "Milligrammo per Metro Cubo Millipascal Secondo"@it,
        "Milligram per Meter Kubik Millipascal Saat"@ms,
        "Milligram na Metr Sześcienny Millipaskal Sekunda"@pl,
        "Milligram pe Metru Cub Millipascal Secundă"@ro,
        "Milligram na Kubični Meter Millipascal Sekunda"@sl,
        "Milligram per Metreküp Millipascal Saniye"@tr ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD835"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD835"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·mPa·s)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.mPa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-PA-SEC a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Pascal Second"^^xsd:string,
        "Milligram na Metr Krychlový Pascal Sekunda"@cs,
        "Milligramm pro Kubikmeter Pascal Sekunde"@de,
        "Milligram per Cubic Metre Pascal Second"@en,
        "Milligram per Cubic Meter Pascal Second"@en-us,
        "Milligramo por Metro Cúbico Pascal Segundo"@es,
        "Milligramme par Mètre Cube Pascal Seconde"@fr,
        "Milligrammo per Metro Cubo Pascal Secondo"@it,
        "Milligram per Meter Kubik Pascal Saat"@ms,
        "Milligram na Metr Sześcienny Paskal Sekunda"@pl,
        "Milligram pe Metru Cub Pascal Secundă"@ro,
        "Milligram na Kubični Meter Pascal Sekunda"@sl,
        "Milligram per Metreküp Pascal Saniye"@tr ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD836"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD836"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·Pa·s)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-POISE a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Poise"^^xsd:string,
        "Milligram per Cubic Metre Poise"@en,
        "Milligram per Cubic Meter Poise"@en-us ;
    dcterms:description "[CGS] quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the CGS unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD837"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD837"^^xsd:anyURI ;
    qudt:symbol "mg/(m³·P)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.P-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-M3-SEC a qudt:Unit ;
    rdfs:label "Milligram per Cubic Metre Second"^^xsd:string,
        "Milligram na Metr Krychlový Sekunda"@cs,
        "Milligramm pro Kubikmeter Sekunde"@de,
        "Milligram per Cubic Metre Second"@en,
        "Milligram per Cubic Meter Second"@en-us,
        "Milligramo por Metro Cúbico Segundo"@es,
        "Milligramme par Mètre Cube Seconde"@fr,
        "Milligrammo per Metro Cubo Secondo"@it,
        "Milligram per Meter Kubik Saat"@ms,
        "Milligram na Metr Sześcienny Sekunda"@pl,
        "Milligram pe Metru Cub Secundă"@ro,
        "Milligram na Kubični Meter Sekunda"@sl,
        "Milligram per Metreküp Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mg/(m³·s)"^^xsd:string ;
    qudt:ucumCode "mg.m-3.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-MIN a qudt:Unit ;
    rdfs:label "Milligram per Minute"^^xsd:string,
        "Milligram per Minute"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA833"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA833"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the unit minute"^^xsd:string ;
    qudt:symbol "mg/min"^^xsd:string ;
    qudt:ucumCode "mg.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F33"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210295> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Milligram per Minute Bar"^^xsd:string,
        "Milligram per Minute Bar"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA835"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA835"^^xsd:anyURI ;
    qudt:symbol "mg/(min·bar)"^^xsd:string ;
    qudt:ucumCode "mg.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-MIN-K a qudt:Unit ;
    rdfs:label "Milligram per Minute Kelvin"^^xsd:string,
        "Milligram per Minute Kelvin"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA834"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA834"^^xsd:anyURI ;
    qudt:symbol "mg/(min·K)"^^xsd:string ;
    qudt:ucumCode "mg.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F45"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-SEC a qudt:Unit ;
    rdfs:label "Milligram per Second"^^xsd:string,
        "Milligram na Sekunda"@cs,
        "Milligramm pro Sekunde"@de,
        "Milligram per Second"@en,
        "Milligramo por Segundo"@es,
        "Milligramme par Seconde"@fr,
        "Milligrammo per Secondo"@it,
        "Milligram per Saat"@ms,
        "Milligram na Sekunda"@pl,
        "Milligram pe Secundă"@ro,
        "Milligram na Sekunda"@sl,
        "Milligram per Saniye"@tr ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA836"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA836"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI base unit kilogram divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "mg/s"^^xsd:string ;
    qudt:ucumCode "mg.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F34"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107210344> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Milligram per Second Bar"^^xsd:string,
        "Milligram per Second Bar"@en ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA838"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA838"^^xsd:anyURI ;
    qudt:symbol "mg/(s·bar)"^^xsd:string ;
    qudt:ucumCode "mg.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-PER-SEC-K a qudt:Unit ;
    rdfs:label "Milligram per Second Kelvin"^^xsd:string,
        "Milligram na Sekunda Kelvin"@cs,
        "Milligramm pro Sekunde Kelvin"@de,
        "Milligram per Second Kelvin"@en,
        "Milligramo por Segundo Kelvin"@es,
        "Milligramme par Seconde Kelvin"@fr,
        "Milligrammo per Secondo Kelvin"@it,
        "Milligram per Saat Kelvin"@ms,
        "Milligram na Sekunda Kelwin"@pl,
        "Milligram pe Secundă Kelvin"@ro,
        "Milligram na Sekunda Kelvin"@sl,
        "Milligram per Saniye Kelvin"@tr ;
    dcterms:description "0.000001-fold of the SI base unit kilogram divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA837"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA837"^^xsd:anyURI ;
    qudt:symbol "mg/(s·K)"^^xsd:string ;
    qudt:ucumCode "mg.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-L-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Second per Litre Cubic Centimetre"^^xsd:string,
        "Milligram Second per Litre Cubic Centimetre"@en,
        "Milligram Second per Liter Cubic Centimeter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC843"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC843"^^xsd:anyURI ;
    qudt:symbol "mg·s/(L·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.s.L-1.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-L-M3 a qudt:Unit ;
    rdfs:label "Milligram Second per Litre Cubic Metre"^^xsd:string,
        "Milligram Second per Litre Cubic Metre"@en,
        "Milligram Second per Liter Cubic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC842"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC842"^^xsd:anyURI ;
    qudt:symbol "mg·s/(L·m³)"^^xsd:string ;
    qudt:ucumCode "mg.s.L-1.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-L2 a qudt:Unit ;
    rdfs:label "Milligram Second per Square Litre"^^xsd:string,
        "Milligram Second per Square Litre"@en,
        "Milligram Second per Square Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per litre and unit litre per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC844"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC844"^^xsd:anyURI ;
    qudt:symbol "mg·s/L²"^^xsd:string ;
    qudt:ucumCode "mg.s.L-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-M3-CentiM3 a qudt:Unit ;
    rdfs:label "Milligram Second per Cubic Metre Cubic Centimetre"^^xsd:string,
        "Milligram Sekunda na Metr Krychlový Centimetr Krychlový"@cs,
        "Milligramm Sekunde pro Kubikmeter Kubikcentimeter"@de,
        "Milligram Second per Cubic Metre Cubic Centimetre"@en,
        "Milligram Second per Cubic Meter Cubic Centimeter"@en-us,
        "Milligramo Segundo por Metro Cúbico Centimetro Cúbico"@es,
        "Milligramme Seconde par Mètre Cube Centimètre Cube"@fr,
        "Milligrammo Secondo per Metro Cubo Centimetro Cubo"@it,
        "Milligram Saat per Meter Kubik Centimeter Kubik"@ms,
        "Milligram Sekunda na Metr Sześcienny Centimetr Sześcienny"@pl,
        "Milligram Secundă pe Metru Cub Centimetru Cub"@ro,
        "Milligram Sekunda na Kubični Meter Kubični Centimeter"@sl,
        "Milligram Saniye per Metreküp Centimetreküp"@tr ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and the 0.000001-fold of power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD865"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD865"^^xsd:anyURI ;
    qudt:symbol "mg·s/(m³·cm³)"^^xsd:string ;
    qudt:ucumCode "mg.s.m-3.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-M3-L a qudt:Unit ;
    rdfs:label "Milligram Second per Cubic Metre Litre"^^xsd:string,
        "Milligram Second per Cubic Metre Litre"@en,
        "Milligram Second per Cubic Meter Liter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and unit litre per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC835"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC835"^^xsd:anyURI ;
    qudt:symbol "mg·s/(m³·L)"^^xsd:string ;
    qudt:ucumCode "mg.s.m-3.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliGM-SEC-PER-M6 a qudt:Unit ;
    rdfs:label "Milligram Second per Sextic Metre"^^xsd:string,
        "Milligramm Sekunde pro Meter hoch sechs"@de,
        "Milligram Second per Sextic Metre"@en,
        "Milligram Second per Sextic Meter"@en-us ;
    dcterms:description "quotient of the 0.000001-fold of the SI base unit kilogram per power of the SI base unit metre with the exponent 3 and power of the SI base unit metre with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD864"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD864"^^xsd:anyURI ;
    qudt:symbol "mg·s/m⁶"^^xsd:string ;
    qudt:ucumCode "mg.s.m-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliK-PER-BAR a qudt:Unit ;
    rdfs:label "Millikelvin per Bar"^^xsd:string,
        "Millikelvin per Bar"@en ;
    dcterms:description "0.001-fold of SI base unit kelvin divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H1T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB841"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB841"^^xsd:anyURI ;
    qudt:symbol "mK/bar"^^xsd:string ;
    qudt:ucumCode "mK.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliK-PER-K a qudt:Unit ;
    rdfs:label "Millikelvin per Kelvin"^^xsd:string,
        "Millikelvin na Kelvin"@cs,
        "Millikelvin pro Kelvin"@de,
        "Millikelvin per Kelvin"@en,
        "Millikelvin por Kelvin"@es,
        "Millikelvin par Kelvin"@fr,
        "Millikelvin per Kelvin"@it,
        "Millikelvin per Kelvin"@ms,
        "Millikelwin na Kelwin"@pl,
        "Millikelvin pe Kelvin"@ro,
        "Millikelvin na Kelvin"@sl,
        "Millikelvin per Kelvin"@tr ;
    dcterms:description "0.001-fold of SI base unit kelvin divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliK ] ;
    qudt:hasQuantityKind qudtqk:TemperatureRatio ;
    qudt:iec61360Code "0112/2///62720#UAB842"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB842"^^xsd:anyURI ;
    qudt:symbol "mK/K"^^xsd:string ;
    qudt:ucumCode "mK.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliKAT-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Millikatal per Litre"^^xsd:string,
        "Millikatal per Litre"@en,
        "Millikatal per Liter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliKAT ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:plainTextDescription "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^xsd:string ;
    qudt:symbol "mkat/L"^^xsd:string ;
    qudt:ucumCode "mkat.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-BAR a qudt:Unit ;
    rdfs:label "Millilitre per Bar"^^xsd:string,
        "Millilitre per Bar"@en,
        "Milliliter per Bar"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA846"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA846"^^xsd:anyURI ;
    qudt:symbol "mL/bar"^^xsd:string ;
    qudt:ucumCode "mL.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G97"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-CentiM2-MIN a qudt:Unit ;
    rdfs:label "Millilitre per Square Centimetre Minute"^^xsd:string,
        "Millilitre per Square Centimetre Minute"@en,
        "Milliliter per Square Centimeter Minute"@en-us ;
    dcterms:description "quotient of the 0.001-fold of the unit litre and the unit minute divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:VolumetricFlux ;
    qudt:iec61360Code "0112/2///62720#UAA858"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA858"^^xsd:anyURI ;
    qudt:plainTextDescription "quotient of the 0.001-fold of the unit litre and the unit minute divided by the 0.0001-fold of the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:symbol "mL/(cm²·min)"^^xsd:string ;
    qudt:ucumCode "mL.cm-2.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-CentiM2-SEC a qudt:Unit ;
    rdfs:label "Millilitre per Square Centimetre Second"^^xsd:string,
        "Millilitre per Square Centimetre Second"@en,
        "Milliliter per Square Centimeter Second"@en-us ;
    dcterms:description "unit of the volume flow rate millilitre divided by second related to the transfer area as 0.0001-fold of the power of the SI base unit metre by exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:VolumetricFlux ;
    qudt:iec61360Code "0112/2///62720#UAB085"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB085"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the volume flow rate millilitre divided by second related to the transfer area as 0.0001-fold of the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:symbol "mL/(cm²·s)"^^xsd:string ;
    qudt:ucumCode "mL.cm-2.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-DAY-BAR a qudt:Unit ;
    rdfs:label "Millilitre per Day Bar"^^xsd:string,
        "Millilitre per Day Bar"@en,
        "Milliliter per Day Bar"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit day and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-16 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA849"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA849"^^xsd:anyURI ;
    qudt:symbol "mL/(d·bar)"^^xsd:string ;
    qudt:ucumCode "mL.d-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-DAY-K a qudt:Unit ;
    rdfs:label "Millilitre per Day Kelvin"^^xsd:string,
        "Millilitre per Day Kelvin"@en,
        "Milliliter per Day Kelvin"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit day and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA848"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA848"^^xsd:anyURI ;
    qudt:symbol "mL/(d·K)"^^xsd:string ;
    qudt:ucumCode "mL.d-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-HR-BAR a qudt:Unit ;
    rdfs:label "Millilitre per Hour Bar"^^xsd:string,
        "Millilitre per Hour Bar"@en,
        "Milliliter per Hour Bar"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit hour and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA852"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA852"^^xsd:anyURI ;
    qudt:symbol "mL/(h·bar)"^^xsd:string ;
    qudt:ucumCode "mL.h-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-HR-K a qudt:Unit ;
    rdfs:label "Millilitre per Hour Kelvin"^^xsd:string,
        "Millilitre per Hour Kelvin"@en,
        "Milliliter per Hour Kelvin"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit hour and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA851"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA851"^^xsd:anyURI ;
    qudt:symbol "mL/(h·K)"^^xsd:string ;
    qudt:ucumCode "mL.h-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G74"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-K a qudt:Unit ;
    rdfs:label "Millilitre per Kelvin"^^xsd:string,
        "Millilitre per Kelvin"@en,
        "Milliliter per Kelvin"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA845"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA845"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the unit litre divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "mL/K"^^xsd:string ;
    qudt:ucumCode "mL.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G30"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-L a qudt:Unit ;
    rdfs:label "Millilitre per Litre"^^xsd:string,
        "Millilitre per Litre"@en,
        "Milliliter per Liter"@en-us ;
    dcterms:description "volume ratio consisting of the 0.001-fold of the unit litre divided by the unit litre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA853"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA853"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio consisting of the 0.001-fold of the unit litre divided by the unit litre"^^xsd:string ;
    qudt:symbol "mL/L"^^xsd:string ;
    qudt:ucumCode "mL.L-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L19"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21075844> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Millilitre per Square Metre Day"^^xsd:string,
        "Millilitre per Square Metre Day"@en,
        "Milliliter per Square Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mL/(m²·d)"^^xsd:string ;
    qudt:ucumCode "mL.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-M3 a qudt:Unit ;
    rdfs:label "Millilitre per Cubic Metre"^^xsd:string,
        "Millilitre per Cubic Metre"@en,
        "Milliliter per Cubic Meter"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA854"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA854"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the unit litre divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "mL/m³"^^xsd:string ;
    qudt:ucumCode "mL.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H65"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106639711> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-MIN-BAR a qudt:Unit ;
    rdfs:label "Millilitre per Minute Bar"^^xsd:string,
        "Millilitre per Minute Bar"@en,
        "Milliliter per Minute Bar"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit minute and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000000000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA857"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA857"^^xsd:anyURI ;
    qudt:symbol "mL/(min·bar)"^^xsd:string ;
    qudt:ucumCode "mL.min-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G92"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-MIN-K a qudt:Unit ;
    rdfs:label "Millilitre per Minute Kelvin"^^xsd:string,
        "Millilitre per Minute Kelvin"@en,
        "Milliliter per Minute Kelvin"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the unit minute and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA856"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA856"^^xsd:anyURI ;
    qudt:symbol "mL/(min·K)"^^xsd:string ;
    qudt:ucumCode "mL.min-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G75"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-SEC-BAR a qudt:Unit ;
    rdfs:label "Millilitre per Second Bar"^^xsd:string,
        "Millilitre per Second Bar"@en,
        "Milliliter per Second Bar"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the SI base unit second and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000001 ;
    qudt:conversionMultiplierSN 1e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA861"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA861"^^xsd:anyURI ;
    qudt:symbol "mL/(s·bar)"^^xsd:string ;
    qudt:ucumCode "mL.s-1.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G93"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliL-PER-SEC-K a qudt:Unit ;
    rdfs:label "Millilitre per Second Kelvin"^^xsd:string,
        "Millilitre per Second Kelvin"@en,
        "Milliliter per Second Kelvin"@en-us ;
    dcterms:description "0.001-fold of the unit litre divided by the product out of the SI base unit second and the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA860"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA860"^^xsd:anyURI ;
    qudt:symbol "mL/(s·K)"^^xsd:string ;
    qudt:ucumCode "mL.s-1.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G76"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliM-PER-BAR a qudt:Unit ;
    rdfs:label "Millimetre per Bar"^^xsd:string,
        "Millimetre per Bar"@en,
        "Millimeter per Bar"@en-us ;
    dcterms:description "0.001-fold of the SI base unit metre divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA865"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA865"^^xsd:anyURI ;
    qudt:symbol "mm/bar"^^xsd:string ;
    qudt:ucumCode "mm.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G06"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliM-PER-K a qudt:Unit ;
    rdfs:label "Millimetre per Kelvin"^^xsd:string,
        "Millimetr na Kelvin"@cs,
        "Millimeter pro Kelvin"@de,
        "Millimetre per Kelvin"@en,
        "Millimeter per Kelvin"@en-us,
        "Millimetro por Kelvin"@es,
        "Millimètre par Kelvin"@fr,
        "Millimetro per Kelvin"@it,
        "Millimeter per Kelvin"@ms,
        "Millimetr na Kelwin"@pl,
        "Millimetru pe Kelvin"@ro,
        "Millimeter na Kelvin"@sl,
        "Millimetre per Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI base unit metre divided by the SI base unit kelvin"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliM ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAA864"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA864"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI base unit metre divided by the SI base unit kelvin"^^xsd:string ;
    qudt:symbol "mm/K"^^xsd:string ;
    qudt:ucumCode "mm.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F53"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliM-PER-M a qudt:Unit ;
    rdfs:label "Millimetre per Metre"^^xsd:string,
        "Millimetr na Metr"@cs,
        "Millimeter pro Meter"@de,
        "Millimetre per Metre"@en,
        "Millimeter per Meter"@en-us,
        "Millimetro por Metro"@es,
        "Millimètre par Mètre"@fr,
        "Millimetro per Metro"@it,
        "Millimeter per Meter"@ms,
        "Millimetr na Metr"@pl,
        "Millimetru pe Metru"@ro,
        "Millimeter na Meter"@sl,
        "Millimetre per Metre"@tr ;
    dcterms:description "0.001-fold of SI base unit metre divided by SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliM ] ;
    qudt:hasQuantityKind qudtqk:Gradient ;
    qudt:iec61360Code "0112/2///62720#UAC001"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC001"^^xsd:anyURI ;
    qudt:symbol "mm/m"^^xsd:string ;
    qudt:ucumCode "mm.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliM-PER-M2 a qudt:Unit ;
    rdfs:label "Millimetre per Square Metre"^^xsd:string,
        "Millimetr na Čtvereční Metr"@cs,
        "Millimeter pro Quadratmeter"@de,
        "Millimetre per Square Metre"@en,
        "Millimeter per Square Meter"@en-us,
        "Millimetro por Metro Cuadrado"@es,
        "Millimètre par Mètre Carré"@fr,
        "Millimetro per Metro Quadrato"@it,
        "Millimeter per Meter Persegi"@ms,
        "Millimetr na Metr Kwadratowy"@pl,
        "Millimetru pe Metru Pătrat"@ro,
        "Millimeter na Kvadratni Meter"@sl,
        "Millimetre per Metrekare"@tr ;
    dcterms:description "0,001-fold of the SI base unit meter divided by the power of the SI base unit metre with the exponent 2"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:plainTextDescription "0,001-fold of the SI base unit meter divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:symbol "mm/m²"^^xsd:string ;
    qudt:ucumCode "mm.m-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliM3-PER-M3 a qudt:Unit ;
    rdfs:label "Cubic Millimetre per Cubic Metre"^^xsd:string,
        "Millimetr Krychlový na Metr Krychlový"@cs,
        "Kubikmillimeter pro Kubikmeter"@de,
        "Cubic Millimetre per Cubic Metre"@en,
        "Cubic Millimeter per Cubic Meter"@en-us,
        "Millimetro Cúbico por Metro Cúbico"@es,
        "Millimètre Cube par Mètre Cube"@fr,
        "Millimetro Cubo per Metro Cubo"@it,
        "Millimeter Kubik per Meter Kubik"@ms,
        "Millimetr Sześcienny na Metr Sześcienny"@pl,
        "Millimetru Cub pe Metru Cub"@ro,
        "Kubični Millimeter na Kubični Meter"@sl,
        "Millimetreküp per Metreküp"@tr ;
    dcterms:description "volume ratio consisting of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:VolumeFraction ;
    qudt:iec61360Code "0112/2///62720#UAA874"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA874"^^xsd:anyURI ;
    qudt:plainTextDescription "volume ratio consisting of the 0.000000001-fold of the power of the SI base unit metre with the exponent 3 divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:symbol "mm³/m³"^^xsd:string ;
    qudt:ucumCode "mm3.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L21"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106629987> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-M2 a qudt:Unit ;
    rdfs:label "Millimole per Square Metre"^^xsd:string,
        "Millimol na Čtvereční Metr"@cs,
        "Millimol pro Quadratmeter"@de,
        "Millimole per Square Metre"@en,
        "Millimole per Square Meter"@en-us,
        "Millimol por Metro Cuadrado"@es,
        "Millimole par Mètre Carré"@fr,
        "Millimole per Metro Quadrato"@it,
        "Millimole per Meter Persegi"@ms,
        "Millimol na Metr Kwadratowy"@pl,
        "Millimol pe Metru Pătrat"@ro,
        "Millimol na Kvadratni Meter"@sl,
        "Millimol per Metrekare"@tr ;
    dcterms:description "Unavailable."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mmol/m²"^^xsd:string ;
    qudt:ucumCode "mmol.m-2"^^qudt:UCUMcs ;
    qudt:udunitsCode "DU"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Millimole per Square Metre Day"^^xsd:string,
        "Millimole per Square Metre Day"@en,
        "Millimole per Square Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "mmol/(m²·d)"^^xsd:string ;
    qudt:ucumCode "mmol.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-M2-HR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Millimole per Square Metre Hour"^^xsd:string,
        "Millimole per Square Metre Hour"@en,
        "Millimole per Square Meter Hour"@en-us ;
    dcterms:description "Hourly molar flux equivalent to .001 moles per meter squared per hour, typically used to express an areal production (if plane is a surface of the earth or ocean)."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:MolarFluxDensity ;
    qudt:plainTextDescription "Hourly molar flux equivalent to .001 moles per meter squared per hour, typically used to express an areal production (if plane is a surface of the earth or ocean)."^^xsd:string ;
    qudt:symbol "mmol/(m²·h)"^^xsd:string ;
    qudt:ucumCode "mmol.m-2.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-M2-SEC a qudt:Unit ;
    rdfs:label "Millimole per Square Metre Second"^^xsd:string,
        "Millimol na Čtvereční Metr Sekunda"@cs,
        "Millimol pro Quadratmeter Sekunde"@de,
        "Millimole per Square Metre Second"@en,
        "Millimole per Square Meter Second"@en-us,
        "Millimol por Metro Cuadrado Segundo"@es,
        "Millimole par Mètre Carré Seconde"@fr,
        "Millimole per Metro Quadrato Secondo"@it,
        "Millimole per Meter Persegi Saat"@ms,
        "Millimol na Metr Kwadratowy Sekunda"@pl,
        "Millimol pe Metru Pătrat Secundă"@ro,
        "Millimol na Kvadratni Meter Sekunda"@sl,
        "Millimol per Metrekare Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "mmol/(m²·s)"^^xsd:string ;
    qudt:ucumCode "mmol.m-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-M3-DAY a qudt:Unit ;
    rdfs:label "Millimole per Cubic Metre Day"^^xsd:string,
        "Millimole per Cubic Metre Day"@en,
        "Millimole per Cubic Meter Day"@en-us ;
    dcterms:description "Unavailable."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "mmol/(m³·d)"^^xsd:string ;
    qudt:ucumCode "mmol.m-3.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliMOL-PER-MOL a qudt:Unit ;
    rdfs:label "Millimole per Mole"^^xsd:string,
        "Millimol na Mol"@cs,
        "Millimol pro Mol"@de,
        "Millimole per Mole"@en,
        "Millimol por Mol"@es,
        "Millimole par Mole"@fr,
        "Millimole per Mole"@it,
        "Millimole per Mole"@ms,
        "Millimol na Mol"@pl,
        "Millimol pe Mol"@ro,
        "Millimol na Mol"@sl,
        "Millimol per Mol"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:symbol "mmol/mol"^^xsd:string ;
    qudt:ucumCode "mmol.mol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliOHM-M a qudt:Unit ;
    rdfs:label "Milliohm Metre"^^xsd:string,
        "Milliohm Metr"@cs,
        "Milliohm Meter"@de,
        "Milliohm Metre"@en,
        "Milliohm Meter"@en-us,
        "Milliohmio Metro"@es,
        "Milliohm Mètre"@fr,
        "Milliohm Metro"@it,
        "Milliohm Meter"@ms,
        "Milliom Metr"@pl,
        "Milliohm Metru"@ro,
        "Milliohm Meter"@sl,
        "Milliohm Metre"@tr ;
    dcterms:description "0.001-fold of the product of the SI derived unit ohm and the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA742"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA742"^^xsd:anyURI ;
    qudt:symbol "mΩ·m"^^xsd:string ;
    qudt:ucumCode "mOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliOHM-PER-BAR a qudt:Unit ;
    rdfs:label "Milliohm per Bar"^^xsd:string,
        "Milliohm per Bar"@en ;
    dcterms:description "0.001-fold of the SI derived unit ohm per metrical non SI unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00000001 ;
    qudt:conversionMultiplierSN 1e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliOHM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD878"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD878"^^xsd:anyURI ;
    qudt:symbol "mΩ/bar"^^xsd:string ;
    qudt:ucumCode "mOhm.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliOHM-PER-K a qudt:Unit ;
    rdfs:label "Milliohm per Kelvin"^^xsd:string,
        "Milliohm na Kelvin"@cs,
        "Milliohm pro Kelvin"@de,
        "Milliohm per Kelvin"@en,
        "Milliohmio por Kelvin"@es,
        "Milliohm par Kelvin"@fr,
        "Milliohm per Kelvin"@it,
        "Milliohm per Kelvin"@ms,
        "Milliom na Kelwin"@pl,
        "Milliohm pe Kelvin"@ro,
        "Milliohm na Kelvin"@sl,
        "Milliohm per Kelvin"@tr ;
    dcterms:description "0.001-fold of the SI derived unit ohm per SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliOHM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD874"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD874"^^xsd:anyURI ;
    qudt:symbol "mΩ/K"^^xsd:string ;
    qudt:ucumCode "mOhm.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliOHM-PER-M a qudt:Unit ;
    rdfs:label "Milliohm per Metre"^^xsd:string,
        "Milliohm na Metr"@cs,
        "Milliohm pro Meter"@de,
        "Milliohm per Metre"@en,
        "Milliohm per Meter"@en-us,
        "Milliohmio por Metro"@es,
        "Milliohm par Mètre"@fr,
        "Milliohm per Metro"@it,
        "Milliohm per Meter"@ms,
        "Milliom na Metr"@pl,
        "Milliohm pe Metru"@ro,
        "Milliohm na Meter"@sl,
        "Milliohm per Metre"@tr ;
    dcterms:description "0.001-fold of the SI derived unit ohm divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA743"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA743"^^xsd:anyURI ;
    qudt:symbol "mΩ/m"^^xsd:string ;
    qudt:ucumCode "mOhm.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F54"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliOSM-PER-KiloGM a qudt:Unit ;
    rdfs:label "Milliosmole per Kilogram"^^xsd:string,
        "Milliosmole per Kilogram"@en ;
    dcterms:description "0.001-fold of the unit Osmol divided by the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliOSM ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:symbol "mOsmol/kg"^^xsd:string ;
    qudt:ucumCode "mOsmol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliPA-PER-M a qudt:Unit ;
    rdfs:label "Millipascal per Metre"^^xsd:string,
        "Millipascal na Metr"@cs,
        "Millipascal pro Meter"@de,
        "Millipascal per Metre"@en,
        "Millipascal per Meter"@en-us,
        "Millipascal por Metro"@es,
        "Millipascal par Mètre"@fr,
        "Millipascal per Metro"@it,
        "Millipascal per Meter"@ms,
        "Millipaskal na Metr"@pl,
        "Millipascal pe Metru"@ro,
        "Millipascal na Meter"@sl,
        "Millipascal per Metre"@tr ;
    dcterms:description "0.001-fold of the SI derived unit pascal divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB420"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB420"^^xsd:anyURI ;
    qudt:symbol "mPa/m"^^xsd:string ;
    qudt:ucumCode "mPa.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliPA-SEC-PER-K a qudt:Unit ;
    rdfs:label "Millipascal Second per Kelvin"^^xsd:string,
        "Millipascal Sekunda na Kelvin"@cs,
        "Millipascal Sekunde pro Kelvin"@de,
        "Millipascal Second per Kelvin"@en,
        "Millipascal Segundo por Kelvin"@es,
        "Millipascal Seconde par Kelvin"@fr,
        "Millipascal Secondo per Kelvin"@it,
        "Millipascal Saat per Kelvin"@ms,
        "Millipaskal Sekunda na Kelwin"@pl,
        "Millipascal Secundă pe Kelvin"@ro,
        "Millipascal Sekunda na Kelvin"@sl,
        "Millipascal Saniye per Kelvin"@tr ;
    dcterms:description "product of the 0.001-fold of the SI derived unit pascal and the SI base unit second divided by the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliPA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA798"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA798"^^xsd:anyURI ;
    qudt:symbol "mPa·s/K"^^xsd:string ;
    qudt:ucumCode "mPa.s.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliR_man a qudt:Unit ;
    rdfs:label "Milli Roentgen Equivalent Man"^^xsd:string,
        "Milli Roentgen Equivalent Man"@en ;
    dcterms:description "The roentgen equivalent man (or rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are measures of the health effect of low levels of ionizing radiation on the human body."^^rdf:HTML ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T-2D0> ;
    qudt:hasQuantityKind qudtqk:DoseEquivalent ;
    qudt:iec61360Code "0112/2///62720#UAA898"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA898"^^xsd:anyURI,
        "https://en.wikipedia.org/wiki/Roentgen_equivalent_man"^^xsd:anyURI ;
    qudt:plainTextDescription "The roentgen equivalent man (or rem) is a CGS unit of equivalent dose, effective dose, and committed dose, which are measures of the health effect of low levels of ionizing radiation on the human body."^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Milli> ;
    qudt:scalingOf unit:R_man ;
    qudt:symbol "mrem"^^xsd:string ;
    qudt:ucumCode "mREM"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L31"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106617364> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-PER-M a qudt:Unit ;
    rdfs:label "Millivolt per Metre"^^xsd:string,
        "Millivolt na Metr"@cs,
        "Millivolt pro Meter"@de,
        "Millivolt per Metre"@en,
        "Millivolt per Meter"@en-us,
        "Millivoltio por Metro"@es,
        "Millivolt par Mètre"@fr,
        "Millivolt per Metro"@it,
        "Millivolt per Meter"@ms,
        "Milliwolt na Metr"@pl,
        "Millivolt pe Metru"@ro,
        "Millivolt na Meter"@sl,
        "Millivolt per Metre"@tr ;
    dcterms:description "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA805"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA805"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000001-fold of the SI derived unit volt divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "mV/m"^^xsd:string ;
    qudt:ucumCode "mV.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C30"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-PER-MIN a qudt:Unit ;
    rdfs:label "Millivolt per Minute"^^xsd:string,
        "Millivolt per Minute"@en ;
    dcterms:description "0.001-fold of the SI derived unit volt divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:PowerPerElectricCharge ;
    qudt:iec61360Code "0112/2///62720#UAA806"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA806"^^xsd:anyURI ;
    qudt:plainTextDescription "0.001-fold of the SI derived unit volt divided by the unit minute"^^xsd:string ;
    qudt:symbol "mV/min"^^xsd:string ;
    qudt:ucumCode "mV.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H62"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliV-PER-V a qudt:Unit ;
    rdfs:label "Millivolt per Volt"^^xsd:string,
        "Millivolt na Volt"@cs,
        "Millivolt pro Volt"@de,
        "Millivolt per Volt"@en,
        "Millivoltio por Voltio"@es,
        "Millivolt par Volt"@fr,
        "Millivolt per Volt"@it,
        "Millivolt per Volt"@ms,
        "Milliwolt na Wolt"@pl,
        "Millivolt pe Volt"@ro,
        "Millivolt na Volt"@sl,
        "Millivolt per Volt"@tr ;
    dcterms:description "0.001-fold of the SI derived unit volt per SI derived unit volt"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliV ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD863"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD863"^^xsd:anyURI ;
    qudt:symbol "mV/V"^^xsd:string ;
    qudt:ucumCode "mV.V-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliW-PER-CentiM2-MicroM-SR a qudt:Unit ;
    rdfs:label "Milliwatt per Square Centimetre Micrometre Steradian"^^xsd:string,
        "Milliwatt na Čtvereční Centimetr Micrometr Steradián"@cs,
        "Milliwatt pro Quadratcentimeter Micrometer Steradiant"@de,
        "Milliwatt per Square Centimetre Micrometre Steradian"@en,
        "Milliwatt per Square Centimeter Micrometer Steradian"@en-us,
        "Millivatio por Centimetro Cuadrado Micrometro Estereorradián"@es,
        "Milliwatt par Centimètre Carré Micromètre Stéradian"@fr,
        "Milliwatt per Centimetro Quadrato Micrometro Steradiante"@it,
        "Milliwatt per Centimeter Persegi Micrometer Steradian"@ms,
        "Milliwat na Centimetr Kwadratowy Micrometr Steradian"@pl,
        "Milliwatt pe Centimetru Pătrat Micrometru Steradian"@ro,
        "Milliwatt na Kvadratni Centimeter Micrometer Steradian"@sl,
        "Milliwatt per Centimetrekare Micrometre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 10000000.0 ;
    qudt:conversionMultiplierSN 1e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "mW/(cm²·μm·sr)"^^xsd:string ;
    qudt:ucumCode "mW.cm-2.um-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliW-PER-M2-NanoM a qudt:Unit ;
    rdfs:label "Milliwatt per Square Metre Nanometre"^^xsd:string,
        "Milliwatt na Čtvereční Metr Nanometr"@cs,
        "Milliwatt pro Quadratmeter Nanometer"@de,
        "Milliwatt per Square Metre Nanometre"@en,
        "Milliwatt per Square Meter Nanometer"@en-us,
        "Millivatio por Metro Cuadrado Nanometro"@es,
        "Milliwatt par Mètre Carré Nanomètre"@fr,
        "Milliwatt per Metro Quadrato Nanometro"@it,
        "Milliwatt per Meter Persegi Nanometer"@ms,
        "Milliwat na Metr Kwadratowy Nanometr"@pl,
        "Milliwatt pe Metru Pătrat Nanometru"@ro,
        "Milliwatt na Kvadratni Meter Nanometer"@sl,
        "Milliwatt per Metrekare Nanometre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "mW/(m²·nm)"^^xsd:string ;
    qudt:ucumCode "mW.m-2.nm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:MilliW-PER-M2-NanoM-SR a qudt:Unit ;
    rdfs:label "Milliwatt per Square Metre Nanometre Steradian"^^xsd:string,
        "Milliwatt na Čtvereční Metr Nanometr Steradián"@cs,
        "Milliwatt pro Quadratmeter Nanometer Steradiant"@de,
        "Milliwatt per Square Metre Nanometre Steradian"@en,
        "Milliwatt per Square Meter Nanometer Steradian"@en-us,
        "Millivatio por Metro Cuadrado Nanometro Estereorradián"@es,
        "Milliwatt par Mètre Carré Nanomètre Stéradian"@fr,
        "Milliwatt per Metro Quadrato Nanometro Steradiante"@it,
        "Milliwatt per Meter Persegi Nanometer Steradian"@ms,
        "Milliwat na Metr Kwadratowy Nanometr Steradian"@pl,
        "Milliwatt pe Metru Pătrat Nanometru Steradian"@ro,
        "Milliwatt na Kvadratni Meter Nanometer Steradian"@sl,
        "Milliwatt per Metrekare Nanometre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MilliW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiance ;
    qudt:symbol "mW/(m²·nm·sr)"^^xsd:string ;
    qudt:ucumCode "mW.m-2.nm-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-PER-DEG-M a qudt:Unit ;
    rdfs:label "Newton Metre per Degree Metre"^^xsd:string,
        "Newton Metre per Degree Metre"@en,
        "Newton Meter per Degree Meter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 57.29577957855229894302178227976183 ;
    qudt:conversionMultiplierSN 5.729578e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ModulusOfRotationalSubgradeReaction ;
    qudt:plainTextDescription "A common unit for measuring the modulus of rotational subgrade reaction."^^xsd:string ;
    qudt:symbol "N·m/(°·m)"^^xsd:string ;
    qudt:ucumCode "N.m.deg-1.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-PER-M a qudt:Unit ;
    rdfs:label "Newton Metre per Metre"^^xsd:string,
        "Нютон Метър на Метър"@bg,
        "Newton Metr na Metr"@cs,
        "Newton Meter pro Meter"@de,
        "Νιούτον Μέτρο ανά Μέτρο"@el,
        "Newton Metre per Metre"@en,
        "Newton Meter per Meter"@en-us,
        "Newton Metro por Metro"@es,
        "Newton Mètre par Mètre"@fr,
        "Newton Metro per Metro"@it,
        "Newtonium Metrum per Metrum"@la,
        "Newton Meter per Meter"@ms,
        "Niuton Metr na Metr"@pl,
        "Newton Metro por Metro"@pt,
        "Newton Metru pe Metru"@ro,
        "Ньютон Метр на Метр"@ru,
        "Newton Meter na Meter"@sl,
        "Newton Metre per Metre"@tr ;
    dcterms:description "This is the SI unit for the rolling resistance, which is equivalent to drag force in newton"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:TorquePerLength ;
    qudt:iec61360Code "0112/2///62720#UAB463"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB463"^^xsd:anyURI ;
    qudt:plainTextDescription "This is the SI unit for the rolling resistance, which is equivalent to drag force in newton"^^xsd:string ;
    qudt:symbol "N·m/m"^^xsd:string ;
    qudt:ucumCode "N.m.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q27"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-PER-W0dot5 a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Newton Metre per Quintic Placeholder"^^xsd:string,
        "Newton Metre per Quintic Placeholder"@en,
        "Newton Meter per Quintic Placeholder"@en-us ;
    dcterms:description "product of the SI derived unit newton and the SI base unit metre divided by the square root out of the SI derived unit watt"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -5 ;
            qudt:hasUnit unit:W0dot ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA242"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA242"^^xsd:anyURI ;
    qudt:symbol "N·m/√W"^^xsd:string ;
    qudt:uneceCommonCode "H41"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M-SEC-PER-RAD a qudt:Unit ;
    rdfs:label "Newton Metre Second per Radian"^^xsd:string,
        "Нютон Метър Секунда на Радиан"@bg,
        "Newton Metr Sekunda na Radián"@cs,
        "Newton Meter Sekunde pro Radiant"@de,
        "Νιούτον Μέτρο Δευτερόλεπτο ανά Ακτίνιο"@el,
        "Newton Metre Second per Radian"@en,
        "Newton Meter Second per Radian"@en-us,
        "Newton Metro Segundo por Radián"@es,
        "Newton Mètre Seconde par Radian"@fr,
        "Newton Metro Secondo per Radiante"@it,
        "Newtonium Metrum Secundum per Radian"@la,
        "Newton Meter Saat per Radian"@ms,
        "Niuton Metr Sekunda na Radian"@pl,
        "Newton Metro Segundo por Radiano"@pt,
        "Newton Metru Secundă pe Radian"@ro,
        "Ньютон Метр Секунда на Радиан"@ru,
        "Newton Meter Sekunda na Radian"@sl,
        "Newton Metre Saniye per Radyan"@tr ;
    dcterms:description "Newton metre seconds measured per radian"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:AngularMomentumPerAngle ;
    qudt:plainTextDescription "Newton metre seconds measured per radian"^^xsd:string ;
    qudt:symbol "N·m·s/rad"^^xsd:string ;
    qudt:ucumCode "N.m.s.rad-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-M2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton Square Metre"^^xsd:string,
        "Нютон Квадратен Метър"@bg,
        "Newton Čtvereční Metr"@cs,
        "Newton Quadratmeter"@de,
        "Νιούτον Τετραγωνικό Μέτρο"@el,
        "Newton Square Metre"@en,
        "Newton Square Meter"@en-us,
        "Newton Metro Cuadrado"@es,
        "Newton Mètre Carré"@fr,
        "Newton Metro Quadrato"@it,
        "Newtonium Metrum Quadratum"@la,
        "Newton Meter Persegi"@ms,
        "Niuton Metr Kwadratowy"@pl,
        "Newton Metro Quadrado"@pt,
        "Newton Metru Pătrat"@ro,
        "Ньютон Квадратный Метр"@ru,
        "Newton Kvadratni Meter"@sl,
        "Newton Metrekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:WarpingMoment ;
    qudt:symbol "N·m²"^^xsd:string ;
    qudt:ucumCode "N.m2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-PER-A a qudt:Unit ;
    rdfs:label "Newton per Ampere"^^xsd:string,
        "Нютон на Ампер"@bg,
        "Newton na Ampér"@cs,
        "Newton pro Ampere"@de,
        "Νιούτον ανά Αμπέρ"@el,
        "Newton per Ampere"@en,
        "Newton por Amperio"@es,
        "Newton par Ampère"@fr,
        "Newton per Ampere"@it,
        "Newtonium per Amperium"@la,
        "Newton per Ampere"@ms,
        "Niuton na Amper"@pl,
        "Newton por Ampere"@pt,
        "Newton pe Amper"@ro,
        "Ньютон на Ампер"@ru,
        "Newton na Amper"@sl,
        "Newton per Amper"@tr ;
    dcterms:description "SI derived unit newton divided by the SI base unit ampere"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:A ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind qudtqk:MagneticFluxPerLength ;
    qudt:iec61360Code "0112/2///62720#UAA236"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA236"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit newton divided by the SI base unit ampere"^^xsd:string ;
    qudt:symbol "N/A"^^xsd:string ;
    qudt:ucumCode "N.A-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H40"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-PER-C a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton per Coulomb"^^xsd:string,
        "Нютон на Кулон"@bg,
        "Newton na Coulomb"@cs,
        "Newton pro Coulomb"@de,
        "Νιούτον ανά Κουλόμπ"@el,
        "Newton per Coulomb"@en,
        "Newton por Culombio"@es,
        "Newton par Coulomb"@fr,
        "Newton per Coulomb"@it,
        "Newtonium per Coulombium"@la,
        "Newton per Coulomb"@ms,
        "Niuton na Kulomb"@pl,
        "Newton por Coulomb"@pt,
        "Newton pe Coulomb"@ro,
        "Ньютон на Кулон"@ru,
        "Newton na Coulomb"@sl,
        "Newton per Coulomb"@tr ;
    dcterms:description "Newton Per Coulomb ( N/C) is a unit in the category of Electric field strength. It is also known as newtons/coulomb. Newton Per Coulomb ( N/C) has a dimension of MLT-3I-1 where $M$ is mass, $L$ is length, $T$ is time, and $I$ is electric current. It essentially the same as the corresponding standard SI unit V/m."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$N/C$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind qudtqk:ForcePerElectricCharge ;
    qudt:symbol "N/C"^^xsd:string ;
    qudt:ucumCode "N.C-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-PER-KiloGM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton per Kilogram"^^xsd:string,
        "Нютон на Килограм"@bg,
        "Newton na Kilogram"@cs,
        "Newton pro Kilogramm"@de,
        "Νιούτον ανά Χιλιόγραμμο"@el,
        "Newton per Kilogram"@en,
        "Newton por Kilogramo"@es,
        "Newton par Kilogramme"@fr,
        "Newton per Chilogrammo"@it,
        "Newtonium per Chiliogramma"@la,
        "Newton per Kilogram"@ms,
        "Niuton na Kilogram"@pl,
        "Newton por Quilograma"@pt,
        "Newton pe Kilogram"@ro,
        "Ньютон на Килограмм"@ru,
        "Newton na Kilogram"@sl,
        "Newton per Kilogram"@tr ;
    dcterms:description "Gravitational field strength at a point is the gravitational force per unit mass at that point. It is a vector and its S.I. unit is N kg-1."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$N/kg$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:ThrustToMassRatio ;
    qudt:symbol "N/kg"^^xsd:string ;
    qudt:ucumCode "N.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-SEC-PER-M a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton Second per Metre"^^xsd:string,
        "Нютон Секунда на Метър"@bg,
        "Newton Sekunda na Metr"@cs,
        "Newton Sekunde pro Meter"@de,
        "Νιούτον Δευτερόλεπτο ανά Μέτρο"@el,
        "Newton Second per Metre"@en,
        "Newton Second per Meter"@en-us,
        "Newton Segundo por Metro"@es,
        "Newton Seconde par Mètre"@fr,
        "Newton Secondo per Metro"@it,
        "Newtonium Secundum per Metrum"@la,
        "Newton Saat per Meter"@ms,
        "Niuton Sekunda na Metr"@pl,
        "Newton Segundo por Metro"@pt,
        "Newton Secundă pe Metru"@ro,
        "Ньютон Секунда на Метр"@ru,
        "Newton Sekunda na Meter"@sl,
        "Newton Saniye per Metre"@tr ;
    dcterms:description "Newton second measured per metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:expression "$N-s/m$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ] ;
    qudt:hasQuantityKind qudtqk:MassPerTime ;
    qudt:iec61360Code "0112/2///62720#UAA252"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA252"^^xsd:anyURI ;
    qudt:plainTextDescription "Newton second measured per metre"^^xsd:string ;
    qudt:symbol "N·s/m"^^xsd:string ;
    qudt:ucumCode "N.s.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C58"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q87049028> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-SEC-PER-M3 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Newton Second per Cubic Metre"^^xsd:string,
        "Нютон Секунда на Кубичен Метър"@bg,
        "Newton Sekunda na Metr Krychlový"@cs,
        "Newton Sekunde pro Kubikmeter"@de,
        "Νιούτον Δευτερόλεπτο ανά Κυβικό Μέτρο"@el,
        "Newton Second per Cubic Metre"@en,
        "Newton Second per Cubic Meter"@en-us,
        "Newton Segundo por Metro Cúbico"@es,
        "Newton Seconde par Mètre Cube"@fr,
        "Newton Secondo per Metro Cubo"@it,
        "Newtonium Secundum per Metrum Cubicum"@la,
        "Newton Saat per Meter Kubik"@ms,
        "Niuton Sekunda na Metr Sześcienny"@pl,
        "Newton Segundo por Metro Cúbico"@pt,
        "Newton Secundă pe Metru Cub"@ro,
        "Ньютон Секунда на Кубический Метр"@ru,
        "Newton Sekunda na Kubični Meter"@sl,
        "Newton Saniye per Metreküp"@tr ;
    dcterms:description """
  The SI unit of specific acoustic impedance. 
  When sound waves pass through any physical substance the pressure of the waves causes the particles of the substance to move. 
  The sound specific impedance is the ratio between the sound pressure and the particle velocity it produces. 
  The specific impedance is $1 N \\cdot s \\cdot m^{-3}$ if unit pressure produces unit velocity.
  """^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$N \\cdot s \\cdot m^{-3}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:SpecificAcousticImpedance ;
    qudt:latexSymbol "$N \\cdot s \\cdot m^{-3}$"^^qudt:LatexString ;
    qudt:symbol "N·s/m³"^^xsd:string ;
    qudt:ucumCode "N.s.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:N-SEC-PER-RAD a qudt:Unit ;
    rdfs:label "Newton Second per Radian"^^xsd:string,
        "Нютон Секунда на Радиан"@bg,
        "Newton Sekunda na Radián"@cs,
        "Newton Sekunde pro Radiant"@de,
        "Νιούτον Δευτερόλεπτο ανά Ακτίνιο"@el,
        "Newton Second per Radian"@en,
        "Newton Seconds per Radian"@en-us,
        "Newton Segundo por Radián"@es,
        "Newton Seconde par Radian"@fr,
        "Newton Secondo per Radiante"@it,
        "Newtonium Secundum per Radian"@la,
        "Newton Saat per Radian"@ms,
        "Niuton Sekunda na Radian"@pl,
        "Newton Segundo por Radiano"@pt,
        "Newton Secundă pe Radian"@ro,
        "Ньютон Секунда на Радиан"@ru,
        "Newton Sekunda na Radian"@sl,
        "Newton Saniye per Radyan"@tr ;
    dcterms:description "Newton seconds measured per radian"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:conversionOffset 0.0 ;
    qudt:conversionOffsetSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:N ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:MomentumPerAngle ;
    qudt:plainTextDescription "Newton seconds measured per radian"^^xsd:string ;
    qudt:symbol "N·s/rad"^^xsd:string ;
    qudt:ucumCode "N.s.rad-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NAT-PER-SEC a qudt:Unit ;
    rdfs:label "Nat per Second"^^xsd:string,
        "Nat per Second"@en ;
    dcterms:description "\"Nat per Second\" is information rate in natural units."^^rdf:HTML ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$nat-per-sec$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NAT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:InformationFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB348"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Nat?oldid=474010287"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB348"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
    qudt:symbol "nat/s"^^xsd:string ;
    qudt:uneceCommonCode "Q19"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q106467068> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NP-PER-SEC a qudt:Unit ;
    rdfs:label "Neper per Second"^^xsd:string,
        "Neper per Second"@en ;
    dcterms:description "unit neper divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NP ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA254"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA254"^^xsd:anyURI ;
    qudt:symbol "Np/s"^^xsd:string ;
    qudt:ucumCode "Np.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NTU a qudt:Unit ;
    rdfs:label "Nephelometry Turbidity Unit"^^xsd:string,
        "Nephelometry Turbidity Unit"@en ;
    dcterms:description "\"Nephelometry Turbidity Unit\" is a C.G.S System unit for  'Turbidity' expressed as $NTU$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Turbidity ;
    qudt:symbol "NTU"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-CentiM-KiloYR a qudt:Unit ;
    rdfs:label "Number per Centimetre Kiloyear"^^xsd:string,
        "Number per Centimetre Kiloyear"@en,
        "Number per Centimeter Kiloyear"@en-us ;
    qudt:conversionMultiplier 0.000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloYR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "#/(cm·ka)"^^xsd:string ;
    qudt:ucumCode "{#}.cm-1.ka-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-HA a qudt:Unit ;
    rdfs:label "Number per Hectare"^^xsd:string,
        "Number per Hectare"@en ;
    dcterms:description "Count of an entity or phenomenon's occurrence in 10,000 times the SI unit area (square metre)."@en ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ] ;
    qudt:hasQuantityKind qudtqk:ParticleFluence ;
    qudt:symbol "#/ha"^^xsd:string ;
    qudt:ucumCode "{#}.har-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-HA-YR a qudt:Unit ;
    rdfs:label "Number per Hectare Year"^^xsd:string,
        "Number per Hectare Year"@en ;
    qudt:conversionMultiplier 0.000000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HA ] ;
    qudt:hasQuantityKind qudtqk:Flux ;
    qudt:plainTextDescription "number divided by the unit hectare and by the unit year"^^xsd:string ;
    qudt:symbol "#/(ha·a)"^^xsd:string ;
    qudt:ucumCode "{#}.har-1.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-HectoGM a qudt:Unit ;
    rdfs:label "Number per Hectogram"^^xsd:string,
        "Number per Hectogram"@en ;
    dcterms:description "Count of an entity or phenomenon occurrence in one 10th of the SI unit of mass (kilogram)."@en ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HectoGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "#/hg"^^xsd:string ;
    qudt:ucumCode "{#}.hg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-KiloGM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Number per Kilogram"^^xsd:string,
        "Number per Kilogram"@en ;
    dcterms:description "Count of an entity or phenomenon's occurrence divided by SI base unit kilogram"@en ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:plainTextDescription "Count of an entity or phenomenon's occurrence divided by SI base unit kilogram"^^xsd:string ;
    qudt:symbol "#/kg"^^xsd:string ;
    qudt:ucumCode "{#}.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-KiloM2 a qudt:Unit ;
    rdfs:label "Number per Square Kilometre"^^xsd:string,
        "Number per Square Kilometre"@en,
        "Number per Square Kilometer"@en-us ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ] ;
    qudt:hasQuantityKind qudtqk:ParticleFluence ;
    qudt:symbol "#/km²"^^xsd:string ;
    qudt:ucumCode "{#}.km-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NUM-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Number per Square Metre Day"^^xsd:string,
        "Number per Square Metre Day"@en,
        "Number per Square Meter Day"@en-us ;
    qudt:conversionMultiplier 0.00001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Flux ;
    qudt:symbol "#/(m²·d)"^^xsd:string ;
    qudt:ucumCode "{#}.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoA-PER-K a qudt:Unit ;
    rdfs:label "Nanoampere per Kelvin"^^xsd:string,
        "Nanoampér na Kelvin"@cs,
        "Nanoampere pro Kelvin"@de,
        "Nanoampere per Kelvin"@en,
        "Nanoamperio por Kelvin"@es,
        "Nanoampère par Kelvin"@fr,
        "Nanoampere per Kelvin"@it,
        "Nanoampere per Kelvin"@ms,
        "Nanoamper na Kelwin"@pl,
        "Nanoamper pe Kelvin"@ro,
        "Nanoamper na Kelvin"@sl,
        "Nanoamper per Kelvin"@tr ;
    dcterms:description "0.000000001-fold of the SI base unit ampere divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentPerTemperature ;
    qudt:iec61360Code "0112/2///62720#UAD899"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD899"^^xsd:anyURI ;
    qudt:symbol "nA/K"^^xsd:string ;
    qudt:ucumCode "nA.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoBQ-PER-L a qudt:Unit ;
    rdfs:label "Nanobecquerel per Litre"^^xsd:string,
        "Nanobecquerel per Litre"@en,
        "Nanobecquerel per Liter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoBQ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:ActivityConcentration ;
    qudt:symbol "nBq/L"^^xsd:string ;
    qudt:ucumCode "nBq.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoFARAD-PER-M a qudt:Unit ;
    rdfs:label "Nanofarad per Metre"^^xsd:string,
        "Nanofarad na Metr"@cs,
        "Nanofarad pro Meter"@de,
        "Nanofarad per Metre"@en,
        "Nanofarad per Meter"@en-us,
        "Nanofaradio por Metro"@es,
        "Nanofarad par Mètre"@fr,
        "Nanofarad per Metro"@it,
        "Nanofarad per Meter"@ms,
        "Nanofarad na Metr"@pl,
        "Nanofarad pe Metru"@ro,
        "Nanofarad na Meter"@sl,
        "Nanofarad per Metre"@tr ;
    dcterms:description "0.000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoFARAD ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:iec61360Code "0112/2///62720#UAA904"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA904"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "nF/m"^^xsd:string ;
    qudt:ucumCode "nF.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C42"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoGM-PER-DAY a qudt:Unit ;
    rdfs:label "Nanogram per Day"^^xsd:string,
        "Nanogram per Day"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoGM ] ;
    qudt:hasQuantityKind qudtqk:MassPerTime ;
    qudt:symbol "ng/d"^^xsd:string ;
    qudt:ucumCode "ng.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoGM-PER-M2-PA-SEC a qudt:Unit ;
    rdfs:label "Nanogram per Square Metre Pascal Second"^^xsd:string,
        "Nanogram na Čtvereční Metr Pascal Sekunda"@cs,
        "Nanogramm pro Quadratmeter Pascal Sekunde"@de,
        "Nanogram per Square Metre Pascal Second"@en,
        "Nanogram per Square Meter Pascal Second"@en-us,
        "Nanogramo por Metro Cuadrado Pascal Segundo"@es,
        "Nanogramme par Mètre Carré Pascal Seconde"@fr,
        "Nanogrammo per Metro Quadrato Pascal Secondo"@it,
        "Nanogram per Meter Persegi Pascal Saat"@ms,
        "Nanogram na Metr Kwadratowy Paskal Sekunda"@pl,
        "Nanogram pe Metru Pătrat Pascal Secundă"@ro,
        "Nanogram na Kvadratni Meter Pascal Sekunda"@sl,
        "Nanogram per Metrekare Pascal Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoGM ] ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ;
    qudt:symbol "ng/(m²·Pa·s)"^^xsd:string ;
    qudt:ucumCode "ng.m-2.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoKAT-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanokatal per Litre"^^xsd:string,
        "Nanokatal per Litre"@en,
        "Nanokatal per Liter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoKAT ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "nkat/L"^^xsd:string ;
    qudt:ucumCode "nkat.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoM-PER-CentiM-MegaPA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanometre per Centimetre Megapascal"^^xsd:string,
        "Nanometr na Centimetr Megapascal"@cs,
        "Nanometer pro Centimeter Megapascal"@de,
        "Nanometre per Centimetre Megapascal"@en,
        "Nanometer per Centimeter Megapascal"@en-us,
        "Nanometro por Centimetro Megapascal"@es,
        "Nanomètre par Centimètre Megapascal"@fr,
        "Nanometro per Centimetro Megapascal"@it,
        "Nanometer per Centimeter Megapascal"@ms,
        "Nanometr na Centimetr Megapaskal"@pl,
        "Nanometru pe Centimetru Megapascal"@ro,
        "Nanometer na Centimeter Megapascal"@sl,
        "Nanometre per Centimetre Megapascal"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000001 ;
    qudt:conversionMultiplierSN 1e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MegaPA ] ;
    qudt:hasQuantityKind qudtqk:StressOpticCoefficient ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:siUnitsExpression "nm/cm/MPa"^^xsd:string ;
    qudt:symbol "nm/(cm·MPa)"^^xsd:string ;
    qudt:ucumCode "nm.cm-1.MPa-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoM-PER-CentiM-PSI a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanometre per Centimetre Psi"^^xsd:string,
        "Nanometre per Centimetre Psi"@en,
        "Nanometer per Centimeter Psi"@en-us ;
    qudt:conversionMultiplier 0.00000000001450377312227268702148557236386593 ;
    qudt:conversionMultiplierSN 1.450377e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoM ] ;
    qudt:hasQuantityKind qudtqk:StressOpticCoefficient ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T0D0> ;
    qudt:siUnitsExpression "nm/cm/PSI"^^xsd:string ;
    qudt:symbol "nm/(cm·psi)"^^xsd:string ;
    qudt:ucumCode "nm.cm-1.[psi]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-CentiM3-HR a qudt:Unit ;
    rdfs:label "Nanomole per Cubic Centimetre Hour"^^xsd:string,
        "Nanomole per Cubic Centimetre Hour"@en,
        "Nanomole per Cubic Centimeter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "nmol/(cm³·h)"^^xsd:string ;
    qudt:ucumCode "nmol.cm-3.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-GM-HR a qudt:Unit ;
    rdfs:label "Nanomole per Gram Hour"^^xsd:string,
        "Nanomole per Gram Hour"@en ;
    dcterms:description "10^-9 SI unit of the quantity of matter per SI unit of mass per unit of time expressed in hour (3,600 seconds)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "nmol/(g·h)"^^xsd:string ;
    qudt:ucumCode "nmol.g-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-GM-SEC a qudt:Unit ;
    rdfs:label "Nanomole per Gram Second"^^xsd:string,
        "Nanomol na Gram Sekunda"@cs,
        "Nanomol pro Gramm Sekunde"@de,
        "Nanomole per Gram Second"@en,
        "Nanomol por Gramo Segundo"@es,
        "Nanomole par Gramme Seconde"@fr,
        "Nanomole per Grammo Secondo"@it,
        "Nanomole per Gram Saat"@ms,
        "Nanomol na Gram Sekunda"@pl,
        "Nanomol pe Gram Secundă"@ro,
        "Nanomol na Gram Sekunda"@sl,
        "Nanomol per Gram Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "nmol/(g·s)"^^xsd:string ;
    qudt:ucumCode "nmol.g-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Nanomole per Kilogram"^^xsd:string,
        "Nanomol na Kilogram"@cs,
        "Nanomol pro Kilogramm"@de,
        "Nanomole per Kilogram"@en,
        "Nanomol por Kilogramo"@es,
        "Nanomole par Kilogramme"@fr,
        "Nanomole per Chilogrammo"@it,
        "Nanomole per Kilogram"@ms,
        "Nanomol na Kilogram"@pl,
        "Nanomol pe Kilogram"@ro,
        "Nanomol na Kilogram"@sl,
        "Nanomol per Kilogram"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:symbol "nmol/kg"^^xsd:string ;
    qudt:ucumCode "nmol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-L-DAY a qudt:Unit ;
    rdfs:label "Nanomole per Litre Day"^^xsd:string,
        "Nanomole per Litre Day"@en,
        "Nanomole per Liter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "nmol/(L·d)"^^xsd:string ;
    qudt:ucumCode "nmol.L-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-L-HR a qudt:Unit ;
    rdfs:label "Nanomole per Litre Hour"^^xsd:string,
        "Nanomole per Litre Hour"@en,
        "Nanomole per Liter Hour"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "nmol/(L·h)"^^xsd:string ;
    qudt:ucumCode "nmol.L-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Nanomole per Square Metre Day"^^xsd:string,
        "Nanomole per Square Metre Day"@en,
        "Nanomole per Square Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "nmol/(m²·d)"^^xsd:string ;
    qudt:ucumCode "nmol.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-M2-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Nanomole per Square Metre Second"^^xsd:string,
        "Nanomol na Čtvereční Metr Sekunda"@cs,
        "Nanomol pro Quadratmeter Sekunde"@de,
        "Nanomole per Square Metre Second"@en,
        "Nanomole per Square Meter Second"@en-us,
        "Nanomol por Metro Cuadrado Segundo"@es,
        "Nanomole par Mètre Carré Seconde"@fr,
        "Nanomole per Metro Quadrato Secondo"@it,
        "Nanomole per Meter Persegi Saat"@ms,
        "Nanomol na Metr Kwadratowy Sekunda"@pl,
        "Nanomol pe Metru Pătrat Secundă"@ro,
        "Nanomol na Kvadratni Meter Sekunda"@sl,
        "Nanomol per Metrekare Saniye"@tr ;
    dcterms:description "Molar flux equivalent to 1e-9 moles per meter squared per sec."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:MolarFluxDensity ;
    qudt:plainTextDescription "Molar flux equivalent to 1e-9 moles per meter squared per sec."^^xsd:string ;
    qudt:symbol "nmol/(m²·s)"^^xsd:string ;
    qudt:ucumCode "nmol.m-2.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-MicroGM-HR a qudt:Unit ;
    rdfs:label "Nanomole per Microgram Hour"^^xsd:string,
        "Nanomole per Microgram Hour"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroGM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "nmol/(μg·h)"^^xsd:string ;
    qudt:ucumCode "nmol.ug-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-MicroMOL a qudt:Unit ;
    rdfs:label "Nanomole per Micromole"^^xsd:string,
        "Nanomol na Micromol"@cs,
        "Nanomol pro Micromol"@de,
        "Nanomole per Micromole"@en,
        "Nanomol por Micromol"@es,
        "Nanomole par Micromole"@fr,
        "Nanomole per Micromole"@it,
        "Nanomole per Micromole"@ms,
        "Nanomol na Micromol"@pl,
        "Nanomol pe Micromol"@ro,
        "Nanomol na Micromol"@sl,
        "Nanomol per Micromol"@tr ;
    dcterms:description "Unavailable."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:qkdvDenominator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:qkdvNumerator <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T0D0> ;
    qudt:symbol "nmol/μmol"^^xsd:string ;
    qudt:ucumCode "nmol.umol-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoMOL-PER-MicroMOL-DAY a qudt:Unit ;
    rdfs:label "Nanomole per Micromole Day"^^xsd:string,
        "Nanomole per Micromole Day"@en ;
    dcterms:description "Unavailable."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "nmol/(μmol·d)"^^xsd:string ;
    qudt:ucumCode "nmol.umol-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:NanoOHM-M a qudt:Unit ;
    rdfs:label "Nanoohm Metre"^^xsd:string,
        "Nanoohm Metr"@cs,
        "Nanoohm Meter"@de,
        "Nanoohm Metre"@en,
        "Nanoohm Meter"@en-us,
        "Nanoohmio Metro"@es,
        "Nanoohm Mètre"@fr,
        "Nanoohm Metro"@it,
        "Nanoohm Meter"@ms,
        "Nanoom Metr"@pl,
        "Nanoohm Metru"@ro,
        "Nanoohm Meter"@sl,
        "Nanoohm Metre"@tr ;
    dcterms:description "0.000000001-fold of the product of the SI derived unit ohm and the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:NanoOHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAA900"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA900"^^xsd:anyURI ;
    qudt:symbol "nΩ·m"^^xsd:string ;
    qudt:ucumCode "nOhm.m"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OERSTED-CentiM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Oersted Centimetre"^^xsd:string,
        "Oersted Centimetre"@en,
        "Oersted Centimeter"@en-us ;
    dcterms:description "\"Oersted Centimeter\" is a C.G.S System unit for  'Magnetomotive Force' expressed as $Oe-cm$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.795774715 ;
    qudt:conversionMultiplierSN 7.957747e-01 ;
    qudt:expression "$Oe-cm$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OERSTED ] ;
    qudt:hasQuantityKind qudtqk:MagnetomotiveForce ;
    qudt:symbol "Oe·cm"^^xsd:string ;
    qudt:ucumCode "Oe.cm"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-CentiM a qudt:Unit ;
    rdfs:label "Ohm Centimetre"^^xsd:string,
        "Ohm Centimetr"@cs,
        "Ohm Centimeter"@de,
        "Ohm Centimetre"@en,
        "Ohm Centimeter"@en-us,
        "Ohmio Centimetro"@es,
        "Ohm Centimètre"@fr,
        "Ohm Centimetro"@it,
        "Ohm Centimeter"@ms,
        "Om Centimetr"@pl,
        "Ohm Centimetru"@ro,
        "Ohm Centimeter"@sl,
        "Ohm Centimetre"@tr ;
    dcterms:description "product of the SI derived unit ohm and the 0.01-fold of the SI base unit metre"@en ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:iec61360Code "0112/2///62720#UAB090"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB090"^^xsd:anyURI ;
    qudt:symbol "Ω·cm"^^xsd:string ;
    qudt:ucumCode "Ohm.cm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-M2-PER-M a qudt:Unit ;
    rdfs:label "Ohm Square Metre per Metre"^^xsd:string,
        "Ом Квадратен Метър на Метър"@bg,
        "Ohm Čtvereční Metr na Metr"@cs,
        "Ohm Quadratmeter pro Meter"@de,
        "Ωμ Τετραγωνικό Μέτρο ανά Μέτρο"@el,
        "Ohm Square Metre per Metre"@en,
        "Ohm Square Meter per Meter"@en-us,
        "Ohmio Metro Cuadrado por Metro"@es,
        "Ohm Mètre Carré par Mètre"@fr,
        "Ohm Metro Quadrato per Metro"@it,
        "Ohmium Metrum Quadratum per Metrum"@la,
        "Ohm Meter Persegi per Meter"@ms,
        "Om Metr Kwadratowy na Metr"@pl,
        "Ohm Metro Quadrado por Metro"@pt,
        "Ohm Metru Pătrat pe Metru"@ro,
        "Ом Квадратный Метр на Метр"@ru,
        "Ohm Kvadratni Meter na Meter"@sl,
        "Ohm Metrekare per Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind qudtqk:Resistivity ;
    qudt:symbol "Ω·m²/m"^^xsd:string ;
    qudt:ucumCode "Ohm.m2.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-PER-BAR a qudt:Unit ;
    rdfs:label "Ohm per Bar"^^xsd:string,
        "Ohm per Bar"@en ;
    dcterms:description "SI derived unit ohm per metrical non SI unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD879"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD879"^^xsd:anyURI ;
    qudt:symbol "Ω/bar"^^xsd:string ;
    qudt:ucumCode "Ohm.bar-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-PER-K a qudt:Unit ;
    rdfs:label "Ohm per Kelvin"^^xsd:string,
        "Ом на Келвин"@bg,
        "Ohm na Kelvin"@cs,
        "Ohm pro Kelvin"@de,
        "Ωμ ανά Κέλβιν"@el,
        "Ohm per Kelvin"@en,
        "Ohmio por Kelvin"@es,
        "Ohm par Kelvin"@fr,
        "Ohm per Kelvin"@it,
        "Ohmium per Kelvin"@la,
        "Ohm per Kelvin"@ms,
        "Om na Kelwin"@pl,
        "Ohm por Kelvin"@pt,
        "Ohm pe Kelvin"@ro,
        "Ом на Кельвин"@ru,
        "Ohm na Kelvin"@sl,
        "Ohm per Kelvin"@tr ;
    dcterms:description "SI derived unit ohm per SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD875"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD875"^^xsd:anyURI ;
    qudt:symbol "Ω/K"^^xsd:string ;
    qudt:ucumCode "Ohm.K-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-PER-KiloM a qudt:Unit ;
    rdfs:label "Ohm per Kilometre"^^xsd:string,
        "Ohm na Kilometr"@cs,
        "Ohm pro Kilometer"@de,
        "Ohm per Kilometre"@en,
        "Ohm per Kilometer"@en-us,
        "Ohmio por Kilometro"@es,
        "Ohm par Kilomètre"@fr,
        "Ohm per Chilometro"@it,
        "Ohm per Kilometer"@ms,
        "Om na Kilometr"@pl,
        "Ohm pe Kilometru"@ro,
        "Ohm na Kilometer"@sl,
        "Ohm per Kilometre"@tr ;
    dcterms:description "SI derived unit ohm divided by the 1,000-fold of the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA019"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA019"^^xsd:anyURI ;
    qudt:symbol "Ω/km"^^xsd:string ;
    qudt:ucumCode "Ohm.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F56"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-PER-M a qudt:Unit ;
    rdfs:label "Ohm per Metre"^^xsd:string,
        "Ом на Метър"@bg,
        "Ohm na Metr"@cs,
        "Ohm pro Meter"@de,
        "Ωμ ανά Μέτρο"@el,
        "Ohm per Metre"@en,
        "Ohm per Meter"@en-us,
        "Ohmio por Metro"@es,
        "Ohm par Mètre"@fr,
        "Ohm per Metro"@it,
        "Ohmium per Metrum"@la,
        "Ohm per Meter"@ms,
        "Om na Metr"@pl,
        "Ohm por Metro"@pt,
        "Ohm pe Metru"@ro,
        "Ом на Метр"@ru,
        "Ohm na Meter"@sl,
        "Ohm per Metre"@tr ;
    dcterms:description "SI derived unit ohm divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA021"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA021"^^xsd:anyURI ;
    qudt:symbol "Ω/m"^^xsd:string ;
    qudt:ucumCode "Ohm.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H26"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM-PER-MI a qudt:Unit ;
    rdfs:label "Ohm per International Mile"^^xsd:string,
        "Ohm per International Mile"@en ;
    dcterms:description "unit ohm divided by the unit mile according to the Anglo-American system of units"^^xsd:string ;
    qudt:conversionMultiplier 0.0006213711922373339696174341843633182 ;
    qudt:conversionMultiplierSN 6.213712e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OHM ] ;
    qudt:hasQuantityKind qudtqk:LinearResistance ;
    qudt:iec61360Code "0112/2///62720#UAA022"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA022"^^xsd:anyURI ;
    qudt:symbol "Ω/mi"^^xsd:string ;
    qudt:ucumCode "Ohm.[mi_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F55"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM_Ab a qudt:Unit ;
    rdfs:label "Abohm"^^xsd:string,
        "Abohm"@en ;
    dcterms:description "$\\textit{abohm}$ is the basic unit of electrical resistance in the emu-cgs system of units. One abohm is equal to $10^{-9} ohms$ in the SI system of units; one abohm is a nano ohm."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Abohm"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Abohm?oldid=480725336"^^xsd:anyURI ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/abohm> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "abΩ"^^xsd:string ;
    qudt:ucumCode "nOhm"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1091059> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OHM_Stat a qudt:Unit ;
    rdfs:label "Statohm"^^xsd:string,
        "Statohm"@en ;
    dcterms:description "\"StatOHM\" is the unit of resistance, reactance, and impedance in the electrostatic C.G.S system of units, equal to the resistance between two points of a conductor when a constant potential difference of 1 statvolt between these points produces a current of 1 statampere; it is equal to approximately $8.9876 \\times 10^{11} ohms$. The statohm is an extremely large unit of resistance. In fact, an object with a resistance of 1 stat W would make an excellent insulator or dielectric . In practical applications, the ohm, the kilohm (k W ) and the megohm (M W or M) are most often used to quantify resistance."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:conversionMultiplier 898760000000.0 ;
    qudt:conversionMultiplierSN 8.9876e+11 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-ESU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://whatis.techtarget.com/definition/statohm-stat-W"^^xsd:anyURI ;
    qudt:latexSymbol "$stat\\Omega$"^^qudt:LatexString ;
    qudt:omUnit <http://www.ontology-of-units-of-measure.org/resource/om-2/statohm> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "statΩ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q25303759> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OKTA a qudt:Unit ;
    rdfs:label "Okta"^^xsd:string,
        "Okta"@en ;
    dcterms:description """
  "Okta" is the unit of measurement to describe the amount of cloud cover.
  Okta is reported in eighths of the celestial dome covered by all clouds visible. The codes represent:
  0: 0/8, the complete absence of cloud;
  1: 1/8 or less, but not zero;
  2: 2/8;
  3: 3/8;
  4: 4/8, half of the sky is covered;
  5: 5/8;
  6: 6/8;
  7: 7/8 or more, but not 8/8;
  8: 8/8, sky is completely covered;
  9: Sky obscured by fog and/or other meteorological phenomena;
  /: Cloud cover is indiscernible for reasons other than fog or other meteorological phenomena, or observation is not made.
  """^^rdf:HTML ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:AmountOfCloudCover ;
    qudt:informativeReference "https://windy.app/blog/okta-cloud-cover.html"^^xsd:anyURI ;
    qudt:isoNormativeReference "https://library.wmo.int/viewer/68695/?offset=3#page=514&viewer=picture&o=bookmark&n=0&q="^^xsd:anyURI ;
    qudt:plainTextDescription "\"Okta\" is the unit of measurement to describe the amount of cloud cover. Okta is reported in eighths of the celestial dome covered by all clouds visible. The codes represent: 0: 0/8, the complete absence of cloud; 1: 1/8 or less, but not zero; 2: 2/8; 3: 3/8; 4: 4/8, half of the sky is covered; 5: 5/8; 6: 6/8; 7: 7/8 or more, but not 8/8; 8: 8/8, sky is completely covered; 9: Sky obscured by fog and/or other meteorological phenomena; /: Cloud cover is indiscernible for reasons other than fog or other meteorological phenomena, or observation is not made."^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-FT a qudt:Unit ;
    rdfs:label "Ounce Mass Foot"^^xsd:string,
        "Ounce Mass Foot"@en ;
    dcterms:description "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and foot according to the Anglo-American and Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0086409346485 ;
    qudt:conversionMultiplierSN 8.640935e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:LengthMass ;
    qudt:iec61360Code "0112/2///62720#UAB133"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB133"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and foot according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:symbol "oz·ft"^^xsd:string ;
    qudt:ucumCode "[oz_av].[ft_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4R"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-FT-HR-PER-IN3-LB a qudt:Unit ;
    rdfs:label "Ounce Mass Foot Hour per Cubic Inch Pound Mass"^^xsd:string,
        "Ounce Mass Foot Hour per Cubic Inch Pound Mass"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and unit of time hour"^^xsd:string ;
    qudt:conversionMultiplier 4185008.37001674003348006696013392 ;
    qudt:conversionMultiplierSN 4.185008e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD858"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD858"^^xsd:anyURI ;
    qudt:symbol "oz·ft·h/(in³·lbm)"^^xsd:string ;
    qudt:ucumCode "[oz_av].[ft_i].h.[in_i]-3.[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-FT-SEC-PER-IN3-LB a qudt:Unit ;
    rdfs:label "Ounce Mass Foot Second per Cubic Inch Pound Mass"^^xsd:string,
        "Ounce Mass Foot Second per Cubic Inch Pound Mass"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit of the mass avoirdupois pound according to the avoirdupois system of units per product of foot according to the Anglo-American and the Imperial system of units and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1162.5023250046500093000186000372 ;
    qudt:conversionMultiplierSN 1.162502e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD859"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD859"^^xsd:anyURI ;
    qudt:symbol "oz·ft·s/(in³·lbm)"^^xsd:string ;
    qudt:ucumCode "[oz_av].[ft_i].s.[in_i]-3.[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-FT2-PER-IN3-LB_F-SEC a qudt:Unit ;
    rdfs:label "Ounce Mass Square Foot per Cubic Inch Pound Force Second"^^xsd:string,
        "Ounce Mass Square Foot per Cubic Inch Pound Force Second"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 36.1316752166621861189380447919115 ;
    qudt:conversionMultiplierSN 3.613168e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD860"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD860"^^xsd:anyURI ;
    qudt:symbol "oz·ft²/(in³·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[oz_av].[ft_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-HR-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Ounce Mass Hour per Cubic Inch Cubic Foot"^^xsd:string,
        "Ounce Mass Hour per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 219938987.1877617250669424917895746 ;
    qudt:conversionMultiplierSN 2.19939e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC868"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC868"^^xsd:anyURI ;
    qudt:symbol "oz·h/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].h.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-HR-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Ounce Mass Hour per Cubic Inch Gallon (UK)"^^xsd:string,
        "Ounce Mass Hour per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 1369963762.221095989865992857706645 ;
    qudt:conversionMultiplierSN 1.369964e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC866"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC866"^^xsd:anyURI ;
    qudt:symbol "oz·h/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[oz_av].h.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-HR-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Ounce Mass Hour per Cubic Inch Us Gallon"^^xsd:string,
        "Ounce Mass Hour per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 1645257878.183776021279985393127207 ;
    qudt:conversionMultiplierSN 1.645258e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC865"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC865"^^xsd:anyURI ;
    qudt:symbol "oz·h/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[oz_av].h.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-HR-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Ounce Mass Hour per Cubic Inch Cubic Yard"^^xsd:string,
        "Ounce Mass Hour per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 8145888.414361545372849721918132388 ;
    qudt:conversionMultiplierSN 8.145888e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC869"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC869"^^xsd:anyURI ;
    qudt:symbol "oz·h/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].h.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-HR-PER-IN6 a qudt:Unit ;
    rdfs:label "Ounce Mass Hour per Sextic Inch"^^xsd:string,
        "Ounce Mass Hour per Sextic Inch"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 380054569860.4522609156766258123849 ;
    qudt:conversionMultiplierSN 3.800546e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC867"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC867"^^xsd:anyURI ;
    qudt:symbol "oz·h/in⁶"^^xsd:string ;
    qudt:ucumCode "[oz_av].h.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-IN a qudt:Unit ;
    rdfs:label "Ounce Mass Inch"^^xsd:string,
        "Ounce Mass Inch"@en ;
    dcterms:description "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000720077887375 ;
    qudt:conversionMultiplierSN 7.200779e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:LengthMass ;
    qudt:iec61360Code "0112/2///62720#UAB132"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB132"^^xsd:anyURI ;
    qudt:plainTextDescription "unit of the unbalance as a product of avoirdupois ounce according to  the avoirdupois system of units and inch according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:symbol "oz·in"^^xsd:string ;
    qudt:ucumCode "[oz_av].[in_i]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "4Q"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-IN2-PER-IN3-LB_F-SEC a qudt:Unit ;
    rdfs:label "Ounce Mass Square Inch per Cubic Inch Pound Force Second"^^xsd:string,
        "Ounce Mass Square Inch per Cubic Inch Pound Force Second"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.2509144112268207369370697554993854 ;
    qudt:conversionMultiplierSN 2.509144e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD861"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD861"^^xsd:anyURI ;
    qudt:symbol "oz·in²/(in³·lbf·s)"^^xsd:string ;
    qudt:ucumCode "[oz_av].[in_i]2.[in_i]-3.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-MIN-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Ounce Mass Minute per Cubic Inch Cubic Foot"^^xsd:string,
        "Ounce Mass Minute per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 3665649.786462695417782374863159576 ;
    qudt:conversionMultiplierSN 3.66565e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD801"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD801"^^xsd:anyURI ;
    qudt:symbol "oz·min/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].min.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-MIN-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Ounce Mass Minute per Cubic Inch Gallon (UK)"^^xsd:string,
        "Ounce Mass Minute per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 22832729.37035159983109988096177742 ;
    qudt:conversionMultiplierSN 2.283273e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD867"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD867"^^xsd:anyURI ;
    qudt:symbol "oz·min/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[oz_av].min.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-MIN-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Ounce Mass Minute per Cubic Inch Us Gallon"^^xsd:string,
        "Ounce Mass Minute per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 27420964.63639626702133308988545345 ;
    qudt:conversionMultiplierSN 2.742096e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD866"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD866"^^xsd:anyURI ;
    qudt:symbol "oz·min/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[oz_av].min.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-MIN-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Ounce Mass Minute per Cubic Inch Cubic Yard"^^xsd:string,
        "Ounce Mass Minute per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 135764.8069060257562141620319688731 ;
    qudt:conversionMultiplierSN 1.357648e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD802"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD802"^^xsd:anyURI ;
    qudt:symbol "oz·min/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].min.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-MIN-PER-IN6 a qudt:Unit ;
    rdfs:label "Ounce Mass Minute per Sextic Inch"^^xsd:string,
        "Ounce Mass Minute per Sextic Inch"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 6334242831.007537681927943763539748 ;
    qudt:conversionMultiplierSN 6.334243e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD800"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD800"^^xsd:anyURI ;
    qudt:symbol "oz·min/in⁶"^^xsd:string ;
    qudt:ucumCode "[oz_av].min.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-PER-DAY a qudt:Unit ;
    rdfs:label "Ounce Mass per Day"^^xsd:string,
        "Ounce Mass per Day"@en ;
    dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000003281194806134259259259259259259258 ;
    qudt:conversionMultiplierSN 3.281195e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA919"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA919"^^xsd:anyURI ;
    qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time day"^^xsd:string ;
    qudt:symbol "oz/d"^^xsd:string ;
    qudt:ucumCode "[oz_av].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L33"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-PER-HR a qudt:Unit ;
    rdfs:label "Ounce Mass per Hour"^^xsd:string,
        "Ounce Mass per Hour"@en ;
    dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000007874867534722222222222222222222223 ;
    qudt:conversionMultiplierSN 7.874868e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA920"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA920"^^xsd:anyURI ;
    qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time hour"^^xsd:string ;
    qudt:symbol "oz/h"^^xsd:string ;
    qudt:ucumCode "[oz_av].h-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L34"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-PER-MIN a qudt:Unit ;
    rdfs:label "Ounce Mass per Minute"^^xsd:string,
        "Ounce Mass per Minute"@en ;
    dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0004724920520833333333333333333333334 ;
    qudt:conversionMultiplierSN 4.724921e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA921"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA921"^^xsd:anyURI ;
    qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the unit for time minute"^^xsd:string ;
    qudt:symbol "oz/min"^^xsd:string ;
    qudt:ucumCode "[oz_av].min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L35"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-PER-SEC a qudt:Unit ;
    rdfs:label "Ounce Mass per Second"^^xsd:string,
        "Ounce Mass per Second"@en ;
    dcterms:description "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.028349523125 ;
    qudt:conversionMultiplierSN 2.834952e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA922"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA922"^^xsd:anyURI ;
    qudt:plainTextDescription "traditional unit of the mass avoirdupois ounce according to the avoirdupois system of units divided by the SI base unit second"^^xsd:string ;
    qudt:symbol "oz/s"^^xsd:string ;
    qudt:ucumCode "[oz_av].s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L36"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-SEC-PER-IN3-FT3 a qudt:Unit ;
    rdfs:label "Ounce Mass Second per Cubic Inch Cubic Foot"^^xsd:string,
        "Ounce Mass Second per Cubic Inch Cubic Foot"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 61094.16310771159029637291438599294 ;
    qudt:conversionMultiplierSN 6.109416e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD826"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD826"^^xsd:anyURI ;
    qudt:symbol "oz·s/(in³·ft³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].s.[in_i]-3.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-SEC-PER-IN3-GAL_UK a qudt:Unit ;
    rdfs:label "Ounce Mass Second per Cubic Inch Gallon (UK)"^^xsd:string,
        "Ounce Mass Second per Cubic Inch Gallon (UK)"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and unit gallon (UK) according to the Imperial system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 380545.4895058599971849980160296237 ;
    qudt:conversionMultiplierSN 3.805455e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD824"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD824"^^xsd:anyURI ;
    qudt:symbol "oz·s/(in³·gal{UK})"^^xsd:string ;
    qudt:ucumCode "[oz_av].s.[in_i]-3.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-SEC-PER-IN3-GAL_US a qudt:Unit ;
    rdfs:label "Ounce Mass Second per Cubic Inch Us Gallon"^^xsd:string,
        "Ounce Mass Second per Cubic Inch Us Gallon"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit gallon (US) according to the Anglo-American system of units per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 457016.0772732711170222181647575575 ;
    qudt:conversionMultiplierSN 4.570161e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD823"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD823"^^xsd:anyURI ;
    qudt:symbol "oz·s/(in³·gal{US})"^^xsd:string ;
    qudt:ucumCode "[oz_av].s.[in_i]-3.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-SEC-PER-IN3-YD3 a qudt:Unit ;
    rdfs:label "Ounce Mass Second per Cubic Inch Cubic Yard"^^xsd:string,
        "Ounce Mass Second per Cubic Inch Cubic Yard"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 2262.746781767095936902700532814552 ;
    qudt:conversionMultiplierSN 2.262747e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD827"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD827"^^xsd:anyURI ;
    qudt:symbol "oz·s/(in³·yd³)"^^xsd:string ;
    qudt:ucumCode "[oz_av].s.[in_i]-3.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ-SEC-PER-IN6 a qudt:Unit ;
    rdfs:label "Ounce Mass Second per Sextic Inch"^^xsd:string,
        "Ounce Mass Second per Sextic Inch"@en ;
    dcterms:description "quotient of unit of the mass according to the avoirdupois system of units per power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and power of unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 per SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 105570713.8501256280321323960589958 ;
    qudt:conversionMultiplierSN 1.055707e+08 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-6I0M1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -6 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD825"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD825"^^xsd:anyURI ;
    qudt:symbol "oz·s/in⁶"^^xsd:string ;
    qudt:ucumCode "[oz_av].s.[in_i]-6"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:OZ_F-PER-IN3 a qudt:Unit ;
    rdfs:label "Imperial Ounce Force per Cubic Inch"^^xsd:string,
        "Imperial Ounce Force per Cubic Inch"@en ;
    dcterms:description "unit of specific weight according to the Anglo-American system of units"^^xsd:string ;
    qudt:conversionMultiplier 16965.44756278488934930625766763345 ;
    qudt:conversionMultiplierSN 1.696545e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:OZ_F ] ;
    qudt:hasQuantityKind qudtqk:SpecificWeight ;
    qudt:iec61360Code "0112/2///62720#UAA925"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA925"^^xsd:anyURI ;
    qudt:symbol "ozf/in³"^^xsd:string ;
    qudt:ucumCode "[ozf_av].[in_i]-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L39"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-M a qudt:Unit ;
    rdfs:label "Pascal Metre"^^xsd:string,
        "Паскал Метър"@bg,
        "Pascal Metr"@cs,
        "Pascal Meter"@de,
        "Πασκάλ Μέτρο"@el,
        "Pascal Metre"@en,
        "Pascal Meter"@en-us,
        "Pascal Metro"@es,
        "Pascal Mètre"@fr,
        "Pascal Metro"@it,
        "Pascalium Metrum"@la,
        "Pascal Meter"@ms,
        "Paskal Metr"@pl,
        "Pascal Metro"@pt,
        "Pascal Metru"@ro,
        "Паскаль Метр"@ru,
        "Pascal Meter"@sl,
        "Pascal Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "Pa·m"^^xsd:string ;
    qudt:ucumCode "Pa.m"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-M-PER-SEC a qudt:Unit ;
    rdfs:label "Pascal Metre per Second"^^xsd:string,
        "Паскал Метър на Секунда"@bg,
        "Pascal Metr na Sekunda"@cs,
        "Pascal Meter pro Sekunde"@de,
        "Πασκάλ Μέτρο ανά Δευτερόλεπτο"@el,
        "Pascal Metre per Second"@en,
        "Pascal Meter per Second"@en-us,
        "Pascal Metro por Segundo"@es,
        "Pascal Mètre par Seconde"@fr,
        "Pascal Metro per Secondo"@it,
        "Pascalium Metrum per Secundum"@la,
        "Pascal Meter per Saat"@ms,
        "Paskal Metr na Sekunda"@pl,
        "Pascal Metro por Segundo"@pt,
        "Pascal Metru pe Secundă"@ro,
        "Паскаль Метр на Секунда"@ru,
        "Pascal Meter na Sekunda"@sl,
        "Pascal Metre per Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "Pa·m/s"^^xsd:string ;
    qudt:ucumCode "Pa.m.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-M-PER-SEC2 a qudt:Unit ;
    rdfs:label "Pascal Metre per Square Second"^^xsd:string,
        "Паскал Метър на Квадратен Секунда"@bg,
        "Pascal Metr na Čtvereční Sekunda"@cs,
        "Pascal Meter pro Quadratsekunde"@de,
        "Πασκάλ Μέτρο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Pascal Metre per Square Second"@en,
        "Pascal Meter per Square Second"@en-us,
        "Pascal Metro por Segundo Cuadrado"@es,
        "Pascal Mètre par Seconde Carré"@fr,
        "Pascal Metro per Secondo Quadrato"@it,
        "Pascalium Metrum per Secundum Quadratum"@la,
        "Pascal Meter per Saat Persegi"@ms,
        "Paskal Metr na Sekunda Kwadratowy"@pl,
        "Pascal Metro por Segundo Quadrado"@pt,
        "Pascal Metru pe Secundă Pătrat"@ro,
        "Паскаль Метр на Квадратный Секунда"@ru,
        "Pascal Meter na Kvadratni Sekunda"@sl,
        "Pascal Metre per Saniyekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "Pa·m/s²"^^xsd:string ;
    qudt:ucumCode "Pa.m.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-M0dot5 a qudt:ContextualUnit,
        qudt:Unit ;
    rdfs:label "Pascal Quintic Placeholder"^^xsd:string,
        "Pascal Quintic Placeholder"@en,
        "Pascal Square Root Meter"@en-us ;
    dcterms:description "A metric unit for stress intensity factor and fracture toughness."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-0dot5I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 5 ;
            qudt:hasUnit unit:M0dot ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:StressIntensityFactor ;
    qudt:plainTextDescription "A metric unit for stress intensity factor and fracture toughness."^^xsd:string ;
    qudt:symbol "Pa√m"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-M2-PER-KiloGM a qudt:Unit ;
    rdfs:label "Pascal Square Metre per Kilogram"^^xsd:string,
        "Паскал Квадратен Метър на Килограм"@bg,
        "Pascal Čtvereční Metr na Kilogram"@cs,
        "Pascal Quadratmeter pro Kilogramm"@de,
        "Πασκάλ Τετραγωνικό Μέτρο ανά Χιλιόγραμμο"@el,
        "Pascal Square Metre per Kilogram"@en,
        "Pascal Square Meter per Kilogram"@en-us,
        "Pascal Metro Cuadrado por Kilogramo"@es,
        "Pascal Mètre Carré par Kilogramme"@fr,
        "Pascal Metro Quadrato per Chilogrammo"@it,
        "Pascalium Metrum Quadratum per Chiliogramma"@la,
        "Pascal Meter Persegi per Kilogram"@ms,
        "Paskal Metr Kwadratowy na Kilogram"@pl,
        "Pascal Metro Quadrado por Quilograma"@pt,
        "Pascal Metru Pătrat pe Kilogram"@ro,
        "Паскаль Квадратный Метр на Килограмм"@ru,
        "Pascal Kvadratni Meter na Kilogram"@sl,
        "Pascal Metrekare per Kilogram"@tr ;
    dcterms:description "unit of the burst index as derived unit for pressure pascal related to the substance, represented as a quotient from the SI base unit kilogram divided by the power of the SI base unit metre by exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:BurstFactor ;
    qudt:iec61360Code "0112/2///62720#UAB462"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB462"^^xsd:anyURI ;
    qudt:symbol "Pa·m²/kg"^^xsd:string ;
    qudt:ucumCode "Pa.m2.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-BAR a qudt:Unit ;
    rdfs:label "Pascal per Bar"^^xsd:string,
        "Pascal per Bar"@en ;
    dcterms:description "SI derived unit pascal divided by the unit bar"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA260"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA260"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit pascal divided by the unit bar"^^xsd:string ;
    qudt:symbol "Pa/bar"^^xsd:string ;
    qudt:ucumCode "Pa.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F07"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-HR a qudt:Unit ;
    rdfs:label "Pascal per Hour"^^xsd:string,
        "Pascal per Hour"@en ;
    dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one hour."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-04 ;
    qudt:expression "$P / h$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "Pa/h"^^xsd:string ;
    qudt:ucumCode "Pa.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-MIN a qudt:Unit ;
    rdfs:label "Pascal per Minute"^^xsd:string,
        "Pascal per Minute"@en ;
    dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one minute."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01666666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e-02 ;
    qudt:expression "$P / min$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "Pa/min"^^xsd:string ;
    qudt:ucumCode "Pa.min-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-PER-SEC a qudt:Unit ;
    rdfs:label "Pascal per Second"^^xsd:string,
        "Паскал на Секунда"@bg,
        "Pascal na Sekunda"@cs,
        "Pascal pro Sekunde"@de,
        "Πασκάλ ανά Δευτερόλεπτο"@el,
        "Pascal per Second"@en,
        "Pascal por Segundo"@es,
        "Pascal par Seconde"@fr,
        "Pascal per Secondo"@it,
        "Pascalium per Secundum"@la,
        "Pascal per Saat"@ms,
        "Paskal na Sekunda"@pl,
        "Pascal por Segundo"@pt,
        "Pascal pe Secundă"@ro,
        "Паскаль на Секунда"@ru,
        "Pascal na Sekunda"@sl,
        "Pascal per Saniye"@tr ;
    dcterms:description "A rate of change of pressure measured as the number of Pascals in a period of one second."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$P / s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:ForcePerAreaTime ;
    qudt:symbol "Pa/s"^^xsd:string ;
    qudt:ucumCode "Pa.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-SEC-PER-K a qudt:Unit ;
    rdfs:label "Pascal Second per Kelvin"^^xsd:string,
        "Паскал Секунда на Келвин"@bg,
        "Pascal Sekunda na Kelvin"@cs,
        "Pascal Sekunde pro Kelvin"@de,
        "Πασκάλ Δευτερόλεπτο ανά Κέλβιν"@el,
        "Pascal Second per Kelvin"@en,
        "Pascal Segundo por Kelvin"@es,
        "Pascal Seconde par Kelvin"@fr,
        "Pascal Secondo per Kelvin"@it,
        "Pascalium Secundum per Kelvin"@la,
        "Pascal Saat per Kelvin"@ms,
        "Paskal Sekunda na Kelwin"@pl,
        "Pascal Segundo por Kelvin"@pt,
        "Pascal Secundă pe Kelvin"@ro,
        "Паскаль Секунда на Кельвин"@ru,
        "Pascal Sekunda na Kelvin"@sl,
        "Pascal Saniye per Kelvin"@tr ;
    dcterms:description "product out of the SI derived unit pascal and the SI base unit second divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA266"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA266"^^xsd:anyURI ;
    qudt:symbol "Pa·s/K"^^xsd:string ;
    qudt:ucumCode "Pa.s.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F77"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA-SEC-PER-L a qudt:Unit ;
    rdfs:label "Pascal Second per Litre"^^xsd:string,
        "Pascal Second per Litre"@en,
        "Pascal Second per Liter"@en-us ;
    dcterms:description "product of the SI derived unit pascal and the SI base unit second divided by the unit litre"^^xsd:string ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:PressureInRelationToVolumeFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB499"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB499"^^xsd:anyURI ;
    qudt:symbol "Pa·s/L"^^xsd:string ;
    qudt:ucumCode "Pa.s.L-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M32"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA2-PER-SEC2 a qudt:Unit ;
    rdfs:label "Square Pascal per Square Second"^^xsd:string,
        "Квадратен Паскал на Квадратен Секунда"@bg,
        "Čtvereční Pascal na Čtvereční Sekunda"@cs,
        "Quadratpascal pro Quadratsekunde"@de,
        "Τετραγωνικό Πασκάλ ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Square Pascal per Square Second"@en,
        "Pascal Cuadrado por Segundo Cuadrado"@es,
        "Pascal Carré par Seconde Carré"@fr,
        "Pascal Quadrato per Secondo Quadrato"@it,
        "Pascalium Quadratum per Secundum Quadratum"@la,
        "Pascal Persegi per Saat Persegi"@ms,
        "Paskal Kwadratowy na Sekunda Kwadratowy"@pl,
        "Pascal Quadrado por Segundo Quadrado"@pt,
        "Pascal Pătrat pe Secundă Pătrat"@ro,
        "Квадратный Паскаль на Квадратный Секунда"@ru,
        "Kvadratni Pascal na Kvadratni Sekunda"@sl,
        "Pascalkare per Saniyekare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-6D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "Pa²/s²"^^xsd:string ;
    qudt:ucumCode "Pa2.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PA2-SEC a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Square Pascal Second"^^xsd:string,
        "Квадратен Паскал Секунда"@bg,
        "Čtvereční Pascal Sekunda"@cs,
        "Quadratpascal Sekunde"@de,
        "Τετραγωνικό Πασκάλ Δευτερόλεπτο"@el,
        "Square Pascal Second"@en,
        "Pascal Cuadrado Segundo"@es,
        "Pascal Carré Seconde"@fr,
        "Pascal Quadrato Secondo"@it,
        "Pascalium Quadratum Secundum"@la,
        "Pascal Persegi Saat"@ms,
        "Paskal Kwadratowy Sekunda"@pl,
        "Pascal Quadrado Segundo"@pt,
        "Pascal Pătrat Secundă"@ro,
        "Квадратный Паскаль Секунда"@ru,
        "Kvadratni Pascal Sekunda"@sl,
        "Pascalkare Saniye"@tr ;
    dcterms:description "Square Pascal Second ($Pa^2\\cdot s$) is a unit in the category of sound exposure."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$Pa2-s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M2H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:SoundExposure ;
    qudt:iec61360Code "0112/2///62720#UAB339"^^xsd:string ;
    qudt:informativeReference "http://www.efunda.com/glossary/units/units--specific_acoustic_impedance--pascal_second_per_meter.cfm"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB339"^^xsd:anyURI ;
    qudt:siUnitsExpression "Pa2.s"^^xsd:string ;
    qudt:symbol "Pa²·s"^^xsd:string ;
    qudt:ucumCode "Pa2.s"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P42"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q86897783> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-DEG_C a qudt:Unit ;
    rdfs:label "Reciprocal Degree Celsius"^^xsd:string,
        "На Градус Целзий"@bg,
        "Na Stupně Celsia"@cs,
        "Pro Grad Celsius"@de,
        "Aνά Βαθμός Κελσίου"@el,
        "Reciprocal Degree Celsius"@en,
        "Por Grado Celsius"@es,
        "Par Degré Celsius"@fr,
        "Per Grado Celsius"@it,
        "Per Gradus Celsii"@la,
        "Per Darjah Celsius"@ms,
        "Na Stopień Celsjusza"@pl,
        "Por Grau Celsius"@pt,
        "Pe Grad Celsius"@ro,
        "На Градус Цельсия"@ru,
        "Na Stopinja Celzija"@sl,
        "Per Celsius"@tr ;
    dcterms:description "reciprocal of the unit degree Celsius"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ] ;
    qudt:hasQuantityKind qudtqk:ThermalExpansionCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAB840"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB840"^^xsd:anyURI ;
    qudt:plainTextDescription "Unit for expressing the change of some quantity relative to a unit change in temperature."^^xsd:string ;
    qudt:symbol "/°C"^^xsd:string ;
    qudt:ucumCode "Cel-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-EV-M3 a qudt:Unit ;
    rdfs:label "Reciprocal Electron Volt Cubic Metre"^^xsd:string,
        "Reciprocal Electron Volt Cubic Metre"@en,
        "Reciprocal Electron Volt Cubic Meter"@en-us ;
    dcterms:description "complement of the unit for atomic energy electronvolt related to the power of the SI base unit metre by exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 6241509074460762607.776240980930446 ;
    qudt:conversionMultiplierSN 6.241509e+18 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-5I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:EV ] ;
    qudt:hasQuantityKind qudtqk:EnergyDensityOfStates ;
    qudt:iec61360Code "0112/2///62720#UAB164"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB164"^^xsd:anyURI ;
    qudt:symbol "/(eV·m³)"^^xsd:string ;
    qudt:ucumCode "eV-1.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-EV2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Electron Volt"^^xsd:string,
        "Reciprocal Square Electron Volt"@en ;
    dcterms:description "Per Square Electron Volt is a denominator unit with dimensions $/eV^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 38956435526576045471002924268900840000.0 ;
    qudt:conversionMultiplierSN 3.895644e+37 ;
    qudt:expression "$/eV^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:EV ] ;
    qudt:hasQuantityKind qudtqk:InverseSquareEnergy ;
    qudt:symbol "/eV²"^^xsd:string ;
    qudt:ucumCode "eV-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-H a qudt:Unit ;
    rdfs:label "Reciprocal Henry"^^xsd:string,
        "На Хенри"@bg,
        "Na Henry"@cs,
        "Pro Henry"@de,
        "Aνά Χένρι"@el,
        "Reciprocal Henry"@en,
        "Por Henrio"@es,
        "Par Henry"@fr,
        "Per Henry"@it,
        "Per Henrium"@la,
        "Per Henry"@ms,
        "Na Henr"@pl,
        "Por Henry"@pt,
        "Pe Henry"@ro,
        "На Генри"@ru,
        "Na Henry"@sl,
        "Per Henry"@tr ;
    dcterms:description "reciprocal of the SI derived unit henry"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:H ] ;
    qudt:hasQuantityKind qudtqk:Reluctance ;
    qudt:iec61360Code "0112/2///62720#UAA169"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA169"^^xsd:anyURI ;
    qudt:symbol "/H"^^xsd:string ;
    qudt:ucumCode "H-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C89"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77996931> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-IN a qudt:Unit ;
    rdfs:label "Reciprocal Inch"^^xsd:string,
        "Reciprocal Inch"@en ;
    dcterms:description "complement of the unit inch according to the Anglo-American and Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 39.37007874015748031496062992125984 ;
    qudt:conversionMultiplierSN 3.937008e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Repetency ;
    qudt:iec61360Code "0112/2///62720#UAB360"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB360"^^xsd:anyURI ;
    qudt:symbol "/in"^^xsd:string ;
    qudt:ucumCode "[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-J a qudt:Unit ;
    rdfs:label "Reciprocal Joule"^^xsd:string,
        "На Джаул"@bg,
        "Na Joule"@cs,
        "Pro Joule"@de,
        "Aνά Τζάουλ"@el,
        "Reciprocal Joule"@en,
        "Por Julio"@es,
        "Par Joule"@fr,
        "Per Joule"@it,
        "Per Joulium"@la,
        "Per Joule"@ms,
        "Na Dżul"@pl,
        "Por Joule"@pt,
        "Pe Joule"@ro,
        "На Джоуль"@ru,
        "Na Joule"@sl,
        "Per Joule"@tr ;
    dcterms:description "reciprocal of the SI derived unit joule"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind qudtqk:InverseEnergy ;
    qudt:iec61360Code "0112/2///62720#UAB324"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB324"^^xsd:anyURI ;
    qudt:symbol "/J"^^xsd:string ;
    qudt:ucumCode "J-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-J-M3 a qudt:Unit ;
    rdfs:label "Reciprocal Joule Cubic Metre"^^xsd:string,
        "На Джаул Кубичен Метър"@bg,
        "Na Joule Metr Krychlový"@cs,
        "Pro Joule Kubikmeter"@de,
        "Aνά Τζάουλ Κυβικό Μέτρο"@el,
        "Reciprocal Joule Cubic Metre"@en,
        "Reciprocal Joule Cubic Meter"@en-us,
        "Por Julio Metro Cúbico"@es,
        "Par Joule Mètre Cube"@fr,
        "Per Joule Metro Cubo"@it,
        "Per Joulium Metrum Cubicum"@la,
        "Per Joule Meter Kubik"@ms,
        "Na Dżul Metr Sześcienny"@pl,
        "Por Joule Metro Cúbico"@pt,
        "Pe Joule Metru Cub"@ro,
        "На Джоуль Кубический Метр"@ru,
        "Na Joule Kubični Meter"@sl,
        "Per Joule Metreküp"@tr ;
    dcterms:description "unit of the density of states as a reciprocal of the derived unit joule related to the power of the SI base unit metre by exponent 3"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$j^{-1}-m^3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-5I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:J ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:EnergyDensityOfStates ;
    qudt:iec61360Code "0112/2///62720#UAB165"^^xsd:string ;
    qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB165"^^xsd:anyURI ;
    qudt:symbol "/(J·m³)"^^xsd:string ;
    qudt:ucumCode "J-1.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C90"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105687104> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-J2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Joule"^^xsd:string,
        "На Квадратен Джаул"@bg,
        "Na Čtvereční Joule"@cs,
        "Pro Quadratjoule"@de,
        "Aνά Τετραγωνικό Τζάουλ"@el,
        "Reciprocal Square Joule"@en,
        "Por Julio Cuadrado"@es,
        "Par Joule Carré"@fr,
        "Per Joule Quadrato"@it,
        "Per Joulium Quadratum"@la,
        "Per Joule Persegi"@ms,
        "Na Dżul Kwadratowy"@pl,
        "Por Joule Quadrado"@pt,
        "Pe Joule Pătrat"@ro,
        "На Квадратный Джоуль"@ru,
        "Na Kvadratni Joule"@sl,
        "Per Joulekare"@tr ;
    dcterms:description "Per Square Joule is a denominator unit with dimensions $/eV^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$/J^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-4I0M-2H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:J ] ;
    qudt:hasQuantityKind qudtqk:InverseSquareEnergy ;
    qudt:symbol "/J²"^^xsd:string ;
    qudt:ucumCode "J-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-KiloGM a qudt:Unit ;
    rdfs:label "Reciprocal Kilogram"^^xsd:string,
        "На Килограм"@bg,
        "Na Kilogram"@cs,
        "Pro Kilogramm"@de,
        "Aνά Χιλιόγραμμο"@el,
        "Reciprocal Kilogram"@en,
        "Por Kilogramo"@es,
        "Par Kilogramme"@fr,
        "Per Chilogrammo"@it,
        "Per Chiliogramma"@la,
        "Per Kilogram"@ms,
        "Na Kilogram"@pl,
        "Por Quilograma"@pt,
        "Pe Kilogram"@ro,
        "На Килограмм"@ru,
        "Na Kilogram"@sl,
        "Per Kilogram"@tr ;
    dcterms:description "reciprocal of the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:InverseMass ;
    qudt:iec61360Code "0112/2///62720#UAC003"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC003"^^xsd:anyURI ;
    qudt:symbol "/kg"^^xsd:string ;
    qudt:ucumCode "kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-KiloGM-SEC a qudt:Unit ;
    rdfs:label "Reciprocal Kilogram Second"^^xsd:string,
        "На Килограм Секунда"@bg,
        "Na Kilogram Sekunda"@cs,
        "Pro Kilogramm Sekunde"@de,
        "Aνά Χιλιόγραμμο Δευτερόλεπτο"@el,
        "Reciprocal Kilogram Second"@en,
        "Por Kilogramo Segundo"@es,
        "Par Kilogramme Seconde"@fr,
        "Per Chilogrammo Secondo"@it,
        "Per Chiliogramma Secundum"@la,
        "Per Kilogram Saat"@ms,
        "Na Kilogram Sekunda"@pl,
        "Por Quilograma Segundo"@pt,
        "Pe Kilogram Secundă"@ro,
        "На Килограмм Секунда"@ru,
        "Na Kilogram Sekunda"@sl,
        "Per Kilogram Saniye"@tr ;
    dcterms:description "product of SI base units kilogram to the power of minus one and second to the power of minus one given as dimensional product dim Q = L**$a} M**$b} T**$g} I**$d} $TH**$e} N**$z} J**$i}"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD591"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD591"^^xsd:anyURI ;
    qudt:symbol "/(kg·s)"^^xsd:string ;
    qudt:ucumCode "kg-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-KiloGM2 a qudt:Unit ;
    rdfs:label "Reciprocal Square Kilogram"^^xsd:string,
        "На Квадратен Килограм"@bg,
        "Na Čtvereční Kilogram"@cs,
        "Pro Quadratkilogramm"@de,
        "Aνά Τετραγωνικό Χιλιόγραμμο"@el,
        "Reciprocal Square Kilogram"@en,
        "Por Kilogramo Cuadrado"@es,
        "Par Kilogramme Carré"@fr,
        "Per Chilogrammo Quadrato"@it,
        "Per Chiliogramma Quadratum"@la,
        "Per Kilogram Persegi"@ms,
        "Na Kilogram Kwadratowy"@pl,
        "Por Quilograma Quadrado"@pt,
        "Pe Kilogram Pătrat"@ro,
        "На Квадратный Килограмм"@ru,
        "Na Kvadratni Kilogram"@sl,
        "Per Kilogramkare"@tr ;
    dcterms:description "Per Square Kilogram is a denominator unit with dimensions $/kg^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$/kg^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-2H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:InverseSquareMass ;
    qudt:symbol "/kg²"^^xsd:string ;
    qudt:ucumCode "kg-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-LB a qudt:Unit ;
    rdfs:label "Reciprocal Pound Mass"^^xsd:string,
        "Reciprocal Pound Mass"@en ;
    dcterms:description "reciprocal of the unit pound (avoirdupois)"^^xsd:string ;
    qudt:conversionMultiplier 2.20462262184877580722973801345027 ;
    qudt:conversionMultiplierSN 2.204623e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:InverseMass ;
    qudt:iec61360Code "0112/2///62720#UAC008"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC008"^^xsd:anyURI ;
    qudt:symbol "/lbm"^^xsd:string ;
    qudt:ucumCode "[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-M-NanoM a qudt:Unit ;
    rdfs:label "Reciprocal Metre Nanometre"^^xsd:string,
        "Na Metr Nanometr"@cs,
        "Pro Meter Nanometer"@de,
        "Reciprocal Metre Nanometre"@en,
        "Reciprocal Meter Nanometer"@en-us,
        "Por Metro Nanometro"@es,
        "Par Mètre Nanomètre"@fr,
        "Per Metro Nanometro"@it,
        "Per Meter Nanometer"@ms,
        "Na Metr Nanometr"@pl,
        "Pe Metru Nanometru"@ro,
        "Na Meter Nanometer"@sl,
        "Per Metre Nanometre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:ParticleFluence ;
    qudt:symbol "/(m·nm)"^^xsd:string ;
    qudt:ucumCode "m-1.nm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-M-NanoM-SR a qudt:Unit ;
    rdfs:label "Reciprocal Metre Nanometre Steradian"^^xsd:string,
        "Na Metr Nanometr Steradián"@cs,
        "Pro Meter Nanometer Steradiant"@de,
        "Reciprocal Metre Nanometre Steradian"@en,
        "Reciprocal Meter Nanometer Steradian"@en-us,
        "Por Metro Nanometro Estereorradián"@es,
        "Par Mètre Nanomètre Stéradian"@fr,
        "Per Metro Nanometro Steradiante"@it,
        "Per Meter Nanometer Steradian"@ms,
        "Na Metr Nanometr Steradian"@pl,
        "Pe Metru Nanometru Steradian"@ro,
        "Na Meter Nanometer Steradian"@sl,
        "Per Metre Nanometre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "/(m·nm·sr)"^^xsd:string ;
    qudt:ucumCode "m-1.nm-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-M-SR a qudt:Unit ;
    rdfs:label "Reciprocal Metre Steradian"^^xsd:string,
        "На Метър Стерадиан"@bg,
        "Na Metr Steradián"@cs,
        "Pro Meter Steradiant"@de,
        "Aνά Μέτρο Στερακτίνιο"@el,
        "Reciprocal Metre Steradian"@en,
        "Reciprocal Meter Steradian"@en-us,
        "Por Metro Estereorradián"@es,
        "Par Mètre Stéradian"@fr,
        "Per Metro Steradiante"@it,
        "Per Metrum Steradian"@la,
        "Per Meter Steradian"@ms,
        "Na Metr Steradian"@pl,
        "Por Metro Esterradiano"@pt,
        "Pe Metru Steradian"@ro,
        "На Метр Стерадиан"@ru,
        "Na Meter Steradian"@sl,
        "Per Metre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "/(m·sr)"^^xsd:string ;
    qudt:ucumCode "m-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-MicroMOL-L a qudt:Unit ;
    rdfs:label "Reciprocal Micromole Litre"^^xsd:string,
        "Reciprocal Micromole Litre"@en,
        "Reciprocal Micromole Liter"@en-us ;
    dcterms:description "Units used to describe the sensitivity of detection of a spectrophotometer."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "/(μmol·L)"^^xsd:string ;
    qudt:ucumCode "umol-1.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-OZ a qudt:Unit ;
    rdfs:label "Reciprocal Ounce Mass"^^xsd:string,
        "Reciprocal Ounce Mass"@en ;
    dcterms:description "reciprocal of the unit ounce (avoirdupois)"^^xsd:string ;
    qudt:conversionMultiplier 35.27396194958041291567580821520433 ;
    qudt:conversionMultiplierSN 3.527396e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:OZ ] ;
    qudt:hasQuantityKind qudtqk:InverseMass ;
    qudt:iec61360Code "0112/2///62720#UAC007"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC007"^^xsd:anyURI ;
    qudt:symbol "/oz"^^xsd:string ;
    qudt:ucumCode "[oz_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-PERCENT a qudt:Unit ;
    rdfs:label "Reciprocal Percent"^^xsd:string,
        "Reciprocal Percent"@en ;
    dcterms:description "reciprocal of one hundredth"^^xsd:string ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD873"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD873"^^xsd:anyURI ;
    qudt:symbol "/%"^^xsd:string ;
    qudt:ucumCode "%-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-RAD a qudt:Unit ;
    rdfs:label "Reciprocal Radian"^^xsd:string,
        "На Радиан"@bg,
        "Na Radián"@cs,
        "Pro Radiant"@de,
        "Aνά Ακτίνιο"@el,
        "Reciprocal Radian"@en,
        "Por Radián"@es,
        "Par Radian"@fr,
        "Per Radiante"@it,
        "Per Radian"@la,
        "Per Radian"@ms,
        "Na Radian"@pl,
        "Por Radiano"@pt,
        "Pe Radian"@ro,
        "На Радиан"@ru,
        "Na Radian"@sl,
        "Per Radyan"@tr ;
    dcterms:description "reciprocal of the unit radian"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB327"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB327"^^xsd:anyURI ;
    qudt:symbol "/rad"^^xsd:string ;
    qudt:ucumCode "rad-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P97"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC-M2 a qudt:Unit ;
    rdfs:label "Reciprocal Second Square Metre"^^xsd:string,
        "На Секунда Квадратен Метър"@bg,
        "Na Sekunda Čtvereční Metr"@cs,
        "Pro Sekunde Quadratmeter"@de,
        "Aνά Δευτερόλεπτο Τετραγωνικό Μέτρο"@el,
        "Reciprocal Second Square Metre"@en,
        "Reciprocal Second Square Meter"@en-us,
        "Por Segundo Metro Cuadrado"@es,
        "Par Seconde Mètre Carré"@fr,
        "Per Secondo Metro Quadrato"@it,
        "Per Secundum Metrum Quadratum"@la,
        "Per Saat Meter Persegi"@ms,
        "Na Sekunda Metr Kwadratowy"@pl,
        "Por Segundo Metro Quadrado"@pt,
        "Pe Secundă Metru Pătrat"@ro,
        "На Секунда Квадратный Метр"@ru,
        "Na Sekunda Kvadratni Meter"@sl,
        "Per Saniye Metrekare"@tr ;
    dcterms:description "$\\textit{Per Second Square Meter}$ is a measure of flux with dimensions $/sec-m^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$per-sec-m^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Flux ;
    qudt:iec61360Code "0112/2///62720#UAA974"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA974"^^xsd:anyURI ;
    qudt:symbol "/(s·m²)"^^xsd:string ;
    qudt:ucumCode "s-1.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C99"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC-M2-SR a qudt:Unit ;
    rdfs:label "Reciprocal Second Square Metre Steradian"^^xsd:string,
        "На Секунда Квадратен Метър Стерадиан"@bg,
        "Na Sekunda Čtvereční Metr Steradián"@cs,
        "Pro Sekunde Quadratmeter Steradiant"@de,
        "Aνά Δευτερόλεπτο Τετραγωνικό Μέτρο Στερακτίνιο"@el,
        "Reciprocal Second Square Metre Steradian"@en,
        "Reciprocal Second Square Meter Steradian"@en-us,
        "Por Segundo Metro Cuadrado Estereorradián"@es,
        "Par Seconde Mètre Carré Stéradian"@fr,
        "Per Secondo Metro Quadrato Steradiante"@it,
        "Per Secundum Metrum Quadratum Steradian"@la,
        "Per Saat Meter Persegi Steradian"@ms,
        "Na Sekunda Metr Kwadratowy Steradian"@pl,
        "Por Segundo Metro Quadrado Esterradiano"@pt,
        "Pe Secundă Metru Pătrat Steradian"@ro,
        "На Секунда Квадратный Метр Стерадиан"@ru,
        "Na Sekunda Kvadratni Meter Steradian"@sl,
        "Per Saniye Metrekare Steradyan"@tr ;
    dcterms:description "Per Second Square Meter Steradian is a denominator unit with dimensions $/sec-m^2-sr$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$/sec-m^2-sr$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:PhotonRadiance ;
    qudt:symbol "/(s·m²·sr)"^^xsd:string ;
    qudt:ucumCode "s-1.m-2.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D2"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83855084> ;
    rdfs:comment "It is not clear this unit is ever used. [Editor]"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC-M3 a qudt:Unit ;
    rdfs:label "Reciprocal Second Cubic Metre"^^xsd:string,
        "На Секунда Кубичен Метър"@bg,
        "Na Sekunda Metr Krychlový"@cs,
        "Pro Sekunde Kubikmeter"@de,
        "Aνά Δευτερόλεπτο Κυβικό Μέτρο"@el,
        "Reciprocal Second Cubic Metre"@en,
        "Reciprocal Second Cubic Meter"@en-us,
        "Por Segundo Metro Cúbico"@es,
        "Par Seconde Mètre Cube"@fr,
        "Per Secondo Metro Cubo"@it,
        "Per Secundum Metrum Cubicum"@la,
        "Per Saat Meter Kubik"@ms,
        "Na Sekunda Metr Sześcienny"@pl,
        "Por Segundo Metro Cúbico"@pt,
        "Pe Secundă Metru Cub"@ro,
        "На Секунда Кубический Метр"@ru,
        "Na Sekunda Kubični Meter"@sl,
        "Per Saniye Metreküp"@tr ;
    dcterms:description "reciprocal of the SI base unit second divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Slowing-DownDensity ;
    qudt:iec61360Code "0112/2///62720#UAA975"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA975"^^xsd:anyURI ;
    qudt:symbol "/(s·m³)"^^xsd:string ;
    qudt:ucumCode "s-1.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SEC-SR-M2 a qudt:Unit ;
    rdfs:label "Reciprocal Second Steradian Square Metre"^^xsd:string,
        "На Секунда Стерадиан Квадратен Метър"@bg,
        "Na Sekunda Steradián Čtvereční Metr"@cs,
        "Pro Sekunde Steradiant Quadratmeter"@de,
        "Aνά Δευτερόλεπτο Στερακτίνιο Τετραγωνικό Μέτρο"@el,
        "Reciprocal Second Steradian Square Metre"@en,
        "Reciprocal Second Steradian Square Meter"@en-us,
        "Por Segundo Estereorradián Metro Cuadrado"@es,
        "Par Seconde Stéradian Mètre Carré"@fr,
        "Per Secondo Steradiante Metro Quadrato"@it,
        "Per Secundum Steradian Metrum Quadratum"@la,
        "Per Saat Steradian Meter Persegi"@ms,
        "Na Sekunda Steradian Metr Kwadratowy"@pl,
        "Por Segundo Esterradiano Metro Quadrado"@pt,
        "Pe Secundă Steradian Metru Pătrat"@ro,
        "На Секунда Стерадиан Квадратный Метр"@ru,
        "Na Sekunda Steradian Kvadratni Meter"@sl,
        "Per Saniye Steradyan Metrekare"@tr ;
    dcterms:description "reciprocal of the SI base unit second divided by the product of the SI derived unit steradian and the power of the SI base unit metre and te exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA977"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA977"^^xsd:anyURI ;
    qudt:symbol "/(s·sr·m²)"^^xsd:string ;
    qudt:ucumCode "s-1.sr-1.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D2"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-SR a qudt:Unit ;
    rdfs:label "Reciprocal Steradian"^^xsd:string,
        "На Стерадиан"@bg,
        "Na Steradián"@cs,
        "Pro Steradiant"@de,
        "Aνά Στερακτίνιο"@el,
        "Reciprocal Steradian"@en,
        "Por Estereorradián"@es,
        "Par Stéradian"@fr,
        "Per Steradiante"@it,
        "Per Steradian"@la,
        "Per Steradian"@ms,
        "Na Steradian"@pl,
        "Por Esterradiano"@pt,
        "Pe Steradian"@ro,
        "На Стерадиан"@ru,
        "Na Steradian"@sl,
        "Per Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "/sr"^^xsd:string ;
    qudt:ucumCode "sr-1"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q108533173> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-TON a qudt:Unit ;
    rdfs:label "Reciprocal Ton"^^xsd:string,
        "Reciprocal Ton"@en ;
    dcterms:description "reciprocal of the 2,000-fold of the SI base unit pound"^^xsd:string ;
    qudt:conversionMultiplier 0.001102311310924387903614869006725135 ;
    qudt:conversionMultiplierSN 1.102311e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:TON ] ;
    qudt:hasQuantityKind qudtqk:InverseMass ;
    qudt:symbol "/tn"^^xsd:string ;
    qudt:ucumCode "ston_av-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-TONNE a qudt:Unit ;
    rdfs:label "Reciprocal Tonne"^^xsd:string,
        "Reciprocal Tonne"@en ;
    dcterms:description "reciprocal of the 1,000-fold of the SI base unit kilogram"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:TONNE ] ;
    qudt:hasQuantityKind qudtqk:InverseMass ;
    qudt:iec61360Code "0112/2///62720#UAC006"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC006"^^xsd:anyURI ;
    qudt:symbol "/t"^^xsd:string ;
    qudt:ucumCode "t-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PER-V a qudt:Unit ;
    rdfs:label "Reciprocal Volt"^^xsd:string,
        "На Волт"@bg,
        "Na Volt"@cs,
        "Pro Volt"@de,
        "Aνά Βολτ"@el,
        "Reciprocal Volt"@en,
        "Por Voltio"@es,
        "Par Volt"@fr,
        "Per Volt"@it,
        "Per Voltium"@la,
        "Per Volt"@ms,
        "Na Wolt"@pl,
        "Por Volt"@pt,
        "Pe Volt"@ro,
        "На Вольт"@ru,
        "Na Volt"@sl,
        "Per Volt"@tr ;
    dcterms:description "reciprocal of the SI derived unit volt"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:ReciprocalVoltage ;
    qudt:iec61360Code "0112/2///62720#UAB326"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB326"^^xsd:anyURI ;
    qudt:symbol "/V"^^xsd:string ;
    qudt:ucumCode "V-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "P96"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-FT-HR-PER-LB a qudt:Unit ;
    rdfs:label "Percent Foot Hour per Pound Mass"^^xsd:string,
        "Percent Foot Hour per Pound Mass"@en ;
    dcterms:description "hundredth relating to the quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units and the product of the units foot and unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 24.19088310502224717757046927398712 ;
    qudt:conversionMultiplierSN 2.419088e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC808"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC808"^^xsd:anyURI ;
    qudt:symbol "%·ft·h/lbm"^^xsd:string ;
    qudt:ucumCode "%.[ft_i].h.[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-FT-SEC-PER-LB a qudt:Unit ;
    rdfs:label "Percent Foot Second per Pound Mass"^^xsd:string,
        "Percent Foot Second per Pound Mass"@en ;
    dcterms:description "hundredth relating to the quotient of the unit of the mass avoirdupois pound according to the avoirdupois system of units and the product of the units foot and SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.006719689751395068660436241464996423 ;
    qudt:conversionMultiplierSN 6.71969e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC809"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC809"^^xsd:anyURI ;
    qudt:symbol "%·ft·s/lbm"^^xsd:string ;
    qudt:ucumCode "%.[ft_i].s.[lb_av]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-FT2-PER-LB_F-SEC a qudt:Unit ;
    rdfs:label "Percent Square Foot per Pound Force Second"^^xsd:string,
        "Percent Square Foot per Pound Force Second"@en ;
    dcterms:description "hundredth relating to the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second and power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.0002088543329607266931093922420396694 ;
    qudt:conversionMultiplierSN 2.088543e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Fluidity ;
    qudt:iec61360Code "0112/2///62720#UAC810"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC810"^^xsd:anyURI ;
    qudt:symbol "%·ft²/(lbf·s)"^^xsd:string ;
    qudt:ucumCode "%.[ft_i]2.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Percent Hour per Cubic Centimetre"^^xsd:string,
        "Percent Hour per Cubic Centimetre"@en,
        "Percent Hour per Cubic Centimeter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 36000000.0 ;
    qudt:conversionMultiplierSN 3.6e+07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC781"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC781"^^xsd:anyURI ;
    qudt:symbol "%·h/cm³"^^xsd:string ;
    qudt:ucumCode "%.h.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-FT3 a qudt:Unit ;
    rdfs:label "Percent Hour per Cubic Foot"^^xsd:string,
        "Percent Hour per Cubic Foot"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 1271.328001973589249015768372744095 ;
    qudt:conversionMultiplierSN 1.271328e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC786"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC786"^^xsd:anyURI ;
    qudt:symbol "%·h/ft³"^^xsd:string ;
    qudt:ucumCode "%.h.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-GAL_UK a qudt:Unit ;
    rdfs:label "Percent Hour per Gallon (UK)"^^xsd:string,
        "Percent Hour per Gallon (UK)"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 7918.892938767160350982932586024475 ;
    qudt:conversionMultiplierSN 7.918893e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC784"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC784"^^xsd:anyURI ;
    qudt:symbol "%·h/gal{UK}"^^xsd:string ;
    qudt:ucumCode "%.h.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-GAL_US a qudt:Unit ;
    rdfs:label "Percent Hour per Us Gallon"^^xsd:string,
        "Percent Hour per Us Gallon"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 9510.19388489334295367639717792985 ;
    qudt:conversionMultiplierSN 9.510194e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC783"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC783"^^xsd:anyURI ;
    qudt:symbol "%·h/gal{US}"^^xsd:string ;
    qudt:ucumCode "%.h.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-IN3 a qudt:Unit ;
    rdfs:label "Percent Hour per Cubic Inch"^^xsd:string,
        "Percent Hour per Cubic Inch"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 2196854.787410362222299247748101795 ;
    qudt:conversionMultiplierSN 2.196855e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC785"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC785"^^xsd:anyURI ;
    qudt:symbol "%·h/in³"^^xsd:string ;
    qudt:ucumCode "%.h.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-L a qudt:Unit ;
    rdfs:label "Percent Hour per Litre"^^xsd:string,
        "Percent Hour per Litre"@en,
        "Percent Hour per Liter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the unit litre and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 36000.0 ;
    qudt:conversionMultiplierSN 3.6e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC782"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC782"^^xsd:anyURI ;
    qudt:symbol "%·h/L"^^xsd:string ;
    qudt:ucumCode "%.h.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-M3 a qudt:Unit ;
    rdfs:label "Percent Hour per Cubic Metre"^^xsd:string,
        "Percent Hour per Cubic Metre"@en,
        "Percent Hour per Cubic Meter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 36.0 ;
    qudt:conversionMultiplierSN 3.6e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC780"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC780"^^xsd:anyURI ;
    qudt:symbol "%·h/m³"^^xsd:string ;
    qudt:ucumCode "%.h.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-HR-PER-YD3 a qudt:Unit ;
    rdfs:label "Percent Hour per Cubic Yard"^^xsd:string,
        "Percent Hour per Cubic Yard"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time hour"^^xsd:string ;
    qudt:conversionMultiplier 47.08622229531812033391734713867015 ;
    qudt:conversionMultiplierSN 4.708622e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC787"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC787"^^xsd:anyURI ;
    qudt:symbol "%·h/yd³"^^xsd:string ;
    qudt:ucumCode "%.h.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-IN2-PER-LB_F-SEC a qudt:Unit ;
    rdfs:label "Percent Square Inch per Pound Force Second"^^xsd:string,
        "Percent Square Inch per Pound Force Second"@en ;
    dcterms:description "hundredth relating to the product of the unit pound-force according to the Anglo-American system of units and quotient of SI base unit second and power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 0.000001450377312227268702148557236386593 ;
    qudt:conversionMultiplierSN 1.450377e-06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Fluidity ;
    qudt:iec61360Code "0112/2///62720#UAC811"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC811"^^xsd:anyURI ;
    qudt:symbol "%·in²/(lbf·s)"^^xsd:string ;
    qudt:ucumCode "%.[in_i]2.[lbf_av]-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Percent Minute per Cubic Centimetre"^^xsd:string,
        "Percent Minute per Cubic Centimetre"@en,
        "Percent Minute per Cubic Centimeter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 600000.0 ;
    qudt:conversionMultiplierSN 6e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC789"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC789"^^xsd:anyURI ;
    qudt:symbol "%·min/cm³"^^xsd:string ;
    qudt:ucumCode "%.min.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-FT3 a qudt:Unit ;
    rdfs:label "Percent Minute per Cubic Foot"^^xsd:string,
        "Percent Minute per Cubic Foot"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 21.18880003289315415026280621240158 ;
    qudt:conversionMultiplierSN 2.11888e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC794"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC794"^^xsd:anyURI ;
    qudt:symbol "%·min/ft³"^^xsd:string ;
    qudt:ucumCode "%.min.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-GAL_UK a qudt:Unit ;
    rdfs:label "Percent Minute per Gallon (UK)"^^xsd:string,
        "Percent Minute per Gallon (UK)"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 131.9815489794526725163822097670746 ;
    qudt:conversionMultiplierSN 1.319815e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC792"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC792"^^xsd:anyURI ;
    qudt:symbol "%·min/gal{UK}"^^xsd:string ;
    qudt:ucumCode "%.min.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-GAL_US a qudt:Unit ;
    rdfs:label "Percent Minute per Us Gallon"^^xsd:string,
        "Percent Minute per Us Gallon"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 158.5032314148890492279399529654975 ;
    qudt:conversionMultiplierSN 1.585032e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC791"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC791"^^xsd:anyURI ;
    qudt:symbol "%·min/gal{US}"^^xsd:string ;
    qudt:ucumCode "%.min.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-IN3 a qudt:Unit ;
    rdfs:label "Percent Minute per Cubic Inch"^^xsd:string,
        "Percent Minute per Cubic Inch"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 36614.24645683937037165412913502992 ;
    qudt:conversionMultiplierSN 3.661425e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC793"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC793"^^xsd:anyURI ;
    qudt:symbol "%·min/in³"^^xsd:string ;
    qudt:ucumCode "%.min.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-L a qudt:Unit ;
    rdfs:label "Percent Minute per Litre"^^xsd:string,
        "Percent Minute per Litre"@en,
        "Percent Minute per Liter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the unit litre and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 600.0 ;
    qudt:conversionMultiplierSN 6e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC790"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC790"^^xsd:anyURI ;
    qudt:symbol "%·min/L"^^xsd:string ;
    qudt:ucumCode "%.min.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-M3 a qudt:Unit ;
    rdfs:label "Percent Minute per Cubic Metre"^^xsd:string,
        "Percent Minute per Cubic Metre"@en,
        "Percent Minute per Cubic Meter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.6 ;
    qudt:conversionMultiplierSN 6e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC788"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC788"^^xsd:anyURI ;
    qudt:symbol "%·min/m³"^^xsd:string ;
    qudt:ucumCode "%.min.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-MIN-PER-YD3 a qudt:Unit ;
    rdfs:label "Percent Minute per Cubic Yard"^^xsd:string,
        "Percent Minute per Cubic Yard"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the unit for time minute"^^xsd:string ;
    qudt:conversionMultiplier 0.7847703715886353388986224523111692 ;
    qudt:conversionMultiplierSN 7.847704e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC795"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC795"^^xsd:anyURI ;
    qudt:symbol "%·min/yd³"^^xsd:string ;
    qudt:ucumCode "%.min.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-BAR a qudt:Unit ;
    rdfs:label "Percent per Bar"^^xsd:string,
        "Percent per Bar"@en ;
    dcterms:description "hundredth relating to the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.0000001 ;
    qudt:conversionMultiplierSN 1e-07 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Compressibility ;
    qudt:iec61360Code "0112/2///62720#UAA010"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA010"^^xsd:anyURI ;
    qudt:symbol "%/bar"^^xsd:string ;
    qudt:ucumCode "%.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H96"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-CentiPOISE a qudt:Unit ;
    rdfs:label "Percent per Centipoise"^^xsd:string,
        "Percent per Centipoise"@en ;
    dcterms:description "[CGS] hundredth relating to the 0.01-fold of the unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiPOISE ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC807"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC807"^^xsd:anyURI ;
    qudt:symbol "%/cP"^^xsd:string ;
    qudt:ucumCode "%.cP-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-DEG a qudt:Unit ;
    rdfs:label "Percent per Degree"^^xsd:string,
        "Percent per Degree"@en ;
    dcterms:description "hundredth relating to the unit degree"^^xsd:string ;
    qudt:conversionMultiplier 0.5729577957855229894302178227976183 ;
    qudt:conversionMultiplierSN 5.729578e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA002"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA002"^^xsd:anyURI ;
    qudt:symbol "%/°"^^xsd:string ;
    qudt:ucumCode "%.deg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-DEG_C a qudt:Unit ;
    rdfs:label "Percent per Degree Celsius"^^xsd:string,
        "Percent per Degree Celsius"@en ;
    dcterms:description "hundredth divided by the unit degree Celsius"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:ThermalExpansionCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA003"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA003"^^xsd:anyURI ;
    qudt:symbol "%/°C"^^xsd:string ;
    qudt:ucumCode "%.Cel-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-DecaK a qudt:Unit ;
    rdfs:label "Percent per Decakelvin"^^xsd:string,
        "Percent per Decakelvin"@en ;
    dcterms:description "hundredth relating to the 10-fold of the SI base unit Kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DecaK ] ;
    qudt:hasQuantityKind qudtqk:LinearExpansionCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA011"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA011"^^xsd:anyURI ;
    qudt:symbol "%/daK"^^xsd:string ;
    qudt:ucumCode "%.daK-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H73"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-HectoBAR a qudt:Unit ;
    rdfs:label "Percent per Hectobar"^^xsd:string,
        "Percent per Hectobar"@en ;
    dcterms:description "hundredths relating to the 100-fold of unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HectoBAR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Compressibility ;
    qudt:iec61360Code "0112/2///62720#UAB373"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB373"^^xsd:anyURI ;
    qudt:symbol "%/hbar"^^xsd:string ;
    qudt:ucumCode "%.hbar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H72"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-IN a qudt:Unit ;
    rdfs:label "Percent per Inch"^^xsd:string,
        "Percent per Inch"@en ;
    dcterms:description "hundredth divided by the unit inch according to the Anglo-American and the Imperial system of units"^^xsd:string ;
    qudt:conversionMultiplier 0.3937007874015748031496062992125984 ;
    qudt:conversionMultiplierSN 3.937008e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Repetency ;
    qudt:iec61360Code "0112/2///62720#UAA012"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA012"^^xsd:anyURI ;
    qudt:symbol "%/in"^^xsd:string ;
    qudt:ucumCode "%.[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-K a qudt:Unit ;
    rdfs:label "Percent per Kelvin"^^xsd:string,
        "Percent per Kelvin"@en ;
    dcterms:description "hundredth divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:LinearExpansionCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA008"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA008"^^xsd:anyURI ;
    qudt:symbol "%/K"^^xsd:string ;
    qudt:ucumCode "%.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H25"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-M a qudt:Unit ;
    rdfs:label "Percent per Metre"^^xsd:string,
        "Percent per Metre"@en,
        "Percent per Meter"@en-us ;
    dcterms:description "hundredth relating to the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:AttenuationCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA013"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA013"^^xsd:anyURI ;
    qudt:symbol "%/m"^^xsd:string ;
    qudt:ucumCode "%.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H99"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-MilliM a qudt:Unit ;
    rdfs:label "Percent per Millimetre"^^xsd:string,
        "Percent per Millimetre"@en,
        "Percent per Millimeter"@en-us ;
    dcterms:description "hundredth relating to the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ] ;
    qudt:hasQuantityKind qudtqk:Repetency ;
    qudt:iec61360Code "0112/2///62720#UAA014"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA014"^^xsd:anyURI ;
    qudt:symbol "%/mm"^^xsd:string ;
    qudt:ucumCode "%.mm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "J10"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-MilliPA-SEC a qudt:Unit ;
    rdfs:label "Percent per Millipascal Second"^^xsd:string,
        "Percent per Millipascal Second"@en ;
    dcterms:description "hundredth relating to the product of the 0.001-fold of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliPA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC804"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC804"^^xsd:anyURI ;
    qudt:symbol "%/(mPa·s)"^^xsd:string ;
    qudt:ucumCode "%.mPa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-OHM a qudt:Unit ;
    rdfs:label "Percent per Ohm"^^xsd:string,
        "Percent per Ohm"@en ;
    dcterms:description "hundredth relating to the SI unit ohm"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-2I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:OHM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA001"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA001"^^xsd:anyURI ;
    qudt:symbol "%/Ω"^^xsd:string ;
    qudt:ucumCode "%.Ohm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-PA-SEC a qudt:Unit ;
    rdfs:label "Percent per Pascal Second"^^xsd:string,
        "Percent per Pascal Second"@en ;
    dcterms:description "hundredth relating to the product of the SI derived unit pascal and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC805"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC805"^^xsd:anyURI ;
    qudt:symbol "%/(Pa·s)"^^xsd:string ;
    qudt:ucumCode "%.Pa-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-PERCENT a qudt:Unit ;
    rdfs:label "Percent per Percent"^^xsd:string,
        "Percent per Percent"@en ;
    dcterms:description "hundredth relating to a hundreth"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD871"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD871"^^xsd:anyURI ;
    qudt:symbol "%/%"^^xsd:string ;
    qudt:ucumCode "%.%-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-POISE a qudt:Unit ;
    rdfs:label "Percent per Poise"^^xsd:string,
        "Percent per Poise"@en ;
    dcterms:description "[CGS] hundredth relating to the unit of the dynamic viscosity poise"^^xsd:string ;
    qudt:conversionMultiplier 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC806"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC806"^^xsd:anyURI ;
    qudt:symbol "%/P"^^xsd:string ;
    qudt:ucumCode "%.P-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-SEC a qudt:Unit ;
    rdfs:label "Percent per Second"^^xsd:string,
        "Percent per Second"@en ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:RateOfChange ;
    qudt:plainTextDescription "percent divided by the unit second"^^xsd:string ;
    qudt:symbol "%/s"^^xsd:string ;
    qudt:ucumCode "%.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-V a qudt:Unit ;
    rdfs:label "Percent per Volt"^^xsd:string,
        "Percent per Volt"@en ;
    dcterms:description "hundredth relating to the SI unit volt"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA009"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA009"^^xsd:anyURI ;
    qudt:symbol "%/V"^^xsd:string ;
    qudt:ucumCode "%.V-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H95"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-PER-YR a qudt:Unit ;
    rdfs:label "Percent per Year"^^xsd:string,
        "Percent per Year"@en ;
    qudt:conversionMultiplier 0.0000000003168808781402895023702689684893655 ;
    qudt:conversionMultiplierSN 3.168809e-10 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:YR ] ;
    qudt:hasQuantityKind qudtqk:RateOfChange ;
    qudt:plainTextDescription "percent divided by the unit year"^^xsd:string ;
    qudt:symbol "%/a"^^xsd:string ;
    qudt:ucumCode "%.a-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-CentiM3 a qudt:Unit ;
    rdfs:label "Percent Second per Cubic Centimetre"^^xsd:string,
        "Percent Second per Cubic Centimetre"@en,
        "Percent Second per Cubic Centimeter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the 0.000001-fold of the power of the SI base unit metre with the exponent 3 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 10000.0 ;
    qudt:conversionMultiplierSN 1e+04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC797"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC797"^^xsd:anyURI ;
    qudt:symbol "%·s/cm³"^^xsd:string ;
    qudt:ucumCode "%.s.cm-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-FT3 a qudt:Unit ;
    rdfs:label "Percent Second per Cubic Foot"^^xsd:string,
        "Percent Second per Cubic Foot"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit foot according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.3531466672148859025043801035400263 ;
    qudt:conversionMultiplierSN 3.531467e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:FT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC802"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC802"^^xsd:anyURI ;
    qudt:symbol "%·s/ft³"^^xsd:string ;
    qudt:ucumCode "%.s.[ft_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-GAL_UK a qudt:Unit ;
    rdfs:label "Percent Second per Gallon (UK)"^^xsd:string,
        "Percent Second per Gallon (UK)"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (UK) according to the Imperial system of units and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 2.199692482990877875273036829451243 ;
    qudt:conversionMultiplierSN 2.199692e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC800"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC800"^^xsd:anyURI ;
    qudt:symbol "%·s/gal{UK}"^^xsd:string ;
    qudt:ucumCode "%.s.[gal_br]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-GAL_US a qudt:Unit ;
    rdfs:label "Percent Second per Us Gallon"^^xsd:string,
        "Percent Second per Us Gallon"@en ;
    dcterms:description "hundredth relating to the quotient of the unit gallon (US) according to the Anglo-American system of units and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 2.641720523581484153798999216091625 ;
    qudt:conversionMultiplierSN 2.641721e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:GAL_US ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC799"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC799"^^xsd:anyURI ;
    qudt:symbol "%·s/gal{US}"^^xsd:string ;
    qudt:ucumCode "%.s.[gal_us]-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-IN3 a qudt:Unit ;
    rdfs:label "Percent Second per Cubic Inch"^^xsd:string,
        "Percent Second per Cubic Inch"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit inch according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 610.2374409473228395275688189171654 ;
    qudt:conversionMultiplierSN 6.102374e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC801"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC801"^^xsd:anyURI ;
    qudt:symbol "%·s/in³"^^xsd:string ;
    qudt:ucumCode "%.s.[in_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-L a qudt:Unit ;
    rdfs:label "Percent Second per Litre"^^xsd:string,
        "Percent Second per Litre"@en,
        "Percent Second per Liter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the unit litre and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC798"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC798"^^xsd:anyURI ;
    qudt:symbol "%·s/L"^^xsd:string ;
    qudt:ucumCode "%.s.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-M3 a qudt:Unit ;
    rdfs:label "Percent Second per Cubic Metre"^^xsd:string,
        "Percent Second per Cubic Metre"@en,
        "Percent Second per Cubic Meter"@en-us ;
    dcterms:description "hundredth relating to the quotient of the power of the SI base unit metre with the exponent 3 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC796"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC796"^^xsd:anyURI ;
    qudt:symbol "%·s/m³"^^xsd:string ;
    qudt:ucumCode "%.s.m-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT-SEC-PER-YD3 a qudt:Unit ;
    rdfs:label "Percent Second per Cubic Yard"^^xsd:string,
        "Percent Second per Cubic Yard"@en ;
    dcterms:description "hundredth relating to the quotient of power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 and the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.01307950619314392231497704087185282 ;
    qudt:conversionMultiplierSN 1.307951e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PERCENT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAC803"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAC803"^^xsd:anyURI ;
    qudt:symbol "%·s/yd³"^^xsd:string ;
    qudt:ucumCode "%.s.[yd_i]-3"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERCENT_RH a qudt:Unit ;
    rdfs:label "Percent Relative Humidity"^^xsd:string,
        "Percent Relative Humidity"@en ;
    dcterms:description "Percent relative humidity is the ratio of the partial pressure of water vapor to the equilibrium vapor pressure of water at a given temperature, expressed as a percentage."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/ASU>,
        <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-ESU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:RelativeHumidity ;
    qudt:plainTextDescription "Percent relative humidity is the ratio of the partial pressure of water vapor to the equilibrium vapor pressure of water at a given temperature, expressed as a percentage."^^xsd:string ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "%RH"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERMEABILITY_EM_REL a qudt:Unit ;
    rdfs:label "Relative Electromagnetic Permeability"^^xsd:string,
        "Relative Electromagnetic Permeability"@en ;
    dcterms:description "Relative permeability, denoted by the symbol $\\mu _T$, is the ratio of the permeability of a specific medium to the permeability of free space $\\mu _0$"^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:ElectromagneticPermeabilityRatio ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ;
    qudt:latexSymbol "$\\mu\\,T$"^^qudt:LatexString ;
    qudt:symbol "μₜ"^^xsd:string ;
    qudt:ucumCode "[mu_0]"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERMEABILITY_REL a qudt:Unit ;
    rdfs:label "Relative Permeability"^^xsd:string,
        "Relative Permeability"@en ;
    dcterms:description "In multiphase flow in porous media, the relative permeability of a phase is a dimensionless measure of the effective permeability of that phase. It is the ratio of the effective permeability of that phase to the absolute permeability. It can be viewed as an adaptation of Darcy's law to multiphase flow. For two-phase flow in porous media given steady-state conditions, we can write where is the flux, is the pressure drop, is the viscosity."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 0.00000125663706 ;
    qudt:conversionMultiplierSN 1.256637e-06 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Relative_permeability"^^xsd:anyURI ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:PermeabilityRatio ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Relative_permeability"^^xsd:anyURI ;
    qudt:scalingOf unit:NUM ;
    qudt:symbol "kᵣ"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_Metric a qudt:Unit ;
    rdfs:label "Metric Perm"^^xsd:string,
        "Metric Perm"@en ;
    dcterms:description "The rate of water vapor transmission through a specific thickness of a material—i.e., the permeability divided by the thickness."^^xsd:string ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ;
    qudt:latexDefinition "\\frac{ng}{s \\cdot m^2 \\cdot Pa}"^^qudt:LatexString ;
    qudt:scalingOf unit:SEC-PER-M ;
    qudt:symbol "perm{Metric}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PERM_US a qudt:Unit ;
    rdfs:label "U.s. Perm"^^xsd:string,
        "U.s. Perm"@en ;
    dcterms:description "The rate of water vapor transmission through a specific thickness of a material—i.e., the permeability divided by the thickness."^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.0000000000572135 ;
    qudt:conversionMultiplierSN 5.72135e-11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T1D0> ;
    qudt:hasQuantityKind qudtqk:VapourPermeance ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Perm_(unit)"^^xsd:anyURI ;
    qudt:latexDefinition "\\frac{grain}{hour \\cdot ft^2 \\cdot in\\,Hg}"^^qudt:LatexString ;
    qudt:scalingOf unit:SEC-PER-M ;
    qudt:symbol "perm{US}"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PHON a qudt:Unit ;
    rdfs:label "Phon"^^xsd:string,
        "Phon"@en ;
    dcterms:description "psychoacoustical unit for the loudness level, to describe the emotionally sense of the sound level, with which a human will understand an acoustic noise event as an hearing event"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:SoundPressureLevel ;
    qudt:iec61360Code "0112/2///62720#UAA937"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA937"^^xsd:anyURI ;
    qudt:symbol "phon"^^xsd:string ;
    qudt:uneceCommonCode "C69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PINT_US_DRY a qudt:Unit ;
    rdfs:label "Us Dry Pint"^^xsd:string,
        "Us Dry Pint"@en ;
    dcterms:description "\"US Dry Pint\" is a C.G.S System unit for  'Dry Volume' expressed as $dry_pt$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.000550610471 ;
    qudt:conversionMultiplierSN 5.506105e-04 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAA962"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA962"^^xsd:anyURI ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "pt{US Dry}"^^xsd:string ;
    qudt:ucumCode "[dpt_us]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L61"^^xsd:string,
        "PTD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q32751272> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:POISE-PER-K a qudt:Unit ;
    rdfs:label "Poise per Kelvin"^^xsd:string,
        "Poise per Kelvin"@en ;
    dcterms:description "[CGS] unit poise divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.1 ;
    qudt:conversionMultiplierSN 1e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:POISE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA256"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA256"^^xsd:anyURI ;
    qudt:symbol "P/K"^^xsd:string ;
    qudt:ucumCode "P.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PSI-PER-PSI a qudt:Unit ;
    rdfs:label "Psi per Psi"^^xsd:string,
        "Psi per Psi"@en ;
    dcterms:description "composed unit for pressure (pound-force per square inch) divided by the composed unit for pressure (pound-force per square inch)"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind qudtqk:PressureRatio ;
    qudt:iec61360Code "0112/2///62720#UAA951"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA951"^^xsd:anyURI ;
    qudt:plainTextDescription "composed unit for pressure (pound-force per square inch) divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:symbol "psi/psi"^^xsd:string ;
    qudt:ucumCode "[psi].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L52"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PebiBIT-PER-M a qudt:Unit ;
    rdfs:label "Pebibit per Metre"^^xsd:string,
        "Pebibit per Metre"@en,
        "Pebibit per Meter"@en-us ;
    dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 87267165460724.59169291379527415124 ;
    qudt:conversionMultiplierSN 8.726717e+13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PebiBIT ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA271"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA271"^^xsd:anyURI ;
    qudt:symbol "Pib/m"^^xsd:string ;
    qudt:uneceCommonCode "E80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PebiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Pebibit per Square Metre"^^xsd:string,
        "Pebibit per Square Metre"@en,
        "Pebibit per Square Meter"@en-us ;
    dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 87267165460724.59169291379527415124 ;
    qudt:conversionMultiplierSN 8.726717e+13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PebiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA272"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA272"^^xsd:anyURI ;
    qudt:symbol "Pib/m²"^^xsd:string ;
    qudt:uneceCommonCode "E81"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PebiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Pebibit per Cubic Metre"^^xsd:string,
        "Pebibit per Cubic Metre"@en,
        "Pebibit per Cubic Meter"@en-us ;
    dcterms:description "1,125,899,906,842,624-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 87267165460724.59169291379527415124 ;
    qudt:conversionMultiplierSN 8.726717e+13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PebiBIT ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA273"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA273"^^xsd:anyURI ;
    qudt:symbol "Pib/m³"^^xsd:string ;
    qudt:uneceCommonCode "E82"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaBIT-PER-SEC a qudt:Unit ;
    rdfs:label "Petabit per Second"^^xsd:string,
        "Petabit per Second"@en ;
    dcterms:description "1,000,000,000,000,000-fold of the unit bit divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 693147180559945.30941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PetaBIT ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA270"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA270"^^xsd:anyURI ;
    qudt:symbol "Pb/s"^^xsd:string ;
    qudt:ucumCode "Pbit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E79"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaBQ a qudt:Unit ;
    rdfs:label "Petabecquerel"^^xsd:string,
        "Petabecquerel"@cs,
        "Petabecquerel"@de,
        "Petabecquerel"@en,
        "Petabecquerel"@es,
        "Petabecquerel"@fr,
        "Petabecquerel"@hu,
        "Petabecquerel"@it,
        "Petabecquerel"@ms,
        "Petabekerel"@pl,
        "Petabecquerel"@ro,
        "Petabecquerel"@sl,
        "Petabekerel"@tr ;
    dcterms:description "1,000,000,000,000,000-fold of the unit becquerel"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAB590"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB590"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Peta> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "PBq"^^xsd:string ;
    qudt:ucumCode "PBq"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PetaFLOPS a qudt:Unit ;
    rdfs:label "Peta Floating Point Operations per Second"^^xsd:string,
        "Peta Floating Point Operations per Second"@en ;
    dcterms:description "1,000,000,000,000,000-fold of the unit floating point operations divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000000.0 ;
    qudt:conversionMultiplierSN 1e+15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:FloatingPointCalculationCapability ;
    qudt:iec61360Code "0112/2///62720#UAB594"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB594"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Peta> ;
    qudt:scalingOf unit:FLOPS ;
    qudt:symbol "PFLOPS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoA-PER-HectoPA a qudt:Unit ;
    rdfs:label "Picoampere per Hectopascal"^^xsd:string,
        "Picoampér na Hectopascal"@cs,
        "Picoampere pro Hectopascal"@de,
        "Picoampere per Hectopascal"@en,
        "Picoamperio por Hectopascal"@es,
        "Picoampère par Hectopascal"@fr,
        "Picoampere per Ettopascal"@it,
        "Picoampere per Hectopascal"@ms,
        "Picoamper na Hectopaskal"@pl,
        "Picoamper pe Hectopascal"@ro,
        "Picoamper na Hectopascal"@sl,
        "Picoamper per Hectopascal"@tr ;
    dcterms:description "0.000000000001-fold of the SI base unit ampere divided by the 100-fold of the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 0.00000000000001 ;
    qudt:conversionMultiplierSN 1e-14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L1I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HectoPA ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD930"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD930"^^xsd:anyURI ;
    qudt:symbol "pA/hPa"^^xsd:string ;
    qudt:ucumCode "pA.hPa-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoA-PER-MicroMOL-L a qudt:Unit ;
    rdfs:label "Picoampere per Micromole Litre"^^xsd:string,
        "Picoampere per Micromole Litre"@en,
        "Picoampere per Micromole Liter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.001 ;
    qudt:conversionMultiplierSN 1e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E1L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoA ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "pA/(μmol·L)"^^xsd:string ;
    qudt:ucumCode "pA.umol-1.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoFARAD-PER-M a qudt:Unit ;
    rdfs:label "Picofarad per Metre"^^xsd:string,
        "Picofarad na Metr"@cs,
        "Picofarad pro Meter"@de,
        "Picofarad per Metre"@en,
        "Picofarad per Meter"@en-us,
        "Picofaradio por Metro"@es,
        "Picofarad par Mètre"@fr,
        "Picofarad per Metro"@it,
        "Picofarad per Meter"@ms,
        "Picofarad na Metr"@pl,
        "Picofarad pe Metru"@ro,
        "Picofarad na Meter"@sl,
        "Picofarad per Metre"@tr ;
    dcterms:description "0.000000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoFARAD ] ;
    qudt:hasQuantityKind qudtqk:Permittivity ;
    qudt:iec61360Code "0112/2///62720#UAA931"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA931"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000000001-fold of the SI derived unit farad divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "pF/m"^^xsd:string ;
    qudt:ucumCode "pF.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C72"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q21344460> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoKAT-PER-L a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Picokatal per Litre"^^xsd:string,
        "Picokatal per Litre"@en,
        "Picokatal per Liter"@en-us ;
    dcterms:description "A unit of catalytic activity used especially in the chemistry of enzymes. A catalyst is a substance that starts or speeds a chemical reaction. Enzymes are proteins that act as catalysts within the bodies of living plants and animals. A catalyst has an activity of one katal if it enables a reaction to proceed at the rate of one mole per second. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoKAT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "pkat/L"^^xsd:string ;
    qudt:ucumCode "pkat.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-KiloGM a qudt:Unit ;
    rdfs:label "Picomole per Kilogram"^^xsd:string,
        "Picomol na Kilogram"@cs,
        "Picomol pro Kilogramm"@de,
        "Picomole per Kilogram"@en,
        "Picomol por Kilogramo"@es,
        "Picomole par Kilogramme"@fr,
        "Picomole per Chilogrammo"@it,
        "Picomole per Kilogram"@ms,
        "Picomol na Kilogram"@pl,
        "Picomol pe Kilogram"@ro,
        "Picomol na Kilogram"@sl,
        "Picomol per Kilogram"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:AmountOfSubstancePerMass ;
    qudt:symbol "pmol/kg"^^xsd:string ;
    qudt:ucumCode "pmol.kg-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-L-DAY a qudt:Unit ;
    rdfs:label "Picomole per Litre Day"^^xsd:string,
        "Picomole per Litre Day"@en,
        "Picomole per Liter Day"@en-us ;
    dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 86400 seconds."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-14 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "pmol/(L·d)"^^xsd:string ;
    qudt:ucumCode "pmol.L-1.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-L-HR a qudt:Unit ;
    rdfs:label "Picomole per Litre Hour"^^xsd:string,
        "Picomole per Litre Hour"@en,
        "Picomole per Liter Hour"@en-us ;
    dcterms:description "A change in the quantity of matter of 10^-12 moles in the SI unit of volume scaled by 10^-3 over a period of 3600 seconds."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.0000000000002777777777777777777777777777777778 ;
    qudt:conversionMultiplierSN 2.777778e-13 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "pmol/(L·h)"^^xsd:string ;
    qudt:ucumCode "pmol.L-1.h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-M-W-SEC a qudt:Unit ;
    rdfs:label "Picomole per Metre Watt Second"^^xsd:string,
        "Picomol na Metr Watt Sekunda"@cs,
        "Picomol pro Meter Watt Sekunde"@de,
        "Picomole per Metre Watt Second"@en,
        "Picomole per Meter Watt Second"@en-us,
        "Picomol por Metro Vatio Segundo"@es,
        "Picomole par Mètre Watt Seconde"@fr,
        "Picomole per Metro Watt Secondo"@it,
        "Picomole per Meter Watt Saat"@ms,
        "Picomol na Metr Wat Sekunda"@pl,
        "Picomol pe Metru Watt Secundă"@ro,
        "Picomol na Meter Watt Sekunda"@sl,
        "Picomol per Metre Watt Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "pmol/(m·W·s)"^^xsd:string ;
    qudt:ucumCode "pmol.m-1.W-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-M2-DAY a qudt:Unit ;
    rdfs:label "Picomole per Square Metre Day"^^xsd:string,
        "Picomole per Square Metre Day"@en,
        "Picomole per Square Meter Day"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00000000000000001157407407407407407407407407407407 ;
    qudt:conversionMultiplierSN 1.157407e-17 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-2I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:PhotosyntheticPhotonFluxDensity ;
    qudt:symbol "pmol/(m²·d)"^^xsd:string ;
    qudt:ucumCode "pmol.m-2.d-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoMOL-PER-M3-SEC a qudt:Unit ;
    rdfs:label "Picomole per Cubic Metre Second"^^xsd:string,
        "Picomol na Metr Krychlový Sekunda"@cs,
        "Picomol pro Kubikmeter Sekunde"@de,
        "Picomole per Cubic Metre Second"@en,
        "Picomole per Cubic Meter Second"@en-us,
        "Picomol por Metro Cúbico Segundo"@es,
        "Picomole par Mètre Cube Seconde"@fr,
        "Picomole per Metro Cubo Secondo"@it,
        "Picomole per Meter Kubik Saat"@ms,
        "Picomol na Metr Sześcienny Sekunda"@pl,
        "Picomol pe Metru Cub Secundă"@ro,
        "Picomol na Kubični Meter Sekunda"@sl,
        "Picomol per Metreküp Saniye"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000001 ;
    qudt:conversionMultiplierSN 1e-12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L-3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoMOL ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:CatalyticActivityConcentration ;
    qudt:symbol "pmol/(m³·s)"^^xsd:string ;
    qudt:ucumCode "pmol.m-3.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoPA-PER-KiloM a qudt:Unit ;
    rdfs:label "Picopascal per Kilometre"^^xsd:string,
        "Picopascal na Kilometr"@cs,
        "Picopascal pro Kilometer"@de,
        "Picopascal per Kilometre"@en,
        "Picopascal per Kilometer"@en-us,
        "Picopascal por Kilometro"@es,
        "Picopascal par Kilomètre"@fr,
        "Picopascal per Chilometro"@it,
        "Picopascal per Kilometer"@ms,
        "Picopaskal na Kilometr"@pl,
        "Picopascal pe Kilometru"@ro,
        "Picopascal na Kilometer"@sl,
        "Picopascal per Kilometre"@tr ;
    dcterms:description "0.000000000001-fold of the SI derived unit pascal divided by the 1 000-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.000000000000001 ;
    qudt:conversionMultiplierSN 1e-15 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoPA ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiantEnergyDensity ;
    qudt:iec61360Code "0112/2///62720#UAA933"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA933"^^xsd:anyURI ;
    qudt:plainTextDescription "0.000000000001-fold of the SI derived unit pascal divided by the 1 000-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "pPa/km"^^xsd:string ;
    qudt:ucumCode "pPa.km-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H69"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PicoW-PER-CentiM2-L a qudt:Unit ;
    rdfs:label "Picowatt per Square Centimetre Litre"^^xsd:string,
        "Picowatt per Square Centimetre Litre"@en,
        "Picowatt per Square Centimeter Liter"@en-us ;
    dcterms:description "The power (scaled by 10^-12) per SI unit of area (scaled by 10^-4) produced per SI unit of volume (scaled by 10^-3)."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:PicoW ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "pW/(cm²·L)"^^xsd:string ;
    qudt:ucumCode "pW.cm-2.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PlanckCurrentDensity a qudt:Unit ;
    rdfs:label "Planck Current Density"^^xsd:string,
        "Planck Current Density"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:conversionMultiplier 133177400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0 ;
    qudt:conversionMultiplierSN 1.331774e+95 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L-2I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:ElectricCurrentDensity ;
    qudt:scalingOf unit:A-PER-M2 ;
    qudt:symbol "planckcurrentdensity"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30080109> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:PlanckImpedance a qudt:Unit ;
    rdfs:label "Planck Impedance"^^xsd:string,
        "Planck Impedance"@en ;
    dcterms:description "The Planck impedance is the unit of electrical resistance, denoted by ZP, in the system of natural units known as Planck units. The Planck impedance is directly coupled to the impedance of free space, Z0, and differs in value from Z0 only by a factor of $4\\pi$. If the Planck charge were instead defined to normalize the permittivity of free space, $\\epsilon_0$, rather than the Coulomb constant, $1/(4\\pi\\epsilon_0)$, then the Planck impedance would be identical to the characteristic impedance of free space."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:conversionMultiplier 29.9792458 ;
    qudt:conversionMultiplierSN 2.997925e+01 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/PLANCK> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Planck_impedance"^^xsd:anyURI ;
    qudt:latexDefinition "$Z_P = \\frac{V_P}{I_P}= \\frac{1}{4\\pi\\epsilon_0c}=\\frac{\\mu_oc}{4\\pi}=\\frac{Z_0}{4\\pi}=29.9792458\\Omega$\\where $V_P$ is the Planck voltage, $I_P$ is the Planck current, $c$ is the speed of light in a vacuum, $\\epsilon_0$ is the permittivity of free space, $\\mu_0$ is the permeability of free space, and $Z_0$ is the impedance of free space."^^qudt:LatexString ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "Zₚ"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1323237> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:QT_US_DRY a qudt:Unit ;
    rdfs:label "Us Dry Quart"^^xsd:string,
        "Us Dry Quart"@en ;
    dcterms:description "\"US Dry Quart\" is a unit for  'Dry Volume' expressed as $dry_qt$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.001101220942715 ;
    qudt:conversionMultiplierSN 1.101221e-03 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H0T0D0> ;
    qudt:hasQuantityKind qudtqk:DryVolume ;
    qudt:iec61360Code "0112/2///62720#UAA965"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA965"^^xsd:anyURI ;
    qudt:scalingOf unit:M3 ;
    qudt:symbol "qt{US Dry}"^^xsd:string ;
    qudt:ucumCode "[dqt_us]"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L62"^^xsd:string,
        "QTD"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q98793687> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:R-PER-SEC a qudt:Unit ;
    rdfs:label "Roentgen per Second"^^xsd:string,
        "Roentgen per Second"@en ;
    dcterms:description "unit roentgen, the use of which is no longer permitted divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 0.000258 ;
    qudt:conversionMultiplierSN 2.58e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E1L0I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:R ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:ExposureRate ;
    qudt:iec61360Code "0112/2///62720#UAA276"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA276"^^xsd:anyURI ;
    qudt:symbol "R/s"^^xsd:string ;
    qudt:ucumCode "R.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D6"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RAD-M2-PER-KiloGM a qudt:Unit ;
    rdfs:label "Radian Square Metre per Kilogram"^^xsd:string,
        "Радиан Квадратен Метър на Килограм"@bg,
        "Radián Čtvereční Metr na Kilogram"@cs,
        "Radiant Quadratmeter pro Kilogramm"@de,
        "Ακτίνιο Τετραγωνικό Μέτρο ανά Χιλιόγραμμο"@el,
        "Radian Square Metre per Kilogram"@en,
        "Radian Square Meter per Kilogram"@en-us,
        "Radián Metro Cuadrado por Kilogramo"@es,
        "Radian Mètre Carré par Kilogramme"@fr,
        "Radiante Metro Quadrato per Chilogrammo"@it,
        "Radian Metrum Quadratum per Chiliogramma"@la,
        "Radian Meter Persegi per Kilogram"@ms,
        "Radian Metr Kwadratowy na Kilogram"@pl,
        "Radiano Metro Quadrado por Quilograma"@pt,
        "Radian Metru Pătrat pe Kilogram"@ro,
        "Радиан Квадратный Метр на Килограмм"@ru,
        "Radian Kvadratni Meter na Kilogram"@sl,
        "Radyan Metrekare per Kilogram"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$rad m^2 / kg$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:RAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:KiloGM ] ;
    qudt:hasQuantityKind qudtqk:SpecificOpticalRotatoryPower ;
    qudt:iec61360Code "0112/2///62720#UAB162"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB162"^^xsd:anyURI ;
    qudt:symbol "rad·m²/kg"^^xsd:string ;
    qudt:ucumCode "rad.m2.kg-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C83"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96347983> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RAD-M2-PER-MOL a qudt:Unit ;
    rdfs:label "Radian Square Metre per Mole"^^xsd:string,
        "Радиан Квадратен Метър на Мол"@bg,
        "Radián Čtvereční Metr na Mol"@cs,
        "Radiant Quadratmeter pro Mol"@de,
        "Ακτίνιο Τετραγωνικό Μέτρο ανά Μολ"@el,
        "Radian Square Metre per Mole"@en,
        "Radian Square Meter per Mole"@en-us,
        "Radián Metro Cuadrado por Mol"@es,
        "Radian Mètre Carré par Mole"@fr,
        "Radiante Metro Quadrato per Mole"@it,
        "Radian Metrum Quadratum per Moles"@la,
        "Radian Meter Persegi per Mole"@ms,
        "Radian Metr Kwadratowy na Mol"@pl,
        "Radiano Metro Quadrado por Mol"@pt,
        "Radian Metru Pătrat pe Mol"@ro,
        "Радиан Квадратный Метр на Моль"@ru,
        "Radian Kvadratni Meter na Mol"@sl,
        "Radyan Metrekare per Mol"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$rad m^2 / mol$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E0L2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:RAD ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:MolarOpticalRotatoryPower ;
    qudt:iec61360Code "0112/2///62720#UAB161"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB161"^^xsd:anyURI ;
    qudt:symbol "rad·m²/mol"^^xsd:string ;
    qudt:ucumCode "rad.m2.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "C82"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96347486> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RAD-PER-SEC2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Radian per Square Second"^^xsd:string,
        "Радиан на Квадратен Секунда"@bg,
        "Radián na Čtvereční Sekunda"@cs,
        "Radiant pro Quadratsekunde"@de,
        "Ακτίνιο ανά Τετραγωνικό Δευτερόλεπτο"@el,
        "Radian per Square Second"@en,
        "Radián por Segundo Cuadrado"@es,
        "Radian par Seconde Carré"@fr,
        "Radiante per Secondo Quadrato"@it,
        "Radian per Secundum Quadratum"@la,
        "Radian per Saat Persegi"@ms,
        "Radian na Sekunda Kwadratowy"@pl,
        "Radiano por Segundo Quadrado"@pt,
        "Radian pe Secundă Pătrat"@ro,
        "Радиан на Квадратный Секунда"@ru,
        "Radian na Kvadratni Sekunda"@sl,
        "Radyan per Saniyekare"@tr ;
    dcterms:description "Angular acceleration is the rate of change of angular velocity. In SI units, it is measured in radians per Square second ($rad/s^2$), and is usually denoted by the Greek letter $\\alpha$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$rad/s2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration ;
    qudt:iec61360Code "0112/2///62720#UAA969"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA969"^^xsd:anyURI ;
    qudt:symbol "rad/s²"^^xsd:string ;
    qudt:ucumCode "rad.s-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "2B"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30338333> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:REV-PER-MIN-SEC a qudt:Unit ;
    rdfs:label "Revolution per Minute Second"^^xsd:string,
        "Revolution per Minute Second"@en ;
    dcterms:description "Revolution per Minute per Second is a unit for Angular Acceleration (sometimes called Change of RPM, crpm)"^^qudt:LatexString ;
    qudt:conversionMultiplier 0.1047197551666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.047198e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:REV ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration ;
    qudt:symbol "rev/(min·s)"^^xsd:string ;
    qudt:ucumCode "{#}.min-1.s-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:REV-PER-SEC2 a qudt:Unit ;
    rdfs:label "Revolution per Square Second"^^xsd:string,
        "Revolution per Square Second"@en ;
    dcterms:description "\"Revolution per Square Second\" is a C.G.S System unit for  'Angular Acceleration' expressed as $rev-per-s^2$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 6.28318531 ;
    qudt:conversionMultiplierSN 6.283185e+00 ;
    qudt:expression "$rev/s2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:REV ] ;
    qudt:hasQuantityKind qudtqk:AngularAcceleration ;
    qudt:symbol "rev/s²"^^xsd:string ;
    qudt:ucumCode "{#}.s-2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RHE a qudt:Unit ;
    rdfs:label "Rhe"^^xsd:string,
        "Rhe"@en ;
    dcterms:description "non SI-conforming unit of fluidity of dynamic viscosity"^^xsd:string ;
    qudt:conversionMultiplier 10.0 ;
    qudt:conversionMultiplierSN 1e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M-1H0T1D0> ;
    qudt:hasQuantityKind qudtqk:Fluidity ;
    qudt:iec61360Code "0112/2///62720#UAB228"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB228"^^xsd:anyURI ;
    qudt:scalingOf unit:PER-PA-SEC ;
    qudt:symbol "rhe"^^xsd:string ;
    qudt:uneceCommonCode "P88"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q2147412> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:RichterMagnitude a qudt:Unit ;
    rdfs:label "Richter Magnitude"^^xsd:string,
        "Richter Magnitude"@en ;
    dcterms:description "unit Richter magnitude expressing size of an earthquake in accordance to a specific scale"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:EarthquakeMagnitude ;
    qudt:iec61360Code "0112/2///62720#UAB596"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB596"^^xsd:anyURI ;
    qudt:symbol "mag"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:S-M2-PER-MOL a qudt:Unit ;
    rdfs:label "Siemens Square Metre per Mole"^^xsd:string,
        "Сименс Квадратен Метър на Мол"@bg,
        "Siemens Čtvereční Metr na Mol"@cs,
        "Siemens Quadratmeter pro Mol"@de,
        "Ζίμενς Τετραγωνικό Μέτρο ανά Μολ"@el,
        "Siemens Square Metre per Mole"@en,
        "Siemens Square Meter per Mole"@en-us,
        "Siemens Metro Cuadrado por Mol"@es,
        "Siemens Mètre Carré par Mole"@fr,
        "Siemens Metro Quadrato per Mole"@it,
        "Siemens Metrum Quadratum per Moles"@la,
        "Siemens Meter Persegi per Mole"@ms,
        "Simens Metr Kwadratowy na Mol"@pl,
        "Siemens Metro Quadrado por Mol"@pt,
        "Siemens Metru Pătrat pe Mol"@ro,
        "Сименс Квадратный Метр на Моль"@ru,
        "Siemens Kvadratni Meter na Mol"@sl,
        "Siemens Metrekare per Mol"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$s-m2-per-mol$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A-1E2L0I0M-1H0T3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:S ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MOL ] ;
    qudt:hasQuantityKind qudtqk:MolarConductivity ;
    qudt:iec61360Code "0112/2///62720#UAA280"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA280"^^xsd:anyURI ;
    qudt:symbol "S·m²/mol"^^xsd:string ;
    qudt:ucumCode "S.m2.mol-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D12"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96309077> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SCF-PER-HR a qudt:Unit ;
    rdfs:label "Standard Cubic Foot per Hour"^^xsd:string,
        "Standard Cubic Foot per Hour"@en ;
    dcterms:description """
The $\\textit{standard cubic foot per hour}$ (scfm) is the molar flow rate of a gas (such as natural gas)
contained in a volume of one cubic foot at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas,
not the volume of the gas. The reference conditions for standard cubic foot per minute are 60 degrees Fahrenheit and 14.7 pounds per 
square inch (psi) of pressure.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.0003328055555555555555555555555555556 ;
    qudt:conversionMultiplierSN 3.328056e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SCF ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ;
    qudt:symbol "scf/h"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SCF-PER-MIN a qudt:Unit ;
    rdfs:label "Standard Cubic Foot per Minute"^^xsd:string,
        "Standard Cubic Foot per Minute"@en ;
    dcterms:description """
The $\\textit{standard cubic foot per minute}$ (scfm) is the molar flow rate of a gas (such as natural gas)
contained in a volume of one cubic foot at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas,
not the volume of the gas. The reference conditions for standard cubic foot per minute are 60 degrees Fahrenheit and 14.7 pounds per 
square inch (psi) of pressure.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.01996833333333333333333333333333334 ;
    qudt:conversionMultiplierSN 1.996833e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SCF ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ;
    qudt:symbol "scf/min"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SCM-PER-HR a qudt:Unit ;
    rdfs:label "Standard Cubic Metre per Hour"^^xsd:string,
        "Standard Cubic Metre per Hour"@en,
        "Standard Cubic Meter per Hour"@en-us ;
    dcterms:description """
The $\\textit{standard cubic metre per hour}$ (scmh) is the molar flow rate of a gas (such as natural gas)
contained in a volume of one cubic metre at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas,
not the volume of the gas. The reference conditions for standard cubic metre per minute are 0 degrees Celsius and 101.325 kilopascals (kPa) of pressure.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.01175291666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.175292e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SCM ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ;
    qudt:symbol "scm/h"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SCM-PER-MIN a qudt:Unit ;
    rdfs:label "Standard Cubic Metre per Minute"^^xsd:string,
        "Standard Cubic Metre per Minute"@en,
        "Standard Cubic Meter per Minute"@en-us ;
    dcterms:description """
The $\\textit{standard cubic metre per minute}$ (scmm) is the molar flow rate of a gas (such as natural gas)
contained in a volume of one cubic metre at reference temperature and pressure conditions. As such, it is a measure of the actual amount of gas,
not the volume of the gas. The reference conditions for standard cubic metre per minute are 0 degrees Celsius and 101.325 kilopascals (kPa) of pressure.
  """^^qudt:LatexString ;
    qudt:conversionMultiplier 0.7051750000000000000000000000000001 ;
    qudt:conversionMultiplierSN 7.05175e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A1E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SCM ] ;
    qudt:hasQuantityKind qudtqk:MolarFlowRate ;
    qudt:informativeReference "https://en.wikipedia.org/wiki/Standard_cubic_feet_per_minute"^^xsd:anyURI ;
    qudt:symbol "scm/min"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SEC-FT2 a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Second Square Foot"^^xsd:string,
        "Second Square Foot"@en ;
    dcterms:description "\"Second Square Foot\" is an Imperial unit for  'Area Time' expressed as $s-ft^{2}$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.09290304 ;
    qudt:conversionMultiplierSN 9.290304e-02 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:expression "$s-ft^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:AreaTime ;
    qudt:symbol "s·ft²"^^xsd:string ;
    qudt:ucumCode "s.[ft_i]2"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SEC-PER-M3-RAD a qudt:Unit ;
    rdfs:label "Second per Cubic Metre Radian"^^xsd:string,
        "Секунда на Кубичен Метър Радиан"@bg,
        "Sekunda na Metr Krychlový Radián"@cs,
        "Sekunde pro Kubikmeter Radiant"@de,
        "Δευτερόλεπτο ανά Κυβικό Μέτρο Ακτίνιο"@el,
        "Second per Cubic Metre Radian"@en,
        "Second per Cubic Meter Radian"@en-us,
        "Segundo por Metro Cúbico Radián"@es,
        "Seconde par Mètre Cube Radian"@fr,
        "Secondo per Metro Cubo Radiante"@it,
        "Secundum per Metrum Cubicum Radian"@la,
        "Saat per Meter Kubik Radian"@ms,
        "Sekunda na Metr Sześcienny Radian"@pl,
        "Segundo por Metro Cúbico Radiano"@pt,
        "Secundă pe Metru Cub Radian"@ro,
        "Секунда на Кубический Метр Радиан"@ru,
        "Sekunda na Kubični Meter Radian"@sl,
        "Saniye per Metreküp Radyan"@tr ;
    dcterms:description "unit of the spectral density of the vibration methods as SI base unit second divided by the power of the SI base unit metre with the exponent 3 and the unit radian"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:SpectralDensityOfVibrationalModes ;
    qudt:iec61360Code "0112/2///62720#UAB178"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB178"^^xsd:anyURI ;
    qudt:symbol "s/(m³·rad)"^^xsd:string ;
    qudt:ucumCode "s.m-3.rad-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D94"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SEC-PER-RAD-M3 a qudt:Unit ;
    rdfs:label "Second per Radian Cubic Metre"^^xsd:string,
        "Секунда на Радиан Кубичен Метър"@bg,
        "Sekunda na Radián Metr Krychlový"@cs,
        "Sekunde pro Radiant Kubikmeter"@de,
        "Δευτερόλεπτο ανά Ακτίνιο Κυβικό Μέτρο"@el,
        "Second per Radian Cubic Metre"@en,
        "Second per Radian Cubic Meter"@en-us,
        "Segundo por Radián Metro Cúbico"@es,
        "Seconde par Radian Mètre Cube"@fr,
        "Secondo per Radiante Metro Cubo"@it,
        "Secundum per Radian Metrum Cubicum"@la,
        "Saat per Radian Meter Kubik"@ms,
        "Sekunda na Radian Metr Sześcienny"@pl,
        "Segundo por Radiano Metro Cúbico"@pt,
        "Secundă pe Radian Metru Cub"@ro,
        "Секунда на Радиан Кубический Метр"@ru,
        "Sekunda na Radian Kubični Meter"@sl,
        "Saniye per Radyan Metreküp"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$sec/rad-m^3$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:RAD ] ;
    qudt:hasQuantityKind qudtqk:VibrationalDensityOfStates ;
    qudt:iec61360Code "0112/2///62720#UAB352"^^xsd:string ;
    qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB352"^^xsd:anyURI ;
    qudt:symbol "s/(rad·m³)"^^xsd:string ;
    qudt:ucumCode "s.rad-1.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "Q22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SHANNON-PER-SEC a qudt:Unit ;
    rdfs:label "Shannon per Second"^^xsd:string,
        "Shannon per Second"@en ;
    dcterms:description "The \"Shannon per Second\" is a unit of information rate."^^rdf:HTML ;
    qudt:conversionMultiplier 0.69314718055994530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e-01 ;
    qudt:expression "$Sh/s$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SHANNON ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:InformationFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB346"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Ban_(information)"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB346"^^xsd:anyURI ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31898"^^xsd:anyURI ;
    qudt:symbol "Sh/s"^^xsd:string ;
    qudt:uneceCommonCode "Q17"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105622729> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-DAY a qudt:Unit ;
    rdfs:label "Slug per Day"^^xsd:string,
        "Slug per Day"@en ;
    dcterms:description "unit slug for mass according to an English engineering system divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.0001689109212036863425925925925925925 ;
    qudt:conversionMultiplierSN 1.689109e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SLUG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA979"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA979"^^xsd:anyURI ;
    qudt:plainTextDescription "unit slug for mass according to an English engineering system divided by the unit day"^^xsd:string ;
    qudt:symbol "slug/d"^^xsd:string ;
    qudt:uneceCommonCode "L63"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-FT a qudt:Unit ;
    rdfs:label "Slug per Foot"^^xsd:string,
        "Slug per Foot"@en ;
    dcterms:description "\"Slug per Foot\" is an Imperial unit for  'Mass Per Length' expressed as $slug/ft$."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 47.88026112860400262467191601049868 ;
    qudt:conversionMultiplierSN 4.788026e+01 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:expression "$slug/ft$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SLUG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:FT ] ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:symbol "slug/ft"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-HR a qudt:Unit ;
    rdfs:label "Slug per Hour"^^xsd:string,
        "Slug per Hour"@en ;
    dcterms:description "unit slug for mass slug according to the English engineering system divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.004053862108888472222222222222222223 ;
    qudt:conversionMultiplierSN 4.053862e-03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SLUG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA982"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA982"^^xsd:anyURI ;
    qudt:plainTextDescription "unit slug for mass slug according to the English engineering system divided by the unit hour"^^xsd:string ;
    qudt:symbol "slug/h"^^xsd:string ;
    qudt:uneceCommonCode "L66"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SLUG-PER-MIN a qudt:Unit ;
    rdfs:label "Slug per Minute"^^xsd:string,
        "Slug per Minute"@en ;
    dcterms:description "unit slug for the mass according to the English engineering system divided by the unit minute"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.2432317265333083333333333333333334 ;
    qudt:conversionMultiplierSN 2.432317e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:SLUG ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAA983"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA983"^^xsd:anyURI ;
    qudt:plainTextDescription "unit slug for the mass according to the English engineering system divided by the unit minute"^^xsd:string ;
    qudt:symbol "slug/min"^^xsd:string ;
    qudt:uneceCommonCode "L67"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SON a qudt:Unit ;
    rdfs:label "Sone"^^xsd:string,
        "Sone"@en ;
    dcterms:description "psycho-acoustical unit for the subjective loudness of a tone, whereby the loudness 1 sone is allocated to the loudness level 40 phon"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA985"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA985"^^xsd:anyURI ;
    qudt:symbol "sone"^^xsd:string ;
    qudt:uneceCommonCode "D15"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SPF a qudt:Unit ;
    rdfs:label "Sun Protection Factor"^^xsd:string,
        "Sun Protection Factor"@en ;
    dcterms:description "the sunprotection factor is a dimensionless value expressing the required amount of protection against solar radiation"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:SunProtectionFactorOfAProduct ;
    qudt:iec61360Code "0112/2///62720#UAB597"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB597"^^xsd:anyURI ;
    qudt:symbol "SPF"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:SPIN_QUANTUM_NUMBER a qudt:Unit ;
    rdfs:label "Spin Quantum Number"^^xsd:string,
        "Spin Quantum Number"@en ;
    dcterms:description "dimensionless atomic value expressing a system’s spin"^^xsd:string ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB604"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB604"^^xsd:anyURI ;
    qudt:symbol "Q"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ST-PER-BAR a qudt:Unit ;
    rdfs:label "Stokes per Bar"^^xsd:string,
        "Stokes per Bar"@en ;
    dcterms:description "[CGS] unit stokes divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.000000001 ;
    qudt:conversionMultiplierSN 1e-09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ST ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA283"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA283"^^xsd:anyURI ;
    qudt:symbol "St/bar"^^xsd:string ;
    qudt:ucumCode "St.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ST-PER-K a qudt:Unit ;
    rdfs:label "Stokes per Kelvin"^^xsd:string,
        "Stokes per Kelvin"@en ;
    dcterms:description "[CGS] unit stokes divided by the SI base unit kelvin"^^xsd:string ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M0H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ST ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAA282"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA282"^^xsd:anyURI ;
    qudt:symbol "St/K"^^xsd:string ;
    qudt:ucumCode "St.K-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G10"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:ST-PER-PA a qudt:Unit ;
    rdfs:label "Stokes per Pascal"^^xsd:string,
        "Stokes per Pascal"@en ;
    dcterms:description "[CGS] unit stokes divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 0.0001 ;
    qudt:conversionMultiplierSN 1e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M-1H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:ST ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB314"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB314"^^xsd:anyURI ;
    qudt:symbol "St/Pa"^^xsd:string ;
    qudt:ucumCode "St.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:S_Ab a qudt:Unit ;
    rdfs:label "Absiemen"^^xsd:string,
        "Absiemen"@en ;
    dcterms:description "The CGS electromagnetic unit of conductance; one absiemen is the conductance at which a potential of one abvolt forces a current of one abampere; equal to $10^{9}$ siemens. One siemen is the conductance at which a potential of one volt forces a current of one ampere and named for Karl Wilhem Siemens."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:derivedUnitOfSystem <http://qudt.org/vocab/sou/CGS-EMU> ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E2L-3I0M-1H0T3D0> ;
    qudt:hasQuantityKind qudtqk:ElectricConductivity ;
    qudt:informativeReference "http://wordinfo.info/unit/4266"^^xsd:anyURI ;
    qudt:scalingOf unit:S-PER-M ;
    qudt:symbol "aS"^^xsd:string ;
    qudt:ucumCode "GS"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q30063714> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TEX a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Tex"^^xsd:string,
        "Tex"@en ;
    dcterms:description "<i>Tex</i> is a unit of measure for the linear mass density of fibers and is defined as the mass in grams per 1000 meters. Tex is more likely to be used in Canada and Continental Europe, while denier remains more common in the United States and United Kingdom. The unit code is 'tex'. The most commonly used unit is actually the decitex, abbreviated dtex, which is the mass in grams per 10,000 meters. When measuring objects that consist of multiple fibers the term 'filament tex' is sometimes used, referring to the mass in grams per 1000 meters of a single filament. Tex is used for measuring fiber size in many products, including cigarette filters, optical cable, yarn, and fabric."^^rdf:HTML ;
    qudt:conversionMultiplier 0.000001 ;
    qudt:conversionMultiplierSN 1e-06 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Tex"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T0D0> ;
    qudt:hasQuantityKind qudtqk:MassPerLength ;
    qudt:iec61360Code "0112/2///62720#UAB246"^^xsd:string ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Tex?oldid=457265525"^^xsd:anyURI,
        "http://en.wikipedia.org/wiki/Units_of_textile_measurement"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB246"^^xsd:anyURI ;
    qudt:scalingOf unit:GM-PER-MilliM ;
    qudt:symbol "tex"^^xsd:string ;
    qudt:ucumCode "tex"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D34"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q1091257> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TONNE-PER-M3-BAR a qudt:Unit ;
    rdfs:label "Tonne per Cubic Metre Bar"^^xsd:string,
        "Tonne per Cubic Metre Bar"@en,
        "Tonne per Cubic Meter Bar"@en-us ;
    dcterms:description "unit ton divided by the product of the power of the SI base unit metre with the exponent 3 and the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.01 ;
    qudt:conversionMultiplierSN 1e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TONNE ],
        [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:MassPerEnergy ;
    qudt:iec61360Code "0112/2///62720#UAA999"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA999"^^xsd:anyURI ;
    qudt:symbol "t/(m³·bar)"^^xsd:string ;
    qudt:ucumCode "t.m-3.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L77"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_SHORT-PER-DEG_F a qudt:Unit ;
    rdfs:label "Short Ton per Degree Fahrenheit"^^xsd:string,
        "Short Ton per Degree Fahrenheit"@en ;
    dcterms:description "unit of the mass ton (US, short) according to the Anglo-American system of units divided by the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 1632.932532 ;
    qudt:conversionMultiplierSN 1.632933e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_SHORT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB013"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB013"^^xsd:anyURI ;
    qudt:symbol "ton{short}/°F"^^xsd:string ;
    qudt:ucumCode "[ston_av].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_SHORT-PER-HR-DEG_F a qudt:Unit ;
    rdfs:label "Short Ton per Hour Degree Fahrenheit"^^xsd:string,
        "Short Ton per Hour Degree Fahrenheit"@en ;
    dcterms:description "unit of the mass ton (US, short) according to the Anglo-American system of units divided by the product of the unit hour for time and the traditional unit degree Fahrenheit"^^xsd:string ;
    qudt:conversionMultiplier 0.45359237 ;
    qudt:conversionMultiplierSN 4.535924e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H-1T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_SHORT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB015"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB015"^^xsd:anyURI ;
    qudt:symbol "ton{short}/(h·°F)"^^xsd:string ;
    qudt:ucumCode "[ston_av].h-1.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L89"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_SHORT-PER-HR-PSI a qudt:Unit ;
    rdfs:label "Short Ton per Hour Psi"^^xsd:string,
        "Short Ton per Hour Psi"@en ;
    dcterms:description "quotient unit for mass ton (US, short) according to the Anglo-American system of units divided by the unit for time hour divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.00003654889346929982162413267605184694 ;
    qudt:conversionMultiplierSN 3.654889e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_SHORT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB016"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB016"^^xsd:anyURI ;
    qudt:symbol "ton{short}/(h·psi)"^^xsd:string ;
    qudt:ucumCode "[ston_av].h-1.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L90"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_SHORT-PER-PSI a qudt:Unit ;
    rdfs:label "Short Ton per Psi"^^xsd:string,
        "Short Ton per Psi"@en ;
    dcterms:description "unit for mass ton (US, short) according to the Anglo-American system of units divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.131576016489479357846877633786649 ;
    qudt:conversionMultiplierSN 1.31576e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_SHORT ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB017"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB017"^^xsd:anyURI ;
    qudt:symbol "ton{short}/psi"^^xsd:string ;
    qudt:ucumCode "[ston_av].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L91"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_UK-PER-DAY a qudt:Unit ;
    rdfs:label "Ton (UK) per Day"^^xsd:string,
        "Ton (UK) per Day"@en ;
    dcterms:description "unit British ton according to the Imperial system of units divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.01175980218518518518518518518518518 ;
    qudt:conversionMultiplierSN 1.17598e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_UK ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB010"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB010"^^xsd:anyURI ;
    qudt:plainTextDescription "unit British ton according to the Imperial system of units divided by the unit day"^^xsd:string ;
    qudt:symbol "ton{UK}/d"^^xsd:string ;
    qudt:ucumCode "[lton_av].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_UK-PER-HR a qudt:Unit ;
    rdfs:label "Ton (UK) per Hour"^^xsd:string,
        "Ton (UK) per Hour"@en ;
    dcterms:description "unit British ton according to the Imperial system of units divided by the unit hour"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL> ;
    qudt:conversionMultiplier 0.2822352524444444444444444444444445 ;
    qudt:conversionMultiplierSN 2.822353e-01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_UK ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:HR ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:symbol "ton{UK}/h"^^xsd:string ;
    qudt:ucumCode "[lton_av].h-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TON_US-PER-DAY a qudt:Unit ;
    rdfs:label "Ton (US) per Day"^^xsd:string,
        "Ton (US) per Day"@en ;
    dcterms:description "unit American ton according to the Anglo-American system of units divided by the unit day"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 0.01049982337962962962962962962962963 ;
    qudt:conversionMultiplierSN 1.049982e-02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M1H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DAY ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TON_US ] ;
    qudt:hasQuantityKind qudtqk:MassFlowRate ;
    qudt:iec61360Code "0112/2///62720#UAB014"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB014"^^xsd:anyURI ;
    qudt:plainTextDescription "unit American ton according to the Anglo-American system of units divided by the unit day"^^xsd:string ;
    qudt:symbol "ton{US}/d"^^xsd:string ;
    qudt:ucumCode "[ston_av].d-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L88"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TORR-PER-M a qudt:Unit ;
    rdfs:label "Torr per Metre"^^xsd:string,
        "Torr per Metre"@en,
        "Torr per Meter"@en-us ;
    dcterms:description "[CGS] unit of the pressure divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 133.322 ;
    qudt:conversionMultiplierSN 1.33322e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TORR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:PressureGradient ;
    qudt:iec61360Code "0112/2///62720#UAB425"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB425"^^xsd:anyURI ;
    qudt:symbol "Torr/m"^^xsd:string ;
    qudt:uneceCommonCode "P85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TebiBIT-PER-M a qudt:Unit ;
    rdfs:label "Tebibit per Metre"^^xsd:string,
        "Tebibit per Metre"@en,
        "Tebibit per Meter"@en-us ;
    dcterms:description "1,099,511,627,776-fold of the unit bit divided by the SI base unit metre"^^xsd:string ;
    qudt:conversionMultiplier 762123384785.8104503028768718089172 ;
    qudt:conversionMultiplierSN 7.621234e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TebiBIT ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LinearBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA292"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA292"^^xsd:anyURI ;
    qudt:symbol "Tib/m"^^xsd:string ;
    qudt:ucumCode "Tibit.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E85"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TebiBIT-PER-M2 a qudt:Unit ;
    rdfs:label "Tebibit per Square Metre"^^xsd:string,
        "Tebibit per Square Metre"@en,
        "Tebibit per Square Meter"@en-us ;
    dcterms:description "1,099,511,627,776-fold of the unit bit divided by the power of the SI base unit metre with the exponent 2"^^xsd:string ;
    qudt:conversionMultiplier 762123384785.8104503028768718089172 ;
    qudt:conversionMultiplierSN 7.621234e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-2I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TebiBIT ] ;
    qudt:hasQuantityKind qudtqk:AreaBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA293"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA293"^^xsd:anyURI ;
    qudt:symbol "Tib/m²"^^xsd:string ;
    qudt:ucumCode "Tibit.m-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TebiBIT-PER-M3 a qudt:Unit ;
    rdfs:label "Tebibit per Cubic Metre"^^xsd:string,
        "Tebibit per Cubic Metre"@en,
        "Tebibit per Cubic Meter"@en-us ;
    dcterms:description "1,099,511,627,776-fold of the unit bit divided by the power of the SI base unit metre with the exponent 3"^^xsd:string ;
    qudt:conversionMultiplier 762123384785.8104503028768718089172 ;
    qudt:conversionMultiplierSN 7.621234e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-3I0M0H0T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -3 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TebiBIT ] ;
    qudt:hasQuantityKind qudtqk:VolumetricBitDensity ;
    qudt:iec61360Code "0112/2///62720#UAA294"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA294"^^xsd:anyURI ;
    qudt:symbol "Tib/m³"^^xsd:string ;
    qudt:ucumCode "Tibit.m-3"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E86"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraBIT-PER-SEC a qudt:Unit ;
    rdfs:label "Terabit per Second"^^xsd:string,
        "Terabit per Second"@en ;
    dcterms:description "1,000,000,000,000-fold of the unit bit divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 693147180559.94530941723212145818 ;
    qudt:conversionMultiplierSN 6.931472e+11 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:TeraBIT ] ;
    qudt:hasQuantityKind qudtqk:DataRate ;
    qudt:iec61360Code "0112/2///62720#UAA291"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA291"^^xsd:anyURI ;
    qudt:symbol "Tb/s"^^xsd:string ;
    qudt:ucumCode "Tbit.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "E84"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraBQ a qudt:Unit ;
    rdfs:label "Terabecquerel"^^xsd:string,
        "Terabecquerel"@cs,
        "Terabecquerel"@de,
        "Terabecquerel"@en,
        "Terabecquerel"@es,
        "Terabecquerel"@fr,
        "Terabecquerel"@hu,
        "Terabecquerel"@it,
        "Terabecquerel"@ms,
        "Terabekerel"@pl,
        "Terabecquerel"@ro,
        "Terabecquerel"@sl,
        "Terabekerel"@tr ;
    dcterms:description "1,000,000,000,000-fold of the unit becquerel"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:Activity ;
    qudt:iec61360Code "0112/2///62720#UAB589"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB589"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:BQ ;
    qudt:symbol "TBq"^^xsd:string ;
    qudt:ucumCode "TBq"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraFLOPS a qudt:Unit ;
    rdfs:label "Tera Floating Point Operations per Second"^^xsd:string,
        "Tera Floating Point Operations per Second"@en ;
    dcterms:description "1,000,000,000,000-fold of the unit floating point operations divided by the SI base unit second"^^xsd:string ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T-1D0> ;
    qudt:hasQuantityKind qudtqk:FloatingPointCalculationCapability ;
    qudt:iec61360Code "0112/2///62720#UAB593"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB593"^^xsd:anyURI ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:FLOPS ;
    qudt:symbol "TFLOPS"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:TeraOHM a qudt:Unit ;
    rdfs:label "Teraohm"^^xsd:string,
        "Teraohm"@cs,
        "Teraohm"@de,
        "Teraohm"@en,
        "Teraohmio"@es,
        "Teraohm"@fr,
        "Teraohm"@hu,
        "Teraohm"@it,
        "Teraohm"@ms,
        "Teraom"@pl,
        "Teraohm"@ro,
        "Teraohm"@sl,
        "Teraohm"@tr ;
    dcterms:description "1,000,000,000,000-fold of the SI derived unit ohm"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/PLANCK>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000000.0 ;
    qudt:conversionMultiplierSN 1e+12 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L2I0M1H0T-3D0> ;
    qudt:hasQuantityKind qudtqk:Resistance ;
    qudt:iec61360Code "0112/2///62720#UAA286"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA286"^^xsd:anyURI ;
    qudt:plainTextDescription "1,000,000,000,000-fold of the SI derived unit ohm"^^xsd:string ;
    qudt:prefix <http://qudt.org/vocab/prefix/Tera> ;
    qudt:scalingOf unit:OHM ;
    qudt:symbol "TΩ"^^xsd:string ;
    qudt:ucumCode "TOhm"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H44"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q94480131> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-IN2-PER-LB_F a qudt:Unit ;
    rdfs:label "Volt Square Inch per Pound Force"^^xsd:string,
        "Volt Square Inch per Pound Force"@en ;
    dcterms:description "differentiated SI unit volt divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.0001450377312227268702148557236386593 ;
    qudt:conversionMultiplierSN 1.450377e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:IN ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:LB_F ] ;
    qudt:hasQuantityKind qudtqk:HallCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA305"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA305"^^xsd:anyURI ;
    qudt:symbol "V·in²/lbf"^^xsd:string ;
    qudt:ucumCode "V.[in_i]2.[lbf_av]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H22"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-M a qudt:Unit ;
    rdfs:label "Volt Metre"^^xsd:string,
        "Волт Метър"@bg,
        "Volt Metr"@cs,
        "Volt Meter"@de,
        "Βολτ Μέτρο"@el,
        "Volt Metre"@en,
        "Volt Meter"@en-us,
        "Voltio Metro"@es,
        "Volt Mètre"@fr,
        "Volt Metro"@it,
        "Voltium Metrum"@la,
        "Volt Meter"@ms,
        "Wolt Metr"@pl,
        "Volt Metro"@pt,
        "Volt Metru"@ro,
        "Вольт Метр"@ru,
        "Volt Meter"@sl,
        "Volt Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:ElectricFlux ;
    qudt:symbol "V·m"^^xsd:string ;
    qudt:ucumCode "V.m"^^qudt:UCUMcs ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q83948162> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-BAR a qudt:Unit ;
    rdfs:label "Volt per Bar"^^xsd:string,
        "Volt per Bar"@en ;
    dcterms:description "SI derived unit volt divided by the unit bar"^^xsd:string ;
    qudt:conversionMultiplier 0.00001 ;
    qudt:conversionMultiplierSN 1e-05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:BAR ] ;
    qudt:hasQuantityKind qudtqk:HallCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAA299"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA299"^^xsd:anyURI ;
    qudt:symbol "V/bar"^^xsd:string ;
    qudt:ucumCode "V.bar-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "G60"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-CentiM a qudt:Unit ;
    rdfs:label "Volt per Centimetre"^^xsd:string,
        "Volt na Centimetr"@cs,
        "Volt pro Centimeter"@de,
        "Volt per Centimetre"@en,
        "Volt per Centimeter"@en-us,
        "Voltio por Centimetro"@es,
        "Volt par Centimètre"@fr,
        "Volt per Centimetro"@it,
        "Volt per Centimeter"@ms,
        "Wolt na Centimetr"@pl,
        "Volt pe Centimetru"@ro,
        "Volt na Centimeter"@sl,
        "Volt per Centimetre"@tr ;
    dcterms:description "derived SI unit volt divided by the 0.01-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 100.0 ;
    qudt:conversionMultiplierSN 1e+02 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:CentiM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAB054"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB054"^^xsd:anyURI ;
    qudt:plainTextDescription "derived SI unit volt divided by the 0.01-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "V/cm"^^xsd:string ;
    qudt:ucumCode "V.cm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D47"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-IN a qudt:Unit ;
    rdfs:label "Volt per Inch"^^xsd:string,
        "Volt per Inch"@en ;
    dcterms:description "SI derived unit volt divided by the unit inch according to the Anglo-American and the Imperial system of units"^^rdf:HTML ;
    qudt:conversionMultiplier 39.37007874015748031496062992125984 ;
    qudt:conversionMultiplierSN 3.937008e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:IN ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA300"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA300"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit volt divided by the unit inch according to the Anglo-American and the Imperial system of units"^^xsd:string ;
    qudt:symbol "V/in"^^xsd:string ;
    qudt:ucumCode "V.[in_i]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H23"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-L-MIN a qudt:Unit ;
    rdfs:label "Volt per Litre Minute"^^xsd:string,
        "Volt per Litre Minute"@en,
        "Volt per Liter Minute"@en-us ;
    dcterms:description "SI derived unit volt divided by the the product of the unit litre and the unit minute"^^xsd:string ;
    qudt:conversionMultiplier 16.66666666666666666666666666666667 ;
    qudt:conversionMultiplierSN 1.666667e+01 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L-1I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MIN ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD913"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD913"^^xsd:anyURI ;
    qudt:symbol "V/(L·min)"^^xsd:string ;
    qudt:ucumCode "V.L-1.min-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "F87"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-MicroSEC a qudt:Unit ;
    rdfs:label "Volt per Microsecond"^^xsd:string,
        "Volt na Microsekunda"@cs,
        "Volt pro Microsekunde"@de,
        "Volt per Microsecond"@en,
        "Voltio por Microsegundo"@es,
        "Volt par Microseconde"@fr,
        "Volt per Microsecondo"@it,
        "Volt per Microsaat"@ms,
        "Wolt na Microsekunda"@pl,
        "Volt pe Microsecundă"@ro,
        "Volt na Microsekunda"@sl,
        "Volt per Microsaniye"@tr ;
    dcterms:description "SI derived unit volt divided by the 0.000001-fold of the SI base unit second"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroSEC ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:PowerPerElectricCharge ;
    qudt:iec61360Code "0112/2///62720#UAA297"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA297"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit volt divided by the 0.000001-fold of the SI base unit second"^^xsd:string ;
    qudt:symbol "V/μs"^^xsd:string ;
    qudt:ucumCode "V.us-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H24"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-MilliM a qudt:Unit ;
    rdfs:label "Volt per Millimetre"^^xsd:string,
        "Volt na Millimetr"@cs,
        "Volt pro Millimeter"@de,
        "Volt per Millimetre"@en,
        "Volt per Millimeter"@en-us,
        "Voltio por Millimetro"@es,
        "Volt par Millimètre"@fr,
        "Volt per Millimetro"@it,
        "Volt per Millimeter"@ms,
        "Wolt na Millimetr"@pl,
        "Volt pe Millimetru"@ro,
        "Volt na Millimeter"@sl,
        "Volt per Millimetre"@tr ;
    dcterms:description "SI derived unit volt divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:ElectricFieldStrength ;
    qudt:iec61360Code "0112/2///62720#UAA302"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA302"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit volt divided by the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "V/mm"^^xsd:string ;
    qudt:ucumCode "V.mm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D51"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-PA a qudt:Unit ;
    rdfs:label "Volt per Pascal"^^xsd:string,
        "Волт на Паскал"@bg,
        "Volt na Pascal"@cs,
        "Volt pro Pascal"@de,
        "Βολτ ανά Πασκάλ"@el,
        "Volt per Pascal"@en,
        "Voltio por Pascal"@es,
        "Volt par Pascal"@fr,
        "Volt per Pascal"@it,
        "Voltium per Pascalium"@la,
        "Volt per Pascal"@ms,
        "Wolt na Paskal"@pl,
        "Volt por Pascal"@pt,
        "Volt pe Pascal"@ro,
        "Вольт на Паскаль"@ru,
        "Volt na Pascal"@sl,
        "Volt per Pascal"@tr ;
    dcterms:description "SI derived unit volt divided by the SI derived unit pascal"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:HallCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAB312"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB312"^^xsd:anyURI ;
    qudt:symbol "V/Pa"^^xsd:string ;
    qudt:ucumCode "V.Pa-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-SEC a qudt:Unit ;
    rdfs:label "Volt per Second"^^xsd:string,
        "Волт на Секунда"@bg,
        "Volt na Sekunda"@cs,
        "Volt pro Sekunde"@de,
        "Βολτ ανά Δευτερόλεπτο"@el,
        "Volt per Second"@en,
        "Voltio por Segundo"@es,
        "Volt par Seconde"@fr,
        "Volt per Secondo"@it,
        "Voltium per Secundum"@la,
        "Volt per Saat"@ms,
        "Wolt na Sekunda"@pl,
        "Volt por Segundo"@pt,
        "Volt pe Secundă"@ro,
        "Вольт на Секунда"@ru,
        "Volt na Sekunda"@sl,
        "Volt per Saniye"@tr ;
    dcterms:description "'Volt per Second' is a unit of magnetic flux equaling one weber. This is the flux passing through a conducting loop and reduced to zero at a uniform rate in one second inducing an electric potential of one volt in the loop. "^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$V / sec$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L2I0M1H0T-4D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SEC ] ;
    qudt:hasQuantityKind qudtqk:PowerPerElectricCharge ;
    qudt:iec61360Code "0112/2///62720#UAA304"^^xsd:string ;
    qudt:informativeReference "http://www.oxfordreference.com/view/10.1093/acref/9780198605225.001.0001/acref-9780198605225-e-1512"^^xsd:anyURI,
        "http://www.thefreedictionary.com/Webers"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA304"^^xsd:anyURI ;
    qudt:symbol "V/s"^^xsd:string ;
    qudt:ucumCode "V.s-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H46"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V-PER-V a qudt:Unit ;
    rdfs:label "Volt per Volt"^^xsd:string,
        "Волт на Волт"@bg,
        "Volt na Volt"@cs,
        "Volt pro Volt"@de,
        "Βολτ ανά Βολτ"@el,
        "Volt per Volt"@en,
        "Voltio por Voltio"@es,
        "Volt par Volt"@fr,
        "Volt per Volt"@it,
        "Voltium per Voltium"@la,
        "Volt per Volt"@ms,
        "Wolt na Wolt"@pl,
        "Volt por Volt"@pt,
        "Volt pe Volt"@ro,
        "Вольт на Вольт"@ru,
        "Volt na Volt"@sl,
        "Volt per Volt"@tr ;
    dcterms:description "SI derived unit volt per SI derived unit volt"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD862"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD862"^^xsd:anyURI ;
    qudt:symbol "V/V"^^xsd:string ;
    qudt:ucumCode "V.V-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V2-PER-K2 a qudt:Unit ;
    rdfs:label "Square Volt per Square Kelvin"^^xsd:string,
        "Квадратен Волт на Квадратен Келвин"@bg,
        "Čtvereční Volt na Čtvereční Kelvin"@cs,
        "Quadratvolt pro Quadratkelvin"@de,
        "Τετραγωνικό Βολτ ανά Τετραγωνικό Κέλβιν"@el,
        "Square Volt per Square Kelvin"@en,
        "Voltio Cuadrado por Kelvin Cuadrado"@es,
        "Volt Carré par Kelvin Carré"@fr,
        "Volt Quadrato per Kelvin Quadrato"@it,
        "Voltium Quadratum per Kelvin Quadratum"@la,
        "Volt Persegi per Kelvin Persegi"@ms,
        "Wolt Kwadratowy na Kelwin Kwadratowy"@pl,
        "Volt Quadrado por Kelvin Quadrado"@pt,
        "Volt Pătrat pe Kelvin Pătrat"@ro,
        "Квадратный Вольт на Квадратный Кельвин"@ru,
        "Kvadratni Volt na Kvadratni Kelvin"@sl,
        "Voltkare per Kelvinkare"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$v^2/k^2$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-2L4I0M2H-2T-6D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 2 ;
            qudt:hasUnit unit:V ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:K ] ;
    qudt:hasQuantityKind qudtqk:LorenzCoefficient ;
    qudt:iec61360Code "0112/2///62720#UAB172"^^xsd:string ;
    qudt:informativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=31897"^^xsd:anyURI,
        "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB172"^^xsd:anyURI ;
    qudt:symbol "V²/K²"^^xsd:string ;
    qudt:ucumCode "V2.K-2"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D45"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q105728783> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:V_Stat-CentiM a qudt:Unit ;
    rdfs:label "Statvolt Centimetre"^^xsd:string,
        "Statvolt Centimetre"@en,
        "Statvolt Centimeter"@en-us ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 2.99792458 ;
    qudt:conversionMultiplierSN 2.997925e+00 ;
    qudt:expression "$statvolt-centimeter$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L3I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:V_Stat ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:CentiM ] ;
    qudt:hasQuantityKind qudtqk:ElectricFlux ;
    qudt:symbol "statV·cm"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-HR-PER-L a qudt:Unit ;
    rdfs:label "Watt Hour per Litre"^^xsd:string,
        "Watt Hour per Litre"@en,
        "Watt Hour per Liter"@en-us ;
    dcterms:description "product of the SI derived unit watt and the unit hour divided by the unit litre"^^xsd:string ;
    qudt:conversionMultiplier 3600000.0 ;
    qudt:conversionMultiplierSN 3.6e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:HR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:L ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAD887"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAD887"^^xsd:anyURI ;
    qudt:symbol "W·h/L"^^xsd:string ;
    qudt:ucumCode "W.h.L-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-M-PER-M2-SR a qudt:Unit ;
    rdfs:label "Watt Metre per Square Metre Steradian"^^xsd:string,
        "Ват Метър на Квадратен Метър Стерадиан"@bg,
        "Watt Metr na Čtvereční Metr Steradián"@cs,
        "Watt Meter pro Quadratmeter Steradiant"@de,
        "Βατ Μέτρο ανά Τετραγωνικό Μέτρο Στερακτίνιο"@el,
        "Watt Metre per Square Metre Steradian"@en,
        "Watt Meter per Square Meter Steradian"@en-us,
        "Vatio Metro por Metro Cuadrado Estereorradián"@es,
        "Watt Mètre par Mètre Carré Stéradian"@fr,
        "Watt Metro per Metro Quadrato Steradiante"@it,
        "Wattium Metrum per Metrum Quadratum Steradian"@la,
        "Watt Meter per Meter Persegi Steradian"@ms,
        "Wat Metr na Metr Kwadratowy Steradian"@pl,
        "Watt Metro por Metro Quadrado Esterradiano"@pt,
        "Watt Metru pe Metru Pătrat Steradian"@ro,
        "Ватт Метр на Квадратный Метр Стерадиан"@ru,
        "Watt Meter na Kvadratni Meter Steradian"@sl,
        "Watt Metre per Metrekare Steradyan"@tr ;
    dcterms:description "The power per unit area of radiation of a given wavenumber illuminating a target at a given incident angle."@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "W·m/(m²·sr)"^^xsd:string ;
    qudt:ucumCode "W.m.m-2.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M a qudt:Unit ;
    rdfs:label "Watt per Metre"^^xsd:string,
        "Ват на Метър"@bg,
        "Watt na Metr"@cs,
        "Watt pro Meter"@de,
        "Βατ ανά Μέτρο"@el,
        "Watt per Metre"@en,
        "Watt per Meter"@en-us,
        "Vatio por Metro"@es,
        "Watt par Mètre"@fr,
        "Watt per Metro"@it,
        "Wattium per Metrum"@la,
        "Watt per Meter"@ms,
        "Wat na Metr"@pl,
        "Watt por Metro"@pt,
        "Watt pe Metru"@ro,
        "Ватт на Метр"@ru,
        "Watt na Meter"@sl,
        "Watt per Metre"@tr ;
    dcterms:description "SI derived unit watt divided by the SI base unit metre"^^xsd:string ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:LineicPower ;
    qudt:iec61360Code "0112/2///62720#UAB374"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB374"^^xsd:anyURI ;
    qudt:symbol "W/m"^^xsd:string ;
    qudt:ucumCode "W.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "H74"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q96192470> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M-DEG_C a qudt:Unit ;
    rdfs:label "Watt per Metre Degree Celsius"^^xsd:string,
        "Ват на Метър Градус Целзий"@bg,
        "Watt na Metr Stupně Celsia"@cs,
        "Watt pro Meter Grad Celsius"@de,
        "Βατ ανά Μέτρο Βαθμός Κελσίου"@el,
        "Watt per Metre Degree Celsius"@en,
        "Watt per Meter Degree Celsius"@en-us,
        "Vatio por Metro Grado Celsius"@es,
        "Watt par Mètre Degré Celsius"@fr,
        "Watt per Metro Grado Celsius"@it,
        "Wattium per Metrum Gradus Celsii"@la,
        "Watt per Meter Darjah Celsius"@ms,
        "Wat na Metr Stopień Celsjusza"@pl,
        "Watt por Metro Grau Celsius"@pt,
        "Watt pe Metru Grad Celsius"@ro,
        "Ватт на Метр Градус Цельсия"@ru,
        "Watt na Meter Stopinja Celzija"@sl,
        "Watt per Metre Celsius"@tr ;
    dcterms:description "SI derived unit watt divided by the product of the SI base unit metre and the unit for temperature degree Celsius"^^xsd:string ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M1H-1T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_C ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind qudtqk:ThermalConductivity ;
    qudt:iec61360Code "0112/2///62720#UAB457"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB457"^^xsd:anyURI ;
    qudt:symbol "W/(m·°C)"^^xsd:string ;
    qudt:ucumCode "W.m-1.Cel-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "N80"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-M a qudt:Unit ;
    rdfs:label "Watt per Square Metre Metre"^^xsd:string,
        "Ват на Квадратен Метър Метър"@bg,
        "Watt na Čtvereční Metr Metr"@cs,
        "Watt pro Quadratmeter Meter"@de,
        "Βατ ανά Τετραγωνικό Μέτρο Μέτρο"@el,
        "Watt per Square Metre Metre"@en,
        "Watt per Square Meter Meter"@en-us,
        "Vatio por Metro Cuadrado Metro"@es,
        "Watt par Mètre Carré Mètre"@fr,
        "Watt per Metro Quadrato Metro"@it,
        "Wattium per Metrum Quadratum Metrum"@la,
        "Watt per Meter Persegi Meter"@ms,
        "Wat na Metr Kwadratowy Metr"@pl,
        "Watt por Metro Quadrado Metro"@pt,
        "Watt pe Metru Pătrat Metru"@ro,
        "Ватт на Квадратный Метр Метр"@ru,
        "Watt na Kvadratni Meter Meter"@sl,
        "Watt per Metrekare Metre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "W/(m²·m)"^^xsd:string ;
    qudt:ucumCode "W.m-2.m-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-M-SR a qudt:Unit ;
    rdfs:label "Watt per Square Metre Metre Steradian"^^xsd:string,
        "Ват на Квадратен Метър Метър Стерадиан"@bg,
        "Watt na Čtvereční Metr Metr Steradián"@cs,
        "Watt pro Quadratmeter Meter Steradiant"@de,
        "Βατ ανά Τετραγωνικό Μέτρο Μέτρο Στερακτίνιο"@el,
        "Watt per Square Metre Metre Steradian"@en,
        "Watt per Square Meter Meter Steradian"@en-us,
        "Vatio por Metro Cuadrado Metro Estereorradián"@es,
        "Watt par Mètre Carré Mètre Stéradian"@fr,
        "Watt per Metro Quadrato Metro Steradiante"@it,
        "Wattium per Metrum Quadratum Metrum Steradian"@la,
        "Watt per Meter Persegi Meter Steradian"@ms,
        "Wat na Metr Kwadratowy Metr Steradian"@pl,
        "Watt por Metro Quadrado Metro Esterradiano"@pt,
        "Watt pe Metru Pătrat Metru Steradian"@ro,
        "Ватт на Квадратный Метр Метр Стерадиан"@ru,
        "Watt na Kvadratni Meter Meter Steradian"@sl,
        "Watt per Metrekare Metre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "W/(m²·m·sr)"^^xsd:string ;
    qudt:ucumCode "W.m-2.m-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-MicroM a qudt:Unit ;
    rdfs:label "Watt per Square Metre Micrometre"^^xsd:string,
        "Watt na Čtvereční Metr Micrometr"@cs,
        "Watt pro Quadratmeter Micrometer"@de,
        "Watt per Square Metre Micrometre"@en,
        "Watt per Square Meter Micrometer"@en-us,
        "Vatio por Metro Cuadrado Micrometro"@es,
        "Watt par Mètre Carré Micromètre"@fr,
        "Watt per Metro Quadrato Micrometro"@it,
        "Watt per Meter Persegi Micrometer"@ms,
        "Wat na Metr Kwadratowy Micrometr"@pl,
        "Watt pe Metru Pătrat Micrometru"@ro,
        "Watt na Kvadratni Meter Micrometer"@sl,
        "Watt per Metrekare Micrometre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiance ;
    qudt:plainTextDescription "A unit of spectral radiance, which is the radiance per unit of wavelength. It is watts per square meter per micrometer"^^xsd:string ;
    qudt:symbol "W/(m²·μm)"^^xsd:string ;
    qudt:ucumCode "W.m-2.um-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> ;
    rdfs:seeAlso qudtqk:Radiance .

unit:W-PER-M2-MicroM-SR a qudt:Unit ;
    rdfs:label "Watt per Square Metre Micrometre Steradian"^^xsd:string,
        "Watt na Čtvereční Metr Micrometr Steradián"@cs,
        "Watt pro Quadratmeter Micrometer Steradiant"@de,
        "Watt per Square Metre Micrometre Steradian"@en,
        "Watt per Square Meter Micrometer Steradian"@en-us,
        "Vatio por Metro Cuadrado Micrometro Estereorradián"@es,
        "Watt par Mètre Carré Micromètre Stéradian"@fr,
        "Watt per Metro Quadrato Micrometro Steradiante"@it,
        "Watt per Meter Persegi Micrometer Steradian"@ms,
        "Wat na Metr Kwadratowy Micrometr Steradian"@pl,
        "Watt pe Metru Pătrat Micrometru Steradian"@ro,
        "Watt na Kvadratni Meter Micrometer Steradian"@sl,
        "Watt per Metrekare Micrometre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000.0 ;
    qudt:conversionMultiplierSN 1e+06 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MicroM ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiance ;
    qudt:plainTextDescription "A unit of spectral radiance that is the power radiating from a surface per unit of solid angle per unit of wavelength, measured in units of watts per meter squared per micrometer per steradian"^^xsd:string ;
    qudt:symbol "W/(m²·μm·sr)"^^xsd:string ;
    qudt:ucumCode "W.m-2.um-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-NanoM a qudt:Unit ;
    rdfs:label "Watt per Square Metre Nanometre"^^xsd:string,
        "Watt na Čtvereční Metr Nanometr"@cs,
        "Watt pro Quadratmeter Nanometer"@de,
        "Watt per Square Metre Nanometre"@en,
        "Watt per Square Meter Nanometer"@en-us,
        "Vatio por Metro Cuadrado Nanometro"@es,
        "Watt par Mètre Carré Nanomètre"@fr,
        "Watt per Metro Quadrato Nanometro"@it,
        "Watt per Meter Persegi Nanometer"@ms,
        "Wat na Metr Kwadratowy Nanometr"@pl,
        "Watt pe Metru Pătrat Nanometru"@ro,
        "Watt na Kvadratni Meter Nanometer"@sl,
        "Watt per Metrekare Nanometre"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:symbol "W/(m²·nm)"^^xsd:string ;
    qudt:ucumCode "W.m-2.nm-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-NanoM-SR a qudt:Unit ;
    rdfs:label "Watt per Square Metre Nanometre Steradian"^^xsd:string,
        "Watt na Čtvereční Metr Nanometr Steradián"@cs,
        "Watt pro Quadratmeter Nanometer Steradiant"@de,
        "Watt per Square Metre Nanometre Steradian"@en,
        "Watt per Square Meter Nanometer Steradian"@en-us,
        "Vatio por Metro Cuadrado Nanometro Estereorradián"@es,
        "Watt par Mètre Carré Nanomètre Stéradian"@fr,
        "Watt per Metro Quadrato Nanometro Steradiante"@it,
        "Watt per Meter Persegi Nanometer Steradian"@ms,
        "Wat na Metr Kwadratowy Nanometr Steradian"@pl,
        "Watt pe Metru Pătrat Nanometru Steradian"@ro,
        "Watt na Kvadratni Meter Nanometer Steradian"@sl,
        "Watt per Metrekare Nanometre Steradyan"@tr ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000000000.0 ;
    qudt:conversionMultiplierSN 1e+09 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L-1I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NanoM ] ;
    qudt:hasQuantityKind qudtqk:SpectralRadiance ;
    qudt:symbol "W/(m²·nm·sr)"^^xsd:string ;
    qudt:ucumCode "W.m-2.nm-1.sr-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-M2-PA a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Watt per Square Metre Pascal"^^xsd:string,
        "Ват на Квадратен Метър Паскал"@bg,
        "Watt na Čtvereční Metr Pascal"@cs,
        "Watt pro Quadratmeter Pascal"@de,
        "Βατ ανά Τετραγωνικό Μέτρο Πασκάλ"@el,
        "Watt per Square Metre Pascal"@en,
        "Watt per Square Meter Pascal"@en-us,
        "Vatio por Metro Cuadrado Pascal"@es,
        "Watt par Mètre Carré Pascal"@fr,
        "Watt per Metro Quadrato Pascal"@it,
        "Wattium per Metrum Quadratum Pascalium"@la,
        "Watt per Meter Persegi Pascal"@ms,
        "Wat na Metr Kwadratowy Paskal"@pl,
        "Watt por Metro Quadrado Pascal"@pt,
        "Watt pe Metru Pătrat Pascal"@ro,
        "Ватт на Квадратный Метр Паскаль"@ru,
        "Watt na Kvadratni Meter Pascal"@sl,
        "Watt per Metrekare Pascal"@tr ;
    dcterms:description "Watt Per Square Meter Per Pascal ($W/m^2-pa$) is a unit of Evaporative Heat Transfer."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:expression "$W/(m^2.pa)$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H0T-1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -2 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PA ] ;
    qudt:hasQuantityKind qudtqk:EvaporativeHeatTransferCoefficient ;
    qudt:isoNormativeReference "http://www.iso.org/iso/catalogue_detail?csnumber=43012"^^xsd:anyURI ;
    qudt:symbol "W/(m²·Pa)"^^xsd:string ;
    qudt:ucumCode "W.m-2.Pa-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:W-PER-SR a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Watt per Steradian"^^xsd:string,
        "Ват на Стерадиан"@bg,
        "Watt na Steradián"@cs,
        "Watt pro Steradiant"@de,
        "Βατ ανά Στερακτίνιο"@el,
        "Watt per Steradian"@en,
        "Vatio por Estereorradián"@es,
        "Watt par Stéradian"@fr,
        "Watt per Steradiante"@it,
        "Wattium per Steradian"@la,
        "Watt per Steradian"@ms,
        "Wat na Steradian"@pl,
        "Watt por Esterradiano"@pt,
        "Watt pe Steradian"@ro,
        "Ватт на Стерадиан"@ru,
        "Watt na Steradian"@sl,
        "Watt per Steradyan"@tr ;
    dcterms:description "$\\textit{Watt Per Steradian (W/sr)}$ is the unit in the category of Radiant intensity. It is also known as watts per steradian. This unit is commonly used in the SI unit system. Watt Per Steradian (W/sr) has a dimension of $M\\cdot L^{-2}\\cdot T^{-3}$ where $M$ is mass, $L$ is length, and $T$ is time. This unit is the standard SI unit in this category."^^qudt:LatexString ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS>,
        <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:definedUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:derivedCoherentUnitOfSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:expression "$W sr^{-1}$"^^qudt:LatexString ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M1H0T-3D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:W ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:SR ] ;
    qudt:hasQuantityKind qudtqk:RadiantIntensity ;
    qudt:iec61360Code "0112/2///62720#UAA314"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA314"^^xsd:anyURI ;
    qudt:symbol "W/sr"^^xsd:string ;
    qudt:ucumCode "W.sr-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D57"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q16683188> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:WB-PER-M a qudt:Unit ;
    rdfs:label "Weber per Metre"^^xsd:string,
        "مقياس التبادل، الأس السالب للمتر"@ar,
        "Вебер на Метър"@bg,
        "Weber na Metr"@cs,
        "Weber pro Meter"@de,
        "Βέμπερ ανά Μέτρο"@el,
        "Weber per Metre"@en,
        "Weber per Meter"@en-us,
        "Weber por Metro"@es,
        "وبر بر متر"@fa,
        "Weber par Mètre"@fr,
        "प्रति मीटर वैबर"@hi,
        "Weber per Metro"@it,
        "ウェーバ毎メートル"@ja,
        "Weberium per Metrum"@la,
        "Weber per Meter"@ms,
        "Weber na Metr"@pl,
        "Weber por Metro"@pt,
        "Weber pe Metru"@ro,
        "Вебер на Метр"@ru,
        "Weber na Meter"@sl,
        "Weber per Metre"@tr,
        "韦伯每米"@zh ;
    dcterms:description "SI derived unit weber divided by the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1.0 ;
    qudt:conversionMultiplierSN 1e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:M ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:WB ] ;
    qudt:hasQuantityKind qudtqk:MagneticVectorPotential ;
    qudt:iec61360Code "0112/2///62720#UAA318"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAA318"^^xsd:anyURI ;
    qudt:plainTextDescription "SI derived unit weber divided by the SI base unit metre"^^xsd:string ;
    qudt:symbol "Wb/m"^^xsd:string ;
    qudt:ucumCode "Wb.m-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D59"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q77899731> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:WB-PER-MilliM a qudt:Unit ;
    rdfs:label "Weber per Millimetre"^^xsd:string,
        "Weber na Millimetr"@cs,
        "Weber pro Millimeter"@de,
        "Weber per Millimetre"@en,
        "Weber per Millimeter"@en-us,
        "Weber por Millimetro"@es,
        "Weber par Millimètre"@fr,
        "Weber per Millimetro"@it,
        "Weber per Millimeter"@ms,
        "Weber na Millimetr"@pl,
        "Weber pe Millimetru"@ro,
        "Weber na Millimeter"@sl,
        "Weber per Millimetre"@tr ;
    dcterms:description "derived SI unit weber divided by the 0.001-fold of the SI base unit metre"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS-EMU>,
        <http://qudt.org/vocab/sou/CGS-GAUSS>,
        <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 1000.0 ;
    qudt:conversionMultiplierSN 1e+03 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E-1L1I0M1H0T-2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:MilliM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:WB ] ;
    qudt:hasQuantityKind qudtqk:MagneticVectorPotential ;
    qudt:iec61360Code "0112/2///62720#UAB074"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB074"^^xsd:anyURI ;
    qudt:plainTextDescription "derived SI unit weber divided by the 0.001-fold of the SI base unit metre"^^xsd:string ;
    qudt:symbol "Wb/mm"^^xsd:string ;
    qudt:ucumCode "Wb.mm-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "D60"^^xsd:string ;
    qudt:wikidataMatch <http://www.wikidata.org/entity/Q107325173> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:WK-PER-NUM a qudt:DerivedUnit,
        qudt:Unit ;
    rdfs:label "Week per Number"^^xsd:string,
        "Week per Number"@en ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/SI> ;
    qudt:conversionMultiplier 604800.0 ;
    qudt:conversionMultiplierSN 6.048e+05 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T1D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:NUM ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:WK ] ;
    qudt:hasQuantityKind qudtqk:TimePerCount ;
    qudt:symbol "wk/#"^^xsd:string ;
    qudt:ucumCode "wk.{#}-1"^^qudt:UCUMcs ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:YD-PER-DEG_F a qudt:Unit ;
    rdfs:label "Yard per Degree Fahrenheit"^^xsd:string,
        "Yard per Degree Fahrenheit"@en ;
    dcterms:description "unit yard according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.64592 ;
    qudt:conversionMultiplierSN 1.64592e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L1I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ],
        [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:YD ] ;
    qudt:hasQuantityKind qudtqk:LinearThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAB031"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB031"^^xsd:anyURI ;
    qudt:plainTextDescription "unit yard according to the Anglo-American and the Imperial system of units divided by the unit for temperature degree Fahrenheit"^^xsd:string ;
    qudt:symbol "yd/°F"^^xsd:string ;
    qudt:ucumCode "[yd_i].[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L98"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:YD-PER-PSI a qudt:Unit ;
    rdfs:label "Yard per Psi"^^xsd:string,
        "Yard per Psi"@en ;
    dcterms:description "unit yard according to the Anglo-American and the Imperial system of units divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.0001326225014300614501244640736951901 ;
    qudt:conversionMultiplierSN 1.326225e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L2I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 1 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB032"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB032"^^xsd:anyURI ;
    qudt:symbol "yd/psi"^^xsd:string ;
    qudt:ucumCode "[yd_i].[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "L99"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:YD3-PER-DEG_F a qudt:Unit ;
    rdfs:label "Cubic Yard per Degree Fahrenheit"^^xsd:string,
        "Cubic Yard per Degree Fahrenheit"@en ;
    dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/IMPERIAL>,
        <http://qudt.org/vocab/sou/USCS> ;
    qudt:conversionMultiplier 1.3761987443712 ;
    qudt:conversionMultiplierSN 1.376199e+00 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L3I0M0H-1T0D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:DEG_F ] ;
    qudt:hasQuantityKind qudtqk:VolumeThermalExpansion ;
    qudt:iec61360Code "0112/2///62720#UAB036"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB036"^^xsd:anyURI ;
    qudt:plainTextDescription "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the unit for temperature degree Fahrenheit"^^xsd:string ;
    qudt:symbol "yd³/°F"^^xsd:string ;
    qudt:ucumCode "[yd_i]3.[degF]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M11"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:YD3-PER-PSI a qudt:Unit ;
    rdfs:label "Cubic Yard per Psi"^^xsd:string,
        "Cubic Yard per Psi"@en ;
    dcterms:description "power of the unit yard according to the Anglo-American and the Imperial system of units with the exponent 3 divided by the composed unit for pressure (pound-force per square inch)"^^xsd:string ;
    qudt:conversionMultiplier 0.0001108893019973135049303398173536047 ;
    qudt:conversionMultiplierSN 1.108893e-04 ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L4I0M-1H0T2D0> ;
    qudt:hasFactorUnit [ a qudt:FactorUnit ;
            qudt:exponent 3 ;
            qudt:hasUnit unit:YD ],
        [ a qudt:FactorUnit ;
            qudt:exponent -1 ;
            qudt:hasUnit unit:PSI ] ;
    qudt:hasQuantityKind qudtqk:Unknown ;
    qudt:iec61360Code "0112/2///62720#UAB039"^^xsd:string ;
    qudt:informativeReference "https://cdd.iec.ch/cdd/iec62720/iec62720.nsf/Units/0112-2---62720%23UAB039"^^xsd:anyURI ;
    qudt:symbol "yd³/psi"^^xsd:string ;
    qudt:ucumCode "[yd_i]3.[psi]-1"^^qudt:UCUMcs ;
    qudt:uneceCommonCode "M14"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

unit:Z a qudt:CountingUnit,
        qudt:Unit ;
    rdfs:label "Atomic-number"^^xsd:string,
        "Atomic-number"@en ;
    dcterms:description "In chemistry and physics, the atomic number (also known as the proton number) is the number of protons found in the nucleus of an atom and therefore identical to the charge number of the nucleus. It is conventionally represented by the symbol Z. The atomic number uniquely identifies a chemical element. In an atom of neutral charge, the atomic number is also equal to the number of electrons."^^rdf:HTML ;
    qudt:applicableSystem <http://qudt.org/vocab/sou/CGS> ;
    qudt:conversionMultiplier 0.0 ;
    qudt:conversionMultiplierSN 0e+00 ;
    qudt:dbpediaMatch "http://dbpedia.org/resource/Atomic_number"^^xsd:anyURI ;
    qudt:hasDimensionVector <http://qudt.org/vocab/dimensionvector/A0E0L0I0M0H0T0D1> ;
    qudt:hasQuantityKind qudtqk:AtomicNumber ;
    qudt:informativeReference "http://en.wikipedia.org/wiki/Atomic_number?oldid=490723437"^^xsd:anyURI ;
    qudt:symbol "Z"^^xsd:string ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/vocab/unit> .

bdg2:000cc56aeabd032e3486ad328f6ecaf1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "127" .

bdg2:017c9599535906c6ee6b0a9309e9a083 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "129" .

bdg2:01864b15df68dc4cadc0b310df158eac a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.30063 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:01b1ca6c53300514d753133782ea6ebe a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 86.90336 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:01b94c02cd642eb5bb56a5d67502a6f3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "324" .

bdg2:01eaffb8216dae2e50db8b2687810e37 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.338386 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0236679cbd1aa4df287667155c299159 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.48226 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:025eb9c12f4a79ccac56c13f1c56e23e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "321-1E" .

bdg2:02c25582224f5c0f474107fe7aa1d968 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "229-2E" .

bdg2:02c98f1e65269d0d72da1f96ecda5094 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "204-2J" .

bdg2:02f6a6ce8e2e42ec88246167b9bc474e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "122-3C" .

bdg2:0311ba05b12823568c82607227aab16b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "128-1A" .

bdg2:0351fb53b2070235a0bb8794d8cfa23d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "205-1F" .

bdg2:03d4db45e2096c263105d6b9b2a52c6a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 39.91465 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:03ee91d12469ee21a5cddf85fc8f2755 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.77302 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:040f9b7b958a77210dffc819aa5d0719 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "311-1A" .

bdg2:0418291f09fe608739d029a070fc3b58 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "209" .

bdg2:044c15acacb7f483095b6d5f62f3bc8a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 79.190510000000008192 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:04d0f088e34ba0231f9dd1992704b66d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.49021 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:059849ab20ce847047c43ca2b1ddf7e1 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.39732 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:05ffa268531ab936cb24c7cabb0d9785 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110" .

bdg2:06fa52fc3ed0d8cb14ee6f86e177c01d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.2838 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:070d95966b67532e649d66ed190b7a24 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "320-1A" .

bdg2:074edc67beadc2bc003601c0427b0036 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.08271 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:07527982fa766cabc9c49f5d9839a533 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_BOT_ZN_2" .

bdg2:081fc4f6435ce5db890085696885b03d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 52.64945 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:082a67a4497e97a82c219a268b17209e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.44678 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0959635666554329da3457574ac29ac7 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "108-2J" .

bdg2:0993425448be5c05576af7cafe90d956 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "224-2B" .

bdg2:0a1f0cdd7f021af92415b4201ab5f6cd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "305-2J" .

bdg2:0a95e29189a3427e37aa70a7788b96c6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.76295 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0adb35d8c16009fadd6d2f070bc33bf3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "132-2B" .

bdg2:0b11aaf16c9e8a2a9fe9d6c801ee2f16 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "341-1C" .

bdg2:0b366508029ff1aa99b6556c32e76dd6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.71679 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0b7d43a6483d9f4b4f15f75c487ce28f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.66829 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0b8bc7db4b23a33a0dba005204110dd2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "322-1A" .

bdg2:0c6cae77860023218c8e4eb84a0eb0e0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.887068 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0cabcaa195d0056f007bce0304e8986c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "335" .

bdg2:0d6f70a21bd196a1871f1c508afa4dd6 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "225" .

bdg2:0d74ba6cc36491196fce96ba5953dbd9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 8.285584999999998976 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:0e45aae9f06fa02f081718627cfa59a6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.30762 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:105cea4cbb865d3cfa858f235531c167 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "123-2G" .

bdg2:10c84b1b2ea04f144195085041b4f7f8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "118-1A" .

bdg2:116bc9fa91ba7d4c5c0b352c7180d6eb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.87585 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1184f1c4acad2919f2fce88fa528a9ab a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "336" .

bdg2:11bdc82ba226b4864d5a950444a7a60d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "319" .

bdg2:11d8280545d83ebcc4bf68115ac140ca a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.59874 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:12f0b8496a9c06f58833d9627e690cde a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.8592 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1321efb94a2d21732553a6e6bf6a8673 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.671947 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:13d5304a09f73ab16496fc614f9c3987 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "CORE_TOP" .

bdg2:1448f4ef6ba69534a0eea944f9f0c306 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "218" .

bdg2:145543c121861a42444ce77230dd7c6f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "217-3C" .

bdg2:14b8858773be8d254448a151b7976e2f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 59.56126 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:14d958175ea2b3cbfd911f3b40360b18 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 33.48048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:14f3df8fda92a490bb103ed74a91d758 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.69669 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:14faeeb593e36702a12cfbef401e379b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.48656 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:152948086aefcac40bbf7391c596aa7b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.681930000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:157ee7d011d6d81dc2de790dcda373ef a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.43377 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:15e4869d02c7e5df97004b3c8f8b34ee a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.75244 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:16983005150a9ab112ee442669d64e62 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 112.8776 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:16aff5a0514a460c40a9e490167f8f1f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.61554 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:16b2ce8406e8a0c8937fdcdef3e69f94 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "122-1C" .

bdg2:171ca5e2506feda3e77e3260a7a25e9a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "137-1J" .

bdg2:17b959c84162433ab21ebbf7bdee6c07 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "324-1A" .

bdg2:17d23ff341e81dbbeae4d06881221393 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.62627 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:17f99cba2045a881d6a6fa2839dfd3d4 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "312-1A" .

bdg2:1828be001df74db2df80067dae6d5aad a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 28.84286 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:185e06ea2387cc152dee1c8983e4d11f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.150039999999995904 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:187b773755f17a23a4b9adf93620a3e3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "301" .

bdg2:187cd5591394fb16025f83a7483861cd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-4D" .

bdg2:189310adf2c21d28c355dfd4779cd0c3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.52351 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:193a30ab1a70f61940d8ec16bfa43c18 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.8822 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:19593dbf8ac7323a36617c2e87396ba2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 90.324969999999991808 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:195bfa582708a31e7c760feaae02fd91 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.388233 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:19a3b853bf092064e22ac7849c27bd3f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "302" .

bdg2:19f01bad8181018ef9ae7698721f45a8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "113-1A" .

bdg2:1a258c4d2c332097fecfec472c5ca1c2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.44497 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1a2f3400e370fa97f2f8d1cec3375778 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.85653 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1a957cd2cdc8e6b5c6564323f8ab6138 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.97119 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1ab92616fc74cb75978210eeadd2b290 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "313" .

bdg2:1ae6bb076b43eb0a3264da6e07f9032b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-6B" .

bdg2:1af4781a3fd9a57951d1225c5c8c6979 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 54.1547 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1be7f946bcd1dac2c0d41abe934150fa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.957494 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1cd11d3eac4ea44347a3110e03af7e22 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_TOP_ZN_4" .

bdg2:1cde666c5dd33d3ed664a008c4b1a768 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "126" .

bdg2:1d2e9ae8e222d99feed9fb8e2c684031 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 46.19446 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1d6f08414eb76c0db782cd05d22c328a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_TOP_ZN_2" .

bdg2:1d7ce68440295d98791a870e1d85610a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "113-2B" .

bdg2:1de75c5e393a858e96163bce3980f4a2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.239484 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1df007b90e2d0d29e463c42c09d73e96 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.91469 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1f02769d602b7875a79cf209de48a79b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "103-1E" .

bdg2:1f491c289936cfc45b1db41ab6a329ad a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "109" .

bdg2:1f586f0bf09a44165b67d0b5de381fed a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.112013 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1fcf8f6530e0165870332b3b52c999e4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.90577 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:1fdc20191b5403934944baafa02fd8e0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.239484 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2022d8f13b92d58fc3d2fd0fc8a763df a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "213-1C" .

bdg2:20419363efe3c423dee3f3224c5990b4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 260.6716 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:20c79ce1bebc7339699599fb4adcb26b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.05477 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2111cff427b064d9f5298f02d8ff1f5e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 81.90894 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:221e20c6275038012a3b7b751aead2a8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "131" .

bdg2:22234c26d342c87616b45d8fa2f6f668 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "201-2E" .

bdg2:2385c77ba50ef70999274eddb54a910c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "301-2E" .

bdg2:240109e8c1422e4a991343dd7b69b599 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.85158 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:247327a1bf016c93c22488b900e0b180 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "328-1A" .

bdg2:24986e74018218d5202a5f23b82659d4 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_MID_ZN_3" .

bdg2:24ad4727723475e090c40c8b3d18720e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "332-2B" .

bdg2:25855fee02bdbf9f0575e7e36743874c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 130.3487 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2665f1868ad7b4d537c66d71bdbe2cd9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.18334 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:268ffe360203a302b72e7e0557fcaa02 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.90718 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:26e478aba8b9470c5df251aa304f6b03 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.314409999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2827527fe263f5b01a90ff77d977b4a3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "334" .

bdg2:2895e7348ec0a0be2d417bfcc6604789 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 50.79114 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:28d51a5ec9d2612b1029df37e9fdb558 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.43414 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:29094b77da4138b152fe1c006faed830 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "332-1A" .

bdg2:2b2fe2c8d22de2f048dd775a2fa9e113 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "312" .

bdg2:2b8255ead40fac1c32d16bbcf0677a91 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "221-1A" .

bdg2:2bb1e8ce90dc0b66bbe82d433e9f5ae3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "101-1C" .

bdg2:2c3a9e138421bc02cd8b5f6549243d2d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "339-1F" .

bdg2:2c95b91dadc30bec4704240ce46b471c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "108" .

bdg2:2c9eb7ceb95b70cfe166ed05084dbfa4 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "310-2B" .

bdg2:2ce97f1035533eb5492ff047a04e7faa a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "214-1J" .

bdg2:2d1535730d55939b8f8894dbe49e620e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "315" .

bdg2:2d4410391227858eccb06b7767e4866f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "206-1F" .

bdg2:2d85137be908d462e1118728812c51ba a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.94197 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2d8b706be422dd7f0c255e2c5ec37175 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 181.1436 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2dab9d60f962fbeb7a37b462eb1ed48f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "204-3J" .

bdg2:2dcd882828dad109daa2a359edb1fee1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-5E" .

bdg2:2defa3fc9eb3c794dec0c9ea8af35f3b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "213" .

bdg2:2e9e1358d969dfd031167b1239135389 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.77866 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:2f4673d005a5e1b4af84ca3b0f5be9a2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.239484 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:30a749d0bba438e42ff2695139f744b0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.27141 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:30bc166054149cef0ca473fe02b80863 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "129-1A" .

bdg2:311a568719cd2ec6bbb6e240779de4a1 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.95109 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:31683b08484650b78e1a385773a0a137 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "135-1A" .

bdg2:31bc97d861d6a17213d484b9a906ab38 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 15.66053 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3200f486926de478f6cf8ddd0d48b350 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-1D" .

bdg2:32c961b85bf67d84d64ab5199c4df0b9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.61273 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:335903c58efae4a32dfe1b3759440500 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.90262 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3460cd902e191e79b858303926724d59 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.60268 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:349dadbd280e6bef850c27e219279160 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-1E" .

bdg2:34fae1f0c54b64563c7c5b2eafbb1793 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.617204 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:350c990946baa44621d03b13cabc0a0f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "123" .

bdg2:3598756df3fbf9b6b9ec10391e9ea7aa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.523919999999995904 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:35993daa64558f8aaf19186b66e619b8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 373.905500000000016384 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:35aa6bce0c103f6e609eec1d4b8cea0d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "114-1A" .

bdg2:3653da7cc2f128db74924577a7a398ec a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "115" .

bdg2:3804d3a1e09afb4ccb6858eb873b0212 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "136-1F" .

bdg2:3841ade3efe8074bfe08153dc791c2a1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "107-1H" .

bdg2:39485ebd7efc45d1450c0338179fe1d5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.876910000000004096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:399f99fe854ed0f50bf788abc4241551 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 7.118106 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3a0cce9adba4f9b94d87bbd09ee9e102 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "122" .

bdg2:3a12db459661f58a318041789cd493a5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.34469 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3a5c6adbb4f744b5b4ac281bf68e7271 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "114" .

bdg2:3ae982c6ddbcd82def173f65059572d6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.94743 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3b4043ef612ba3bf54c840cdd691cb34 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "229-3E" .

bdg2:3bc9fed9ae8fa1ab957b071126dd1007 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.37836 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3ced7918b36958f5a5c9d6fe6a01df21 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.99177 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3cefe9429652503002842c6f699ba2ce a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.669728 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3daa4082c6e7458134cbd3c164f70328 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "228-2C" .

bdg2:3db81334c12e15b4dd28902a1df49408 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "324-2B" .

bdg2:3e060116273f2205d0e437c7a3f513bd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "219-1A" .

bdg2:3f1258169d9144ad70e3973307f8ae96 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.77482 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3f21e94448fc1daade2f0a9ec1f99ba9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 110.0952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:3f97046a15fa4c4e97837ce8eab0406e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "313-1A" .

bdg2:3fe3d74c9ddd068cf1b4463cbfd1dc9b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.39597 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:401813e1664ddec768205d7cb249965b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "308" .

bdg2:402cac3726fb054f957d1216f9a2c18e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_BOT_ZN_1" .

bdg2:40ed421ee94c21f112579b76cb4f845d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "327-4L" .

bdg2:4160484aaedbf41e89fa5d7a4437fec5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "318" .

bdg2:4182ecf7c6d8fd680ad9c1ce2947dfc9 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "217" .

bdg2:4316b1c5bbe342279222e29a4a7eb086 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "336-1J" .

bdg2:43e601c9a7efdddce45d4aad8f4fc718 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "104" .

bdg2:443bc3d3886666fdf080ed09b8222312 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.94743 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4451241e946d9cae4ffe98c74086b8d5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-2C" .

bdg2:449c69ff4ee397bfa95041605a14e21b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.48923 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:449e5cbc61f34774a76361a07faee5ab a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.50833 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:44c5c0720be08867873dfe7e90507888 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.88444 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:44d8f84a08a299c9cf00124c84b46866 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.5338 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:45336d263a9a9db3696d702bdef98db0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.81184 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:45970e205b0bb27b4939c372adee5099 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 15.14417 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:45d77c623628290c4cd1a1ad5afa9d2f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.366040000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4679c4c2452ac6a10149a3b470177c78 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 24.02853 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:470fe931799e3e71f37514ee695d92b4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 41.81836 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:477454e2b9da45ba9e2390b8bc1cff33 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.00233 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4776b437318d5f952dd009d95b178415 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-1C" .

bdg2:48dec46e75e7f54f6612c3b8641e7f0e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.62767 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:49259a116e46c4e3ab2d46a58e09dac2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "338" .

bdg2:495c79c07fb0fd147603710d97dc3cf9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.08623 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:49c7a9b5a91ebcd481d52f1db02186d2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.741959999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:49d3f303d97564ec21fd04cfed7addb6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 36.781190000000004096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:49e9f88bde06b745257a7a6a64cdc101 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 62.21252 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4b64fd444a92d7e54a25cde1ee8df190 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.74156 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4b8e7a589b73149dfef638ce36e223c5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_BOT_ZN_4" .

bdg2:4bc3779f2a9e5e6636656e61cc65120b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 40.18106 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4be252b69dc7f8b736c328b7efdce208 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.976768 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4bf1b8978433ca83ae1e50246f31d757 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 40.27209 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4c8d7eb73c520d494ee16cf604080448 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "225-1A" .

bdg2:4c93dafa99fa2f754683ed248f7c8d5e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 59.85972 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4cc667e26e404335541b043528a6570a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.119700000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4d5c0a3f427808ad1bb058bc81c1e6d5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "328-2B" .

bdg2:4dac281ef13c621499ddf04c2d6ebdbb a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "133-1A" .

bdg2:4dc92bd05510c342ea29a0c0305c36c5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.533925 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4e9a361293a0d68787d7db5d35346a5d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.391759 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:4f87ac954521f2d218680daadd389366 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "338-1L" .

bdg2:4f9a40b4ddff280a5cde4587fe155aea a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.39597 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:503147a2a04ffb2bc5339c37e9145183 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.734379 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:50754ee454c03d8d001e245708b7154a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 28.21898 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:50e255f532469cfdad1c01c86ddf5fb6 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "134-2B" .

bdg2:512e4c19ca4903abe1b4566e8eb8be6d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.87585 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5212ceea6faaefdead75cee44247275f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.72052 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:526ae4090c737503335bb9c899d2d713 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.52751 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:52d6f71b61491de7863780c6e05c43c7 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "209-1K" .

bdg2:533b9b7e607d973470c4e5cfba2288d2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.652899999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:53a67a4d6d0cd92659c6ac1903023969 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "306" .

bdg2:541728665b014be7efc5f1518d1e659a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "309-1A" .

bdg2:54250b83c92c9463afc4f6e1deb23cd2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_MID_ZN_2" .

bdg2:549f8d361f3a58de908b2f8b2a748d16 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "219-2B" .

bdg2:551e0259e1139d2a97c2f141e248a505 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.73984 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:553ebf1d438de95e29ee545eaa4a323c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "108-3J" .

bdg2:55a2d18bbf06337c37b229c965b788ac a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "325-1F" .

bdg2:55b1016993d9aa7744678e3738c68d61 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "216" .

bdg2:56823b278c60618e8cf840a26942d9ad a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "334-1F" .

bdg2:56dad22aa18ce84faa6a1145a446cec9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 48.32851 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:56ea415239114fd9e496f5ae46a19bf0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "328" .

bdg2:5779927aeb1f3ce880f0249986eb7495 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "214-3J" .

bdg2:579cb2b459836a16cef0840f60c3aceb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.89247 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:57ccc22bb6b0afc0ef3bc06237ab3662 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "203" .

bdg2:57fc30ac6bdda4c84ad8ed71631c1af9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.163071000000000512 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:57fe7c9ee828e95a62a4f63f3be85dbb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 369.495099999999950848 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:583129a6e86d82cd50931bb44237e2d1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "201-1E" .

bdg2:5881432130a6e1b06ee32fe2158a9865 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "309" .

bdg2:58c3453b5d2787030cdb74148a280584 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.681930000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:59298a76fe0ec5c4981d95eb402b691e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.58212 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:59db8e7a42709a1bb459d62dedd20e51 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "134-1A" .

bdg2:5a1dfb5a08133c45e361e752954b3fba a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 134.4588 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5a45abda591ce852d730486f7a227a5d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "229-4E" .

bdg2:5a46ac28c541a55062b29085c9aa5842 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-3E" .

bdg2:5a63d4cd3a5f5512a407e893840f677c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.13036 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5b4a2cbb50cba8564b9951784d7c5351 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "128" .

bdg2:5b9be87b94bed86d09eb1de6ba41df7f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 31.76311 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5bcd110e04c2a0acd52a831475c2281c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "219" .

bdg2:5be15ae82eb7dc06270078c5d2b90433 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "112" .

bdg2:5c12e67f47fbb9804cc0f2c2242fd7de a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "327" .

bdg2:5c278b5726b401328f487f360b02ff70 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-7B" .

bdg2:5c6df6e98ed14e93f777a5a6cfbd0398 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "322-2B" .

bdg2:5cc60eec6dc5d28d2ad68b5d5a8e50c3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "339" .

bdg2:5d372cc02e3d2706658b923e99380b61 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "341-2B" .

bdg2:5d4f8b8364aaca756762b762a2207783 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.207180000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5d59d0d6c7809131047b6e33c15cbf8c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 176.96 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5d822d39948c48f1429daee4bf3350e8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102-5E" .

bdg2:5db7e65b45448b1d84ca87236ad37719 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.29817 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5e03c87f60212508bc76c642d1c7e405 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "211-1F" .

bdg2:5e9ab0bccda748dc9dde2369980caec8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 31.14473 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5edb9e9fafa5dea5892dffee179d0196 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.16951 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:5fd6f49e64e80542f27aa5ac0f83ebcc a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 189.149300000000016384 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6054ba494da9c0ab614f42c14a002cd8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "218-4C" .

bdg2:6083eecc45102eb44b56977e49c54c64 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.729909999999995904 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:613cce1e0364d35ba3bd71d9942b6307 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.94197 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:615a9cfab878ac7b3140d687756ab4bb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 53.67374 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6180e3159b54e22b54c8ec3092804afb a s223:PhysicalSpace ;
    rdfs:label "PhysicalSpace" ;
    s223:contains bdg2:04405074e8760773635367aab59bb782,
        bdg2:062fc31dd278f190b5c9d237489e7d9a,
        bdg2:0debbf9011d2edef136a993751616c4a,
        bdg2:192c90b00a08a0d3db019dd3c660933d,
        bdg2:21c50a50a935d24d436c4d2bf27b0be6,
        bdg2:325665573393ea598bc03681fccc91aa,
        bdg2:3779b592b4e7bed407f61c169ff59221,
        bdg2:412f57f150946610368eac6d0d1c0ed6,
        bdg2:48c611cb65ae5a589c1a0562e534c481,
        bdg2:4946be64dd7b16a912a4810f751536d2,
        bdg2:617ceb9bd4697e20016b4a9767da98ac,
        bdg2:63d053c27bb1883823301e924e5f9f59,
        bdg2:72bc1af527c9db1099b409ca6d88053e,
        bdg2:77fc2134d48f52b6763ab1eb2d17177b,
        bdg2:7ba35b19cb4c3c79e5bdbd2a1073370e,
        bdg2:80ce095522d440beebb43d2a7e53ee82,
        bdg2:8e57f294a5d5c6d014a45a2ddb125eb3,
        bdg2:909cd2b5619a9b30cc4b79a5ba4e39bb,
        bdg2:942e8885d49df649c7b47e759d53f318,
        bdg2:97932d4a07f7b2e8b62b018c2c23f02c,
        bdg2:9b72691da50bd6fcfdd1c2df9db4b977,
        bdg2:9c3e2c73afb76cd5c75b65a4f596cd71,
        bdg2:a0cd4c2a8830737d3913b12b424d20b6,
        bdg2:a1e1f1c53c17af3a81cd6e1444314864,
        bdg2:ae44fe7f191e0f68429cb65274a17f2b,
        bdg2:b1cb648c451461fac7b72213fe26eafa,
        bdg2:b2026060fa2c3465a8f250023952c4dd,
        bdg2:b834c590edece96e20e74809d7e243d6,
        bdg2:baf4569696d2e67ac50fed74d90079b3,
        bdg2:bbb44e7dc0f1451746a0315ee671e63f,
        bdg2:bbd9f5722f6b25afed73226882977463,
        bdg2:bc63f6702fca047eafc794fc63272ec1,
        bdg2:bcaea36774c75ae6a3412ed145c239b7,
        bdg2:c54820ea8abc202499b3ddafc4261f28,
        bdg2:d2adf181e2c1931b46fa7ed04d061da1,
        bdg2:d8bda39e449004fb33ba1d9f5c31cf3c,
        bdg2:d92fabd4965ebb3198e92723cae9f3af,
        bdg2:ddd7862aea356734dcdaa217787b3bf3,
        bdg2:ebdf3f7fa32924a573d2bbac1bf6cdb1,
        bdg2:ed01ab8cc0505a6764f1c10a53360b5c,
        bdg2:fced0fecb1a33a651e352824b40f4756 ;
    s223:hasProperty bdg2:81657af45d976420c5d7354d239f200f .

bdg2:625306a4987ea6e0dd39f92660460c30 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.89392 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6256ca88f20570ddb5a1a9dc97c94495 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "321" .

bdg2:62a2ee8f82e2979ce84c862aa3bad567 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 53.12542 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:634a55377184cb7754e93e88b9b52c58 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "108-1J" .

bdg2:6392d2cd2481a2cf4472a167c5da18fc a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "120-2B" .

bdg2:63b4f10424419df2b2e0af5bbd8553e5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303" .

bdg2:63ed84a8f32d6823321c6bde72dd1239 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 283.286299999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:656a3bda5017b651a3a99df4250397b8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "315-1A" .

bdg2:65aff766ef87c6828f10044e7bf67127 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "318-2B" .

bdg2:66f4a9acfb5c8b04e837f390ad3deda9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.4456 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:675f3e604e306be4ad357b9642e80e52 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "109-1F" .

bdg2:67825961ab1b6b4672bee2a29608def1 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 108.1883 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:67d1836637a3d2f6a9871c2b89ad5ff9 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "226-2B" .

bdg2:69772a408336da3520982f5532147dea a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 7.31669 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:69d207350d61b0989bf09974948a4ef6 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "320" .

bdg2:69d26465137f0ac7585f271cb964ddde a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102-1E" .

bdg2:69f6e8ca1014fc4d990cbae694f6d8ef a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "227-1C" .

bdg2:6a45153c9d998a1e5caf4f225b4ade23 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.87512 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6a45f96a023d4a76d26a80cfccaa3468 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.80806 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6a96f2fd4c69fbe82c6f451225e64e99 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.89295 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6acbb7f7f9af65ea47c2d14f3012bac7 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "115-1A" .

bdg2:6b3eae0e029555f6e0cb16f02736ce24 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "214" .

bdg2:6ca71a634cfb07865d1f2f40f62bef76 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6d08a8b1f5b53f18148bf0ff005ddfb4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.79234 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6dc025a9561e5955ff15e795c0c4f876 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "221-2B" .

bdg2:6df8bb7886efcbe6848b32cfcad4d94a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.47255 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6e4d733eb4c60bcad0296d278840c561 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "203-1H" .

bdg2:6ec9f00d790d9589b8e14a179f3f9656 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 7.419598 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6ed8540f910ba126e352999e8e918592 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.73634 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6ee5cc929935a616c435efc7652ec61d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "333-1F" .

bdg2:6f03c7974b336cf5efdc514a324cc11b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "314-1A" .

bdg2:6f064e0be6e65589786fd52ccaf3eceb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:6f4568ae47f3f7925dcefad3333d6b3b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "136" .

bdg2:6f5bd79f4ab71e49e4a4a5a024ca07f0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "333" .

bdg2:6f927a3d984e2664622f10968909bbaf a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.55047 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:70bbd3f09a8a05923f52200e7f68bf10 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "106-1H" .

bdg2:70d324bf7632916adbe1c477bdca61fa a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "122-2C" .

bdg2:70e29bb1dae84b89231d3c99ed62b0fb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.30451 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:70f9418cede717260a141148bab43b65 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 50.53248 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7103af240f85708f8aebea870da87eb5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 60.36702 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7221fbb8fa3147c72366be1161367b93 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.83427 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:72855f8b95d9819708f53d1df08ff099 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_TOP_ZN_1" .

bdg2:72cf6992472b810f9891c53e2e3f95b8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 33.188450000000004096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:734ec06bd8680f519f0e91da03b98981 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.632669999999995904 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:735ed855599e3fb6b00e9cef6fb7bbf9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.822304 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:73d05ea745e43b49fa1e56375ffeba56 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.78219 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:73d32563767c2badf6ee9f9542b88a85 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.458216 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:73ff133e3a399bdcff2b8c705ae944d9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:740fc27e7e351dcde268d28d0a5249a5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "311" .

bdg2:7410de056d3683ceef17988ad9d44b4d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.4952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:748c050a4503b5c85d84404c8f8692aa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.99177 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7512e28dfe40cfb8447328f658b393b0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_MID_ZN_4" .

bdg2:7522b2255d67e4d3adf2e43f5c979317 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "121-1F" .

bdg2:75623fadeb1b17ec849b6a6ffef59777 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.43515 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:75871f1c7d3a2b5487ad49e163a0f241 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "307-2B" .

bdg2:7590df0ce20c4581e34b6e8ff60c83ef a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 186.9268 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:75e86482bad7963026f8b88dc0c8c017 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.70726 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7608a75696a4096ab7709837008434f9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.7374 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:765c1c8efb9b00a922fd361e1bda4a38 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "127-2B" .

bdg2:766d08c1966db597530d4357d315b126 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.89173 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:76a687ead3d623aae4262e1271f7dee0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.16374 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:76f75890a5df43cc68df57f77ddff858 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "327-2L" .

bdg2:772cdb9b99378ea9af4a16c39e30a500 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "112-2B" .

bdg2:78d14662a1faecfdc3d4ca3aa0c7fdb1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "314-2B" .

bdg2:78e9097770fe4f082653122b79888562 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.239484 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:78f2bbe0562b46b2f4aa8960bf0cfe91 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.41499 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:791d744af2b3469a2196e60c442bf5ac a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.79234 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7960276640a0d6e5c31e1bf2cb56b599 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 8.192887000000001024 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:798d299d643a0b383362813cc28d423a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "318-1A" .

bdg2:79a951620a61a2e8a9a2cb2c2fe56fdc a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "132" .

bdg2:7ac3f6c47f3b66e79c06cf5f23390545 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "329-1A" .

bdg2:7afc5332a676ddc0492c565c9d30cfa3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "229-1E" .

bdg2:7b4ebaaf96492018bbb5c7056e2d0939 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 79.190510000000008192 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7b56d47712fda497ee100834b45c5e63 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "207" .

bdg2:7b9e7da29183f5ea2a3c84f358f0fadf a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 42.98777 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7be7383d845bcd0562b1dc5c1495cac9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.32191 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7bf7409e5b965b2749669c23e7ec6f81 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 9.29696 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7c7f132918ddf34ddaa107e5a9ee5e77 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.59357 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7d5d127309162d816b130581f9d303ca a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 37.31768 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7d9b1b5f1c18e923e99e11fb1a5c9a97 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 11.51275 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7da2a55746761ef9973ea73250b19c24 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 1.882819 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7dfe094422c3c551049a79a1c8f01794 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "205" .

bdg2:7e1aefdcaa98eeaff0e4cf7196ee102b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "337-1H" .

bdg2:7e751d3253362c4c1ba66bcb6122e33c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 31.443 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:7e8f01fccc1d0746704d408174e5f625 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "202" .

bdg2:7ebb341ca2fba6f6f04684bc525d605e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "119-1A" .

bdg2:7f56c55a01c49b5ed67481697abb0e21 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-6E" .

bdg2:7fa99a5afcae72538f500b250e1e9d2b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "128-2B" .

bdg2:7fe9216c74d89c944456b3640b3305d8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.48786 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:80381157d1d9e2485cc5a5db63c3de18 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.12729 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:80453879fb61431a14355f9d20de3740 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.995142 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:80c889459f6bf57985073829c449e1f0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 59.12999 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:815156672540e2b24b2afd6176638b5f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.727028 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:81a11a8ad57af23cf542954e3bec7ce1 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.92877 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8247ff5a586b4be4b3d5de1ba453cf8f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "301-1E" .

bdg2:8357a8b6c897d6a35ba2d608ec06aa87 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "331" .

bdg2:8367f5acef1e8bfda38d172b90bd840f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.67657 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:84e21724df461fd2c1fb4b3eca680074 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.4907 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:85b2b7108aaa9a33b3cd091817ddd11c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.850393 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:85d8a90972a8331c48b535e086bfa120 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.061059 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:85ed6373c5e688f5e4bc53bc0acc7991 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 243.618699999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8626e19b63d24f548374dab6ed4d7546 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "220-2B" .

bdg2:86c2bad1a7a5b114443d6bd22382ba65 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "214-2J" .

bdg2:87516a14216ad443b2ca2814ab25f27d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "215-1H" .

bdg2:875dd6d444a4d724685155ec2d31ca67 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 30.91344 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:87ba7d1db6f4b25c14d67f2173cb7ee2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "304-1H" .

bdg2:883a94060d2806c7619d3c8ada9c9d49 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "104-1L" .

bdg2:883caff6c07ed787e1dca288e99d7464 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.945146 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:88978e95e05f1d2ee2410d895f727d3f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "322" .

bdg2:8904c3a7c26cac28aff725aa371ebfba a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 24.07606 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:89c6e156d9dc23ab445324e66c94eabb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.657082 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:89e2c08a8c63ad7954582369f80ba03f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 63.17445 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:89f770d23c5ee8ead7bbe523b21ece0e a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8a0093bdfc60bb9460f12a66d7a96b0f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "330" .

bdg2:8a072fd4d39e311f93171911a00c235b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.282674 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8a26cc9ef56fe85e2a40ec4017758ce3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 24.10693 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8a3bf0a91794735baa6bdb70c6409ac7 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "137-2J" .

bdg2:8a855e8ccecb7cb14f45ed056e0aa315 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "307" .

bdg2:8ac32f2ba958eeb043aaf178e4844aff a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 48.22796 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8ae97c2a2ca7daa8bb259eb99dce4ff4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.53423 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8b7ae4e5acec853715e3ba4a8ad1b288 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 286.799100000000016384 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8bfdeac93bc41f20f1ccd8acdd510c9d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 11.53937 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8c1542a2a2f29c338392c6d5a0338465 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.952109 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8c483cd3fece8fde3b6f9364c26f8775 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8d2e8260ccfce3664c6ef19edb4c295a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.236204 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8d50a75df875897c78f8530ac48f489e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "308-1A" .

bdg2:8db64c2ac71430bbbd839237b6e38c5c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.93691 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8de28b6d63552b95458c5702592aa862 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.432499 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8e2da2798d2f909362fecc083cd6fed5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.95672 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:8f8633a4dac8303aa2097bbeb7b0c17a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "135" .

bdg2:90e18a6845928a9051dc302fa41bb355 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 9.345913 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:91924e96de61b181b38ecd8a780a7d15 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-5E" .

bdg2:928557358d83e7657ec561433cf341b2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "206" .

bdg2:929341be752630c33e8f5c17644099cb a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "310-1A" .

bdg2:92f05eb9801346cf31647524696dda7d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 36.81046 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:93990cefa902c7433f5d2fe37f6fd051 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "226" .

bdg2:93ba8482e59b5632c0aa80f13b0aa5e0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "317-1F" .

bdg2:94689230ccfc5ef0846774c996cfe697 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.59915 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:949988ede3ab7173103d432f56549375 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "228" .

bdg2:94e3cc5f979f9316327e9b0eda02e47f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "329" .

bdg2:957463630f634097414aa136404c2ef0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.867525 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:958d94fc0ed55773f93142aa2a73825c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.86479 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:96254fb836de68ae147dd2355faefd97 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.061059 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:97110256f6017bd6751b978fe2a466e0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-6E" .

bdg2:9725212a7f304e6477d5ebcfb4154818 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "116-1A" .

bdg2:97803d8169df4a02f964af8e26dfbc80 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.00243 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:97dbc3dd8615c4f1d51a3abd3385ed3c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "CORE_MID" .

bdg2:97f389885e64cec5a63269242776a86f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "331-1F" .

bdg2:97ffeef8c495bc6b759b505e85e0ef18 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.612100000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9811d15127855932b5baae5ec05b6b0b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.69657 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:989e736d0e9f258f03377553c4cc2f5f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "210" .

bdg2:98e859f83b9e7d4e5c7e32505c96a48a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 77.220330000000008192 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:99c5585046e63586e9ec354099ad08cf a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.87851 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9a244185910b5448fd15083b41861b25 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "330-2B" .

bdg2:9a4f37086b7bb398d94638744adab52b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "119-2B" .

bdg2:9ad4a307c3ae973b15bb815b12d06327 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 12.87672 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9b2be4a970185aa71df781adcaf61fff a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-4E" .

bdg2:9b502725a9bc8af0ed46b17a417ab523 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.81258 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9c498c9b4c103ab1f6b87084d35bdd18 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.1351 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9c9b74f328ea6f4c433c13c6b4500d36 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "327-3K" .

bdg2:9cb19c49dd8f64bdb1262cec5cd8e65d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 36.53927 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9e20d83624ff68f1338989dc76b62335 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 60.6721 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:9e770ac01d14222a0271f3842df0646e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "133" .

bdg2:9fa479682944ced1cf39a3bfa342a3da a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "305-1J" .

bdg2:9ff36446d3176747823023ce2be805bc a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.24198 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a04ee97c96efda9cf1d1b84041e6e082 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.53423 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a0cc6a51efa5a120ecafba21fec113f0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_TOP_ZN_3" .

bdg2:a0ef527e070d20d31dfc59f6ed9237ed a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.511980000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a104d473b120667610ad9cfe0cebc6d2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "129-2B" .

bdg2:a1a52e4e8de5e189e5ebf1213a0d16c1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "325" .

bdg2:a2a672eea7d6c5b1245d7c29c4bac373 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "222-1A" .

bdg2:a2b11679d3dd900994ebb2e8cc1a1987 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "320-2B" .

bdg2:a3df74907516c75bd2c26d4c7fbedf10 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "225-2B" .

bdg2:a4afd764186a5b973a39fb7224a93cbd a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.620634 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a4ea66a0ef15c737547844a766fd6ab7 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.864182 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a528797d82b94bf2f5ab8835fa07c9e9 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "208" .

bdg2:a5c6ac2c187ab24cae483baf37cd3b87 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "117-1A" .

bdg2:a6121ae21a5eaaf5125468fbf0f6d170 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.55745 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a6173431209f01ce59e439254cc652f9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.78706 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a62996eb5e801adf0fbd01963c43075b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "130" .

bdg2:a6e913dbe8c561b3fd116185401a1eba a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "323-1D" .

bdg2:a7455d356c67005740ee523d403a83b2 a s223:PhysicalSpace ;
    rdfs:label "PhysicalSpace" ;
    s223:contains bdg2:086e724bd8f69f95a9315e375d8bc698,
        bdg2:0dd0051c198ab1ee8d08193a8246c47b,
        bdg2:0e81326510b84d23451d78c7f8081083,
        bdg2:14d0c76c81ae24a4a5c62aa4fb56e7de,
        bdg2:1534461d315bdad4e877aae18713cb14,
        bdg2:231db849bf26a52aa25f97e5db97245a,
        bdg2:247bf91dc81ff0b3b14fdd5279523462,
        bdg2:24d57624d00115493cc15d32a918c9ed,
        bdg2:3c418468e71ff5a537b5e56455bc2356,
        bdg2:3d3213544bcefb2baaefbd96716f1bc8,
        bdg2:48b9c1ca3768ef321f1d683b5b1120d4,
        bdg2:51badc1b88929e17ab623dfc459cf9f3,
        bdg2:57ebaa104c01a6dc3079763f94a0c1eb,
        bdg2:5d5d97f8f742c3e465bbef7a01787eab,
        bdg2:625e8534f50808827485538aba3e82f2,
        bdg2:62c4969bbb79c7117ffcfbb4fdc016ff,
        bdg2:63653f22d68914834414186f9c10764c,
        bdg2:82a945cfb33b8c2b440ba014a2cfbce1,
        bdg2:844a41f9c84fdba563707386892c2979,
        bdg2:8621e343f01dcdfe5d7f7470d2bacd6c,
        bdg2:8719cbd6ca9a51132612726849bb787a,
        bdg2:8791d74923028f71b7165ad424cdb2f4,
        bdg2:9c2f06431727c23a2a0ddcd711357701,
        bdg2:ad8ad1cc943b6509395bf042a9b219aa,
        bdg2:b71d5d4d948e6e08a7b81745742d92db,
        bdg2:d391175047a25b0307bd11e583fc2c11,
        bdg2:d45421ae76a65fdfcfcccfbc06cf176e,
        bdg2:ed292ef68fe5e88c427938777bc513f1,
        bdg2:fde62759481e6105c4e797a8c3916820 ;
    s223:hasProperty bdg2:81657af45d976420c5d7354d239f200f .

bdg2:a7ab3fd4f9cb1a55b094ccfdaecaeb75 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.412893999999999488 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a84637f058c5bfa104f289a950ffaf42 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.56665 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a881c79ae645d9d84deee5cbe830e8c4 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "323-2G" .

bdg2:a8caef59a43328e7ff655bf136d43cbb a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "228-3C" .

bdg2:a94a87bfb162c5b4de9455328a6ecfc9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 26.30859 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a9cfc718efe605da0748ab6724ca5f4a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 1653.89699999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:a9ff7e922f4eda1ff2f2a68dc77ce641 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.06223 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:aa1bfc4a7a0c8024f32de66150e854f2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 254.380699999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:aaf823e6433d8d3a42be70529a3f90e0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.89238 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ab21d60e32109c8c38c45fe73a6bf2b5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 7.525403 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ab858f9b939efd8e225e4e4d334970ae a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "101" .

bdg2:ab9f013bc6316f1ff38bd3c07ac92a87 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.48244 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ac178ed159cc707d38526e19f7e61ec0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-3C" .

bdg2:ac7c38fd92a7ff0c85e2f55992c286f3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.447769999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:acbb1dd27b58c6dcd83d3d6be47f88e2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "313-2B" .

bdg2:ad0a39a635a7ca6457be7f167125a647 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "201" .

bdg2:ad94e959ca373db0f2ae6fefecdc3267 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "336-3J" .

bdg2:ae4bb3d76a704c9bd4c3dfbda609d0dd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "317" .

bdg2:af28045421a596b48fbbd2f8fab49495 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "223" .

bdg2:afbe31a619f00b04781a735574d4997c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "311-2B" .

bdg2:b031d031c511dee3a47f437117d512f0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "131-2B" .

bdg2:b0d2324babba5246c0b5cc99b6e4dbf7 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.75168 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b0d6a4f33095f542e054d63fdb6c7289 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "340-3C" .

bdg2:b0f144acff44622c7590c2f91c43a8f8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.69669 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b1954ce12e067188bbb8987a2a5d9b44 a s223:PhysicalSpace ;
    rdfs:label "PhysicalSpace" ;
    s223:contains bdg2:06c48e0294e055494226ad4666c7b25d,
        bdg2:11e6eb0dbf8cd69987ad3744811107e9,
        bdg2:12d883d48dde122b0c60e05b3afaf116,
        bdg2:2028067ee6a70894768c93a38725d5fb,
        bdg2:230198f93f088bfe5c46484865a3a338,
        bdg2:29a8bb43641e7e41aea3357500139b94,
        bdg2:2e5e339d5a699a097fe96dd67a1bc05a,
        bdg2:301ed4fa33b0450daf40600559815b06,
        bdg2:3ab9a9929bf8b6cab213f97c82e269ed,
        bdg2:4ef2d7de355bceeed2fd74fa1ddb0dda,
        bdg2:5045ae960486d79e48a8811fe000bc67,
        bdg2:53e936501f0044729f372614198f9df2,
        bdg2:57b6e93a0245c0d9bdf835bb462c5171,
        bdg2:77a75c7084d8667b276c75f0b7b7ebb8,
        bdg2:79ad17cfd80ebe57024e425fc88b58be,
        bdg2:7f4b3ae1601ce2902c202821b4e1e405,
        bdg2:84b8056724516b4169fa051ca02ac1dd,
        bdg2:86f2e8b2c65a19c84c9150a3db53d385,
        bdg2:8b15be9fe257c6229d9c79a244e36cd4,
        bdg2:8f1a4131eb57444963bdca307115daf4,
        bdg2:911d6cf640da1f0566e01608e4803a01,
        bdg2:93dcf5f949eeaea55d1d15d08452d748,
        bdg2:9fc840976a4fbe61395c749248ec380d,
        bdg2:a72dfd88fca24054017657dce93b610d,
        bdg2:b203b8a770b64f602a7550c8db9064b6,
        bdg2:b3460e94669b0a51e5ca3fa8e6bd1fd9,
        bdg2:b8fc269801c0d56f5f912b5c64c0092b,
        bdg2:b9ce728344626f07f463ae51b7a71f77,
        bdg2:bd4ec146e173e46b89794398e674347d,
        bdg2:c828df287f4dae82c833c02a189c54af,
        bdg2:cc188237d9c7e1f09d9820ff7da8bedc,
        bdg2:d31ff0f87848224671aa8850de49a184,
        bdg2:d511b27c5fbcef519a2df2a66a210133,
        bdg2:e377d065a0f6a939f62f5bbca10a37de,
        bdg2:ee4c51d58747bcb434fa602d43b15686,
        bdg2:f6bcb4875383b5d90621de70ddb070e0,
        bdg2:f9b70d88daae0789557d8e20bc615cd7 ;
    s223:hasProperty bdg2:a9cfc718efe605da0748ab6724ca5f4a .

bdg2:b1c7efe103f8e4127a65a3e914dbf90b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.152374 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b1f21505c68be53624da2b11923b8b30 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.922709999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b21870f5796de359eb56dd160f70f3ab a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "217-1C" .

bdg2:b2a3bd5364644cfce4bf48b1d19239f3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "223-2B" .

bdg2:b2a5fc70a0d93b7bda753cb40be57d65 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "227" .

bdg2:b2d18c507bd40b20b9510ee253121c45 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "340" .

bdg2:b2d53fa389b66b1dbe4571bcfd0707d7 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.56665 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b2f53cc12abb9dc8cae4ba3bb8a1a489 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.27584 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b2fa1931e2407ae6474e3cabe83ca7a6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 38.23921 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b31a86eabd05cea2d39be1af50dd8b63 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 24.55875 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b36dccb484c44ace954a34ab21a2517d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.56665 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b373e6cd66753c66c0bfb460c0aa6bf2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "217-4C" .

bdg2:b3e81af4ed58e8d1966462608767796d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "126-1L" .

bdg2:b3eac93d2f8253af5409bc6abbf60193 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.163071000000000512 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b3f32939f20456cd93fd07c165afd24f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "222-2B" .

bdg2:b403631ff537d0a31f69882434827b22 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.045184 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b4630c9fe3fcff0261b39794f4363593 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "332" .

bdg2:b4688b02f366c7821bbe0ab8c17b14db a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.2524 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b4a963b9381afb5281535e3a4b116ff3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "341" .

bdg2:b4fc5b2eec611ad857b90183bd622182 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "326" .

bdg2:b5b54a741d091a05b21916ddeb2fab5d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 24.83414 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b63260ffd8973267f3a23948fe83947c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "316" .

bdg2:b6555951b3e9e23c4b2a331dc0ed3ade a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.46373 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b69fbe780c1fb4154743e000f677682d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "208-1F" .

bdg2:b6bc753714a3c47ae15847f5220768eb a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-3D" .

bdg2:b728df45b2ba2045f1a50fcf6e4f5e8d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 159.4914 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b74c8e6f2897dbfce62e44ee2682cb08 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.871401 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b7d39d0e207d1c5dc7056d3d410de305 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "329-2B" .

bdg2:b7e09713a1288cbf77900d481e1490e0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "111-1L" .

bdg2:b7f029143c56ce88f37ed687b6bd2396 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "134" .

bdg2:b81a355e84323e55d10d57bc055cee0b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.652458 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b85fddfae229152d9ec3c19b03aceb14 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "336-2J" .

bdg2:b87074614d5a2d291985e8edb8b13983 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.72645 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b8b7cd68084eaebb8107e989ce7cf601 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.51886 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b909c8f5eeca2ff5e9265a654a8dcfc1 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "304" .

bdg2:b90f43f55473be549986fec0a14f5d9c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "217-2C" .

bdg2:b9130de92aee6422040d4bed1e244daf a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 69.41065 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b932d77df9c3f86afafbb390239194af a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.93691 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:b97eada62f5adf4bd4a19502b3d6f9d9 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.50049 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ba0c312eab94c386f3435d7fd1838c4b a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "307-1A" .

bdg2:ba44de34adc2070f575e13dfee6b7593 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "206-1L" .

bdg2:ba5cbbb7378b37bf7ff8463f0b8f1270 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "337" .

bdg2:ba5e64d40d4629b127b1ef4c5dd59749 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.04587 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:bb1c84cf0f94c4d85f74baf5c6a47827 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "323" .

bdg2:bb257490bbf37d4e363eae282dd10cdf a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 43.33033 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:bbe583d6ac5caf10473fe67c6c4ad591 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "212-1F" .

bdg2:bbe701c267f90aedaa6d1435002e3fec a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "121" .

bdg2:bbf4c7d617cddcd68010d558cde2e8e3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.94891 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:bbff1297d23d071bfa13e08a9ee87b64 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 99.60414 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:bc10a3f45405baf0d9d63a63406f2741 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "310" .

bdg2:bc37d704cd4c78f636a1a2a035c3ecc6 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "316-2B" .

bdg2:bc8ea772c25804d2e149c00b12669b9f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "204-1J" .

bdg2:bcf6251f1b6adbe003a15ab271704bf2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_MID_ZN_1" .

bdg2:bdf0760c16eee958a302b2c289bda82b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.945146 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:bf788a0259c3c237f32893400f24ecf3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "210-1C" .

bdg2:c00b3ca7b9a8e190c9f6ea78b0d74d24 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "120-1A" .

bdg2:c0a2091e365b749e735be777e2697cc4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.1218 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c0a874ad3663995389c581bce7855260 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.659518 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c14f243d420f856e981161ebae1ad518 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "335-1F" .

bdg2:c197ec349d205d171c8caf5c59abfb74 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.55448 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c1f7dbe149b10cabec53ede82e905f80 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.67737 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c1ff3f5d3c88512bd4e5431e66b609ec a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "224" .

bdg2:c273546a5500aa1e5996f988666e55e0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 48.32851 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c2bab9a5f1556a35a6094be8e62ba79a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "118" .

bdg2:c2efde516c1be5eee69012e991104ba5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 158.246900000000016384 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c58cf6d69cd94263e8afa7ea03157734 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "306-2B" .

bdg2:c607be85a7103b6044a9211aeb86158b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 60.36702 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c64256f6445e55c2bf93566fe2d8a0bd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "135-2B" .

bdg2:c64c4ddaec9643f131d5589ec1a579a3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.527336 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c6b9813ca5d32af989172cb87aead3f7 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.08271 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c6e8d489c4792daa39cfc275dcb724dd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "227-2C" .

bdg2:c7828e02eba98b0d4f41c882057801ca a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 20.08251 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:c9c26d1ee907b582be96763e483ff710 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "340-1C" .

bdg2:cac238107abdcd8bf6e707630f8279ea a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "105-1L" .

bdg2:cb903afb75b5dec486166290977af56d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.04204 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cbcc7ec08d1c22b408efc22726435b28 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.354187 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cc38962a15bfd86e715d55388ba63368 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "116-2B" .

bdg2:cc69844f6df3f560f907acaf06e0d43c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 41.81836 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cca6ed426bc23b074e2fd6c65d75e6f8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "215" .

bdg2:cd4227348f3dde0b7406e0fefff904a4 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "210-2G" .

bdg2:cd5eff0b15a63b75f8079077c23b7726 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 33.913670000000004096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cd6a4d241f5062dc0e9c1ac5de644476 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "124" .

bdg2:ce71749854821f4383b84cb641bb520c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "202-1L" .

bdg2:ced36aa88f852fbc4c3a90fa98c7c2b6 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "211" .

bdg2:cf22092fec4eb47e53395f8aa67a0ebd a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.59077 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cf24ce0808f7a730535ffd80313d0a03 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "229" .

bdg2:cf2c3294ec111ed1ba6d3907a3d714f8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "319-1F" .

bdg2:cf4922240148f6f1090af9a169b5ba4d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "302-1L" .

bdg2:cf6a4ae8fa55142586417a3ef7f1e45d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.44096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cfb0539e9d6e2850b45da5c3267de4fa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.57842 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cfb085f6621822c070864cdb818efb67 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-4D" .

bdg2:cfd65cf240c80fe3910b3481e2be454b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.98144 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:cfe8cd25d07a0e0d23cc6e913603dacd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "107" .

bdg2:d005c0996f0b93001cfda3922224eac3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.66438 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d00ed5a81a2d85962b08c14cefa5a592 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "113" .

bdg2:d0a0c724a32be380d88efdef1f90bf24 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.62767 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d1423e1e98585830ded98991f02ac947 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "315-2B" .

bdg2:d1d479f850c9f790d7b24973f783fd0c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 104.5447 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d1e409f3fef7761939012e869887fba2 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102" .

bdg2:d2033cd85880debddd28a0f4db353647 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 38.26303 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d2848cfa8689c194126bbaf84755a0e8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 15.2046 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d2a35d4ca5dfa466d0141327ee5a8229 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 14.89937 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d33efc27fd6abf415436b66974a8dbc6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.6531 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d3654ee90245c77d6de9c51902425b1a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "112-1A" .

bdg2:d48a927dbe131c555b5436a673b13099 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 32.96282 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d4b50bf1ac0af0f1efeb68d14d5a7b3d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 52.47199 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d4b840c181bca776a082c4b41cab9945 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.89019 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d4f4f4f7c6962bb9a687d004f8e228ad a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "103-2E" .

bdg2:d574ac0c24b1619ab3b5036ddcdd2dd0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 62.15703 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d5f093fe2af488331f8787cb6e22b632 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "316-1A" .

bdg2:d5fcc9107b4a7a96f5a101cba6dae906 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "314" .

bdg2:d61d144ab39ff8b159908527ed0b7395 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "218-1C" .

bdg2:d65fd65b72f45c2cc89726a91d61dddb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.731868 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d71a36c48eacc776a170267a3e1225fa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 145.9597 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d739d50dbb4da33e424bd80ea68d238e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102-2E" .

bdg2:d77152d1accbc44617e81b86f099047c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "116" .

bdg2:d7b2d23a8b64b74629c8fc989fa4c21d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "106" .

bdg2:d84e7fc1517e40ca24202df4ef9a6231 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 12.79486 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d85a43b4eb79f65694ad1324b101d3eb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 21.06092 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:d924a712d5ea46b2526fe82db9ba8d3f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "117" .

bdg2:d93f835e45e3b452b9c729abf02a9373 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "218-2C" .

bdg2:d9ce28e65196e0a03d79c8ee642e2e8f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "CORE_BOTTOM" .

bdg2:d9dcffbecd8f6029490dcad405406b54 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.8249 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:da998275ee2829b2518089ed9d8c9303 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "115-2B" .

bdg2:db2873ea37fe598c58cc27203b671edb a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 104.0796 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:db438091e94863763d66cd84af3910a3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "127-1A" .

bdg2:db56f49d266a5d8bb583f5872895ca81 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "303-5E" .

bdg2:dbad240057fa91dca5c9aac30c9e96b5 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 23.81026 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:dbcc77128a7d1b7748327fc07c996824 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 33.96069 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:dc60f5a7fb2226d918cafe1e6d8382e3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "137" .

bdg2:dd0182e638af6da70d0285dd6c344f2d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125-2D" .

bdg2:ddde99eda2d93e1dfaa3918666f019a4 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.52895 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:df4c92b8b1315f3d3fff2428e5078057 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasAspect s223:Aspect-Model ;
    s223:hasValue "A-2" .

bdg2:e0001590e379eea069d3ebb74ab761a6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.389237 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e0e2f799c27624b370079dc44ccec953 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.178216 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e146613aa1bab751d78923a6f517278c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "224-1A" .

bdg2:e14c3c70a4695d93da0707464d289406 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 112.9593 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e19009159a525ba7447bd4e137c16a3c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 16.063770000000002048 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e3bfbc622701443a210a5be2382a7bac a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 30.33259 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e563543ad49ff1a1158e6c030db98489 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.02481 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e57eaebca6c988955f09ea8f5ea7eb6a a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102-4E" .

bdg2:e614a64173eec5e926c4d270d7fdb82f a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.987222 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e618b5ed2bc497951d236a8022c5d79c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "312-2B" .

bdg2:e74b3f324add3e9c0f71c07edd548010 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "226-1A" .

bdg2:e7552488f13a57022e2017e74f10b450 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 28.63228 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e7fb13a6db45b03e2d769bb7ffea70dd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "124-1F" .

bdg2:e823755c1d588866d40590c25237173f a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "132-1A" .

bdg2:e894b0971e6c26ab6daed5aea688c088 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "111" .

bdg2:e8990a2560e3418672c26037c5d70c22 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 27.48206 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e8d8e88d138c82f5ac19c1392561cdf5 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "119" .

bdg2:e91e8d139827b3a793bbe451619437fe a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.62315 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:e9c05210a196d16915884a4fc9ff6a82 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "340-2C" .

bdg2:ea497030c3faeb2edad7a1b45a7735e0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "221" .

bdg2:eaf595894fbdf147580ed243c548574c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "309-2B" .

bdg2:eb2a59889714cce9ca98524ab999fbdc a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.549396 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:eb846ef8e58260bb4359fc2e53768ed0 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "103" .

bdg2:eb9c96c7170056ad9bdd9fd9fee7702a a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 133.554399999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ebbb915c3b8faa4c723f023987971666 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "306-1A" .

bdg2:ebd31f921a5461e419d2369cbf3d8f68 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 5.091722 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ebde0f5f2d906dcf9c3717879629ff4d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 33.1837 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ec4b8561c43717f243a8e917401e6033 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "220-1A" .

bdg2:ec6b05d2263234c6cc10712cf1443d02 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.31041 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ecb175778224dbc9b05fae9d53f9f458 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 6.178216 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ecbe91a61ceaad903d9c1632fe82ea8c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "102-3E" .

bdg2:ecfa6d77671d1e8624a885c8878983da a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "130-2B" .

bdg2:ed14c3f4b33b15f6451207424fe793a6 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.26001 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ed4fc0a4893a3af76edbd978e91e5c4e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "125" .

bdg2:ed80a66565e57fdca26cbb84027851fa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 255.908899999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ee1a82bafb0c1bfaab4f0641964c0d34 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 22.19114 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:ee5ed89b736e871b8e7b0c6aaafce9ae a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 18.94891 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:efa1820eb312f139a4ca17cae9542d6c a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 8.318681 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:efa6f197cd0542c006006ed1a8d666b8 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 40.55798 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:efb184ea8201218019ae0507cda57d2c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "222" .

bdg2:efbc3ca909a905de9d9d2096a58c269d a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 13.27688 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f0fc1dd5b0b7c31453d1771f3f866e51 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "207-1F" .

bdg2:f1350154bfb312042d2b3eb7087f35a2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 4.366457999999999488 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f1fd2033ab12435f0fe804ae08fae176 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 28.24084 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f229b38217629e26f2044d02a2623046 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 19.48786 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f31d0cd151b97b3e8dde51772f929bc1 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.821915 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f3bd78335fb57898c4c092cdde3edb12 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 25.05607 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f40f2d9ee6f3b54ee4a2ba0f89874b93 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.833679 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f45781abdccb6a90c1abb4b257352b31 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "220" .

bdg2:f4d1a0943355acb677966c5b52fe6364 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "120" .

bdg2:f4e6f409c50e8adee27c165f5f06b7c8 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "305" .

bdg2:f530315d8bf7d51d77e1e69d9841cb12 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "308-2B" .

bdg2:f54370a70b33a2fea7c473b74e876c67 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 43.98711 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f5453b07d79cee961e67064614506d25 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "130-1A" .

bdg2:f70e0007109474cdb2661de0d470eedd a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "105" .

bdg2:f89a96076879f646b53ac01ae38a4200 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 137.328200000000016384 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f89c0d0d42eeee38019f0fdd0cf48621 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 36.07325 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f8c9e5f1eb931d08cf0cef7b4e7cd486 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "123-1C" .

bdg2:f8e59a7ccd187f3e40fecf88b89ac4aa a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 73.434880000000008192 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:f8efd6570def46ced5653b002f934d1d a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "204" .

bdg2:f94713ccfc31e0c6e22f3dee33da5e6c a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "212" .

bdg2:f99eb8398ee0069b42774e870ab2bf56 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 165.540699999999983616 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fa19e9115d8b48a061200fa96a9e13a2 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 117.2301 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fa1d5be4724b904df26ea95d6f1ca017 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "330-1A" .

bdg2:fa7da8b3548a903fb56f67dfe14cd633 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "326-1F" .

bdg2:fab746e503a7b9a3e17318d1e3854b19 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 29.88454 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fbf4ef69ddfaeb47da3614d2ca160bce a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "228-1C" .

bdg2:fc76e5bd0269d66c52e3a28313c75e6b a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 34.762230000000004096 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fcb58d6ae58d1c3c9908a6e90d7766b3 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "223-1A" .

bdg2:fcc045f90aa837f5e573931211784933 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 2.412615 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fda80d759fff4ebef9a7580bcb56b3e7 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "117-2B" .

bdg2:fdf72756adda58e95f4729a47a1acd26 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 58.74382 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fdf9806666503f1030245628e9e77781 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "131-1A" .

bdg2:fe11a590e387c261d4065b2c107152b3 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 17.643339999999997952 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fe76a33587ea143de89fa5d9cb131ee0 a s223:QuantifiableProperty ;
    rdfs:label "QuantifiableProperty" ;
    s223:hasValue 3.344509 ;
    qudt:hasQuantityKind qudtqk:Area ;
    qudt:hasUnit unit:M2 .

bdg2:fe87fc80bcf81d74cada5e08ed701d09 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "110-2C" .

bdg2:ff85400dbe39622bcf7da6c02c0f4e59 a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "118-2B" .

bdg2:fff96e5fdfc93f13c7ded0ac3c1c515e a s223:Property ;
    rdfs:label "Property" ;
    s223:hasValue "PERIMETER_BOT_ZN_3" .

ns2:Aspect a owl:Class ;
    rdfs:label "Aspect Dimension"^^xsd:string ;
    dcterms:description "Aspect is used to distinguish among sets of features of a domain or subject area. The term is borrowed from \"aspect-oriented\" programming, where it is used to separate concerns. An ontology may be characterized by this dimension so as to parition features that are orthogonal. For example,  in a systems ontology there may be aspects for \"structure\", \"function\", \"behavior\" and \"interface\" or \"interoperability\". A viewpoint can be distinguished by \"aspects\". For example the \"information viewpoint\" of an application can be partitioned into separate graphs for the \"security\", \"operational\" and\"data retention\" aspects."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subClassOf ns2:Dimension .

ns2:CollectionGraph a ns2:GraphRole ;
    rdfs:label "Collection graph"^^xsd:string ;
    dcterms:description "A \"vaem:CollectionGraph\" is a graph that aggregates other graphs using \"owl:imports\" statements"^^xsd:string ;
    ns2:filePrefix "COLLECTION"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:Discipline a owl:Class ;
    rdfs:label "Discipline Dimension"^^xsd:string ;
    dcterms:description "A discipline is a specific area of work or study. Examples of disciplines in the engineering domain are electrical engineering, mechanical engineering and, in the financial domain, risk assessment, investment analysis.  In VAEM, discipline is used as a dimension for characterizing an ontology graph"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subClassOf ns2:Dimension .

ns2:Domain a owl:Class ;
    rdfs:label "Domain Dimension"^^xsd:string ;
    dcterms:description "A domain is a subject area of interest. Examples of domains are \"enterprise\", \"process\", \"organization\" and \"system\". In VAEM, \"Domain\" is used as a dimension for characterizing an ontology graph"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subClassOf ns2:Dimension .

ns2:GMD_SHACLQUDT-All a ns2:GraphMetaData ;
    rdfs:label "QUDT SHACL Collection Metadata Version 3.1.8"^^xsd:string ;
    dcterms:contributor "Florian Kleedorfer"^^xsd:string,
        "Jack Hodges"^^xsd:string,
        "Steve Ray"^^xsd:string ;
    dcterms:created "2025-05-12"^^xsd:date ;
    dcterms:creator "Ralph Hodgson"^^xsd:string ;
    dcterms:description """<p>The QUDT, or "Quantity, Unit, Dimension and Type" SHACL Collection defines the base classes, properties, restrictions and vocabularies used for modeling physical quantities, units of measure, and their dimensions in various measurement systems. The goal of the QUDT ontology is to provide a unified model of, measurable quantities, units for measuring different kinds of quantities, the numerical values of quantities in different units of measure and the data structures and data types used to store and manipulate these objects in software.</p>

<p>Descriptions are provided in both HTML and LaTeX formats. A quantity is a measure of an observable phenomenon, that, when associated with something, becomes a property of that thing; a particular object, event, or physical system. </p>

<p>A quantity has meaning in the context of a measurement (i.e. the thing measured, the measured value, the accuracy of measurement, etc.) whereas the underlying quantity kind is independent of any particular measurement. Thus, length is a quantity kind while the height of a rocket is a specific quantity of length; its magnitude that may be expressed in meters, feet, inches, etc.  Or, as stated at Wikipedia, in the language of measurement, quantities are quantifiable aspects of the world, such as time, distance, velocity, mass, momentum, energy, and weight, and units are used to describe their measure. Many of these quantities are related to each other by various physical laws, and as a result the units of some of the quantities can be expressed as products (or ratios) of powers of other units (e.g., momentum is mass times velocity and velocity is measured in distance divided by time)."""^^rdf:HTML ;
    dcterms:modified "2025-11-13T13:18:55+00:00"^^xsd:dateTime ;
    dcterms:rights """
  This product includes all or a portion of the UCUM table, UCUM codes, and UCUM definitions or is derived from it, subject to a license from Regenstrief Institute, Inc. and The UCUM Organization. Your use of the UCUM table, UCUM codes, UCUM definitions also is subject to this license, a copy of which is available at ​http://unitsofmeasure.org. The current complete UCUM table, UCUM Specification are available for download at ​http://unitsofmeasure.org. The UCUM table and UCUM codes are copyright © 1995-2009, Regenstrief Institute, Inc. and the Unified Codes for Units of Measures (UCUM) Organization. All rights reserved.

THE UCUM TABLE (IN ALL FORMATS), UCUM DEFINITIONS, AND SPECIFICATION ARE PROVIDED 'AS IS.' ANY EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  """^^xsd:string,
        "The QUDT Ontologies are issued under a Creative Commons Attribution 4.0 International License (CC BY 4.0), available at https://creativecommons.org/licenses/by/4.0/. Attribution should be made to QUDT.org"^^xsd:string ;
    dcterms:subject "QUDT"^^xsd:string ;
    dcterms:title "QUDT SHACL Collection - Version 3.1.8"^^xsd:string ;
    qudt:informativeReference "http://unitsofmeasure.org/trac"^^xsd:anyURI,
        "http://www.bipm.org/en/publications/si-brochure"^^xsd:anyURI,
        "http://www.bipm.org/utils/common/documents/jcgm/JCGM_200_2008.pdf"^^xsd:anyURI,
        "https://books.google.com/books?id=pIlCAAAAIAAJ&dq=dimensional+analysis&hl=en"^^xsd:anyURI,
        "https://www.nist.gov/physical-measurement-laboratory/special-publication-811"^^xsd:anyURI ;
    ns2:graphName "qudt"^^xsd:string ;
    ns2:graphTitle "Quantities, Units, Dimensions and Types (QUDT) SHACL Collection - Version 3.1.8"^^xsd:string ;
    ns2:hasGraphRole ns2:CollectionGraph ;
    ns2:hasOwner ns2:QUDT ;
    ns2:hasSteward ns2:QUDT ;
    ns2:intent "Specifies the schema for quantities, units and dimensions. Types are defined in other schemas."^^xsd:string ;
    ns2:isMetadataFor <http://qudt.org/3.1.8/shacl/qudt-all> ;
    ns2:logo "https://qudt.org/linkedmodels.org/assets/lib/lm/images/logos/qudt_logo-300x110.png"^^xsd:anyURI ;
    ns2:namespace "http://qudt.org/schema/qudt/"^^xsd:string ;
    ns2:namespacePrefix "qudt"^^xsd:string ;
    ns2:owner "qudt.org"^^xsd:string ;
    ns2:turtleFileURL "http://qudt.org/3.1.8/schema/shacl/qudt-all"^^xsd:anyURI ;
    ns2:usesNonImportedResource dcterms:abstract,
        dcterms:contributor,
        dcterms:created,
        dcterms:description,
        dcterms:modified,
        dcterms:rights,
        dcterms:source,
        dcterms:subject,
        dcterms:title,
        <http://voag.linkedmodel.org/schema/voag#QUDT-Attribution> ;
    ns2:withAttributionTo <http://voag.linkedmodel.org/schema/voag#QUDT-Attribution> ;
    rdfs:isDefinedBy <http://qudt.org/3.1.8/shacl/qudt-all> ;
    owl:versionIRI <http://qudt.org/3.1.8/shacl/qudt-all> .

ns2:SchemaGraph a ns2:GraphRole ;
    rdfs:label "Schema graph"^^xsd:string ;
    ns2:filePrefix "SCHEMA"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:Viewpoint a owl:Class ;
    rdfs:label "ViewpointDimension"^^xsd:string ;
    dcterms:description "Viewpoint is used to denote how a set of resources, or an individual resource, is relevant to a context of use. The term \"viewpoint\" is adopted from the ISO RM-ODP specifications and its more recent use in enterprise architecture descriptions. The RM-ODP introducesd the concept of viewpoint to describe a system from a particular set of concerns. RM-ODP defines five viewpoints. Together they provide a complete description of a system: enterprise viewpoint, information viewpoint, computational viewpoint, engineering viewpoint, and technology viewpoint.  In VAEM, \"Viewpoint\" is used as a dimension for characterizing an ontology graph.  The viewpoints of an ontology may not always correpsond directly to those of a system but the idea of describing a subject area of interest from distinct viewpoints is still relevant. A viewpoint can be further distinguished by \"aspects\". For example the \"information viewpoint\" of an application can be partitioned into separate graphs for the \"security\", \"operational\" and\"data retention\" aspects."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subClassOf ns2:Dimension .

ns2:acronym a owl:DatatypeProperty ;
    rdfs:label "acronym"^^xsd:string ;
    dcterms:description "The property \"vaem:acronym\" provides a common way to define a commonly used abbreviation on a resource"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:comment a owl:AnnotationProperty ;
    rdfs:label "definition"^^xsd:string ;
    dcterms:description "An annotation property that can be freely used on any kind of resource. The range of the property is \"xsd:string\""^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:date a owl:DatatypeProperty ;
    rdfs:label "date"^^xsd:string ;
    dcterms:description "The property \"vaem:date\" is intended for general use as the name implies.  The range of the property is set as \"vaem:dateUnion\" so as to allow a value to have a number of forms from a  year only to a full timestamp. The property is also the parent of all dates so that queries can be made for any date on an ontology"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:filePrefix a owl:DatatypeProperty ;
    rdfs:label "file prefix"^^xsd:string ;
    dcterms:description "The property \"vaem:filePrefix\" is for specifying a preferred file prefix for a graph. For example a schema graph may be given the file prefix \"SCHEMA\" followed by an underscore \"_\"."^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:hasAspect a owl:ObjectProperty ;
    rdfs:label "has aspect "^^xsd:string ;
    dcterms:description "The property \"vaem:hasAspect\" is used to distinguish among sets of features of a domain or subject area. The term is borrowed from \"aspect-oriented\" programming, where it is used to separate concerns. An ontology may be characterized by this dimension so as to parition features that are orthogonal. For example,  in a systems ontology we can distinguish aspects for \"structure\", \"function\", \"behavior\" and \"interface\".  The property is an \"rdf:Property\" to allow both scalar and object values"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subPropertyOf ns2:hasDimension .

ns2:hasDiscipline a owl:ObjectProperty ;
    rdfs:label "has discipline"^^xsd:string ;
    dcterms:description "The property \"vaem:hasDiscipline\" is used to indicate relevance of a set of resources, or a resource itself, to a specific discipline of work or study. Examples of disciplines in the engineering domain are electrical engineering, mechanical engineering and, in the financial domain, risk assessment, investment analysis.  In VAEM, the property is used as a dimension for characterizing an ontology graph.  The property is an \"rdf:Property\" to allow both scalar and object values"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subPropertyOf ns2:hasDimension .

ns2:hasDomain a owl:ObjectProperty ;
    rdfs:label "has domain"^^xsd:string ;
    dcterms:description "The property \"vaem:hasDomain\" is used to specify how  a set of resources, or an individual resource is grounded in a domain, that is, a subject area of interest. Examples of domains are \"enterprise\", \"process\", \"organization\" and \"system\". In VAEM, the property is used as a dimension for characterizing an ontology graph. The property is an \"rdf:Property\" to allow both scalar and object values"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subPropertyOf ns2:hasDimension .

ns2:hasGraphRole a owl:ObjectProperty ;
    rdfs:label "has graph role"^^xsd:string ;
    dcterms:description "The property \"lms:hasGraphRole\" is used to characterize how a resource participates in an ontology set.  The property is used to specify the role that a graph plays, for example, an ontology graph can be a schema, vocabulary, dataset, script, or ruleset"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range ns2:GraphRole .

ns2:hasIdentifier a owl:ObjectProperty ;
    rdfs:label "has identifier"^^xsd:string ;
    dcterms:description "The property \"vaemhasIdentifier\" is intended for general use as a means to specifiy a unique reference to something. This is an object property that is a sub-property of \"vame:id\""^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:hasLicenseType a owl:ObjectProperty ;
    rdfs:label "has license type"@en-us ;
    dcterms:description "The property \"vaem:hasLicenseType\" points to an entry in the VOAG ontology for licenses"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:hasOwner a owl:ObjectProperty ;
    rdfs:label "has owner"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:hasViewpoint a owl:ObjectProperty ;
    rdfs:label "has viewpoint"^^xsd:string ;
    dcterms:description "The property \"vaem:hasViewpoint\" is used to denote how a set of resources, or an individual resource, is relevant to a context of use. The term \"viewpoint\" is adopted from the ISO RM-ODP specifications and its more recent use in enterprise architecture descriptions.  In VAEM, the property is used as a dimension for characterizing an ontology graph.  The property is an \"rdf:Property\" to allow both scalar and object values"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:subPropertyOf ns2:hasDimension .

ns2:id a owl:DatatypeProperty ;
    rdfs:label "id"^^xsd:string ;
    dcterms:description "The property \"vaem:id\" is intended for general use as a means to specifiy an identifier. The type of this property is intentionally set to \"rdf:Property\" so that use of the property can allow both object and scaler values.  For this reason, the property is rangeless"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> .

ns2:intent a owl:DatatypeProperty ;
    rdfs:label "intent"^^xsd:string ;
    dcterms:description "The property \"vaem:intent\" is used to outline  a statement of purpose. This typically expresses one or more desired outcomes"^^xsd:string ;
    rdfs:isDefinedBy <http://www.linkedmodel.org/2.0/schema/vaem>,
        <http://www.linkedmodel.org/schema/vaem> ;
    rdfs:range xsd:string .

ns2:latestPublishedVersion a owl:DatatypeProperty ;
    rdfs:label "latest published version"^^xsd:string ;
    dcterms:description "The property \"vaem:latestPublishedVersion\"is a URL to